diff --git a/.Rhistory b/.Rhistory deleted file mode 100644 index e69de29..0000000 diff --git a/.babelrc b/.babelrc index 4c70eb1..a618e96 100644 --- a/.babelrc +++ b/.babelrc @@ -1,11 +1,8 @@ { - "presets": [ - "react", - "es2015" - ], - "plugins": [ - "transform-object-rest-spread", - "transform-es2015-modules-commonjs", - "transform-react-constant-elements" - ] -} + "presets": ["react", "es2015"], + "env": { + "development": { + "presets": ["react-hmre"] + } + } +} \ No newline at end of file diff --git a/.eslintrc b/.eslintrc new file mode 100644 index 0000000..087f35f --- /dev/null +++ b/.eslintrc @@ -0,0 +1,69 @@ +{ + "extends": [ + "eslint:recommended", + "plugin:import/errors", + "plugin:import/warnings" + ], + "plugins": [ + "react" + ], + "parserOptions": { + "ecmaVersion": 6, + "sourceType": "module", + "ecmaFeatures": { + "jsx": true + } + }, + "env": { + "es6": true, + "browser": true, + "node": true, + "jquery": true, + "mocha": true + }, + "rules": { + "quotes": 0, + "no-console": 1, + "no-debugger": 1, + "no-var": 1, + "semi": [1, "always"], + "no-trailing-spaces": 0, + "eol-last": 0, + "no-unused-vars": 0, + "no-underscore-dangle": 0, + "no-alert": 0, + "no-lone-blocks": 0, + "jsx-quotes": 1, + "react/display-name": [ 1, {"ignoreTranspilerName": false }], + "react/forbid-prop-types": [1, {"forbid": ["any"]}], + "react/jsx-boolean-value": 1, + "react/jsx-closing-bracket-location": 0, + "react/jsx-curly-spacing": 1, + "react/jsx-indent-props": 0, + "react/jsx-key": 1, + "react/jsx-max-props-per-line": 0, + "react/jsx-no-bind": 1, + "react/jsx-no-duplicate-props": 1, + "react/jsx-no-literals": 0, + "react/jsx-no-undef": 1, + "react/jsx-pascal-case": 1, + "react/jsx-sort-prop-types": 0, + "react/jsx-sort-props": 0, + "react/jsx-uses-react": 1, + "react/jsx-uses-vars": 1, + "react/no-danger": 1, + "react/no-did-mount-set-state": 1, + "react/no-did-update-set-state": 1, + "react/no-direct-mutation-state": 1, + "react/no-multi-comp": 1, + "react/no-set-state": 0, + "react/no-unknown-property": 1, + "react/prefer-es6-class": 1, + "react/prop-types": 1, + "react/react-in-jsx-scope": 1, + "react/require-extension": 1, + "react/self-closing-comp": 1, + "react/sort-comp": 1, + "react/wrap-multilines": 1 + } +} \ No newline at end of file diff --git a/.istanbul.yml b/.istanbul.yml deleted file mode 100644 index af5d6df..0000000 --- a/.istanbul.yml +++ /dev/null @@ -1,10 +0,0 @@ -instrumentation: - compact: false - save-baseline: true -reporting: - reports: - - lcov - report-config: - - lcovonly - - clover - - cobertura diff --git a/.jscsrc b/.jscsrc deleted file mode 100644 index 4d0c460..0000000 --- a/.jscsrc +++ /dev/null @@ -1,100 +0,0 @@ -{ - "excludeFiles" : [ - "node_modules/**", - "bower_components/**", - "assets/javascripts/__tests__/**", - "assets/javascripts/vendor/**" - ], - "requireCurlyBraces" : [ - "if", - "else", - "for", - "while", - "do", - "try", - "catch" - ], - "requireOperatorBeforeLineBreak" : true, - "requireCamelCaseOrUpperCaseIdentifiers": true, - "maximumLineLength" : { - "value" : 200, - "allowComments": true, - "allowRegex" : true - }, - "maxErrors" : 1000, - "validateIndentation" : 2, - "validateQuoteMarks" : "\"", - "disallowMultipleLineStrings" : true, - "disallowMixedSpacesAndTabs" : true, - "disallowTrailingWhitespace" : true, - "disallowSpaceAfterObjectKeys" : false, - "disallowSpaceAfterPrefixUnaryOperators": true, - "disallowMultipleVarDecl" : null, - "safeContextKeyword" : [ - "self" - ], - "requireSpaceAfterKeywords" : [ - "if", - "else", - "for", - "while", - "do", - "switch", - "return", - "try", - "catch" - ], - "requireSpaceBeforeBinaryOperators" : [ - "=", - "+=", - "-=", - "*=", - "/=", - "%=", - "<<=", - ">>=", - ">>>=", - "&=", - "|=", - "^=", - "+=", - "+", - "-", - "*", - "/", - "%", - "<<", - ">>", - ">>>", - "&", - "|", - "^", - "&&", - "||", - "===", - "==", - ">=", - "<=", - "<", - ">", - "!=", - "!==" - ], - "requireTrailingComma" : false, - "requireSpacesInsideObjectBrackets" : false, - "requireSpaceAfterBinaryOperators" : true, - "requireSpacesInConditionalExpression" : true, - "requireSpaceBeforeBlockStatements" : true, - "disallowSpacesInsideObjectBrackets" : "all", - "disallowSpacesInsideArrayBrackets" : "all", - "disallowSpacesInsideParentheses" : true, - "disallowMultipleLineBreaks" : true, - "disallowCommaBeforeLineBreak" : null, - "disallowDanglingUnderscores" : null, - "disallowEmptyBlocks" : null, - "disallowTrailingComma" : null, - "requireCommaBeforeLineBreak" : null, - "requireDotNotation" : null, - "requireMultipleVarDecl" : null, - "requireParenthesesAroundIIFE" : true -} diff --git a/.jshintrc b/.jshintrc deleted file mode 100644 index 0539a39..0000000 --- a/.jshintrc +++ /dev/null @@ -1,62 +0,0 @@ -{ - "bitwise" : true, - "camelcase" : true, - "curly" : true, - "eqeqeq" : true, - "es3" : false, - "forin" : true, - "freeze" : true, - "immed" : true, - "indent" : 2, - "latedef" : "nofunc", - "newcap" : false, - "noarg" : true, - "noempty" : true, - "nonbsp" : true, - "nonew" : true, - "plusplus" : false, - "quotmark" : "double", - "undef" : true, - "unused" : false, - "strict" : false, - "maxparams" : 10, - "maxdepth" : 5, - "maxstatements": 40, - "maxcomplexity": 8, - "maxlen" : 220, - "asi" : false, - "boss" : false, - "debug" : false, - "eqnull" : true, - "esnext" : true, - "evil" : false, - "expr" : false, - "funcscope" : false, - "globalstrict" : false, - "iterator" : false, - "lastsemic" : false, - "laxbreak" : false, - "laxcomma" : false, - "loopfunc" : true, - "maxerr" : 50, - "moz" : false, - "multistr" : false, - "notypeof" : false, - "proto" : false, - "scripturl" : false, - "shadow" : false, - "sub" : true, - "supernew" : false, - "validthis" : false, - "noyield" : false, - "browser" : true, - "jasmine" : true, - "browserify" : true, - "strict" : true, - "devel" : true, - "jquery" : false, - "node" : true, - "globals" : { - "jest" : true - } -} diff --git a/.node-version b/.node-version deleted file mode 100644 index fa1ba04..0000000 --- a/.node-version +++ /dev/null @@ -1 +0,0 @@ -4.4.5 diff --git a/.nvmrc b/.nvmrc deleted file mode 100644 index fa1ba04..0000000 --- a/.nvmrc +++ /dev/null @@ -1 +0,0 @@ -4.4.5 diff --git a/.python-version b/.python-version deleted file mode 100644 index d5c0c99..0000000 --- a/.python-version +++ /dev/null @@ -1 +0,0 @@ -3.5.1 diff --git a/.ruby-version b/.ruby-version deleted file mode 100644 index 276cbf9..0000000 --- a/.ruby-version +++ /dev/null @@ -1 +0,0 @@ -2.3.0 diff --git a/.rvmrc b/.rvmrc deleted file mode 100644 index 276cbf9..0000000 --- a/.rvmrc +++ /dev/null @@ -1 +0,0 @@ -2.3.0 diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 9565d13..0000000 --- a/.travis.yml +++ /dev/null @@ -1,21 +0,0 @@ -sudo: false -language: node_js -node_js: - - "4.4.5" -env: - - CXX=g++-4.8 -addons: - apt: - sources: - - ubuntu-toolchain-r-test - packages: - - g++-4.8 -branches: - except: - - gh-pages -before_script: - - npm install -g gulp@3.9.1 -script: - - make coverage -after_script: - - if [[ `node --version` == *v4.4.5* ]]; then cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js; fi diff --git a/README.md b/README.md deleted file mode 100644 index 18285fd..0000000 --- a/README.md +++ /dev/null @@ -1,52 +0,0 @@ -# StoryGenerator - CBGA India's Budget Analysis Tool - -| Branch | Build | Coverage | -|-----------|:-------:|:---------:| -|Development| [![Build Status development](https://travis-ci.org/cbgaindia/story-generator.svg?branch=development)](https://travis-ci.org/cbgaindia/story-generator) | [![Coverage Status](https://coveralls.io/repos/github/cbgaindia/story-generator/badge.svg?branch=development)](https://coveralls.io/github/cbgaindia/story-generator?branch=development) | -|Master | [![Build Status](https://travis-ci.org/cbgaindia/story-generator.svg?branch=master)](https://travis-ci.org/cbgaindia/story-generator) | [![Coverage Status](https://coveralls.io/repos/github/cbgaindia/story-generator/badge.svg?branch=master)](https://coveralls.io/github/cbgaindia/story-generator?branch=master) | -|Production | [![Build Status](https://travis-ci.org/cbgaindia/story-generator.svg?branch=production)](https://travis-ci.org/cbgaindia/story-generator) | [![Coverage Status](https://coveralls.io/repos/github/cbgaindia/story-generator/badge.svg?branch=production)](https://coveralls.io/github/cbgaindia/story-generator?branch=production) | - -## Getting Started - -### Prerequisites -- NodeJS (v4.4.3) (prefer using [nodenv](https://github.com/nodenv/nodenv) or [nvm](https://github.com/creationix/nvm) to switch node versions) -- `Make` & `GNU Base Utilities` to run server, release and deploy scripts - -### Tech Stack -- Frontend (serves the dashboard on github pages) - - Browserify + BabelJS - to compose app - - ReactJS - modularize app in components and act as bare-bones web framework - - Jest - testing framework for frontend -- Backend (serves the tooling for data transformation `./bin/transform`) - - NodeJS + CSVParser - parses csv to json for better bucketing - - Mocha - testing framework for backend - -## Development Setup: -- `make shrinkwrap` (for OSX) or `make npm` (for Linux) to install project dependencies -- `make tests` Run combined tests (backend + frontend) - - For frontend tests, run `npm run assets-tests` - - For backend tests, run `npm run tests` -- `make coverage` Run combined tests with coverage (backend + frontend) - - For frontend tests, run `npm run assets-coverage` - - For backend tests, run `npm run coverage` -- `make run` to run project on default server `localhost` on port `4001` [link](http://localhost:4001) - -## Building -- `make local-release` to release locally & run it using `./bin/server` -- `make deploy` to do a production release directly on github-pages (make sure to run it from `production` branch) - -## Contributing -- Fork and submit pull requests (standard GitHub OSS house rules) -- We follow [Airbnb JavaScript Style Guide](https://github.com/airbnb/javascript). Please run `make lint` locally - before submitting a pull request and make sure that there are no warnings or errors. -- Thats it. _Happy Hacking!_ - -## Contributors -- [Navya B. Raju](https://github.com/navsie) -- [Noopur Varma](https://github.com/noopurvarma) -- [Ranjeet Singh](https://github.com/raeoks) -- [Suchismita Naik](https://github.com/SuchismitaNaik) -- [Teja Srivastav](https://github.com/tejasrivastav) -- [Chetana Amancharla](https://github.com/archetana) - -_PS: We always try hard to improve this documentation. If you have any suggestions or contributions, please let us know._ diff --git a/assets/fonts/pt-sans/bold-italic/PTS76F-webfont.eot b/assets/fonts/pt-sans/bold-italic/PTS76F-webfont.eot deleted file mode 100644 index 0cb05d7..0000000 Binary files a/assets/fonts/pt-sans/bold-italic/PTS76F-webfont.eot and /dev/null differ diff --git a/assets/fonts/pt-sans/bold-italic/PTS76F-webfont.svg b/assets/fonts/pt-sans/bold-italic/PTS76F-webfont.svg deleted file mode 100644 index 6b28d20..0000000 --- a/assets/fonts/pt-sans/bold-italic/PTS76F-webfont.svg +++ /dev/null @@ -1,782 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/assets/fonts/pt-sans/bold-italic/PTS76F-webfont.ttf b/assets/fonts/pt-sans/bold-italic/PTS76F-webfont.ttf deleted file mode 100644 index d08b41c..0000000 Binary files a/assets/fonts/pt-sans/bold-italic/PTS76F-webfont.ttf and /dev/null differ diff --git a/assets/fonts/pt-sans/bold-italic/PTS76F-webfont.woff b/assets/fonts/pt-sans/bold-italic/PTS76F-webfont.woff deleted file mode 100644 index bc13af4..0000000 Binary files a/assets/fonts/pt-sans/bold-italic/PTS76F-webfont.woff and /dev/null differ diff --git a/assets/fonts/pt-sans/bold/PTS75F-webfont.eot b/assets/fonts/pt-sans/bold/PTS75F-webfont.eot deleted file mode 100644 index 225d681..0000000 Binary files a/assets/fonts/pt-sans/bold/PTS75F-webfont.eot and /dev/null differ diff --git a/assets/fonts/pt-sans/bold/PTS75F-webfont.svg b/assets/fonts/pt-sans/bold/PTS75F-webfont.svg deleted file mode 100644 index 837b146..0000000 --- a/assets/fonts/pt-sans/bold/PTS75F-webfont.svg +++ /dev/null @@ -1,849 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/assets/fonts/pt-sans/bold/PTS75F-webfont.ttf b/assets/fonts/pt-sans/bold/PTS75F-webfont.ttf deleted file mode 100644 index 2eb09ea..0000000 Binary files a/assets/fonts/pt-sans/bold/PTS75F-webfont.ttf and /dev/null differ diff --git a/assets/fonts/pt-sans/bold/PTS75F-webfont.woff b/assets/fonts/pt-sans/bold/PTS75F-webfont.woff deleted file mode 100644 index 700e7eb..0000000 Binary files a/assets/fonts/pt-sans/bold/PTS75F-webfont.woff and /dev/null differ diff --git a/assets/fonts/pt-sans/caption-bold/PTC75F-webfont.eot b/assets/fonts/pt-sans/caption-bold/PTC75F-webfont.eot deleted file mode 100644 index c590af3..0000000 Binary files a/assets/fonts/pt-sans/caption-bold/PTC75F-webfont.eot and /dev/null differ diff --git a/assets/fonts/pt-sans/caption-bold/PTC75F-webfont.svg b/assets/fonts/pt-sans/caption-bold/PTC75F-webfont.svg deleted file mode 100644 index b42370e..0000000 --- a/assets/fonts/pt-sans/caption-bold/PTC75F-webfont.svg +++ /dev/null @@ -1,820 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/assets/fonts/pt-sans/caption-bold/PTC75F-webfont.ttf b/assets/fonts/pt-sans/caption-bold/PTC75F-webfont.ttf deleted file mode 100644 index e9fa3ee..0000000 Binary files a/assets/fonts/pt-sans/caption-bold/PTC75F-webfont.ttf and /dev/null differ diff --git a/assets/fonts/pt-sans/caption-bold/PTC75F-webfont.woff b/assets/fonts/pt-sans/caption-bold/PTC75F-webfont.woff deleted file mode 100644 index 2bc2304..0000000 Binary files a/assets/fonts/pt-sans/caption-bold/PTC75F-webfont.woff and /dev/null differ diff --git a/assets/fonts/pt-sans/caption-regular/PTC55F-webfont.eot b/assets/fonts/pt-sans/caption-regular/PTC55F-webfont.eot deleted file mode 100644 index a196457..0000000 Binary files a/assets/fonts/pt-sans/caption-regular/PTC55F-webfont.eot and /dev/null differ diff --git a/assets/fonts/pt-sans/caption-regular/PTC55F-webfont.svg b/assets/fonts/pt-sans/caption-regular/PTC55F-webfont.svg deleted file mode 100644 index 4277735..0000000 --- a/assets/fonts/pt-sans/caption-regular/PTC55F-webfont.svg +++ /dev/null @@ -1,683 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/assets/fonts/pt-sans/caption-regular/PTC55F-webfont.ttf b/assets/fonts/pt-sans/caption-regular/PTC55F-webfont.ttf deleted file mode 100644 index 74877d7..0000000 Binary files a/assets/fonts/pt-sans/caption-regular/PTC55F-webfont.ttf and /dev/null differ diff --git a/assets/fonts/pt-sans/caption-regular/PTC55F-webfont.woff b/assets/fonts/pt-sans/caption-regular/PTC55F-webfont.woff deleted file mode 100644 index 429074f..0000000 Binary files a/assets/fonts/pt-sans/caption-regular/PTC55F-webfont.woff and /dev/null differ diff --git a/assets/fonts/pt-sans/italic/PTS56F-webfont.eot b/assets/fonts/pt-sans/italic/PTS56F-webfont.eot deleted file mode 100644 index 12a0172..0000000 Binary files a/assets/fonts/pt-sans/italic/PTS56F-webfont.eot and /dev/null differ diff --git a/assets/fonts/pt-sans/italic/PTS56F-webfont.svg b/assets/fonts/pt-sans/italic/PTS56F-webfont.svg deleted file mode 100644 index 5553d69..0000000 --- a/assets/fonts/pt-sans/italic/PTS56F-webfont.svg +++ /dev/null @@ -1,619 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/assets/fonts/pt-sans/italic/PTS56F-webfont.ttf b/assets/fonts/pt-sans/italic/PTS56F-webfont.ttf deleted file mode 100644 index b12d513..0000000 Binary files a/assets/fonts/pt-sans/italic/PTS56F-webfont.ttf and /dev/null differ diff --git a/assets/fonts/pt-sans/italic/PTS56F-webfont.woff b/assets/fonts/pt-sans/italic/PTS56F-webfont.woff deleted file mode 100644 index 395efa1..0000000 Binary files a/assets/fonts/pt-sans/italic/PTS56F-webfont.woff and /dev/null differ diff --git a/assets/fonts/pt-sans/narrow-bold/PTN77F-webfont.eot b/assets/fonts/pt-sans/narrow-bold/PTN77F-webfont.eot deleted file mode 100644 index f31469f..0000000 Binary files a/assets/fonts/pt-sans/narrow-bold/PTN77F-webfont.eot and /dev/null differ diff --git a/assets/fonts/pt-sans/narrow-bold/PTN77F-webfont.svg b/assets/fonts/pt-sans/narrow-bold/PTN77F-webfont.svg deleted file mode 100644 index ec7c071..0000000 --- a/assets/fonts/pt-sans/narrow-bold/PTN77F-webfont.svg +++ /dev/null @@ -1,828 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/assets/fonts/pt-sans/narrow-bold/PTN77F-webfont.ttf b/assets/fonts/pt-sans/narrow-bold/PTN77F-webfont.ttf deleted file mode 100644 index 3ccbbca..0000000 Binary files a/assets/fonts/pt-sans/narrow-bold/PTN77F-webfont.ttf and /dev/null differ diff --git a/assets/fonts/pt-sans/narrow-bold/PTN77F-webfont.woff b/assets/fonts/pt-sans/narrow-bold/PTN77F-webfont.woff deleted file mode 100644 index a80b0ea..0000000 Binary files a/assets/fonts/pt-sans/narrow-bold/PTN77F-webfont.woff and /dev/null differ diff --git a/assets/fonts/pt-sans/narrow-regular/PTN57F-webfont.eot b/assets/fonts/pt-sans/narrow-regular/PTN57F-webfont.eot deleted file mode 100644 index 5dcba8f..0000000 Binary files a/assets/fonts/pt-sans/narrow-regular/PTN57F-webfont.eot and /dev/null differ diff --git a/assets/fonts/pt-sans/narrow-regular/PTN57F-webfont.svg b/assets/fonts/pt-sans/narrow-regular/PTN57F-webfont.svg deleted file mode 100644 index f9e3ae7..0000000 --- a/assets/fonts/pt-sans/narrow-regular/PTN57F-webfont.svg +++ /dev/null @@ -1,754 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/assets/fonts/pt-sans/narrow-regular/PTN57F-webfont.ttf b/assets/fonts/pt-sans/narrow-regular/PTN57F-webfont.ttf deleted file mode 100644 index abfe5a5..0000000 Binary files a/assets/fonts/pt-sans/narrow-regular/PTN57F-webfont.ttf and /dev/null differ diff --git a/assets/fonts/pt-sans/narrow-regular/PTN57F-webfont.woff b/assets/fonts/pt-sans/narrow-regular/PTN57F-webfont.woff deleted file mode 100644 index 26b2023..0000000 Binary files a/assets/fonts/pt-sans/narrow-regular/PTN57F-webfont.woff and /dev/null differ diff --git a/assets/fonts/pt-sans/regular/PTS55F-webfont.eot b/assets/fonts/pt-sans/regular/PTS55F-webfont.eot deleted file mode 100644 index 87356d4..0000000 Binary files a/assets/fonts/pt-sans/regular/PTS55F-webfont.eot and /dev/null differ diff --git a/assets/fonts/pt-sans/regular/PTS55F-webfont.svg b/assets/fonts/pt-sans/regular/PTS55F-webfont.svg deleted file mode 100644 index ffe8066..0000000 --- a/assets/fonts/pt-sans/regular/PTS55F-webfont.svg +++ /dev/null @@ -1,693 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/assets/fonts/pt-sans/regular/PTS55F-webfont.ttf b/assets/fonts/pt-sans/regular/PTS55F-webfont.ttf deleted file mode 100644 index 2a419fe..0000000 Binary files a/assets/fonts/pt-sans/regular/PTS55F-webfont.ttf and /dev/null differ diff --git a/assets/fonts/pt-sans/regular/PTS55F-webfont.woff b/assets/fonts/pt-sans/regular/PTS55F-webfont.woff deleted file mode 100644 index c29e195..0000000 Binary files a/assets/fonts/pt-sans/regular/PTS55F-webfont.woff and /dev/null differ diff --git a/assets/fonts/vendor/bootstrap/glyphicons-halflings-regular.eot b/assets/fonts/vendor/bootstrap/glyphicons-halflings-regular.eot deleted file mode 100644 index b93a495..0000000 Binary files a/assets/fonts/vendor/bootstrap/glyphicons-halflings-regular.eot and /dev/null differ diff --git a/assets/fonts/vendor/bootstrap/glyphicons-halflings-regular.svg b/assets/fonts/vendor/bootstrap/glyphicons-halflings-regular.svg deleted file mode 100644 index 94fb549..0000000 --- a/assets/fonts/vendor/bootstrap/glyphicons-halflings-regular.svg +++ /dev/null @@ -1,288 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/assets/fonts/vendor/bootstrap/glyphicons-halflings-regular.ttf b/assets/fonts/vendor/bootstrap/glyphicons-halflings-regular.ttf deleted file mode 100644 index 1413fc6..0000000 Binary files a/assets/fonts/vendor/bootstrap/glyphicons-halflings-regular.ttf and /dev/null differ diff --git a/assets/fonts/vendor/bootstrap/glyphicons-halflings-regular.woff b/assets/fonts/vendor/bootstrap/glyphicons-halflings-regular.woff deleted file mode 100644 index 9e61285..0000000 Binary files a/assets/fonts/vendor/bootstrap/glyphicons-halflings-regular.woff and /dev/null differ diff --git a/assets/fonts/vendor/bootstrap/glyphicons-halflings-regular.woff2 b/assets/fonts/vendor/bootstrap/glyphicons-halflings-regular.woff2 deleted file mode 100644 index 64539b5..0000000 Binary files a/assets/fonts/vendor/bootstrap/glyphicons-halflings-regular.woff2 and /dev/null differ diff --git a/assets/images/cbga_logo.png b/assets/images/cbga_logo.png deleted file mode 100644 index 16dd154..0000000 Binary files a/assets/images/cbga_logo.png and /dev/null differ diff --git a/assets/javascripts/__tests__/home_test.js b/assets/javascripts/__tests__/home_test.js deleted file mode 100644 index e47c376..0000000 --- a/assets/javascripts/__tests__/home_test.js +++ /dev/null @@ -1,14 +0,0 @@ -"use strict"; - -jest.unmock("../pages/home"); - -var React = require("react"), - ReactDOM = require("react-dom"), - TestUtils = require("react-addons-test-utils"), - HomePage = require("../pages/home").Component; - -describe("HomePage", function () { - it("changes the text after click", function () { - // NOOP - }); -}); diff --git a/assets/javascripts/application.js b/assets/javascripts/application.js deleted file mode 100644 index 3690bee..0000000 --- a/assets/javascripts/application.js +++ /dev/null @@ -1,11 +0,0 @@ -"use strict"; - -var $ = require("jquery"), - homePage = require("./pages/home").DOM; - -window.jQuery = $; - -$(function () { - require("bootstrap"); - homePage("main-container", {}); -}); diff --git a/assets/javascripts/components/.Rhistory b/assets/javascripts/components/.Rhistory deleted file mode 100644 index e69de29..0000000 diff --git a/assets/javascripts/components/indicators_selector.js b/assets/javascripts/components/indicators_selector.js deleted file mode 100644 index f859306..0000000 --- a/assets/javascripts/components/indicators_selector.js +++ /dev/null @@ -1,60 +0,0 @@ -"use strict"; - -var React = require("react"), - ReactDOM = require("react-dom"), - _ = require("lodash"), - Fuse = require("fuse.js"); - -var IndicatorsSelectorTemplate = require("../templates/components/indicators_selector.jsx"); - -var IndicatorsSelector = React.createClass({ - - getInitialState: function () { - return { - indicators : this.props.indicators, - selectedIndicator: null, - indicatorSearch : new Fuse(this.props.indicators, {keys: ["name"]}) - }; - }, - - componentDidMount: function () { - var self = this; - self.setState({ - selectedIndicator: _.find(self.props.indicators, function (indicator) { - return _.eq(self.props.location.query.indicator, indicator.slug); - }) - }); - self.onIndicatorSearch = _.debounce(self.onIndicatorSearch, 300); - }, - - getIndicatorLink: function (indicator) { - return { - pathname: this.props.location.pathname, - query : { - indicator: indicator.slug, - states : _.get(this.props, "location.query.states", "") - } - }; - }, - - onIndicatorSearch: function (keyword) { - this.setState({ - indicators: _.isEmpty(keyword) ? this.props.indicators : this.state.indicatorSearch.search(keyword) - }); - }, - - onIndicatorSelection: function (indicator) { - if (!_.eq(this.props.location.query.indicator, indicator.slug)) { - this.setState({ - selectedIndicator: indicator - }); - } - }, - - render: function () { - return IndicatorsSelectorTemplate(this); - } - -}); - -module.exports = IndicatorsSelector; diff --git a/assets/javascripts/components/map.js b/assets/javascripts/components/map.js deleted file mode 100644 index 5f05f57..0000000 --- a/assets/javascripts/components/map.js +++ /dev/null @@ -1,182 +0,0 @@ -"use strict"; -var React = require("react"), - ReactDOM = require("react-dom"), - L = require("leaflet"), - topojson = require("topojson"), - $ = require("jquery"), - chroma =require("chroma-js"), - _ =require("lodash"); - -var config = {}; -var DATA = require("../utils/data").DATA; -var yearsData = [{"from" :"2012", - "to" :"2013", - "duration":"2012-13"}, - {"from" :"2013", - "to" :"2014", - "duration":"2013-14"}, - {"from" :"2014", - "to" :"2015", - "duration":"2014-15"}, - {"from" :"2015", - "to" :"2016", - "duration":"2015-16"}]; -// using webpack json loader we can import our topojson file like this -var topodata = require("../../../data/india_states.topo.json"); - -L.TopoJSON = L.GeoJSON.extend({ - addData: function(jsonData) { - if (jsonData.type === "Topology") { - for (var key in jsonData.objects) { - var geojson = topojson.feature(jsonData, jsonData.objects[key]); - L.GeoJSON.prototype.addData.call(this, geojson); - } - } - else { - L.GeoJSON.prototype.addData.call(this, jsonData); - } - } - }); -var colorScale = chroma -.scale(["#D5E3FF", "#003171"]); - -var MapTemplate = require("../templates/components/map.jsx"); - -var MapLeaflet = React.createClass( - { - getInitialState: function() { - return { - years : yearsData, - yearchosen : {"yearchosen":0}, - allocations : {}, - topoLayer : null, - topojson : null, - statetooltip :{}, - duration :{"duration":yearsData[0].duration} - }; - }, - - // a variable to store our instance of L.map - map: null, - - componentWillMount: function() { - // code to run just before adding the map - }, - - componentDidMount: function() { - // create the Leaflet map object - if (!this.map) { - this.init(this.getID()); - } - }, - - componentDidUpdate:function(prevProps, prevState) { - - }, - - componentWillUnmount: function() { - this.map.remove(); - }, - - - getID: function() { - // get the "id" attribute of our component's DOM node - return ReactDOM.findDOMNode(this); - }, - init: function(id) { - if (this.map) { - return; - } - - this.state.topojson = topodata; - this.map = L.map(id,{maxZoom:6,minZoom:4}); - this.map.setView([23.59, 81.96], 5); - - var tileLayer = L.tileLayer("https://api.mapbox.com/styles/v1/rachetana/ciu45yngf00aj2ho8vvno6kum/tiles/256/{z}/{x}/{y}?access_token=pk.eyJ1IjoicmFjaGV0YW5hIiwiYSI6ImNpc3g2cnlmZTA4NW0yeXBnMDZiNHUyMWMifQ.XCAmIR_6wdmkYDOBYrGk9Q"); - tileLayer.addTo(this.map); - - var topoLayer = new L.TopoJSON(); - topoLayer.addData(this.state.topojson); - topoLayer.addTo(this.map); - topoLayer.eachLayer(this.handleLayer); - - - - }, - handleLayer:function(layer){ - var randomValue = Math.random(), - fillColor = colorScale(randomValue).hex(); - - layer.setStyle({ - fillColor : fillColor, - fillOpacity: 0.75, - color:"#555", - weight:1, - opacity:0.5 - }); - var _self = this; - - var targetlayer = layer; - layer.on("mouseover",function(e){ - _self.enterLayer(this); - }); - layer.on("mouseout",function(e){ - _self.leaveLayer(this); - }); - }, - getStateIndicatorValue:function(state,indicator,years){ - var stateoutput = _.chain(DATA) - .find(function(item){return item.name===state; }) - .valueOf(); - if(_.isEmpty(stateoutput)){ - return; - } - var indicatordetails = _.chain(stateoutput.indicators) - .find(function(item){return item.slug===indicator;}) - .valueOf(); - var indTimeFrame = _.chain(indicatordetails.budgets) - .find(function(item){return (item.years.from===years.from && item.years.to === years.to);}) - .valueOf(); - return indTimeFrame.allocations[0]; - }, - enterLayer:function(layer){ - var getState = layer.feature.properties.NAME_1; - var getYears = this.state.years[this.state.yearchosen.yearchosen]; - this.setState({ - statetooltip:{"name":getState}, - allocations:this.getStateIndicatorValue(getState,this.props.indicator.slug,getYears) - }); - layer.bringToFront(); - layer.setStyle({ - weight:2, - opacity: 1 - }); - }, - leaveLayer:function(layer){ - layer.bringToBack(); - layer.setStyle({ - weight:1, - opacity:0.5 - }); - - }, - handleClick(yearchosenvalue){ - this.setState({ - duration:{"duration":this.state.years[yearchosenvalue]}, - yearchosen:{"yearchosen":yearchosenvalue} - }); - var getState = this.state.statetooltip.name; - var getYears = this.state.years[this.state.yearchosen.yearchosen]; - this.setState({ - statetooltip:{"name":getState}, - duration:{"duration":getYears.duration}, - allocations:this.getStateIndicatorValue(getState,this.props.indicator.slug,getYears) - }); - }, - render: function () { - return MapTemplate(this); - } - } -); - -module.exports = MapLeaflet; \ No newline at end of file diff --git a/assets/javascripts/components/report.js b/assets/javascripts/components/report.js deleted file mode 100644 index e2b09b7..0000000 --- a/assets/javascripts/components/report.js +++ /dev/null @@ -1,178 +0,0 @@ -"use strict"; - -var React = require("react"), - ReactDOM = require("react-dom"), - _ = require("lodash"); - -var DATA = JSON.parse(JSON.stringify(require("../utils/data").DATA)); -var COLORS = require("../utils/data").COLORS; -var wrappedColors = _(COLORS); - - -var ReportTemplate = require("../templates/components/report.jsx"); - -var Report = React.createClass({ - - getInitialState: function () { - return { - selectedStates : [], - selectedIndicator: {}, - config : {} - }; - }, - - componentDidMount: function () { - this.reinitialize(this.props); - }, - - componentWillReceiveProps: function (nextProps) { - this.reinitialize(nextProps); - }, - - reinitialize: function (props) { - var self = this, - selectedStatesSlugs = self.getSelectedStatesSlug(props), - selectedStates = _.chain(props.states) - .filter(function (state) { - return _.includes(selectedStatesSlugs, state.slug); - }) - .valueOf(), - selectedIndicator = _.find(props.indicators, function (indicator) { - return _.eq(props.location.query.indicator, indicator.slug); - }); - self.setState({ - selectedStates : selectedStates, - selectedIndicator: selectedIndicator, - config : this.generateConfig(selectedStates, selectedIndicator) - }); - }, - - getSelectedStatesSlug: function (props) { - return _.chain(props) - .get("location.query.states", "") - .split("|") - .filter(function (state) { - return !_.isEmpty(state); - }) - .valueOf(); - }, - - getTypeOper:function(inputvalue,inputtype){ - var typevalue = inputvalue.allocations.filter(function(allocation){return allocation.type === inputtype;})[0]; - if(!typevalue){ - return 0; - } - return typevalue.amount; - }, - - transformData: function (budgets) { - var self = this; - if (budgets && budgets.length === 1) { - return _.map(budgets[0].indicators[0].budgets, function (value) { - return { - from: value.years.from, - to: value.years.to, - actuals: self.getTypeOper(value, "Actuals"), - re: self.getTypeOper(value, "RE"), - be: self. getTypeOper(value, "BE") - }; - }); - } - - return _.flatten(_.map(budgets, function (value) { - return _.map(value.indicators[0].budgets,function(allocation){ - return _.assign({ - state: value.name, - slug : value.slug - },{ - from : allocation.years.from, - to : allocation.years.to, - [value.slug] : self.getTypeOper(allocation,"BE") - }); - }); - })); - }, - - getChartSeries: function (selectedStates) { - wrappedColors = _(COLORS); - var self = this, - style = { - strokeWidth : 2, - strokeOpacity: 0.8, - fillOpacity : 0.9 - }; - if (_.size(selectedStates) > 1) { - return _.map(selectedStates, function (selectedState) { - return { - field: selectedState.slug, - name : selectedState.name, - color: wrappedColors.next().value, - style: style - }; - }); - } - return [{ - field: "be", - name : "Budget Estimate", - color: wrappedColors.next().value, - style: style - }, { - field: "re", - name : "Revised Estimate", - color: wrappedColors.next().value, - style: style - }, { - field: "actuals", - name : "Actuals", - color: wrappedColors.next().value, - style: style - }]; - }, - - generateConfig: function (selectedStates, selectedIndicator) { - var budgets = this.getBudgets(selectedStates, selectedIndicator), - budget = _.first(budgets), - data = this.transformData(budgets), - chartSeries = this.getChartSeries(selectedStates); - if (_.size(budgets) < 0) { - return []; - } - return { - xAxisLabel : _.get(budget, "name", ""), - yAxisLabel : _.get(budget, "indicators.unit", ""), - y0 : 100000, - data : data, - chartSeries: chartSeries - }; - }, - - getBudgets: function (selectedStates, selectedIndicator) { - - if (_.isEmpty(selectedStates) || _.isEmpty(selectedIndicator)) { - return []; - } - return _.chain(DATA) - .filter(function (state) { - return _.includes(_.map(selectedStates, function (item) { - return item.slug; - }), state.slug); - }) - .map(function (state) { - return _.assign(state, { - indicators: _.chain(state) - .get("indicators", []) - .filter(function (indicator) { - return _.eq(selectedIndicator.slug, indicator.slug); - }) - .valueOf() - }); - }) - .valueOf(); - }, - render: function () { - return ReportTemplate(this); - } - -}); - -module.exports = Report; diff --git a/assets/javascripts/components/report_footer.js b/assets/javascripts/components/report_footer.js deleted file mode 100644 index 71f1d70..0000000 --- a/assets/javascripts/components/report_footer.js +++ /dev/null @@ -1,47 +0,0 @@ -var React = require("react"), - DOMToImage = require("dom-to-image"); - -var ReportFooterTemplate = require("../templates/components/report_footer.jsx"); - -var ReportFooter = React.createClass({ - - onDownload: function () { - var report = document.querySelector("#main-container > div > div.content > div.content-body > div.report"); - var saveReport = function(blob,name){ - var url = URL.createObjectURL(blob); - - // Test for download link support - if( "download" in document.createElement('a') ){ - - var a = document.createElement('a'); - a.setAttribute('href', url); - a.setAttribute('download', name); - - // Create Click event - var clickEvent = document.createEvent ("MouseEvent"); - clickEvent.initMouseEvent ("click", true, true, window, 0, - clickEvent.screenX, clickEvent.screenY, clickEvent.clientX, clickEvent.clientY, - clickEvent.ctrlKey, clickEvent.altKey, clickEvent.shiftKey, clickEvent.metaKey, - 0, null); - - // dispatch click event to simulate download - a.dispatchEvent (clickEvent); - - } - else{ - // fallover, open resource in new tab. - window.open(url, '_blank', ''); - } - }; - DOMToImage.toBlob(report) - .then(function (blob) { - saveReport(blob, 'report.png'); - }); - }, - - render: function () { - return ReportFooterTemplate(this); - } -}) - -module.exports = ReportFooter; \ No newline at end of file diff --git a/assets/javascripts/components/states_selector.js b/assets/javascripts/components/states_selector.js deleted file mode 100644 index 59c380b..0000000 --- a/assets/javascripts/components/states_selector.js +++ /dev/null @@ -1,123 +0,0 @@ -"use strict"; - -var React = require("react"), - ReactDOM = require("react-dom"), - _ = require("lodash"), - Fuse = require("fuse.js"); - -var StatesSelectorTemplate = require("../templates/components/states_selector.jsx"); - -var StatesSelector = React.createClass({ - - getDefaultProps: function () { - return { - maximumStatesCount: 5 - }; - }, - - getInitialState: function () { - return { - states : this.props.states, - selectedStates: [], - stateSearch : new Fuse(this.props.states, { - keys: ["name"] - }) - }; - }, - - componentDidMount: function () { - var self = this, - selectedStatesSlugs = self.getSelectedStatesSlug(); - self.setState({ - selectedStates: _.chain(self.props.states) - .filter(function (state) { - return _.includes(selectedStatesSlugs, state.slug); - }) - .valueOf() - }); - self.onStateSearch = _.debounce(self.onStateSearch, 300); - }, - - getSelectedStatesSlug: function () { - return _.chain(this.props) - .get("location.query.states", "") - .split("|") - .filter(function (state) { - return !_.isEmpty(state); - }) - .valueOf(); - }, - - canAddState: function () { - return (_.size(this.state.selectedStates) < this.props.maximumStatesCount); - }, - - addStateLink: function (selectedState) { - var states = _.chain(this.props) - .get("location.query.states", "") - .split("|") - .filter(function (state) { - return !_.isEmpty(state); - }) - .valueOf(); - if (this.canAddState()) { - states = _.concat(states, _.get(selectedState, "slug", "")); - } - return { - pathname: this.props.location.pathname, - query : { - indicator: this.props.location.query.indicator, - states : _.chain(states) - .uniq() - .join("|") - .valueOf() - } - }; - }, - - onStateAddition: function (state) { - if (!_.includes(this.getSelectedStatesSlug(), state.slug) && this.canAddState()) { - this.setState({ - selectedStates: _.concat(this.state.selectedStates, state) - }); - } - }, - - removeStateLink: function (state) { - return { - pathname: this.props.location.pathname, - query : { - indicator: this.props.location.query.indicator, - states : _.chain(this.props) - .get("location.query.states", "") - .split("|") - .filter(function (state) { - return !_.isEmpty(state); - }) - .pull(_.get(state, "slug")) - .uniq() - .join("|") - .valueOf() - } - }; - }, - - onStateRemoval: function (state) { - this.setState({ - selectedStates: _.pull(this.state.selectedStates, state) - }); - }, - - onStateSearch: function (keyword) { - this.setState({ - states: _.isEmpty(keyword) ? this.props.states : this.state.stateSearch.search(keyword) - }); - }, - - render: function () { - return StatesSelectorTemplate(this); - } - -}); - -module.exports = StatesSelector; diff --git a/assets/javascripts/components/visualization.js b/assets/javascripts/components/visualization.js deleted file mode 100644 index bb0580c..0000000 --- a/assets/javascripts/components/visualization.js +++ /dev/null @@ -1,43 +0,0 @@ -"use strict"; - -var React = require("react"), - _ = require("lodash"), - $ = require("jquery"); - -var VisualizationTemplate = require("../templates/components/visualization.jsx"); - -var Visualization = React.createClass({ - - getInitialState: function () { - var width = $(".mk-viz").width(); - var height = $(".mk-viz").height(); - return { - selectedStates : [], - selectedIndicator: {}, - containerWidth: width || 800, - containerHeight: height || 400 - }; - }, - handleResize: function(e) { - var width = $(".mk-viz").width(); - var height = $(".mk-viz").height(); - this.setState({ - containerWidth: width, - containerHeight: height - }); - }, - - componentWillUnmount: function() { - window.removeEventListener("resize", this.handleResize); - }, - componentDidMount: function () { - window.addEventListener("resize", this.handleResize); - - }, - render: function () { - return VisualizationTemplate(this); - } - -}); - -module.exports = Visualization; diff --git a/assets/javascripts/pages/embed.js b/assets/javascripts/pages/embed.js deleted file mode 100644 index 9bc8421..0000000 --- a/assets/javascripts/pages/embed.js +++ /dev/null @@ -1,46 +0,0 @@ -"use strict"; - -var React = require("react"), - _ = require("lodash"); -var DATA = require("../utils/data").DATA; -var Report = require("../components/report"); - -var Embed = React.createClass({ - getInitialState: function () { - return { - states : [], - indicators : [] - }; - }, - - componentWillMount: function () { - var attributes = ["name", "slug"], - indicators = _.chain(DATA) - .first() - .get("indicators") - .map(function (indicator) { - return _.pick(indicator, attributes); - }) - .valueOf(), - states = _.chain(DATA) - .map(function (state) { - return _.pick(state, attributes); - }) - .valueOf(); - this.setState({ - states : states, - indicators : indicators - }); - }, - render: function(){ - return ( - - ) - } -}); - -module.exports = Embed; \ No newline at end of file diff --git a/assets/javascripts/pages/home.js b/assets/javascripts/pages/home.js deleted file mode 100644 index d1b1d93..0000000 --- a/assets/javascripts/pages/home.js +++ /dev/null @@ -1,73 +0,0 @@ -"use strict"; - -var React = require("react"), - ReactDOM = require("react-dom"), - ReactRouter = require("react-router"), - _ = require("lodash"); - -var Router = ReactRouter.Router, - Route = ReactRouter.Route, - hashHistory = ReactRouter.hashHistory; - -var DATA = require("../utils/data").DATA; - -var Embed = require("./embed.js"); -var HomePageTemplate = require("../templates/pages/home.jsx"); - -var HomePage = React.createClass({ - - getInitialState: function () { - return { - states : [], - indicators : [], - showSideNavigation: true - }; - }, - - componentWillMount: function () { - var attributes = ["name", "slug"], - indicators = _.chain(DATA) - .first() - .get("indicators") - .map(function (indicator) { - return _.pick(indicator, attributes); - }) - .valueOf(), - states = _.chain(DATA) - .map(function (state) { - return _.pick(state, attributes); - }) - .valueOf(); - this.setState({ - states : states, - indicators : indicators, - showSideNavigation: true - }); - }, - - toggleSideNavigation: function () { - this.setState({ - showSideNavigation: !this.state.showSideNavigation - }); - }, - - render: function () { - return HomePageTemplate(this); - } -}); - -/* istanbul ignore next */ -var homePage = function (container) { - return ReactDOM.render( - - - - - , - document.getElementById(container)); -}; - -module.exports = { - Component: HomePage, - DOM : homePage -}; diff --git a/assets/javascripts/templates/components/indicators_selector.jsx b/assets/javascripts/templates/components/indicators_selector.jsx deleted file mode 100644 index d093990..0000000 --- a/assets/javascripts/templates/components/indicators_selector.jsx +++ /dev/null @@ -1,55 +0,0 @@ -"use strict"; - -var React = require("react"), - ReactDOM = require("react-dom"), - Link = require("react-router").Link; - -var listOfIndicator = function(self){ - if(_.isEmpty(self.state.indicators)){ - return ( - - ); - } - return ( - - ); -} - -var Template = function (self) { - - return ( - /* jshint ignore:start */ - /* jscs ignore:start */ -
-
- self.onIndicatorSearch(event.target.value)} /> -
-
-
indicators
-
-
- {listOfIndicator(self)} -
- /* jshint ignore:end */ - /* jscs ignore:end */ - ); -}; - -module.exports = Template; diff --git a/assets/javascripts/templates/components/map.jsx b/assets/javascripts/templates/components/map.jsx deleted file mode 100644 index d068280..0000000 --- a/assets/javascripts/templates/components/map.jsx +++ /dev/null @@ -1,94 +0,0 @@ - "use strict" -var React = require("react"), - _ = require('lodash'); - - -var Template=function(self){ - var StateToolTip = function(props){ - if (_.isEmpty(props.statetooltip)){ - return( -
Please select a state from the map
- ) - } - return( -
-
{props.statetooltip}
-
- -
-
- ) - - }; - var AllocationDetails=function(props){ - if(_.isEmpty(props.allocations)){ - return ( - Data unavailable - ) - } - return ( - {props.allocations.amount.length >0 && props.allocations.amount} - ) - }; - - var Timeline = function(props){ - return ( -
    - {props.years.map(function(item,index){ - return ( -
  1. timeChosen(event)}> - - {item.duration} - 1 -
  2. - ); - })} -
- ); - }; - var LegendStep = function(props){ - var legendStep = { - backgroundColor: props.bgColor - }; - return ( -
  • {props.children}
  • - ); - }; - - var timeChosen = function(key){ - key.currentTarget.getElementsByTagName("input")[0].checked = true - var items = key.currentTarget.parentElement.getElementsByTagName("li"); - var i = 0; - for(i=0;i -
    - -
    -
    - -
    -
    -
    -
      - 0 - 20% - 40% - 60% - 80% - 100% -
    -
    -
    - - ) -}; - - -module.exports = Template; \ No newline at end of file diff --git a/assets/javascripts/templates/components/report.jsx b/assets/javascripts/templates/components/report.jsx deleted file mode 100644 index aae2fdb..0000000 --- a/assets/javascripts/templates/components/report.jsx +++ /dev/null @@ -1,74 +0,0 @@ -"use strict"; - -var React = require("react"), - ReactDOM = require("react-dom"), - _ = require("lodash"), - $ = require("jquery"); - -var Visualization = require("../../components/visualization"); -var MapLeaflet = require("../../components/map"); -var ReportFooter = require("../../components/report_footer"); - -var Template = function (self) { - - if (_.isEmpty(self.state.selectedIndicator)) { - return ( -
    - - Please Select an indicator - -
    - ); - } - if (_.isEmpty(self.state.selectedStates)) { - return ( -
    -
    -
    -
    {self.state.selectedIndicator.name}
    -
    -
    -
    -
    Budget Attributes
    -
    - BE - AC - RE -
    -
    -
    -
    -
    - -
    - - -
    - ); - } - return ( -
    -
    -
    -
    {self.state.selectedIndicator.name}
    -
    -
    -
    -
    Budget Attributes
    -
    - BE - AC - RE -
    -
    -
    -
    -
    - -
    - -
    - ); -}; - -module.exports = Template; diff --git a/assets/javascripts/templates/components/report_footer.jsx b/assets/javascripts/templates/components/report_footer.jsx deleted file mode 100644 index a7036f1..0000000 --- a/assets/javascripts/templates/components/report_footer.jsx +++ /dev/null @@ -1,94 +0,0 @@ -"use strict"; -var React = require("react"), - ReactShare = require("react-share"); - -var ShareButtons = ReactShare.ShareButtons; -var FacebookShareButton = ShareButtons.FacebookShareButton; -var TwitterShareButton = ShareButtons.TwitterShareButton; -var GooglePlusShareButton = ShareButtons.GooglePlusShareButton; - -var generateShareIcon = ReactShare.generateShareIcon; -var FacebookIcon = generateShareIcon('facebook'); -var TwitterIcon = generateShareIcon('twitter'); -var GooglePlusIcon = generateShareIcon('google'); - -var url = window.location.href; -var title = "Online Budget Analysis Tool"; - -var tempArray = url.split("#"); -var embedString = "#/embed"; -var embedUrl = tempArray[0] + embedString + tempArray[1]; - -var Template = function(self){ - return ( -
    -
    -
    -
    - source: - link -
    -
    -
    -
    self.onDownload()}> -  |  -
    -
    -  |  -
    -
    -
    - -
      -
    • - - - -
    • -
    • - - - -
    • -
    • - - - -
    • -
    -
    -
    -
    -
    - -
    - ); -} - -module.exports = Template; \ No newline at end of file diff --git a/assets/javascripts/templates/components/states_selector.jsx b/assets/javascripts/templates/components/states_selector.jsx deleted file mode 100644 index 140169b..0000000 --- a/assets/javascripts/templates/components/states_selector.jsx +++ /dev/null @@ -1,89 +0,0 @@ -"use strict"; - -var React = require("react"), - ReactDOM = require("react-dom"), - _ = require("lodash"), - Link = require("react-router").Link; - -var stateSelectionDisplay = function (self) { - if (_.isEmpty(self.state.selectedStates)) { - return ( -
    - No states selected -
    - ); - } - return ( -
    - {self.state.selectedStates.map(function (state) { - return ( -
    -
    - {state.name.charAt(0).toUpperCase()} - {state.name} -
    - - self.onStateRemoval(state)}> - - - - -
    - ); - })} -
    - ); -}; - -var Template = function (self) { - return ( - /* jshint ignore:start */ - /* jscs ignore:start */ -
    -
    -
    -
    States
    -
    - -
      - {self.state.states.map(function (state, stateIndex) { - if (self.canAddState()) { - return ( -
    • - self.onStateAddition(state)}> - {state.name} - -
    • - ); - } - return ( -
    • - - {state.name} - -
    • - ); - })} -
    -
    -
    -
    - {stateSelectionDisplay(self)} -
    -
    -
    - /* jshint ignore:end */ - /* jscs ignore:end */ - ); -}; - -module.exports = Template; diff --git a/assets/javascripts/templates/components/visualization.jsx b/assets/javascripts/templates/components/visualization.jsx deleted file mode 100644 index 4994140..0000000 --- a/assets/javascripts/templates/components/visualization.jsx +++ /dev/null @@ -1,50 +0,0 @@ -"use strict"; - -var React = require("react"), - ReactD3Basic = require("react-d3-basic"), - ReactD3ToolTip = require("react-d3-tooltip"), - SimpleTooltipStyle = require('react-d3-tooltip').SimpleTooltip; - -//var BarGroupChart = ReactD3Basic.BarGroupChart; -var BarGroupChart = ReactD3ToolTip.BarGroupTooltip; -var graph = function (self) { - var data = self.props.config.data, - chartSeries = self.props.config.chartSeries, - xScale = "ordinal", - x = function (year) { - return year.from + " to " + year.to; - }; - return ( - /* jshint ignore:start */ - /* jscs ignore:start */ - - - - /* jshint ignore:end */ - /* jscs ignore:end */ - ); -}; - -var Template = function (self) { - return ( - /* jshint ignore:start */ - /* jscs ignore:start */ -
    -
    - {graph(self)} -
    -
    - /* jshint ignore:end */ - /* jscs ignore:end */ - ); -}; - -module.exports = Template; diff --git a/assets/javascripts/templates/pages/home.jsx b/assets/javascripts/templates/pages/home.jsx deleted file mode 100644 index 8edba16..0000000 --- a/assets/javascripts/templates/pages/home.jsx +++ /dev/null @@ -1,96 +0,0 @@ -"use strict"; - -var React = require("react"), - ReactDOM = require("react-dom"); - -var IndicatorsSelector = require("../../components/indicators_selector"), - StatesSelector = require("../../components/states_selector"), - Report = require("../../components/report"); - -var SideNavigationTemplate = function (self) { - if (self.state.showSideNavigation) { - return ( -
    -
    -
    -
    CBGA Story Generator
    -
    self.toggleSideNavigation()}>
    -
    -
    - Nam dapibus nisl vitae elit fringilla rutrum. Aenean sollicitudin, erat a elementum rutrum, neque sem - pretium metus, quis mollis -
    -
    - - -
    -
    - @credits - DataKind Bangalore -
    -
    - Share - About - ContactUs -
    -
    -
    - ); - } - return ( -
    self.toggleSideNavigation()}> - -
    - ); -}; - -var Template = function (self) { - var contentCLass = "content "; - if (self.state.showSideNavigation) { - contentCLass = contentCLass + "side-nav-active"; - } - return ( - /* jshint ignore:start */ - /* jscs ignore:start */ -
    - {SideNavigationTemplate(self)} -
    -
    - - -
    - -
    -
    -
    -
    -
    Description
    -
    - Nam dapibus nisl vitae elit fringilla rutrum. Aenean sollicitudin, erat a elementum rutrum, neque sem - pretium metus, quis mollis -
    -
    -
    -
    Notes
    -
    - Nam dapibus nisl vitae elit fringilla rutrum. Aenean sollicitudin, erat a elementum rutrum, neque sem - pretium metus, quis mollis -
    -
    -
    -
    -
    - /* jshint ignore:end */ - /* jscs ignore:end */ - ); -}; - -module.exports = Template; diff --git a/assets/javascripts/utils/data.js b/assets/javascripts/utils/data.js deleted file mode 100644 index d01436d..0000000 --- a/assets/javascripts/utils/data.js +++ /dev/null @@ -1,16 +0,0 @@ -"use strict"; - -var DATA = require("../../../data/7-states-budgets.json"); - -var COLORS = [ - "#00A7F1", - "#CBDF8E", - "#FFE395", - "#004B6C", - "#819D2C" -]; -module.exports = { - DATA: DATA, - COLORS: COLORS -}; - diff --git a/assets/javascripts/utils/routes.js b/assets/javascripts/utils/routes.js deleted file mode 100644 index fdd00d8..0000000 --- a/assets/javascripts/utils/routes.js +++ /dev/null @@ -1,8 +0,0 @@ -"use strict"; - -module.exports = function (root) { - return { - path : "/", - component : root - }; -}; diff --git a/assets/stylesheets/application.scss b/assets/stylesheets/application.scss deleted file mode 100644 index b9fd992..0000000 --- a/assets/stylesheets/application.scss +++ /dev/null @@ -1,18 +0,0 @@ -// Configuration -@import "base/configuration"; - -// Initialize -@import "vendor/normalize"; - -// Fonts -@import "vendor/pt-sans"; - -// Themes -@import "vendor/bootstrap"; - -//Leaflet -@import"vendor/leaflet"; - -@import "base/variables"; -@import "base/typography"; -@import "base/layout"; diff --git a/assets/stylesheets/base/_colorlegend.scss b/assets/stylesheets/base/_colorlegend.scss deleted file mode 100644 index 61c2ebe..0000000 --- a/assets/stylesheets/base/_colorlegend.scss +++ /dev/null @@ -1,21 +0,0 @@ -.legend-scale ul { - margin: 0; - padding: 0; - float: left; - list-style: none; -} -.legend-scale ul li { - display: block; - float: left; - width: 40px; - margin-bottom: 6px; - text-align: center; - font-size: 80%; - list-style: none; -} -ul.legend-labels li span { - display: block; - float: left; - height: 15px; - width: 50px; -} \ No newline at end of file diff --git a/assets/stylesheets/base/_configuration.scss b/assets/stylesheets/base/_configuration.scss deleted file mode 100644 index 0464c00..0000000 --- a/assets/stylesheets/base/_configuration.scss +++ /dev/null @@ -1 +0,0 @@ -$fonts-path: "fonts/" !default; diff --git a/assets/stylesheets/base/_content-body.scss b/assets/stylesheets/base/_content-body.scss deleted file mode 100644 index 9866379..0000000 --- a/assets/stylesheets/base/_content-body.scss +++ /dev/null @@ -1,113 +0,0 @@ -@import "state-selector"; -.content-body { - display: flex; - flex-direction: row; - width: 100%; - flex: 1; -} - -.mk-viz { - flex: 1; - display: flex; -} - -.bar { - transition: height 500ms ease-in; -} - -.report { - flex: 1; - display: flex; - flex-direction: column; - justify-content: space-between; - .report-header { - padding: .5em; - display: flex; - justify-content: space-between; - .report-header-left, - .report-header-right { - display: flex; - flex-direction: column; - } - .report-header-right { - max-width: 30%; - } - .report-title { - font-size: 1.8em; - } - .report-subtitle { - font-style: italic; - } - } - .report-body { - padding: .5em; - flex: 1; - display: flex; - } - .report-footer { - display: flex; - flex-direction: row; - align-items: center; - justify-content: space-between; - padding: .5em; - .report-footer-right { - display: flex; - .report-footer-item { - cursor: pointer; - .report-footer-item-share { - min-width: auto; - padding: .3em; - } - } - } - } - .report-message { - flex: 1; - justify-content: center; - display: flex; - background-color: #EDEDED; - align-items: center; - margin: 2em; - } -} - -.graph { - width: 100%; -} - -.budget-attributes { - width: 100%; -} - -.budget-attributes-title { - font-weight: bold; - font-size: 1.3em; -} - -.budget-attributes-labels { - display: flex; - flex: 1; - align-items: center; - justify-content: space-around; - height: 32px; - border-radius: 4px; - background-color: rgba(204, 204, 204, 0.15); - border: solid 1px rgba(151, 151, 151, 0.25); - cursor: pointer; - .budget-attribute { - text-transform: uppercase; - margin: auto; - &.selected { - border-radius: 3px; - background-color: $color1; - border: solid 1px #5b5e74; - color: white; - font-weight: bold; - padding: .1em .8em; - } - } -} - -.embed-url { - width: 100%; -} \ No newline at end of file diff --git a/assets/stylesheets/base/_content-footer.scss b/assets/stylesheets/base/_content-footer.scss deleted file mode 100644 index 020b763..0000000 --- a/assets/stylesheets/base/_content-footer.scss +++ /dev/null @@ -1,23 +0,0 @@ -.content-footer { - border: solid 1px $border-color; - display: flex; - flex-direction: row; - align-items: flex-start; - justify-content: flex-start; - width: 100%; -} - -.information { - padding: 1em; - width: 50%; - .information-title { - font-size: 1.3em; - font-weight: bold; - } - .information-content { - background-color: rgba(204, 204, 204, 0.3); - border: solid 1px $border-color; - padding: .5em; - margin-top: .5em; - } -} \ No newline at end of file diff --git a/assets/stylesheets/base/_content.scss b/assets/stylesheets/base/_content.scss deleted file mode 100644 index 2ed85df..0000000 --- a/assets/stylesheets/base/_content.scss +++ /dev/null @@ -1,65 +0,0 @@ -.content { - display: flex; - flex-direction: column; - align-items: center; - justify-content: space-between; - width: calc(100% - 50px); -} -.side-nav-active { - max-width: 80%; -} - -#map{ - background:white; -} -.leaflet-container { - width: 583px; - height: 634px; - background:white; - position: relative; - flex: 1; - display: flex; -} -.tcontainer{ - position: absolute; - top: 2em; - right: 2em; - height: 10em; - z-index: 6; - color: #31708f; - font-size: .85em; - display: block; -} -.statetooltip{ - position: absolute; - top:37em; - right:1em; - z-index:6; - color:black; - padding:.5em .75em; - font-size:.85em; - display:block; - width: 200px; - height: 67px; - background-color: rgba(233, 234, 229, 0.7); - text-align: center; - line-height: 30px; -} - - -.legendcontainer{ - position: absolute; - top: 50em; - right: 2em; - height: 10em; - z-index: 6; - color: #31708f; - font-size: .85em; - display: block; -} -@import "statetooltip"; -@import "timeline"; -@import "colorlegend"; -@import "content-body"; -@import "report-meta"; -@import "content-footer"; \ No newline at end of file diff --git a/assets/stylesheets/base/_layout.scss b/assets/stylesheets/base/_layout.scss deleted file mode 100644 index 6f8b011..0000000 --- a/assets/stylesheets/base/_layout.scss +++ /dev/null @@ -1,34 +0,0 @@ -html, -body, -main { - width: 100%; - height: 100%; - font-family: 'PT Sans'; -} - -#main-container { - height: inherit; - &>div { - height: inherit; - } -} - -.body { - width: 100%; - height: 100%; - display: flex; - flex-direction: row; -} - -.hr { - border-right: solid 1px $border-color; -} - -.btn-bat { - background-color: $color1; - color: white; - font-weight: bold; -} - -@import "side-nav"; -@import "content"; \ No newline at end of file diff --git a/assets/stylesheets/base/_report-meta.scss b/assets/stylesheets/base/_report-meta.scss deleted file mode 100644 index 451ea95..0000000 --- a/assets/stylesheets/base/_report-meta.scss +++ /dev/null @@ -1,24 +0,0 @@ -.report-meta { - display: flex; - flex: 1; - width: auto; - max-width: 20%; - flex-direction: column; -} - -.meta { - width: 100%; - padding: .6em; - display: flex; - align-items: flex-start; - flex-direction: column; - justify-content: space-between; - .meta-info { - border-radius: .3em; - width: 100%; - .meta-info-title { - font-size: 1.3em; - font-weight: bold; - } - } -} \ No newline at end of file diff --git a/assets/stylesheets/base/_side-nav.scss b/assets/stylesheets/base/_side-nav.scss deleted file mode 100644 index 3bc62f2..0000000 --- a/assets/stylesheets/base/_side-nav.scss +++ /dev/null @@ -1,101 +0,0 @@ -.side-nav { - display: flex; - flex-direction: column; - height: inherit; - align-items: center; - justify-content: space-between; - padding: 1em; - background-color: $color1; - width: 25%; - transition: width 5.5s linear; -} - -.side-nav-menu-icon { - padding: 1em; - cursor: pointer; -} - -.project-info { - width: 100%; - .project-title{ - font-weight: 600; - font-size: 1.5em; - display: flex; - align-items: center; - justify-content: space-between; - margin-bottom: 16px; - } - .project-description { - border-radius: .3em; - background-color: $color2; - border: solid 1px $color2; - padding: 0.3em; - min-height: 70px; - max-height: 90px; - } -} - -.search-box { - padding: .5em; - display: flex; - align-items: center; - justify-content: center; - background-color: $color2; - input { - width: 100%; - border-radius: 0.3em; - border: solid 1px #9b9b9b; - font-style: italic; - color: black; - } -} - -.indicator { - height: 70%; - border: solid 1px #525468; - width: 100%; - display: flex; - margin-top: .5em; - flex-direction: column; - justify-content: flex-start; - .indicator-title { - background-color: #ededed; - padding: .2em .5em; - font-size: 1.2em; - color: #4a4a4a; - text-transform: uppercase; - .indicator-title-text { - font-size: 1em; - color: #4a4a4a; - } - } - .indicator-list{ - background-color: rgb(255, 255, 255); - color: #707491; - display: flex; - flex-direction: column; - flex: 1; - margin: 0; - list-style-type: none; - overflow-y: auto; - padding: 0; - .indicator-list-item { - padding: .5em; - } - } -} - -.credits { - width: 100%; - margin-top: .3em; - background-color: $color2; - border: solid 1px $color2; - border-radius: .3em; - .credits-links, - .credits-info { - display: flex; - flex-direction: row; - align-items: center; - justify-content: space-around; - } -} \ No newline at end of file diff --git a/assets/stylesheets/base/_state-selector.scss b/assets/stylesheets/base/_state-selector.scss deleted file mode 100644 index 448d062..0000000 --- a/assets/stylesheets/base/_state-selector.scss +++ /dev/null @@ -1,51 +0,0 @@ -.state-selector { - width: 100%; -} - -.states { - background-color: #ffffff; - padding: .5em; - width: 100%; - height: 100%; - .states-header { - display: flex; - flex-direction: row; - align-items: center; - justify-content: space-between; - height: 30%; - .states-header-title { - font-size: 1.3em; - } - } - .states-selected { - height: 70%; - padding: .2em; - margin-top: .5em; - .states-selected-inactive { - font-style: italic; - } - } -} - -.state { - display: flex; - align-items: center; - justify-content: space-between; - background-color: #f2f2f2; - border-radius: 1em; - padding: .3em; - margin-bottom: .2em; - .state-content { - .state-avtar { - background-color: #356EA0; - padding: 0 .4em; - border-radius: 1em; - color: white; - margin: 0 .2em 0 0; - } - } - .state-remove { - padding: 0 .2em 0 0; - cursor: pointer; - } -} \ No newline at end of file diff --git a/assets/stylesheets/base/_statetooltip.scss b/assets/stylesheets/base/_statetooltip.scss deleted file mode 100644 index 54a98fc..0000000 --- a/assets/stylesheets/base/_statetooltip.scss +++ /dev/null @@ -1,4 +0,0 @@ -.statetoolPanelHeading{ - height: 30px; - background-color: rgba(204, 204, 204, 0.7); -} \ No newline at end of file diff --git a/assets/stylesheets/base/_timeline.scss b/assets/stylesheets/base/_timeline.scss deleted file mode 100644 index 714e80e..0000000 --- a/assets/stylesheets/base/_timeline.scss +++ /dev/null @@ -1,256 +0,0 @@ -$timeline-debug: false; - - -$timeline-h-color-bg: #fff; -$timeline-h-color-main: #428bca; - -$timeline-h-color-line: $timeline-h-color-main; -$timeline-h-color-marker-border: $timeline-h-color-main; -$timeline-h-color-marker-font: $timeline-h-color-main; - -$timeline-h-color-marker-bg--active: $timeline-h-color-main; -$timeline-h-color-marker-font--active: $timeline-h-color-bg; - -$timeline-h-color-marker-bg: $timeline-h-color-bg; -$timeline-h-color-marker-boxShadow: $timeline-h-color-bg; - - -$timeline-h-size-step: 50px; -$timeline-h-size-line: 2px; -$timeline-h-size-border: 4px; -$timeline-h-size-label: 110px; -$timeline-h-size-boxShadow: 10px; -$timeline-h-title-distance: 30px; -$timeline-h-title-size-font: 12px; -$timeline-h-label-distance: 10 + ($timeline-h-size-step/2) + $timeline-h-size-boxShadow; - - -$timeline-h-summary-size-step: 12px; -$timeline-h-summary-size-border: 2px; -$timeline-h-summary-size-line: 2px; -$timeline-h-summary-size-label: 110px; -$timeline-h-summary-size-boxShadow: 3px; -$timeline-h-summary-title-distance: 10px; -$timeline-h-summary-title-size-font: 8px; -$timeline-h-summary-label-distance: 10 + ($timeline-h-summary-size-step/2) + $timeline-h-summary-size-boxShadow; - - - -.timeline { -margin: 20px 0; -padding: 0; -border-top: $timeline-h-size-line solid $timeline-h-color-line; -list-style: none; -} - -.timeline__step { - -float: left; -width: 25%; -padding-top: 30px; - -position: relative; - -@if ($timeline-debug) { -background: lightgreen; -outline: 2px solid red; -} - -&:first-of-type, -&:last-of-type { -&:before { - -content: ""; -width: 50%; -height: 100%; - -background: transparent; - -position: absolute; -top: -$timeline-h-size-line; -left: 0; - -@if ($timeline-debug) { -background: green; -outline: 4px solid orange; -} -} -} - -&:last-of-type:before { -left: 50%; -} - -&:hover { -.timeline__step-label { -//display: block; -opacity: 1; --webkit-transform: rotate(0deg); -height: auto; -padding: 5px 10px; - -font-size: 12px; -border-width: 1px; - -bottom: 100%; - -&:before, -&:after { -display: block; -} -} -} -} - -.timeline__step-label { -//display: none; -opacity: 0; -height: 0; -padding: 0; -font-size: 0; -border-width: 0; --webkit-transform: rotate(30deg); - -width: $timeline-h-size-label; -margin: 0 0 $timeline-h-label-distance (-$timeline-h-size-label/2); - -border-style: solid; -border-color: $timeline-h-color-main; - -background: $timeline-h-color-bg; - -font-weight: normal; -//cursor: pointer; - -position: absolute; -left: 50%; -bottom: 0; - -transition: bottom 0.1s ease-in-out, -opacity 0.1s ease-in-out, --webkit-transform 0.1s ease-in-out; - -&:before, -&:after { -display: none; - -content: ""; -width: 0; -height: 0; -border: solid transparent; -pointer-events: none; - -position: absolute; -top: 100%; -left: 50%; -} - -&:before { -border-top-color: $timeline-h-color-main; -border-width: 8px; -margin-left: -8px; -} - -&:after { -border-top-color: $timeline-h-color-bg; -border-width: 6px; -margin-left: -6px; -} - -} - -.timeline__step-content { -display: block; -overflow: hidden; -text-align: center; -white-space: nowrap; -text-overflow: ellipsis; -} - -.timeline__step-title { -display: block; -width: 100%; -padding: $timeline-h-title-distance 0 0; - -font-size: $timeline-h-title-size-font; -text-align: center; - -position: absolute; -top: 0; -} - -.timeline__step-marker { -width: $timeline-h-size-step; -height: $timeline-h-size-step; -margin-left: -$timeline-h-size-step/2; - -background: $timeline-h-color-marker-bg; -border: $timeline-h-size-border solid $timeline-h-color-marker-border; -border-radius: 50%; -box-shadow: 0 0 0 $timeline-h-size-boxShadow $timeline-h-color-marker-boxShadow; - -text-align: center; -line-height: $timeline-h-size-step -10; -color: $timeline-h-color-marker-font; -font-size: 2em; -font-style: normal; - -position: absolute; -top: -($timeline-h-size-step/2)-($timeline-h-size-line/2); -left: 50%; - -.done & { -background: $timeline-h-color-marker-bg--active; -color: $timeline-h-color-marker-font--active; -} -} - -.timeline__step-radio { -display: none; - -/** -* not needed for now, -* because markers won't be clicked in horz version -*/ -// &:checked { -// & + label { -// opacity: 1; -// } - -// & ~ .timeline__step-marker { -// background: $timeline-h-color-marker-bg--active; -// color: $timeline-h-color-marker-font--active; -// } -// } -} - - - -.timeline--summary { -width: 200px; -border-width: $timeline-h-summary-size-line; - -.timeline__step-label { -margin-bottom: $timeline-h-summary-label-distance; -} - -.timeline__step-title { -padding: $timeline-h-summary-title-distance 0 0; -font-size: $timeline-h-summary-title-size-font; -font-weight: bold; -} - -.timeline__step-marker { -width: $timeline-h-summary-size-step; -height: $timeline-h-summary-size-step; -margin-left: -$timeline-h-summary-size-step/2; - -border-width: $timeline-h-summary-size-border; - -text-indent: -999em; - -box-shadow: 0 0 0 $timeline-h-summary-size-boxShadow #fff; - -top: -($timeline-h-summary-size-step/2)-($timeline-h-summary-size-line/2); -} -} \ No newline at end of file diff --git a/assets/stylesheets/base/_typography.scss b/assets/stylesheets/base/_typography.scss deleted file mode 100644 index e69de29..0000000 diff --git a/assets/stylesheets/base/_variables.scss b/assets/stylesheets/base/_variables.scss deleted file mode 100644 index 71dbe8b..0000000 --- a/assets/stylesheets/base/_variables.scss +++ /dev/null @@ -1,5 +0,0 @@ -// Theme -$border-color: #979797 !default; -$color1: #707491 !default; -$color2: #5b5e74 !default; -$color3: #525468 !default; diff --git a/assets/stylesheets/vendor/_bootstrap.scss b/assets/stylesheets/vendor/_bootstrap.scss deleted file mode 100644 index c773c8c..0000000 --- a/assets/stylesheets/vendor/_bootstrap.scss +++ /dev/null @@ -1,56 +0,0 @@ -/*! - * Bootstrap v3.3.6 (http://getbootstrap.com) - * Copyright 2011-2015 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - */ - -// Core variables and mixins -@import "bootstrap/variables"; -@import "bootstrap/mixins"; - -// Reset and dependencies -@import "bootstrap/normalize"; -@import "bootstrap/print"; -@import "bootstrap/glyphicons"; - -// Core CSS -@import "bootstrap/scaffolding"; -@import "bootstrap/type"; -@import "bootstrap/code"; -@import "bootstrap/grid"; -@import "bootstrap/tables"; -@import "bootstrap/forms"; -@import "bootstrap/buttons"; - -// Components -@import "bootstrap/component-animations"; -@import "bootstrap/dropdowns"; -@import "bootstrap/button-groups"; -@import "bootstrap/input-groups"; -@import "bootstrap/navs"; -@import "bootstrap/navbar"; -@import "bootstrap/breadcrumbs"; -@import "bootstrap/pagination"; -@import "bootstrap/pager"; -@import "bootstrap/labels"; -@import "bootstrap/badges"; -@import "bootstrap/jumbotron"; -@import "bootstrap/thumbnails"; -@import "bootstrap/alerts"; -@import "bootstrap/progress-bars"; -@import "bootstrap/media"; -@import "bootstrap/list-group"; -@import "bootstrap/panels"; -@import "bootstrap/responsive-embed"; -@import "bootstrap/wells"; -@import "bootstrap/close"; - -// Components w/ JavaScript -@import "bootstrap/modals"; -@import "bootstrap/tooltip"; -@import "bootstrap/popovers"; -@import "bootstrap/carousel"; - -// Utility classes -@import "bootstrap/utilities"; -@import "bootstrap/responsive-utilities"; diff --git a/assets/stylesheets/vendor/_leaflet.scss b/assets/stylesheets/vendor/_leaflet.scss deleted file mode 100644 index ac0cd17..0000000 --- a/assets/stylesheets/vendor/_leaflet.scss +++ /dev/null @@ -1,478 +0,0 @@ -/* required styles */ - -.leaflet-map-pane, -.leaflet-tile, -.leaflet-marker-icon, -.leaflet-marker-shadow, -.leaflet-tile-pane, -.leaflet-tile-container, -.leaflet-overlay-pane, -.leaflet-shadow-pane, -.leaflet-marker-pane, -.leaflet-popup-pane, -.leaflet-overlay-pane svg, -.leaflet-zoom-box, -.leaflet-image-layer, -.leaflet-layer { - position: absolute; - left: 0; - top: 0; - } -.leaflet-container { - overflow: hidden; - -ms-touch-action: none; - } -.leaflet-tile, -.leaflet-marker-icon, -.leaflet-marker-shadow { - -webkit-user-select: none; - -moz-user-select: none; - user-select: none; - -webkit-user-drag: none; - } -.leaflet-marker-icon, -.leaflet-marker-shadow { - display: block; - } -/* map is broken in FF if you have max-width: 100% on tiles */ -.leaflet-container img { - max-width: none !important; - } -/* stupid Android 2 doesn't understand "max-width: none" properly */ -.leaflet-container img.leaflet-image-layer { - max-width: 15000px !important; - } -.leaflet-tile { - filter: inherit; - visibility: hidden; - } -.leaflet-tile-loaded { - visibility: inherit; - } -.leaflet-zoom-box { - width: 0; - height: 0; - } -/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */ -.leaflet-overlay-pane svg { - -moz-user-select: none; - } - -.leaflet-tile-pane { z-index: 2; } -.leaflet-objects-pane { z-index: 3; } -.leaflet-overlay-pane { z-index: 4; } -.leaflet-shadow-pane { z-index: 5; } -.leaflet-marker-pane { z-index: 6; } -.leaflet-popup-pane { z-index: 7; } - -.leaflet-vml-shape { - width: 1px; - height: 1px; - } -.lvml { - behavior: url(#default#VML); - display: inline-block; - position: absolute; - } - - -/* control positioning */ - -.leaflet-control { - position: relative; - z-index: 7; - pointer-events: auto; - } -.leaflet-top, -.leaflet-bottom { - position: absolute; - z-index: 1000; - pointer-events: none; - } -.leaflet-top { - top: 0; - } -.leaflet-right { - right: 0; - } -.leaflet-bottom { - bottom: 0; - } -.leaflet-left { - left: 0; - } -.leaflet-control { - float: left; - clear: both; - } -.leaflet-right .leaflet-control { - float: right; - } -.leaflet-top .leaflet-control { - margin-top: 10px; - } -.leaflet-bottom .leaflet-control { - margin-bottom: 10px; - } -.leaflet-left .leaflet-control { - margin-left: 10px; - } -.leaflet-right .leaflet-control { - margin-right: 10px; - } - - -/* zoom and fade animations */ - -.leaflet-fade-anim .leaflet-tile, -.leaflet-fade-anim .leaflet-popup { - opacity: 0; - -webkit-transition: opacity 0.2s linear; - -moz-transition: opacity 0.2s linear; - -o-transition: opacity 0.2s linear; - transition: opacity 0.2s linear; - } -.leaflet-fade-anim .leaflet-tile-loaded, -.leaflet-fade-anim .leaflet-map-pane .leaflet-popup { - opacity: 1; - } - -.leaflet-zoom-anim .leaflet-zoom-animated { - -webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1); - -moz-transition: -moz-transform 0.25s cubic-bezier(0,0,0.25,1); - -o-transition: -o-transform 0.25s cubic-bezier(0,0,0.25,1); - transition: transform 0.25s cubic-bezier(0,0,0.25,1); - } -.leaflet-zoom-anim .leaflet-tile, -.leaflet-pan-anim .leaflet-tile, -.leaflet-touching .leaflet-zoom-animated { - -webkit-transition: none; - -moz-transition: none; - -o-transition: none; - transition: none; - } - -.leaflet-zoom-anim .leaflet-zoom-hide { - visibility: hidden; - } - - -/* cursors */ - -.leaflet-clickable { - cursor: pointer; - } -.leaflet-container { - cursor: -webkit-grab; - cursor: -moz-grab; - } -.leaflet-popup-pane, -.leaflet-control { - cursor: auto; - } -.leaflet-dragging .leaflet-container, -.leaflet-dragging .leaflet-clickable { - cursor: move; - cursor: -webkit-grabbing; - cursor: -moz-grabbing; - } - - -/* visual tweaks */ - -.leaflet-container { - background: #ddd; - outline: 0; - } -.leaflet-container a { - color: #0078A8; - } -.leaflet-container a.leaflet-active { - outline: 2px solid orange; - } -.leaflet-zoom-box { - border: 2px dotted #38f; - background: rgba(255,255,255,0.5); - } - - -/* general typography */ -.leaflet-container { - font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif; - } - - -/* general toolbar styles */ - -.leaflet-bar { - box-shadow: 0 1px 5px rgba(0,0,0,0.65); - border-radius: 4px; - } -.leaflet-bar a, -.leaflet-bar a:hover { - background-color: #fff; - border-bottom: 1px solid #ccc; - width: 26px; - height: 26px; - line-height: 26px; - display: block; - text-align: center; - text-decoration: none; - color: black; - } -.leaflet-bar a, -.leaflet-control-layers-toggle { - background-position: 50% 50%; - background-repeat: no-repeat; - display: block; - } -.leaflet-bar a:hover { - background-color: #f4f4f4; - } -.leaflet-bar a:first-child { - border-top-left-radius: 4px; - border-top-right-radius: 4px; - } -.leaflet-bar a:last-child { - border-bottom-left-radius: 4px; - border-bottom-right-radius: 4px; - border-bottom: none; - } -.leaflet-bar a.leaflet-disabled { - cursor: default; - background-color: #f4f4f4; - color: #bbb; - } - -.leaflet-touch .leaflet-bar a { - width: 30px; - height: 30px; - line-height: 30px; - } - - -/* zoom control */ - -.leaflet-control-zoom-in, -.leaflet-control-zoom-out { - font: bold 18px 'Lucida Console', Monaco, monospace; - text-indent: 1px; - } -.leaflet-control-zoom-out { - font-size: 20px; - } - -.leaflet-touch .leaflet-control-zoom-in { - font-size: 22px; - } -.leaflet-touch .leaflet-control-zoom-out { - font-size: 24px; - } - - -/* layers control */ - -.leaflet-control-layers { - box-shadow: 0 1px 5px rgba(0,0,0,0.4); - background: #fff; - border-radius: 5px; - } -.leaflet-control-layers-toggle { - background-image: url(images/layers.png); - width: 36px; - height: 36px; - } -.leaflet-retina .leaflet-control-layers-toggle { - background-image: url(images/layers-2x.png); - background-size: 26px 26px; - } -.leaflet-touch .leaflet-control-layers-toggle { - width: 44px; - height: 44px; - } -.leaflet-control-layers .leaflet-control-layers-list, -.leaflet-control-layers-expanded .leaflet-control-layers-toggle { - display: none; - } -.leaflet-control-layers-expanded .leaflet-control-layers-list { - display: block; - position: relative; - } -.leaflet-control-layers-expanded { - padding: 6px 10px 6px 6px; - color: #333; - background: #fff; - } -.leaflet-control-layers-selector { - margin-top: 2px; - position: relative; - top: 1px; - } -.leaflet-control-layers label { - display: block; - } -.leaflet-control-layers-separator { - height: 0; - border-top: 1px solid #ddd; - margin: 5px -10px 5px -6px; - } - - -/* attribution and scale controls */ - -.leaflet-container .leaflet-control-attribution { - background: #fff; - background: rgba(255, 255, 255, 0.7); - margin: 0; - } -.leaflet-control-attribution, -.leaflet-control-scale-line { - padding: 0 5px; - color: #333; - } -.leaflet-control-attribution a { - text-decoration: none; - } -.leaflet-control-attribution a:hover { - text-decoration: underline; - } -.leaflet-container .leaflet-control-attribution, -.leaflet-container .leaflet-control-scale { - font-size: 11px; - } -.leaflet-left .leaflet-control-scale { - margin-left: 5px; - } -.leaflet-bottom .leaflet-control-scale { - margin-bottom: 5px; - } -.leaflet-control-scale-line { - border: 2px solid #777; - border-top: none; - line-height: 1.1; - padding: 2px 5px 1px; - font-size: 11px; - white-space: nowrap; - overflow: hidden; - -moz-box-sizing: content-box; - box-sizing: content-box; - - background: #fff; - background: rgba(255, 255, 255, 0.5); - } -.leaflet-control-scale-line:not(:first-child) { - border-top: 2px solid #777; - border-bottom: none; - margin-top: -2px; - } -.leaflet-control-scale-line:not(:first-child):not(:last-child) { - border-bottom: 2px solid #777; - } - -.leaflet-touch .leaflet-control-attribution, -.leaflet-touch .leaflet-control-layers, -.leaflet-touch .leaflet-bar { - box-shadow: none; - } -.leaflet-touch .leaflet-control-layers, -.leaflet-touch .leaflet-bar { - border: 2px solid rgba(0,0,0,0.2); - background-clip: padding-box; - } - - -/* popup */ - -.leaflet-popup { - position: absolute; - text-align: center; - } -.leaflet-popup-content-wrapper { - padding: 1px; - text-align: left; - border-radius: 12px; - } -.leaflet-popup-content { - margin: 13px 19px; - line-height: 1.4; - } -.leaflet-popup-content p { - margin: 18px 0; - } -.leaflet-popup-tip-container { - margin: 0 auto; - width: 40px; - height: 20px; - position: relative; - overflow: hidden; - } -.leaflet-popup-tip { - width: 17px; - height: 17px; - padding: 1px; - - margin: -10px auto 0; - - -webkit-transform: rotate(45deg); - -moz-transform: rotate(45deg); - -ms-transform: rotate(45deg); - -o-transform: rotate(45deg); - transform: rotate(45deg); - } -.leaflet-popup-content-wrapper, -.leaflet-popup-tip { - background: white; - - box-shadow: 0 3px 14px rgba(0,0,0,0.4); - } -.leaflet-container a.leaflet-popup-close-button { - position: absolute; - top: 0; - right: 0; - padding: 4px 4px 0 0; - text-align: center; - width: 18px; - height: 14px; - font: 16px/14px Tahoma, Verdana, sans-serif; - color: #c3c3c3; - text-decoration: none; - font-weight: bold; - background: transparent; - } -.leaflet-container a.leaflet-popup-close-button:hover { - color: #999; - } -.leaflet-popup-scrolled { - overflow: auto; - border-bottom: 1px solid #ddd; - border-top: 1px solid #ddd; - } - -.leaflet-oldie .leaflet-popup-content-wrapper { - zoom: 1; - } -.leaflet-oldie .leaflet-popup-tip { - width: 24px; - margin: 0 auto; - - -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)"; - filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678); - } -.leaflet-oldie .leaflet-popup-tip-container { - margin-top: -1px; - } - -.leaflet-oldie .leaflet-control-zoom, -.leaflet-oldie .leaflet-control-layers, -.leaflet-oldie .leaflet-popup-content-wrapper, -.leaflet-oldie .leaflet-popup-tip { - border: 1px solid #999; - } - - -/* div icon */ - -.leaflet-div-icon { - background: #fff; - border: 1px solid #666; - } diff --git a/assets/stylesheets/vendor/_normalize.scss b/assets/stylesheets/vendor/_normalize.scss deleted file mode 100644 index 7c7bed2..0000000 --- a/assets/stylesheets/vendor/_normalize.scss +++ /dev/null @@ -1,578 +0,0 @@ -/* ========================================================================== - Normalize.scss settings - ========================================================================== */ -/** - * Includes legacy browser support IE6/7 - * - * Set to false if you want to drop support for IE6 and IE7 - */ - -$legacy_browser_support: false !default; - -/* Base - ========================================================================== */ - -/** - * 1. Set default font family to sans-serif. - * 2. Prevent iOS and IE text size adjust after device orientation change, - * without disabling user zoom. - * 3. Corrects text resizing oddly in IE 6/7 when body `font-size` is set using - * `em` units. - */ - -html { - font-family: sans-serif; /* 1 */ - -ms-text-size-adjust: 100%; /* 2 */ - -webkit-text-size-adjust: 100%; /* 2 */ - @if $legacy_browser_support { - *font-size: 100%; /* 3 */ - } -} - -/** - * Remove default margin. - */ - -body { - margin: 0; -} - -/* HTML5 display definitions - ========================================================================== */ - -/** - * Correct `block` display not defined for any HTML5 element in IE 8/9. - * Correct `block` display not defined for `details` or `summary` in IE 10/11 - * and Firefox. - * Correct `block` display not defined for `main` in IE 11. - */ - -article, -aside, -details, -figcaption, -figure, -footer, -header, -hgroup, -main, -menu, -nav, -section, -summary { - display: block; -} - -/** - * 1. Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3. - * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera. - */ - -audio, -canvas, -progress, -video { - display: inline-block; /* 1 */ - vertical-align: baseline; /* 2 */ - @if $legacy_browser_support { - *display: inline; - *zoom: 1; - } -} - -/** - * Prevents modern browsers from displaying `audio` without controls. - * Remove excess height in iOS 5 devices. - */ - -audio:not([controls]) { - display: none; - height: 0; -} - -/** - * Address `[hidden]` styling not present in IE 8/9/10. - * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22. - */ - -[hidden], -template { - display: none; -} - -/* Links - ========================================================================== */ - -/** - * Remove the gray background color from active links in IE 10. - */ - -a { - background-color: transparent; -} - -/** - * Improve readability of focused elements when they are also in an - * active/hover state. - */ - -a { - &:active, &:hover { - outline: 0; - }; -} - -/* Text-level semantics - ========================================================================== */ - -/** - * Address styling not present in IE 8/9/10/11, Safari, and Chrome. - */ - -abbr[title] { - border-bottom: 1px dotted; -} - -/** - * Address style set to `bolder` in Firefox 4+, Safari, and Chrome. - */ - -b, -strong { - font-weight: bold; -} - -@if $legacy_browser_support { - blockquote { - margin: 1em 40px; - } -} - -/** - * Address styling not present in Safari and Chrome. - */ - -dfn { - font-style: italic; -} - -/** - * Address variable `h1` font-size and margin within `section` and `article` - * contexts in Firefox 4+, Safari, and Chrome. - */ - -h1 { - font-size: 2em; - margin: 0.67em 0; -} - -@if $legacy_browser_support { - h2 { - font-size: 1.5em; - margin: 0.83em 0; - } - - h3 { - font-size: 1.17em; - margin: 1em 0; - } - - h4 { - font-size: 1em; - margin: 1.33em 0; - } - - h5 { - font-size: 0.83em; - margin: 1.67em 0; - } - - h6 { - font-size: 0.67em; - margin: 2.33em 0; - } -} - -/** - * Addresses styling not present in IE 8/9. - */ - -mark { - background: #ff0; - color: #000; -} - -@if $legacy_browser_support { - - /** - * Addresses margins set differently in IE 6/7. - */ - - p, - pre { - *margin: 1em 0; - } - - /* - * Addresses CSS quotes not supported in IE 6/7. - */ - - q { - *quotes: none; - } - - /* - * Addresses `quotes` property not supported in Safari 4. - */ - - q:before, - q:after { - content: ''; - content: none; - } -} - -/** - * Address inconsistent and variable font size in all browsers. - */ - -small { - font-size: 80%; -} - -/** - * Prevent `sub` and `sup` affecting `line-height` in all browsers. - */ - -sub, -sup { - font-size: 75%; - line-height: 0; - position: relative; - vertical-align: baseline; -} - -sup { - top: -0.5em; -} - -sub { - bottom: -0.25em; -} - -@if $legacy_browser_support { - - /* ========================================================================== - Lists - ========================================================================== */ - - /* - * Addresses margins set differently in IE 6/7. - */ - - dl, - menu, - ol, - ul { - *margin: 1em 0; - } - - dd { - *margin: 0 0 0 40px; - } - - /* - * Addresses paddings set differently in IE 6/7. - */ - - menu, - ol, - ul { - *padding: 0 0 0 40px; - } - - /* - * Corrects list images handled incorrectly in IE 7. - */ - - nav ul, - nav ol { - *list-style: none; - *list-style-image: none; - } - -} - -/* Embedded content - ========================================================================== */ - -/** - * 1. Remove border when inside `a` element in IE 8/9/10. - * 2. Improves image quality when scaled in IE 7. - */ - -img { - border: 0; - @if $legacy_browser_support { - *-ms-interpolation-mode: bicubic; /* 2 */ - } -} - -/** - * Correct overflow not hidden in IE 9/10/11. - */ - -svg:not(:root) { - overflow: hidden; -} - -/* Grouping content - ========================================================================== */ - -/** - * Address margin not present in IE 8/9 and Safari. - */ - -figure { - margin: 1em 40px; -} - -/** - * Address differences between Firefox and other browsers. - */ - -hr { - box-sizing: content-box; - height: 0; -} - -/** - * Contain overflow in all browsers. - */ - -pre { - overflow: auto; -} - -/** - * Address odd `em`-unit font size rendering in all browsers. - * Correct font family set oddly in IE 6, Safari 4/5, and Chrome. - */ - -code, -kbd, -pre, -samp { - font-family: monospace, monospace; - @if $legacy_browser_support { - _font-family: 'courier new', monospace; - } - font-size: 1em; -} - -/* Forms - ========================================================================== */ - -/** - * Known limitation: by default, Chrome and Safari on OS X allow very limited - * styling of `select`, unless a `border` property is set. - */ - -/** - * 1. Correct color not being inherited. - * Known issue: affects color of disabled elements. - * 2. Correct font properties not being inherited. - * 3. Address margins set differently in Firefox 4+, Safari, and Chrome. - * 4. Improves appearance and consistency in all browsers. - */ - -button, -input, -optgroup, -select, -textarea { - color: inherit; /* 1 */ - font: inherit; /* 2 */ - margin: 0; /* 3 */ - @if $legacy_browser_support { - vertical-align: baseline; /* 3 */ - *vertical-align: middle; /* 3 */ - } -} - -/** - * Address `overflow` set to `hidden` in IE 8/9/10/11. - */ - -button { - overflow: visible; -} - -/** - * Address inconsistent `text-transform` inheritance for `button` and `select`. - * All other form control elements do not inherit `text-transform` values. - * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera. - * Correct `select` style inheritance in Firefox. - */ - -button, -select { - text-transform: none; -} - -/** - * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` - * and `video` controls. - * 2. Correct inability to style clickable `input` types in iOS. - * 3. Improve usability and consistency of cursor style between image-type - * `input` and others. - * 4. Removes inner spacing in IE 7 without affecting normal text inputs. - * Known issue: inner spacing remains in IE 6. - */ - -button, -html input[type="button"], /* 1 */ -input[type="reset"], -input[type="submit"] { - -webkit-appearance: button; /* 2 */ - cursor: pointer; /* 3 */ - @if $legacy_browser_support { - *overflow: visible; /* 4 */ - } -} - -/** - * Re-set default cursor for disabled elements. - */ - -button[disabled], -html input[disabled] { - cursor: default; -} - -/** - * Remove inner padding and border in Firefox 4+. - */ - -button::-moz-focus-inner, -input::-moz-focus-inner { - border: 0; - padding: 0; -} - -/** - * Address Firefox 4+ setting `line-height` on `input` using `!important` in - * the UA stylesheet. - */ - -input { - line-height: normal; -} - -/** - * 1. Address box sizing set to `content-box` in IE 8/9/10. - * 2. Remove excess padding in IE 8/9/10. - * Known issue: excess padding remains in IE 6. - */ - -input[type="checkbox"], -input[type="radio"] { - box-sizing: border-box; /* 1 */ - padding: 0; /* 2 */ - @if $legacy_browser_support { - *height: 13px; /* 3 */ - *width: 13px; /* 3 */ - } -} - -/** - * Fix the cursor style for Chrome's increment/decrement buttons. For certain - * `font-size` values of the `input`, it causes the cursor style of the - * decrement button to change from `default` to `text`. - */ - -input[type="number"]::-webkit-inner-spin-button, -input[type="number"]::-webkit-outer-spin-button { - height: auto; -} - -/** - * 1. Address `appearance` set to `searchfield` in Safari and Chrome. - * 2. Address `box-sizing` set to `border-box` in Safari and Chrome. - */ - -input[type="search"] { - -webkit-appearance: textfield; /* 1 */ - box-sizing: content-box; /* 2 */ -} - -/** - * Remove inner padding and search cancel button in Safari and Chrome on OS X. - * Safari (but not Chrome) clips the cancel button when the search input has - * padding (and `textfield` appearance). - */ - -input[type="search"]::-webkit-search-cancel-button, -input[type="search"]::-webkit-search-decoration { - -webkit-appearance: none; -} - -/** - * Define consistent border, margin, and padding. - */ - -fieldset { - border: 1px solid #c0c0c0; - margin: 0 2px; - padding: 0.35em 0.625em 0.75em; -} - -/** - * 1. Correct `color` not being inherited in IE 8/9/10/11. - * 2. Remove padding so people aren't caught out if they zero out fieldsets. - * 3. Corrects text not wrapping in Firefox 3. - * 4. Corrects alignment displayed oddly in IE 6/7. - */ - -legend { - border: 0; /* 1 */ - padding: 0; /* 2 */ - @if $legacy_browser_support { - white-space: normal; /* 3 */ - *margin-left: -7px; /* 4 */ - } -} - -/** - * Remove default vertical scrollbar in IE 8/9/10/11. - */ - -textarea { - overflow: auto; -} - -/** - * Don't inherit the `font-weight` (applied by a rule above). - * NOTE: the default cannot safely be changed in Chrome and Safari on OS X. - */ - -optgroup { - font-weight: bold; -} - -/* Tables - ========================================================================== */ - -/** - * Remove most spacing between table cells. - */ - -table { - border-collapse: collapse; - border-spacing: 0; -} - -td, -th { - padding: 0; -} \ No newline at end of file diff --git a/assets/stylesheets/vendor/_pt-sans.scss b/assets/stylesheets/vendor/_pt-sans.scss deleted file mode 100644 index 77e3084..0000000 --- a/assets/stylesheets/vendor/_pt-sans.scss +++ /dev/null @@ -1,154 +0,0 @@ -/* - * Copyright 2009 ParaType, Inc. - * - * FONT LICENSE - * - * PERMISSION and CONDITIONS - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of the font software, to use, study, copy, merge, embed, modify, redistribute, - * and sell modified and unmodified copies of the font software, subject to the - * following conditions: - * - * 1) Neither the font software nor any of its individual components, in original - * or modified versions, may be sold by itself. - * - * 2) Original or modified versions of the font software may be bundled, - * redistributed and/or sold with any software, provided that each copy - * contains the above copyright notice and this license. These can be included - * either as stand-alone text files, human-readable headers or in the - * appropriate machine-readable metadata fields within text or binary files as - * long as those fields can be easily viewed by the user. - * - * 3) No modified version of the font software may use the Reserved Name(s) or - * combinations of Reserved Names with other words unless explicit written - * permission is granted by the ParaType. This restriction only applies to - * the primary font name as presented to the users. - * - * 4) The name of ParaType or the author(s) of the font software shall not be used - * to promote, endorse or advertise any modified version, except to acknowledge - * the contribution(s) of ParaType and the author(s) or with explicit written - * permission of ParaType. - * - * 5) The font software, modified or unmodified, in part or in whole, must be - * distributed entirely under this license, and must not be distributed under - * any other license. The requirement for fonts to remain under this license - * does not apply to any document created using the Font Software. - * - * TERMINATION and TERRITORY - * - * This license has no limits on time and territory, but it becomes null and void - * if any of the above conditions are not met. - * - * DISCLAIMER - * - * THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT OF COPYRIGHT, PATENT, - * TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL PARATYPE BE LIABLE FOR ANY CLAIM, - * DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, - * INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR - * OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE - * OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. - * - * ParaType, Inc. - * http://www.paratype.com - */ - -$pt-sans-font-path: if(variable-exists(fonts-path), "#{$fonts-path}pt-sans/", "fonts/pt-sans"); - -@font-face { - font-family: "PT Sans"; - src: url("#{$pt-sans-font-path}regular/PTS55F-webfont.eot"); - src: local("PT Sans"), - url("#{$pt-sans-font-path}regular/PTS55F-webfont.eot?#iefix") format("embedded-opentype"), - url("#{$pt-sans-font-path}regular/PTS55F-webfont.woff") format("woff"), - url("#{$pt-sans-font-path}regular/PTS55F-webfont.ttf") format("truetype"), - url("#{$pt-sans-font-path}regular/PTS55F-webfont.svg#pt_sansregular") format("svg"); - font-weight: normal; - font-style: normal; -} - -@font-face { - font-family: "PT Sans"; - src: url("#{$pt-sans-font-path}italic/PTS56F-webfont.eot"); - src: local("PT Sans Italic"), - url("#{$pt-sans-font-path}italic/PTS56F-webfont.eot?#iefix") format("embedded-opentype"), - url("#{$pt-sans-font-path}italic/PTS56F-webfont.woff") format("woff"), - url("#{$pt-sans-font-path}italic/PTS56F-webfont.ttf") format("truetype"), - url("#{$pt-sans-font-path}italic/PTS56F-webfont.svg#pt_sansitalic") format("svg"); - font-weight: normal; - font-style: italic; -} - -@font-face { - font-family: "PT Sans"; - src: url("#{$pt-sans-font-path}bold/PTS75F-webfont.eot"); - src: local("PT Sans Bold"), - url("#{$pt-sans-font-path}bold/PTS75F-webfont.eot?#iefix") format("embedded-opentype"), - url("#{$pt-sans-font-path}bold/PTS75F-webfont.woff") format("woff"), - url("#{$pt-sans-font-path}bold/PTS75F-webfont.ttf") format("truetype"), - url("#{$pt-sans-font-path}bold/PTS75F-webfont.svg#pt_sansbold") format("svg"); - font-weight: bold; - font-style: normal; -} - -@font-face { - font-family: "PT Sans"; - src: url("#{$pt-sans-font-path}bold-italic/PTS76F-webfont.eot"); - src: local("PT Sans Bold Italic"), - url("#{$pt-sans-font-path}bold-italic/PTS76F-webfont.eot?#iefix") format("embedded-opentype"), - url("#{$pt-sans-font-path}bold-italic/PTS76F-webfont.woff") format("woff"), - url("#{$pt-sans-font-path}bold-italic/PTS76F-webfont.ttf") format("truetype"), - url("#{$pt-sans-font-path}bold-italic/PTS76F-webfont.svg#pt_sansbold_italic") format("svg"); - font-weight: bold; - font-style: italic; -} - -@font-face { - font-family: "PT Sans Caption"; - src: url("#{$pt-sans-font-path}caption-regular/PTC55F-webfont.eot"); - src: local("PT Sans Caption"), - url("#{$pt-sans-font-path}caption-regular/PTC55F-webfont.eot?#iefix") format("embedded-opentype"), - url("#{$pt-sans-font-path}caption-regular/PTC55F-webfont.woff") format("woff"), - url("#{$pt-sans-font-path}caption-regular/PTC55F-webfont.ttf") format("truetype"), - url("#{$pt-sans-font-path}caption-regular/PTC55F-webfont.svg#pt_sans_captionregular") format("svg"); - font-weight: normal; - font-style: normal; -} - -@font-face { - font-family: "PT Sans Caption"; - src: url("#{$pt-sans-font-path}caption-bold/PTC75F-webfont.eot"); - src: local("PT Sans Caption Bold"), - url("#{$pt-sans-font-path}caption-bold/PTC75F-webfont.eot?#iefix") format("embedded-opentype"), - url("#{$pt-sans-font-path}caption-bold/PTC75F-webfont.woff") format("woff"), - url("#{$pt-sans-font-path}caption-bold/PTC75F-webfont.ttf") format("truetype"), - url("#{$pt-sans-font-path}caption-bold/PTC75F-webfont.svg#pt_sans_captionbold") format("svg"); - font-weight: bold; - font-style: normal; -} - -@font-face { - font-family: "PT Sans Narrow"; - src: url("#{$pt-sans-font-path}narrow-regular/PTN57F-webfont.eot"); - src: local("PT Sans Narrow"), - url("#{$pt-sans-font-path}narrow-regular/PTN57F-webfont.eot?#iefix") format("embedded-opentype"), - url("#{$pt-sans-font-path}narrow-regular/PTN57F-webfont.woff") format("woff"), - url("#{$pt-sans-font-path}narrow-regular/PTN57F-webfont.ttf") format("truetype"), - url("#{$pt-sans-font-path}narrow-regular/PTN57F-webfont.svg#pt_sans_narrowregular") format("svg"); - font-weight: normal; - font-style: normal; -} - -@font-face { - font-family: "PT Sans Narrow"; - src: url("#{$pt-sans-font-path}narrow-bold/PTN77F-webfont.eot"); - src: local("PT Sans Narrow Bold"), - url("#{$pt-sans-font-path}narrow-bold/PTN77F-webfont.eot?#iefix") format("embedded-opentype"), - url("#{$pt-sans-font-path}narrow-bold/PTN77F-webfont.woff") format("woff"), - url("#{$pt-sans-font-path}narrow-bold/PTN77F-webfont.ttf") format("truetype"), - url("#{$pt-sans-font-path}narrow-bold/PTN77F-webfont.svg#pt_sans_narrowbold") format("svg"); - font-weight: bold; - font-style: normal; -} diff --git a/assets/stylesheets/vendor/bootstrap/_alerts.scss b/assets/stylesheets/vendor/bootstrap/_alerts.scss deleted file mode 100644 index 7d1e1fd..0000000 --- a/assets/stylesheets/vendor/bootstrap/_alerts.scss +++ /dev/null @@ -1,73 +0,0 @@ -// -// Alerts -// -------------------------------------------------- - - -// Base styles -// ------------------------- - -.alert { - padding: $alert-padding; - margin-bottom: $line-height-computed; - border: 1px solid transparent; - border-radius: $alert-border-radius; - - // Headings for larger alerts - h4 { - margin-top: 0; - // Specified for the h4 to prevent conflicts of changing $headings-color - color: inherit; - } - - // Provide class for links that match alerts - .alert-link { - font-weight: $alert-link-font-weight; - } - - // Improve alignment and spacing of inner content - > p, - > ul { - margin-bottom: 0; - } - - > p + p { - margin-top: 5px; - } -} - -// Dismissible alerts -// -// Expand the right padding and account for the close button's positioning. - -.alert-dismissable, // The misspelled .alert-dismissable was deprecated in 3.2.0. -.alert-dismissible { - padding-right: ($alert-padding + 20); - - // Adjust close link position - .close { - position: relative; - top: -2px; - right: -21px; - color: inherit; - } -} - -// Alternate styles -// -// Generate contextual modifier classes for colorizing the alert. - -.alert-success { - @include alert-variant($alert-success-bg, $alert-success-border, $alert-success-text); -} - -.alert-info { - @include alert-variant($alert-info-bg, $alert-info-border, $alert-info-text); -} - -.alert-warning { - @include alert-variant($alert-warning-bg, $alert-warning-border, $alert-warning-text); -} - -.alert-danger { - @include alert-variant($alert-danger-bg, $alert-danger-border, $alert-danger-text); -} diff --git a/assets/stylesheets/vendor/bootstrap/_badges.scss b/assets/stylesheets/vendor/bootstrap/_badges.scss deleted file mode 100644 index 70002e0..0000000 --- a/assets/stylesheets/vendor/bootstrap/_badges.scss +++ /dev/null @@ -1,68 +0,0 @@ -// -// Badges -// -------------------------------------------------- - - -// Base class -.badge { - display: inline-block; - min-width: 10px; - padding: 3px 7px; - font-size: $font-size-small; - font-weight: $badge-font-weight; - color: $badge-color; - line-height: $badge-line-height; - vertical-align: middle; - white-space: nowrap; - text-align: center; - background-color: $badge-bg; - border-radius: $badge-border-radius; - - // Empty badges collapse automatically (not available in IE8) - &:empty { - display: none; - } - - // Quick fix for badges in buttons - .btn & { - position: relative; - top: -1px; - } - - .btn-xs &, - .btn-group-xs > .btn & { - top: 0; - padding: 1px 5px; - } - - // [converter] extracted a& to a.badge - - // Account for badges in navs - .list-group-item.active > &, - .nav-pills > .active > a > & { - color: $badge-active-color; - background-color: $badge-active-bg; - } - - .list-group-item > & { - float: right; - } - - .list-group-item > & + & { - margin-right: 5px; - } - - .nav-pills > li > a > & { - margin-left: 3px; - } -} - -// Hover state, but only for links -a.badge { - &:hover, - &:focus { - color: $badge-link-hover-color; - text-decoration: none; - cursor: pointer; - } -} diff --git a/assets/stylesheets/vendor/bootstrap/_breadcrumbs.scss b/assets/stylesheets/vendor/bootstrap/_breadcrumbs.scss deleted file mode 100644 index b61f0c7..0000000 --- a/assets/stylesheets/vendor/bootstrap/_breadcrumbs.scss +++ /dev/null @@ -1,28 +0,0 @@ -// -// Breadcrumbs -// -------------------------------------------------- - - -.breadcrumb { - padding: $breadcrumb-padding-vertical $breadcrumb-padding-horizontal; - margin-bottom: $line-height-computed; - list-style: none; - background-color: $breadcrumb-bg; - border-radius: $border-radius-base; - - > li { - display: inline-block; - - + li:before { - // [converter] Workaround for https://github.com/sass/libsass/issues/1115 - $nbsp: "\00a0"; - content: "#{$breadcrumb-separator}#{$nbsp}"; // Unicode space added since inline-block means non-collapsing white-space - padding: 0 5px; - color: $breadcrumb-color; - } - } - - > .active { - color: $breadcrumb-active-color; - } -} diff --git a/assets/stylesheets/vendor/bootstrap/_button-groups.scss b/assets/stylesheets/vendor/bootstrap/_button-groups.scss deleted file mode 100644 index baaacc4..0000000 --- a/assets/stylesheets/vendor/bootstrap/_button-groups.scss +++ /dev/null @@ -1,244 +0,0 @@ -// -// Button groups -// -------------------------------------------------- - -// Make the div behave like a button -.btn-group, -.btn-group-vertical { - position: relative; - display: inline-block; - vertical-align: middle; // match .btn alignment given font-size hack above - > .btn { - position: relative; - float: left; - // Bring the "active" button to the front - &:hover, - &:focus, - &:active, - &.active { - z-index: 2; - } - } -} - -// Prevent double borders when buttons are next to each other -.btn-group { - .btn + .btn, - .btn + .btn-group, - .btn-group + .btn, - .btn-group + .btn-group { - margin-left: -1px; - } -} - -// Optional: Group multiple button groups together for a toolbar -.btn-toolbar { - margin-left: -5px; // Offset the first child's margin - @include clearfix; - - .btn, - .btn-group, - .input-group { - float: left; - } - > .btn, - > .btn-group, - > .input-group { - margin-left: 5px; - } -} - -.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { - border-radius: 0; -} - -// Set corners individual because sometimes a single button can be in a .btn-group and we need :first-child and :last-child to both match -.btn-group > .btn:first-child { - margin-left: 0; - &:not(:last-child):not(.dropdown-toggle) { - @include border-right-radius(0); - } -} -// Need .dropdown-toggle since :last-child doesn't apply given a .dropdown-menu immediately after it -.btn-group > .btn:last-child:not(:first-child), -.btn-group > .dropdown-toggle:not(:first-child) { - @include border-left-radius(0); -} - -// Custom edits for including btn-groups within btn-groups (useful for including dropdown buttons within a btn-group) -.btn-group > .btn-group { - float: left; -} -.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn { - border-radius: 0; -} -.btn-group > .btn-group:first-child:not(:last-child) { - > .btn:last-child, - > .dropdown-toggle { - @include border-right-radius(0); - } -} -.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child { - @include border-left-radius(0); -} - -// On active and open, don't show outline -.btn-group .dropdown-toggle:active, -.btn-group.open .dropdown-toggle { - outline: 0; -} - - -// Sizing -// -// Remix the default button sizing classes into new ones for easier manipulation. - -.btn-group-xs > .btn { @extend .btn-xs; } -.btn-group-sm > .btn { @extend .btn-sm; } -.btn-group-lg > .btn { @extend .btn-lg; } - - -// Split button dropdowns -// ---------------------- - -// Give the line between buttons some depth -.btn-group > .btn + .dropdown-toggle { - padding-left: 8px; - padding-right: 8px; -} -.btn-group > .btn-lg + .dropdown-toggle { - padding-left: 12px; - padding-right: 12px; -} - -// The clickable button for toggling the menu -// Remove the gradient and set the same inset shadow as the :active state -.btn-group.open .dropdown-toggle { - @include box-shadow(inset 0 3px 5px rgba(0,0,0,.125)); - - // Show no shadow for `.btn-link` since it has no other button styles. - &.btn-link { - @include box-shadow(none); - } -} - - -// Reposition the caret -.btn .caret { - margin-left: 0; -} -// Carets in other button sizes -.btn-lg .caret { - border-width: $caret-width-large $caret-width-large 0; - border-bottom-width: 0; -} -// Upside down carets for .dropup -.dropup .btn-lg .caret { - border-width: 0 $caret-width-large $caret-width-large; -} - - -// Vertical button groups -// ---------------------- - -.btn-group-vertical { - > .btn, - > .btn-group, - > .btn-group > .btn { - display: block; - float: none; - width: 100%; - max-width: 100%; - } - - // Clear floats so dropdown menus can be properly placed - > .btn-group { - @include clearfix; - > .btn { - float: none; - } - } - - > .btn + .btn, - > .btn + .btn-group, - > .btn-group + .btn, - > .btn-group + .btn-group { - margin-top: -1px; - margin-left: 0; - } -} - -.btn-group-vertical > .btn { - &:not(:first-child):not(:last-child) { - border-radius: 0; - } - &:first-child:not(:last-child) { - @include border-top-radius($btn-border-radius-base); - @include border-bottom-radius(0); - } - &:last-child:not(:first-child) { - @include border-top-radius(0); - @include border-bottom-radius($btn-border-radius-base); - } -} -.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn { - border-radius: 0; -} -.btn-group-vertical > .btn-group:first-child:not(:last-child) { - > .btn:last-child, - > .dropdown-toggle { - @include border-bottom-radius(0); - } -} -.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child { - @include border-top-radius(0); -} - - -// Justified button groups -// ---------------------- - -.btn-group-justified { - display: table; - width: 100%; - table-layout: fixed; - border-collapse: separate; - > .btn, - > .btn-group { - float: none; - display: table-cell; - width: 1%; - } - > .btn-group .btn { - width: 100%; - } - - > .btn-group .dropdown-menu { - left: auto; - } -} - - -// Checkbox and radio options -// -// In order to support the browser's form validation feedback, powered by the -// `required` attribute, we have to "hide" the inputs via `clip`. We cannot use -// `display: none;` or `visibility: hidden;` as that also hides the popover. -// Simply visually hiding the inputs via `opacity` would leave them clickable in -// certain cases which is prevented by using `clip` and `pointer-events`. -// This way, we ensure a DOM element is visible to position the popover from. -// -// See https://github.com/twbs/bootstrap/pull/12794 and -// https://github.com/twbs/bootstrap/pull/14559 for more information. - -[data-toggle="buttons"] { - > .btn, - > .btn-group > .btn { - input[type="radio"], - input[type="checkbox"] { - position: absolute; - clip: rect(0,0,0,0); - pointer-events: none; - } - } -} diff --git a/assets/stylesheets/vendor/bootstrap/_buttons.scss b/assets/stylesheets/vendor/bootstrap/_buttons.scss deleted file mode 100644 index 6452b70..0000000 --- a/assets/stylesheets/vendor/bootstrap/_buttons.scss +++ /dev/null @@ -1,168 +0,0 @@ -// -// Buttons -// -------------------------------------------------- - - -// Base styles -// -------------------------------------------------- - -.btn { - display: inline-block; - margin-bottom: 0; // For input.btn - font-weight: $btn-font-weight; - text-align: center; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214 - border: 1px solid transparent; - white-space: nowrap; - @include button-size($padding-base-vertical, $padding-base-horizontal, $font-size-base, $line-height-base, $btn-border-radius-base); - @include user-select(none); - - &, - &:active, - &.active { - &:focus, - &.focus { - @include tab-focus; - } - } - - &:hover, - &:focus, - &.focus { - color: $btn-default-color; - text-decoration: none; - } - - &:active, - &.active { - outline: 0; - background-image: none; - @include box-shadow(inset 0 3px 5px rgba(0,0,0,.125)); - } - - &.disabled, - &[disabled], - fieldset[disabled] & { - cursor: $cursor-disabled; - @include opacity(.65); - @include box-shadow(none); - } - - // [converter] extracted a& to a.btn -} - -a.btn { - &.disabled, - fieldset[disabled] & { - pointer-events: none; // Future-proof disabling of clicks on `` elements - } -} - - -// Alternate buttons -// -------------------------------------------------- - -.btn-default { - @include button-variant($btn-default-color, $btn-default-bg, $btn-default-border); -} -.btn-primary { - @include button-variant($btn-primary-color, $btn-primary-bg, $btn-primary-border); -} -// Success appears as green -.btn-success { - @include button-variant($btn-success-color, $btn-success-bg, $btn-success-border); -} -// Info appears as blue-green -.btn-info { - @include button-variant($btn-info-color, $btn-info-bg, $btn-info-border); -} -// Warning appears as orange -.btn-warning { - @include button-variant($btn-warning-color, $btn-warning-bg, $btn-warning-border); -} -// Danger and error appear as red -.btn-danger { - @include button-variant($btn-danger-color, $btn-danger-bg, $btn-danger-border); -} - - -// Link buttons -// ------------------------- - -// Make a button look and behave like a link -.btn-link { - color: $link-color; - font-weight: normal; - border-radius: 0; - - &, - &:active, - &.active, - &[disabled], - fieldset[disabled] & { - background-color: transparent; - @include box-shadow(none); - } - &, - &:hover, - &:focus, - &:active { - border-color: transparent; - } - &:hover, - &:focus { - color: $link-hover-color; - text-decoration: $link-hover-decoration; - background-color: transparent; - } - &[disabled], - fieldset[disabled] & { - &:hover, - &:focus { - color: $btn-link-disabled-color; - text-decoration: none; - } - } -} - - -// Button Sizes -// -------------------------------------------------- - -.btn-lg { - // line-height: ensure even-numbered height of button next to large input - @include button-size($padding-large-vertical, $padding-large-horizontal, $font-size-large, $line-height-large, $btn-border-radius-large); -} -.btn-sm { - // line-height: ensure proper height of button next to small input - @include button-size($padding-small-vertical, $padding-small-horizontal, $font-size-small, $line-height-small, $btn-border-radius-small); -} -.btn-xs { - @include button-size($padding-xs-vertical, $padding-xs-horizontal, $font-size-small, $line-height-small, $btn-border-radius-small); -} - - -// Block button -// -------------------------------------------------- - -.btn-block { - display: block; - width: 100%; -} - -// Vertically space out multiple block buttons -.btn-block + .btn-block { - margin-top: 5px; -} - -// Specificity overrides -input[type="submit"], -input[type="reset"], -input[type="button"] { - &.btn-block { - width: 100%; - } -} diff --git a/assets/stylesheets/vendor/bootstrap/_carousel.scss b/assets/stylesheets/vendor/bootstrap/_carousel.scss deleted file mode 100644 index 753d881..0000000 --- a/assets/stylesheets/vendor/bootstrap/_carousel.scss +++ /dev/null @@ -1,270 +0,0 @@ -// -// Carousel -// -------------------------------------------------- - - -// Wrapper for the slide container and indicators -.carousel { - position: relative; -} - -.carousel-inner { - position: relative; - overflow: hidden; - width: 100%; - - > .item { - display: none; - position: relative; - @include transition(.6s ease-in-out left); - - // Account for jankitude on images - > img, - > a > img { - @include img-responsive; - line-height: 1; - } - - // WebKit CSS3 transforms for supported devices - @media all and (transform-3d), (-webkit-transform-3d) { - @include transition-transform(0.6s ease-in-out); - @include backface-visibility(hidden); - @include perspective(1000px); - - &.next, - &.active.right { - @include translate3d(100%, 0, 0); - left: 0; - } - &.prev, - &.active.left { - @include translate3d(-100%, 0, 0); - left: 0; - } - &.next.left, - &.prev.right, - &.active { - @include translate3d(0, 0, 0); - left: 0; - } - } - } - - > .active, - > .next, - > .prev { - display: block; - } - - > .active { - left: 0; - } - - > .next, - > .prev { - position: absolute; - top: 0; - width: 100%; - } - - > .next { - left: 100%; - } - > .prev { - left: -100%; - } - > .next.left, - > .prev.right { - left: 0; - } - - > .active.left { - left: -100%; - } - > .active.right { - left: 100%; - } - -} - -// Left/right controls for nav -// --------------------------- - -.carousel-control { - position: absolute; - top: 0; - left: 0; - bottom: 0; - width: $carousel-control-width; - @include opacity($carousel-control-opacity); - font-size: $carousel-control-font-size; - color: $carousel-control-color; - text-align: center; - text-shadow: $carousel-text-shadow; - background-color: rgba(0, 0, 0, 0); // Fix IE9 click-thru bug - // We can't have this transition here because WebKit cancels the carousel - // animation if you trip this while in the middle of another animation. - - // Set gradients for backgrounds - &.left { - @include gradient-horizontal($start-color: rgba(0,0,0,.5), $end-color: rgba(0,0,0,.0001)); - } - &.right { - left: auto; - right: 0; - @include gradient-horizontal($start-color: rgba(0,0,0,.0001), $end-color: rgba(0,0,0,.5)); - } - - // Hover/focus state - &:hover, - &:focus { - outline: 0; - color: $carousel-control-color; - text-decoration: none; - @include opacity(.9); - } - - // Toggles - .icon-prev, - .icon-next, - .glyphicon-chevron-left, - .glyphicon-chevron-right { - position: absolute; - top: 50%; - margin-top: -10px; - z-index: 5; - display: inline-block; - } - .icon-prev, - .glyphicon-chevron-left { - left: 50%; - margin-left: -10px; - } - .icon-next, - .glyphicon-chevron-right { - right: 50%; - margin-right: -10px; - } - .icon-prev, - .icon-next { - width: 20px; - height: 20px; - line-height: 1; - font-family: serif; - } - - - .icon-prev { - &:before { - content: '\2039';// SINGLE LEFT-POINTING ANGLE QUOTATION MARK (U+2039) - } - } - .icon-next { - &:before { - content: '\203a';// SINGLE RIGHT-POINTING ANGLE QUOTATION MARK (U+203A) - } - } -} - -// Optional indicator pips -// -// Add an unordered list with the following class and add a list item for each -// slide your carousel holds. - -.carousel-indicators { - position: absolute; - bottom: 10px; - left: 50%; - z-index: 15; - width: 60%; - margin-left: -30%; - padding-left: 0; - list-style: none; - text-align: center; - - li { - display: inline-block; - width: 10px; - height: 10px; - margin: 1px; - text-indent: -999px; - border: 1px solid $carousel-indicator-border-color; - border-radius: 10px; - cursor: pointer; - - // IE8-9 hack for event handling - // - // Internet Explorer 8-9 does not support clicks on elements without a set - // `background-color`. We cannot use `filter` since that's not viewed as a - // background color by the browser. Thus, a hack is needed. - // See https://developer.mozilla.org/en-US/docs/Web/Events/click#Internet_Explorer - // - // For IE8, we set solid black as it doesn't support `rgba()`. For IE9, we - // set alpha transparency for the best results possible. - background-color: #000 \9; // IE8 - background-color: rgba(0,0,0,0); // IE9 - } - .active { - margin: 0; - width: 12px; - height: 12px; - background-color: $carousel-indicator-active-bg; - } -} - -// Optional captions -// ----------------------------- -// Hidden by default for smaller viewports -.carousel-caption { - position: absolute; - left: 15%; - right: 15%; - bottom: 20px; - z-index: 10; - padding-top: 20px; - padding-bottom: 20px; - color: $carousel-caption-color; - text-align: center; - text-shadow: $carousel-text-shadow; - & .btn { - text-shadow: none; // No shadow for button elements in carousel-caption - } -} - - -// Scale up controls for tablets and up -@media screen and (min-width: $screen-sm-min) { - - // Scale up the controls a smidge - .carousel-control { - .glyphicon-chevron-left, - .glyphicon-chevron-right, - .icon-prev, - .icon-next { - width: ($carousel-control-font-size * 1.5); - height: ($carousel-control-font-size * 1.5); - margin-top: ($carousel-control-font-size / -2); - font-size: ($carousel-control-font-size * 1.5); - } - .glyphicon-chevron-left, - .icon-prev { - margin-left: ($carousel-control-font-size / -2); - } - .glyphicon-chevron-right, - .icon-next { - margin-right: ($carousel-control-font-size / -2); - } - } - - // Show and left align the captions - .carousel-caption { - left: 20%; - right: 20%; - padding-bottom: 30px; - } - - // Move up the indicators - .carousel-indicators { - bottom: 20px; - } -} diff --git a/assets/stylesheets/vendor/bootstrap/_close.scss b/assets/stylesheets/vendor/bootstrap/_close.scss deleted file mode 100644 index 3b74d8a..0000000 --- a/assets/stylesheets/vendor/bootstrap/_close.scss +++ /dev/null @@ -1,36 +0,0 @@ -// -// Close icons -// -------------------------------------------------- - - -.close { - float: right; - font-size: ($font-size-base * 1.5); - font-weight: $close-font-weight; - line-height: 1; - color: $close-color; - text-shadow: $close-text-shadow; - @include opacity(.2); - - &:hover, - &:focus { - color: $close-color; - text-decoration: none; - cursor: pointer; - @include opacity(.5); - } - - // [converter] extracted button& to button.close -} - -// Additional properties for button version -// iOS requires the button element instead of an anchor tag. -// If you want the anchor version, it requires `href="#"`. -// See https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile -button.close { - padding: 0; - cursor: pointer; - background: transparent; - border: 0; - -webkit-appearance: none; -} diff --git a/assets/stylesheets/vendor/bootstrap/_code.scss b/assets/stylesheets/vendor/bootstrap/_code.scss deleted file mode 100644 index caa5f06..0000000 --- a/assets/stylesheets/vendor/bootstrap/_code.scss +++ /dev/null @@ -1,69 +0,0 @@ -// -// Code (inline and block) -// -------------------------------------------------- - - -// Inline and block code styles -code, -kbd, -pre, -samp { - font-family: $font-family-monospace; -} - -// Inline code -code { - padding: 2px 4px; - font-size: 90%; - color: $code-color; - background-color: $code-bg; - border-radius: $border-radius-base; -} - -// User input typically entered via keyboard -kbd { - padding: 2px 4px; - font-size: 90%; - color: $kbd-color; - background-color: $kbd-bg; - border-radius: $border-radius-small; - box-shadow: inset 0 -1px 0 rgba(0,0,0,.25); - - kbd { - padding: 0; - font-size: 100%; - font-weight: bold; - box-shadow: none; - } -} - -// Blocks of code -pre { - display: block; - padding: (($line-height-computed - 1) / 2); - margin: 0 0 ($line-height-computed / 2); - font-size: ($font-size-base - 1); // 14px to 13px - line-height: $line-height-base; - word-break: break-all; - word-wrap: break-word; - color: $pre-color; - background-color: $pre-bg; - border: 1px solid $pre-border-color; - border-radius: $border-radius-base; - - // Account for some code outputs that place code tags in pre tags - code { - padding: 0; - font-size: inherit; - color: inherit; - white-space: pre-wrap; - background-color: transparent; - border-radius: 0; - } -} - -// Enable scrollable blocks of code -.pre-scrollable { - max-height: $pre-scrollable-max-height; - overflow-y: scroll; -} diff --git a/assets/stylesheets/vendor/bootstrap/_component-animations.scss b/assets/stylesheets/vendor/bootstrap/_component-animations.scss deleted file mode 100644 index ca3b43c..0000000 --- a/assets/stylesheets/vendor/bootstrap/_component-animations.scss +++ /dev/null @@ -1,37 +0,0 @@ -// -// Component animations -// -------------------------------------------------- - -// Heads up! -// -// We don't use the `.opacity()` mixin here since it causes a bug with text -// fields in IE7-8. Source: https://github.com/twbs/bootstrap/pull/3552. - -.fade { - opacity: 0; - @include transition(opacity .15s linear); - &.in { - opacity: 1; - } -} - -.collapse { - display: none; - - &.in { display: block; } - // [converter] extracted tr&.in to tr.collapse.in - // [converter] extracted tbody&.in to tbody.collapse.in -} - -tr.collapse.in { display: table-row; } - -tbody.collapse.in { display: table-row-group; } - -.collapsing { - position: relative; - height: 0; - overflow: hidden; - @include transition-property(height, visibility); - @include transition-duration(.35s); - @include transition-timing-function(ease); -} diff --git a/assets/stylesheets/vendor/bootstrap/_dropdowns.scss b/assets/stylesheets/vendor/bootstrap/_dropdowns.scss deleted file mode 100644 index aac8459..0000000 --- a/assets/stylesheets/vendor/bootstrap/_dropdowns.scss +++ /dev/null @@ -1,216 +0,0 @@ -// -// Dropdown menus -// -------------------------------------------------- - - -// Dropdown arrow/caret -.caret { - display: inline-block; - width: 0; - height: 0; - margin-left: 2px; - vertical-align: middle; - border-top: $caret-width-base dashed; - border-top: $caret-width-base solid \9; // IE8 - border-right: $caret-width-base solid transparent; - border-left: $caret-width-base solid transparent; -} - -// The dropdown wrapper (div) -.dropup, -.dropdown { - position: relative; -} - -// Prevent the focus on the dropdown toggle when closing dropdowns -.dropdown-toggle:focus { - outline: 0; -} - -// The dropdown menu (ul) -.dropdown-menu { - position: absolute; - top: 100%; - left: 0; - z-index: $zindex-dropdown; - display: none; // none by default, but block on "open" of the menu - float: left; - min-width: 160px; - padding: 5px 0; - margin: 2px 0 0; // override default ul - list-style: none; - font-size: $font-size-base; - text-align: left; // Ensures proper alignment if parent has it changed (e.g., modal footer) - background-color: $dropdown-bg; - border: 1px solid $dropdown-fallback-border; // IE8 fallback - border: 1px solid $dropdown-border; - border-radius: $border-radius-base; - @include box-shadow(0 6px 12px rgba(0,0,0,.175)); - background-clip: padding-box; - - // Aligns the dropdown menu to right - // - // Deprecated as of 3.1.0 in favor of `.dropdown-menu-[dir]` - &.pull-right { - right: 0; - left: auto; - } - - // Dividers (basically an hr) within the dropdown - .divider { - @include nav-divider($dropdown-divider-bg); - } - - // Links within the dropdown menu - > li > a { - display: block; - padding: 3px 20px; - clear: both; - font-weight: normal; - line-height: $line-height-base; - color: $dropdown-link-color; - white-space: nowrap; // prevent links from randomly breaking onto new lines - } -} - -// Hover/Focus state -.dropdown-menu > li > a { - &:hover, - &:focus { - text-decoration: none; - color: $dropdown-link-hover-color; - background-color: $dropdown-link-hover-bg; - } -} - -// Active state -.dropdown-menu > .active > a { - &, - &:hover, - &:focus { - color: $dropdown-link-active-color; - text-decoration: none; - outline: 0; - background-color: $dropdown-link-active-bg; - } -} - -// Disabled state -// -// Gray out text and ensure the hover/focus state remains gray - -.dropdown-menu > .disabled > a { - &, - &:hover, - &:focus { - color: $dropdown-link-disabled-color; - } - - // Nuke hover/focus effects - &:hover, - &:focus { - text-decoration: none; - background-color: transparent; - background-image: none; // Remove CSS gradient - @include reset-filter; - cursor: $cursor-disabled; - } -} - -// Open state for the dropdown -.open { - // Show the menu - > .dropdown-menu { - display: block; - } - - // Remove the outline when :focus is triggered - > a { - outline: 0; - } -} - -// Menu positioning -// -// Add extra class to `.dropdown-menu` to flip the alignment of the dropdown -// menu with the parent. -.dropdown-menu-right { - left: auto; // Reset the default from `.dropdown-menu` - right: 0; -} -// With v3, we enabled auto-flipping if you have a dropdown within a right -// aligned nav component. To enable the undoing of that, we provide an override -// to restore the default dropdown menu alignment. -// -// This is only for left-aligning a dropdown menu within a `.navbar-right` or -// `.pull-right` nav component. -.dropdown-menu-left { - left: 0; - right: auto; -} - -// Dropdown section headers -.dropdown-header { - display: block; - padding: 3px 20px; - font-size: $font-size-small; - line-height: $line-height-base; - color: $dropdown-header-color; - white-space: nowrap; // as with > li > a -} - -// Backdrop to catch body clicks on mobile, etc. -.dropdown-backdrop { - position: fixed; - left: 0; - right: 0; - bottom: 0; - top: 0; - z-index: ($zindex-dropdown - 10); -} - -// Right aligned dropdowns -.pull-right > .dropdown-menu { - right: 0; - left: auto; -} - -// Allow for dropdowns to go bottom up (aka, dropup-menu) -// -// Just add .dropup after the standard .dropdown class and you're set, bro. -// TODO: abstract this so that the navbar fixed styles are not placed here? - -.dropup, -.navbar-fixed-bottom .dropdown { - // Reverse the caret - .caret { - border-top: 0; - border-bottom: $caret-width-base dashed; - border-bottom: $caret-width-base solid \9; // IE8 - content: ""; - } - // Different positioning for bottom up menu - .dropdown-menu { - top: auto; - bottom: 100%; - margin-bottom: 2px; - } -} - - -// Component alignment -// -// Reiterate per navbar.less and the modified component alignment there. - -@media (min-width: $grid-float-breakpoint) { - .navbar-right { - .dropdown-menu { - right: 0; left: auto; - } - // Necessary for overrides of the default right aligned menu. - // Will remove come v4 in all likelihood. - .dropdown-menu-left { - left: 0; right: auto; - } - } -} diff --git a/assets/stylesheets/vendor/bootstrap/_forms.scss b/assets/stylesheets/vendor/bootstrap/_forms.scss deleted file mode 100644 index 11ba109..0000000 --- a/assets/stylesheets/vendor/bootstrap/_forms.scss +++ /dev/null @@ -1,617 +0,0 @@ -// -// Forms -// -------------------------------------------------- - - -// Normalize non-controls -// -// Restyle and baseline non-control form elements. - -fieldset { - padding: 0; - margin: 0; - border: 0; - // Chrome and Firefox set a `min-width: min-content;` on fieldsets, - // so we reset that to ensure it behaves more like a standard block element. - // See https://github.com/twbs/bootstrap/issues/12359. - min-width: 0; -} - -legend { - display: block; - width: 100%; - padding: 0; - margin-bottom: $line-height-computed; - font-size: ($font-size-base * 1.5); - line-height: inherit; - color: $legend-color; - border: 0; - border-bottom: 1px solid $legend-border-color; -} - -label { - display: inline-block; - max-width: 100%; // Force IE8 to wrap long content (see https://github.com/twbs/bootstrap/issues/13141) - margin-bottom: 5px; - font-weight: bold; -} - - -// Normalize form controls -// -// While most of our form styles require extra classes, some basic normalization -// is required to ensure optimum display with or without those classes to better -// address browser inconsistencies. - -// Override content-box in Normalize (* isn't specific enough) -input[type="search"] { - @include box-sizing(border-box); -} - -// Position radios and checkboxes better -input[type="radio"], -input[type="checkbox"] { - margin: 4px 0 0; - margin-top: 1px \9; // IE8-9 - line-height: normal; -} - -input[type="file"] { - display: block; -} - -// Make range inputs behave like textual form controls -input[type="range"] { - display: block; - width: 100%; -} - -// Make multiple select elements height not fixed -select[multiple], -select[size] { - height: auto; -} - -// Focus for file, radio, and checkbox -input[type="file"]:focus, -input[type="radio"]:focus, -input[type="checkbox"]:focus { - @include tab-focus; -} - -// Adjust output element -output { - display: block; - padding-top: ($padding-base-vertical + 1); - font-size: $font-size-base; - line-height: $line-height-base; - color: $input-color; -} - - -// Common form controls -// -// Shared size and type resets for form controls. Apply `.form-control` to any -// of the following form controls: -// -// select -// textarea -// input[type="text"] -// input[type="password"] -// input[type="datetime"] -// input[type="datetime-local"] -// input[type="date"] -// input[type="month"] -// input[type="time"] -// input[type="week"] -// input[type="number"] -// input[type="email"] -// input[type="url"] -// input[type="search"] -// input[type="tel"] -// input[type="color"] - -.form-control { - display: block; - width: 100%; - height: $input-height-base; // Make inputs at least the height of their button counterpart (base line-height + padding + border) - padding: $padding-base-vertical $padding-base-horizontal; - font-size: $font-size-base; - line-height: $line-height-base; - color: $input-color; - background-color: $input-bg; - background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214 - border: 1px solid $input-border; - border-radius: $input-border-radius; // Note: This has no effect on s in CSS. - @include box-shadow(inset 0 1px 1px rgba(0,0,0,.075)); - @include transition(border-color ease-in-out .15s, box-shadow ease-in-out .15s); - - // Customize the `:focus` state to imitate native WebKit styles. - @include form-control-focus; - - // Placeholder - @include placeholder; - - // Unstyle the caret on `` background color -$input-bg: #fff !default; -//** `` background color -$input-bg-disabled: $gray-lighter !default; - -//** Text color for ``s -$input-color: $gray !default; -//** `` border color -$input-border: #ccc !default; - -// TODO: Rename `$input-border-radius` to `$input-border-radius-base` in v4 -//** Default `.form-control` border radius -// This has no effect on ``s in CSS. -$input-border-radius: $border-radius-base !default; -//** Large `.form-control` border radius -$input-border-radius-large: $border-radius-large !default; -//** Small `.form-control` border radius -$input-border-radius-small: $border-radius-small !default; - -//** Border color for inputs on focus -$input-border-focus: #66afe9 !default; - -//** Placeholder text color -$input-color-placeholder: #999 !default; - -//** Default `.form-control` height -$input-height-base: ($line-height-computed + ($padding-base-vertical * 2) + 2) !default; -//** Large `.form-control` height -$input-height-large: (ceil($font-size-large * $line-height-large) + ($padding-large-vertical * 2) + 2) !default; -//** Small `.form-control` height -$input-height-small: (floor($font-size-small * $line-height-small) + ($padding-small-vertical * 2) + 2) !default; - -//** `.form-group` margin -$form-group-margin-bottom: 15px !default; - -$legend-color: $gray-dark !default; -$legend-border-color: #e5e5e5 !default; - -//** Background color for textual input addons -$input-group-addon-bg: $gray-lighter !default; -//** Border color for textual input addons -$input-group-addon-border-color: $input-border !default; - -//** Disabled cursor for form controls and buttons. -$cursor-disabled: not-allowed !default; - - -//== Dropdowns -// -//## Dropdown menu container and contents. - -//** Background for the dropdown menu. -$dropdown-bg: #fff !default; -//** Dropdown menu `border-color`. -$dropdown-border: rgba(0,0,0,.15) !default; -//** Dropdown menu `border-color` **for IE8**. -$dropdown-fallback-border: #ccc !default; -//** Divider color for between dropdown items. -$dropdown-divider-bg: #e5e5e5 !default; - -//** Dropdown link text color. -$dropdown-link-color: $gray-dark !default; -//** Hover color for dropdown links. -$dropdown-link-hover-color: darken($gray-dark, 5%) !default; -//** Hover background for dropdown links. -$dropdown-link-hover-bg: #f5f5f5 !default; - -//** Active dropdown menu item text color. -$dropdown-link-active-color: $component-active-color !default; -//** Active dropdown menu item background color. -$dropdown-link-active-bg: $component-active-bg !default; - -//** Disabled dropdown menu item background color. -$dropdown-link-disabled-color: $gray-light !default; - -//** Text color for headers within dropdown menus. -$dropdown-header-color: $gray-light !default; - -//** Deprecated `$dropdown-caret-color` as of v3.1.0 -$dropdown-caret-color: #000 !default; - - -//-- Z-index master list -// -// Warning: Avoid customizing these values. They're used for a bird's eye view -// of components dependent on the z-axis and are designed to all work together. -// -// Note: These variables are not generated into the Customizer. - -$zindex-navbar: 1000 !default; -$zindex-dropdown: 1000 !default; -$zindex-popover: 1060 !default; -$zindex-tooltip: 1070 !default; -$zindex-navbar-fixed: 1030 !default; -$zindex-modal-background: 1040 !default; -$zindex-modal: 1050 !default; - - -//== Media queries breakpoints -// -//## Define the breakpoints at which your layout will change, adapting to different screen sizes. - -// Extra small screen / phone -//** Deprecated `$screen-xs` as of v3.0.1 -$screen-xs: 480px !default; -//** Deprecated `$screen-xs-min` as of v3.2.0 -$screen-xs-min: $screen-xs !default; -//** Deprecated `$screen-phone` as of v3.0.1 -$screen-phone: $screen-xs-min !default; - -// Small screen / tablet -//** Deprecated `$screen-sm` as of v3.0.1 -$screen-sm: 768px !default; -$screen-sm-min: $screen-sm !default; -//** Deprecated `$screen-tablet` as of v3.0.1 -$screen-tablet: $screen-sm-min !default; - -// Medium screen / desktop -//** Deprecated `$screen-md` as of v3.0.1 -$screen-md: 992px !default; -$screen-md-min: $screen-md !default; -//** Deprecated `$screen-desktop` as of v3.0.1 -$screen-desktop: $screen-md-min !default; - -// Large screen / wide desktop -//** Deprecated `$screen-lg` as of v3.0.1 -$screen-lg: 1200px !default; -$screen-lg-min: $screen-lg !default; -//** Deprecated `$screen-lg-desktop` as of v3.0.1 -$screen-lg-desktop: $screen-lg-min !default; - -// So media queries don't overlap when required, provide a maximum -$screen-xs-max: ($screen-sm-min - 1) !default; -$screen-sm-max: ($screen-md-min - 1) !default; -$screen-md-max: ($screen-lg-min - 1) !default; - - -//== Grid system -// -//## Define your custom responsive grid. - -//** Number of columns in the grid. -$grid-columns: 12 !default; -//** Padding between columns. Gets divided in half for the left and right. -$grid-gutter-width: 30px !default; -// Navbar collapse -//** Point at which the navbar becomes uncollapsed. -$grid-float-breakpoint: $screen-sm-min !default; -//** Point at which the navbar begins collapsing. -$grid-float-breakpoint-max: ($grid-float-breakpoint - 1) !default; - - -//== Container sizes -// -//## Define the maximum width of `.container` for different screen sizes. - -// Small screen / tablet -$container-tablet: (720px + $grid-gutter-width) !default; -//** For `$screen-sm-min` and up. -$container-sm: $container-tablet !default; - -// Medium screen / desktop -$container-desktop: (940px + $grid-gutter-width) !default; -//** For `$screen-md-min` and up. -$container-md: $container-desktop !default; - -// Large screen / wide desktop -$container-large-desktop: (1140px + $grid-gutter-width) !default; -//** For `$screen-lg-min` and up. -$container-lg: $container-large-desktop !default; - - -//== Navbar -// -//## - -// Basics of a navbar -$navbar-height: 50px !default; -$navbar-margin-bottom: $line-height-computed !default; -$navbar-border-radius: $border-radius-base !default; -$navbar-padding-horizontal: floor(($grid-gutter-width / 2)) !default; -$navbar-padding-vertical: (($navbar-height - $line-height-computed) / 2) !default; -$navbar-collapse-max-height: 340px !default; - -$navbar-default-color: #777 !default; -$navbar-default-bg: #f8f8f8 !default; -$navbar-default-border: darken($navbar-default-bg, 6.5%) !default; - -// Navbar links -$navbar-default-link-color: #777 !default; -$navbar-default-link-hover-color: #333 !default; -$navbar-default-link-hover-bg: transparent !default; -$navbar-default-link-active-color: #555 !default; -$navbar-default-link-active-bg: darken($navbar-default-bg, 6.5%) !default; -$navbar-default-link-disabled-color: #ccc !default; -$navbar-default-link-disabled-bg: transparent !default; - -// Navbar brand label -$navbar-default-brand-color: $navbar-default-link-color !default; -$navbar-default-brand-hover-color: darken($navbar-default-brand-color, 10%) !default; -$navbar-default-brand-hover-bg: transparent !default; - -// Navbar toggle -$navbar-default-toggle-hover-bg: #ddd !default; -$navbar-default-toggle-icon-bar-bg: #888 !default; -$navbar-default-toggle-border-color: #ddd !default; - - -//=== Inverted navbar -// Reset inverted navbar basics -$navbar-inverse-color: lighten($gray-light, 15%) !default; -$navbar-inverse-bg: #222 !default; -$navbar-inverse-border: darken($navbar-inverse-bg, 10%) !default; - -// Inverted navbar links -$navbar-inverse-link-color: lighten($gray-light, 15%) !default; -$navbar-inverse-link-hover-color: #fff !default; -$navbar-inverse-link-hover-bg: transparent !default; -$navbar-inverse-link-active-color: $navbar-inverse-link-hover-color !default; -$navbar-inverse-link-active-bg: darken($navbar-inverse-bg, 10%) !default; -$navbar-inverse-link-disabled-color: #444 !default; -$navbar-inverse-link-disabled-bg: transparent !default; - -// Inverted navbar brand label -$navbar-inverse-brand-color: $navbar-inverse-link-color !default; -$navbar-inverse-brand-hover-color: #fff !default; -$navbar-inverse-brand-hover-bg: transparent !default; - -// Inverted navbar toggle -$navbar-inverse-toggle-hover-bg: #333 !default; -$navbar-inverse-toggle-icon-bar-bg: #fff !default; -$navbar-inverse-toggle-border-color: #333 !default; - - -//== Navs -// -//## - -//=== Shared nav styles -$nav-link-padding: 10px 15px !default; -$nav-link-hover-bg: $gray-lighter !default; - -$nav-disabled-link-color: $gray-light !default; -$nav-disabled-link-hover-color: $gray-light !default; - -//== Tabs -$nav-tabs-border-color: #ddd !default; - -$nav-tabs-link-hover-border-color: $gray-lighter !default; - -$nav-tabs-active-link-hover-bg: $body-bg !default; -$nav-tabs-active-link-hover-color: $gray !default; -$nav-tabs-active-link-hover-border-color: #ddd !default; - -$nav-tabs-justified-link-border-color: #ddd !default; -$nav-tabs-justified-active-link-border-color: $body-bg !default; - -//== Pills -$nav-pills-border-radius: $border-radius-base !default; -$nav-pills-active-link-hover-bg: $component-active-bg !default; -$nav-pills-active-link-hover-color: $component-active-color !default; - - -//== Pagination -// -//## - -$pagination-color: $link-color !default; -$pagination-bg: #fff !default; -$pagination-border: #ddd !default; - -$pagination-hover-color: $link-hover-color !default; -$pagination-hover-bg: $gray-lighter !default; -$pagination-hover-border: #ddd !default; - -$pagination-active-color: #fff !default; -$pagination-active-bg: $brand-primary !default; -$pagination-active-border: $brand-primary !default; - -$pagination-disabled-color: $gray-light !default; -$pagination-disabled-bg: #fff !default; -$pagination-disabled-border: #ddd !default; - - -//== Pager -// -//## - -$pager-bg: $pagination-bg !default; -$pager-border: $pagination-border !default; -$pager-border-radius: 15px !default; - -$pager-hover-bg: $pagination-hover-bg !default; - -$pager-active-bg: $pagination-active-bg !default; -$pager-active-color: $pagination-active-color !default; - -$pager-disabled-color: $pagination-disabled-color !default; - - -//== Jumbotron -// -//## - -$jumbotron-padding: 30px !default; -$jumbotron-color: inherit !default; -$jumbotron-bg: $gray-lighter !default; -$jumbotron-heading-color: inherit !default; -$jumbotron-font-size: ceil(($font-size-base * 1.5)) !default; -$jumbotron-heading-font-size: ceil(($font-size-base * 4.5)) !default; - - -//== Form states and alerts -// -//## Define colors for form feedback states and, by default, alerts. - -$state-success-text: #3c763d !default; -$state-success-bg: #dff0d8 !default; -$state-success-border: darken(adjust-hue($state-success-bg, -10), 5%) !default; - -$state-info-text: #31708f !default; -$state-info-bg: #d9edf7 !default; -$state-info-border: darken(adjust-hue($state-info-bg, -10), 7%) !default; - -$state-warning-text: #8a6d3b !default; -$state-warning-bg: #fcf8e3 !default; -$state-warning-border: darken(adjust-hue($state-warning-bg, -10), 5%) !default; - -$state-danger-text: #a94442 !default; -$state-danger-bg: #f2dede !default; -$state-danger-border: darken(adjust-hue($state-danger-bg, -10), 5%) !default; - - -//== Tooltips -// -//## - -//** Tooltip max width -$tooltip-max-width: 200px !default; -//** Tooltip text color -$tooltip-color: #fff !default; -//** Tooltip background color -$tooltip-bg: #000 !default; -$tooltip-opacity: .9 !default; - -//** Tooltip arrow width -$tooltip-arrow-width: 5px !default; -//** Tooltip arrow color -$tooltip-arrow-color: $tooltip-bg !default; - - -//== Popovers -// -//## - -//** Popover body background color -$popover-bg: #fff !default; -//** Popover maximum width -$popover-max-width: 276px !default; -//** Popover border color -$popover-border-color: rgba(0,0,0,.2) !default; -//** Popover fallback border color -$popover-fallback-border-color: #ccc !default; - -//** Popover title background color -$popover-title-bg: darken($popover-bg, 3%) !default; - -//** Popover arrow width -$popover-arrow-width: 10px !default; -//** Popover arrow color -$popover-arrow-color: $popover-bg !default; - -//** Popover outer arrow width -$popover-arrow-outer-width: ($popover-arrow-width + 1) !default; -//** Popover outer arrow color -$popover-arrow-outer-color: fade_in($popover-border-color, 0.05) !default; -//** Popover outer arrow fallback color -$popover-arrow-outer-fallback-color: darken($popover-fallback-border-color, 20%) !default; - - -//== Labels -// -//## - -//** Default label background color -$label-default-bg: $gray-light !default; -//** Primary label background color -$label-primary-bg: $brand-primary !default; -//** Success label background color -$label-success-bg: $brand-success !default; -//** Info label background color -$label-info-bg: $brand-info !default; -//** Warning label background color -$label-warning-bg: $brand-warning !default; -//** Danger label background color -$label-danger-bg: $brand-danger !default; - -//** Default label text color -$label-color: #fff !default; -//** Default text color of a linked label -$label-link-hover-color: #fff !default; - - -//== Modals -// -//## - -//** Padding applied to the modal body -$modal-inner-padding: 15px !default; - -//** Padding applied to the modal title -$modal-title-padding: 15px !default; -//** Modal title line-height -$modal-title-line-height: $line-height-base !default; - -//** Background color of modal content area -$modal-content-bg: #fff !default; -//** Modal content border color -$modal-content-border-color: rgba(0,0,0,.2) !default; -//** Modal content border color **for IE8** -$modal-content-fallback-border-color: #999 !default; - -//** Modal backdrop background color -$modal-backdrop-bg: #000 !default; -//** Modal backdrop opacity -$modal-backdrop-opacity: .5 !default; -//** Modal header border color -$modal-header-border-color: #e5e5e5 !default; -//** Modal footer border color -$modal-footer-border-color: $modal-header-border-color !default; - -$modal-lg: 900px !default; -$modal-md: 600px !default; -$modal-sm: 300px !default; - - -//== Alerts -// -//## Define alert colors, border radius, and padding. - -$alert-padding: 15px !default; -$alert-border-radius: $border-radius-base !default; -$alert-link-font-weight: bold !default; - -$alert-success-bg: $state-success-bg !default; -$alert-success-text: $state-success-text !default; -$alert-success-border: $state-success-border !default; - -$alert-info-bg: $state-info-bg !default; -$alert-info-text: $state-info-text !default; -$alert-info-border: $state-info-border !default; - -$alert-warning-bg: $state-warning-bg !default; -$alert-warning-text: $state-warning-text !default; -$alert-warning-border: $state-warning-border !default; - -$alert-danger-bg: $state-danger-bg !default; -$alert-danger-text: $state-danger-text !default; -$alert-danger-border: $state-danger-border !default; - - -//== Progress bars -// -//## - -//** Background color of the whole progress component -$progress-bg: #f5f5f5 !default; -//** Progress bar text color -$progress-bar-color: #fff !default; -//** Variable for setting rounded corners on progress bar. -$progress-border-radius: $border-radius-base !default; - -//** Default progress bar color -$progress-bar-bg: $brand-primary !default; -//** Success progress bar color -$progress-bar-success-bg: $brand-success !default; -//** Warning progress bar color -$progress-bar-warning-bg: $brand-warning !default; -//** Danger progress bar color -$progress-bar-danger-bg: $brand-danger !default; -//** Info progress bar color -$progress-bar-info-bg: $brand-info !default; - - -//== List group -// -//## - -//** Background color on `.list-group-item` -$list-group-bg: #fff !default; -//** `.list-group-item` border color -$list-group-border: #ddd !default; -//** List group border radius -$list-group-border-radius: $border-radius-base !default; - -//** Background color of single list items on hover -$list-group-hover-bg: #f5f5f5 !default; -//** Text color of active list items -$list-group-active-color: $component-active-color !default; -//** Background color of active list items -$list-group-active-bg: $component-active-bg !default; -//** Border color of active list elements -$list-group-active-border: $list-group-active-bg !default; -//** Text color for content within active list items -$list-group-active-text-color: lighten($list-group-active-bg, 40%) !default; - -//** Text color of disabled list items -$list-group-disabled-color: $gray-light !default; -//** Background color of disabled list items -$list-group-disabled-bg: $gray-lighter !default; -//** Text color for content within disabled list items -$list-group-disabled-text-color: $list-group-disabled-color !default; - -$list-group-link-color: #555 !default; -$list-group-link-hover-color: $list-group-link-color !default; -$list-group-link-heading-color: #333 !default; - - -//== Panels -// -//## - -$panel-bg: #fff !default; -$panel-body-padding: 15px !default; -$panel-heading-padding: 10px 15px !default; -$panel-footer-padding: $panel-heading-padding !default; -$panel-border-radius: $border-radius-base !default; - -//** Border color for elements within panels -$panel-inner-border: #ddd !default; -$panel-footer-bg: #f5f5f5 !default; - -$panel-default-text: $gray-dark !default; -$panel-default-border: #ddd !default; -$panel-default-heading-bg: #f5f5f5 !default; - -$panel-primary-text: #fff !default; -$panel-primary-border: $brand-primary !default; -$panel-primary-heading-bg: $brand-primary !default; - -$panel-success-text: $state-success-text !default; -$panel-success-border: $state-success-border !default; -$panel-success-heading-bg: $state-success-bg !default; - -$panel-info-text: $state-info-text !default; -$panel-info-border: $state-info-border !default; -$panel-info-heading-bg: $state-info-bg !default; - -$panel-warning-text: $state-warning-text !default; -$panel-warning-border: $state-warning-border !default; -$panel-warning-heading-bg: $state-warning-bg !default; - -$panel-danger-text: $state-danger-text !default; -$panel-danger-border: $state-danger-border !default; -$panel-danger-heading-bg: $state-danger-bg !default; - - -//== Thumbnails -// -//## - -//** Padding around the thumbnail image -$thumbnail-padding: 4px !default; -//** Thumbnail background color -$thumbnail-bg: $body-bg !default; -//** Thumbnail border color -$thumbnail-border: #ddd !default; -//** Thumbnail border radius -$thumbnail-border-radius: $border-radius-base !default; - -//** Custom text color for thumbnail captions -$thumbnail-caption-color: $text-color !default; -//** Padding around the thumbnail caption -$thumbnail-caption-padding: 9px !default; - - -//== Wells -// -//## - -$well-bg: #f5f5f5 !default; -$well-border: darken($well-bg, 7%) !default; - - -//== Badges -// -//## - -$badge-color: #fff !default; -//** Linked badge text color on hover -$badge-link-hover-color: #fff !default; -$badge-bg: $gray-light !default; - -//** Badge text color in active nav link -$badge-active-color: $link-color !default; -//** Badge background color in active nav link -$badge-active-bg: #fff !default; - -$badge-font-weight: bold !default; -$badge-line-height: 1 !default; -$badge-border-radius: 10px !default; - - -//== Breadcrumbs -// -//## - -$breadcrumb-padding-vertical: 8px !default; -$breadcrumb-padding-horizontal: 15px !default; -//** Breadcrumb background color -$breadcrumb-bg: #f5f5f5 !default; -//** Breadcrumb text color -$breadcrumb-color: #ccc !default; -//** Text color of current page in the breadcrumb -$breadcrumb-active-color: $gray-light !default; -//** Textual separator for between breadcrumb elements -$breadcrumb-separator: "/" !default; - - -//== Carousel -// -//## - -$carousel-text-shadow: 0 1px 2px rgba(0,0,0,.6) !default; - -$carousel-control-color: #fff !default; -$carousel-control-width: 15% !default; -$carousel-control-opacity: .5 !default; -$carousel-control-font-size: 20px !default; - -$carousel-indicator-active-bg: #fff !default; -$carousel-indicator-border-color: #fff !default; - -$carousel-caption-color: #fff !default; - - -//== Close -// -//## - -$close-font-weight: bold !default; -$close-color: #000 !default; -$close-text-shadow: 0 1px 0 #fff !default; - - -//== Code -// -//## - -$code-color: #c7254e !default; -$code-bg: #f9f2f4 !default; - -$kbd-color: #fff !default; -$kbd-bg: #333 !default; - -$pre-bg: #f5f5f5 !default; -$pre-color: $gray-dark !default; -$pre-border-color: #ccc !default; -$pre-scrollable-max-height: 340px !default; - - -//== Type -// -//## - -//** Horizontal offset for forms and lists. -$component-offset-horizontal: 180px !default; -//** Text muted color -$text-muted: $gray-light !default; -//** Abbreviations and acronyms border color -$abbr-border-color: $gray-light !default; -//** Headings small color -$headings-small-color: $gray-light !default; -//** Blockquote small color -$blockquote-small-color: $gray-light !default; -//** Blockquote font size -$blockquote-font-size: ($font-size-base * 1.25) !default; -//** Blockquote border color -$blockquote-border-color: $gray-lighter !default; -//** Page header border color -$page-header-border-color: $gray-lighter !default; -//** Width of horizontal description list titles -$dl-horizontal-offset: $component-offset-horizontal !default; -//** Point at which .dl-horizontal becomes horizontal -$dl-horizontal-breakpoint: $grid-float-breakpoint !default; -//** Horizontal line color. -$hr-border: $gray-lighter !default; diff --git a/assets/stylesheets/vendor/bootstrap/_wells.scss b/assets/stylesheets/vendor/bootstrap/_wells.scss deleted file mode 100644 index b865711..0000000 --- a/assets/stylesheets/vendor/bootstrap/_wells.scss +++ /dev/null @@ -1,29 +0,0 @@ -// -// Wells -// -------------------------------------------------- - - -// Base class -.well { - min-height: 20px; - padding: 19px; - margin-bottom: 20px; - background-color: $well-bg; - border: 1px solid $well-border; - border-radius: $border-radius-base; - @include box-shadow(inset 0 1px 1px rgba(0,0,0,.05)); - blockquote { - border-color: #ddd; - border-color: rgba(0,0,0,.15); - } -} - -// Sizes -.well-lg { - padding: 24px; - border-radius: $border-radius-large; -} -.well-sm { - padding: 9px; - border-radius: $border-radius-small; -} diff --git a/assets/stylesheets/vendor/bootstrap/mixins/_alerts.scss b/assets/stylesheets/vendor/bootstrap/mixins/_alerts.scss deleted file mode 100644 index 3faf0b5..0000000 --- a/assets/stylesheets/vendor/bootstrap/mixins/_alerts.scss +++ /dev/null @@ -1,14 +0,0 @@ -// Alerts - -@mixin alert-variant($background, $border, $text-color) { - background-color: $background; - border-color: $border; - color: $text-color; - - hr { - border-top-color: darken($border, 5%); - } - .alert-link { - color: darken($text-color, 10%); - } -} diff --git a/assets/stylesheets/vendor/bootstrap/mixins/_background-variant.scss b/assets/stylesheets/vendor/bootstrap/mixins/_background-variant.scss deleted file mode 100644 index 4c7769e..0000000 --- a/assets/stylesheets/vendor/bootstrap/mixins/_background-variant.scss +++ /dev/null @@ -1,12 +0,0 @@ -// Contextual backgrounds - -// [converter] $parent hack -@mixin bg-variant($parent, $color) { - #{$parent} { - background-color: $color; - } - a#{$parent}:hover, - a#{$parent}:focus { - background-color: darken($color, 10%); - } -} diff --git a/assets/stylesheets/vendor/bootstrap/mixins/_border-radius.scss b/assets/stylesheets/vendor/bootstrap/mixins/_border-radius.scss deleted file mode 100644 index ce19499..0000000 --- a/assets/stylesheets/vendor/bootstrap/mixins/_border-radius.scss +++ /dev/null @@ -1,18 +0,0 @@ -// Single side border-radius - -@mixin border-top-radius($radius) { - border-top-right-radius: $radius; - border-top-left-radius: $radius; -} -@mixin border-right-radius($radius) { - border-bottom-right-radius: $radius; - border-top-right-radius: $radius; -} -@mixin border-bottom-radius($radius) { - border-bottom-right-radius: $radius; - border-bottom-left-radius: $radius; -} -@mixin border-left-radius($radius) { - border-bottom-left-radius: $radius; - border-top-left-radius: $radius; -} diff --git a/assets/stylesheets/vendor/bootstrap/mixins/_buttons.scss b/assets/stylesheets/vendor/bootstrap/mixins/_buttons.scss deleted file mode 100644 index b93f84b..0000000 --- a/assets/stylesheets/vendor/bootstrap/mixins/_buttons.scss +++ /dev/null @@ -1,65 +0,0 @@ -// Button variants -// -// Easily pump out default styles, as well as :hover, :focus, :active, -// and disabled options for all buttons - -@mixin button-variant($color, $background, $border) { - color: $color; - background-color: $background; - border-color: $border; - - &:focus, - &.focus { - color: $color; - background-color: darken($background, 10%); - border-color: darken($border, 25%); - } - &:hover { - color: $color; - background-color: darken($background, 10%); - border-color: darken($border, 12%); - } - &:active, - &.active, - .open > &.dropdown-toggle { - color: $color; - background-color: darken($background, 10%); - border-color: darken($border, 12%); - - &:hover, - &:focus, - &.focus { - color: $color; - background-color: darken($background, 17%); - border-color: darken($border, 25%); - } - } - &:active, - &.active, - .open > &.dropdown-toggle { - background-image: none; - } - &.disabled, - &[disabled], - fieldset[disabled] & { - &:hover, - &:focus, - &.focus { - background-color: $background; - border-color: $border; - } - } - - .badge { - color: $background; - background-color: $color; - } -} - -// Button sizes -@mixin button-size($padding-vertical, $padding-horizontal, $font-size, $line-height, $border-radius) { - padding: $padding-vertical $padding-horizontal; - font-size: $font-size; - line-height: $line-height; - border-radius: $border-radius; -} diff --git a/assets/stylesheets/vendor/bootstrap/mixins/_center-block.scss b/assets/stylesheets/vendor/bootstrap/mixins/_center-block.scss deleted file mode 100644 index e06fb5e..0000000 --- a/assets/stylesheets/vendor/bootstrap/mixins/_center-block.scss +++ /dev/null @@ -1,7 +0,0 @@ -// Center-align a block level element - -@mixin center-block() { - display: block; - margin-left: auto; - margin-right: auto; -} diff --git a/assets/stylesheets/vendor/bootstrap/mixins/_clearfix.scss b/assets/stylesheets/vendor/bootstrap/mixins/_clearfix.scss deleted file mode 100644 index dc3e2ab..0000000 --- a/assets/stylesheets/vendor/bootstrap/mixins/_clearfix.scss +++ /dev/null @@ -1,22 +0,0 @@ -// Clearfix -// -// For modern browsers -// 1. The space content is one way to avoid an Opera bug when the -// contenteditable attribute is included anywhere else in the document. -// Otherwise it causes space to appear at the top and bottom of elements -// that are clearfixed. -// 2. The use of `table` rather than `block` is only necessary if using -// `:before` to contain the top-margins of child elements. -// -// Source: http://nicolasgallagher.com/micro-clearfix-hack/ - -@mixin clearfix() { - &:before, - &:after { - content: " "; // 1 - display: table; // 2 - } - &:after { - clear: both; - } -} diff --git a/assets/stylesheets/vendor/bootstrap/mixins/_forms.scss b/assets/stylesheets/vendor/bootstrap/mixins/_forms.scss deleted file mode 100644 index 277aa5f..0000000 --- a/assets/stylesheets/vendor/bootstrap/mixins/_forms.scss +++ /dev/null @@ -1,88 +0,0 @@ -// Form validation states -// -// Used in forms.less to generate the form validation CSS for warnings, errors, -// and successes. - -@mixin form-control-validation($text-color: #555, $border-color: #ccc, $background-color: #f5f5f5) { - // Color the label and help text - .help-block, - .control-label, - .radio, - .checkbox, - .radio-inline, - .checkbox-inline, - &.radio label, - &.checkbox label, - &.radio-inline label, - &.checkbox-inline label { - color: $text-color; - } - // Set the border and box shadow on specific inputs to match - .form-control { - border-color: $border-color; - @include box-shadow(inset 0 1px 1px rgba(0,0,0,.075)); // Redeclare so transitions work - &:focus { - border-color: darken($border-color, 10%); - $shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 6px lighten($border-color, 20%); - @include box-shadow($shadow); - } - } - // Set validation states also for addons - .input-group-addon { - color: $text-color; - border-color: $border-color; - background-color: $background-color; - } - // Optional feedback icon - .form-control-feedback { - color: $text-color; - } -} - - -// Form control focus state -// -// Generate a customized focus state and for any input with the specified color, -// which defaults to the `$input-border-focus` variable. -// -// We highly encourage you to not customize the default value, but instead use -// this to tweak colors on an as-needed basis. This aesthetic change is based on -// WebKit's default styles, but applicable to a wider range of browsers. Its -// usability and accessibility should be taken into account with any change. -// -// Example usage: change the default blue border and shadow to white for better -// contrast against a dark gray background. -@mixin form-control-focus($color: $input-border-focus) { - $color-rgba: rgba(red($color), green($color), blue($color), .6); - &:focus { - border-color: $color; - outline: 0; - @include box-shadow(inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px $color-rgba); - } -} - -// Form control sizing -// -// Relative text size, padding, and border-radii changes for form controls. For -// horizontal sizing, wrap controls in the predefined grid classes. ` + + + + {this.state.value[0] != null && this.state.selectedFigures !=null ? + (
    + +
    ) + : + (
    ) + } +
    + {this.state.value[0] != null && this.state.selectedFigures !=null? ( +
    + + + + + {this.state.selectedFigures.map(function(state, index){ + return( + + ); + }) + } + + + + + + {this.state.hoverValue ? + ( +
    +
    + {this.state.hoverValue.state} +
    + Fiscal Year : + {this.state.hoverValue.x} +
    +
    + Figure : + {this.state.hoverValue.y} +
    +
    +
    ) + :null + } +
    +
    + ) : + (
    +
    +

    Select states to generate Visualization

    +
    +
    + ) + } +
    + +
    + Source - {this.state.notesText.source} +
    + + ); + } +} + +GraphComponent.propTypes = { + data: React.PropTypes.object, + attrType:React.PropTypes.string, + selectedSector:React.PropTypes.string, + selectedIndicator:React.PropTypes.string +}; + +export default GraphComponent; \ No newline at end of file diff --git a/src/data/StatesTopojson.js b/src/data/StatesTopojson.js new file mode 100644 index 0000000..25f1d71 --- /dev/null +++ b/src/data/StatesTopojson.js @@ -0,0 +1 @@ +export let TopojsonData = {"type":"Topology","transform":{"scale":[0.0004479274563322561,0.00042369142822232486],"translate":[68.15515738328011,6.75426]},"arcs":[[[57225,232],[7,-4],[-7,-7],[-6,0],[-2,3],[8,8]],[[57073,1070],[-2,-3],[-15,4],[-1,17],[-12,26],[6,12],[10,-15],[0,-7],[18,-21],[-4,-13]],[[57359,1147],[1,-16],[-13,-12],[8,-24],[14,-11],[12,3],[3,6],[21,0],[14,-16],[5,-16],[13,0],[-6,-24],[8,-12],[0,-11],[-8,-26],[4,-10],[8,-6],[-4,-8],[9,-27],[-8,-51],[3,-9],[10,-5],[3,-6],[-6,-27],[-7,-11],[6,-28],[-1,-16],[12,-18],[12,0],[8,-5],[10,-16],[-1,-19],[11,-12],[2,-10],[11,-10],[0,-8],[-10,-11],[5,-8],[-2,-6],[7,-8],[-1,-13],[9,-5],[18,9],[12,-13],[6,-19],[8,-8],[12,-2],[5,-25],[-8,-14],[-3,0],[-5,9],[-15,10],[-10,22],[-5,2],[-15,-6],[-11,-10],[-4,-10],[2,-13],[10,-3],[20,-16],[3,-6],[-2,-23],[10,-9],[5,-16],[20,-9],[3,-9],[-5,-11],[-9,-3],[-25,12],[-22,-19],[-2,-34],[-14,-2],[-4,-10],[3,-11],[11,-14],[2,-11],[-13,-16],[-4,-2],[-15,6],[-11,-12],[7,-15],[-8,-10],[8,-13],[4,-27],[-3,-7],[-17,-14],[4,-25],[-3,-19],[6,-13],[25,-5],[7,-11],[-4,-14],[-16,-20],[1,-18],[-14,-20],[-16,-2],[-3,-15],[-10,-6],[0,-4],[-8,8],[-1,16],[-23,29],[-39,2],[1,-7],[-12,-30],[6,-22],[-5,-12],[2,-15],[-19,-23],[-9,-34],[-8,1],[-7,-4],[-24,6],[-28,18],[-2,10],[3,8],[18,17],[-13,11],[2,14],[8,8],[-9,10],[3,15],[-2,6],[11,3],[5,10],[0,10],[-9,5],[-11,-13],[-8,0],[-15,14],[-3,12],[-19,17],[-2,12],[4,12],[14,15],[2,7],[-8,5],[-4,10],[-15,-6],[-7,7],[-12,16],[-2,5],[6,9],[-9,16],[12,9],[5,0],[2,7],[-7,4],[8,12],[-3,3],[-5,-2],[-12,7],[-1,8],[-7,-5],[-3,9],[3,7],[-12,14],[6,4],[2,5],[-4,12],[-14,-8],[-9,-15],[-4,1],[-8,8],[-4,17],[-11,17],[2,10],[17,-1],[4,19],[-7,12],[3,7],[-2,9],[-7,5],[4,11],[-7,15],[-6,4],[-10,-10],[-6,1],[0,14],[-10,9],[6,18],[-24,35],[-14,4],[-11,-2],[-9,-7],[-9,4],[0,7],[6,13],[-12,22],[-16,14],[-17,7],[-19,-4],[-7,-29],[-6,-3],[-9,0],[-11,9],[3,10],[14,5],[-1,15],[9,5],[0,5],[-11,11],[8,12],[1,7],[-14,9],[-5,9],[0,10],[6,12],[3,30],[-12,2],[-2,6],[1,7],[15,17],[1,8],[-8,9],[-8,-4],[-5,2],[-8,20],[1,12],[5,7],[13,1],[7,9],[10,6],[3,7],[-16,12],[-10,-14],[-10,1],[-5,8],[-1,24],[5,9],[16,5],[5,19],[5,0],[7,-5],[7,6],[6,37],[-9,11],[3,30],[-6,7],[23,18],[6,15],[13,5],[3,-4],[18,-4],[12,7],[14,2],[12,-6],[2,-5],[14,-4],[7,4],[11,-1],[28,31],[11,7],[6,-2],[1,3],[-6,7],[8,11],[12,7],[13,0],[-4,-11],[20,-7],[9,5],[-1,7],[16,4],[7,-6],[12,5],[15,-15],[6,-2],[1,-11],[4,14],[-4,9],[5,3],[5,-5],[11,8],[-10,3],[-3,10],[10,2],[-4,20],[-8,-2],[4,14],[8,-5],[11,3],[2,5],[10,5],[14,3],[9,-5],[9,7],[7,0],[-3,8],[14,-6],[8,4],[1,6],[1,-9]],[[57361,1264],[-6,-10],[-2,0],[-2,7],[10,3]],[[56948,1486],[3,0],[2,-1],[-9,0],[4,1]],[[57182,1529],[9,-9],[-1,-7],[-5,-4],[-8,1],[-9,10],[11,13],[3,-4]],[[57005,1547],[7,-3],[-3,-8],[9,-13],[-9,-7],[-8,2],[-7,7],[-3,11],[14,11]],[[57058,1627],[6,-22],[10,-9],[1,-18],[4,-4],[-2,-45],[13,-17],[31,-24],[16,-7],[8,-12],[4,1],[6,-6],[2,-16],[-5,-10],[2,-9],[-17,-7],[1,-11],[-14,-11],[-10,-17],[-7,-31],[-4,-8],[-9,-6],[-9,-26],[-15,-12],[-7,5],[-6,-5],[-12,-2],[-4,-11],[-16,-14],[-25,-7],[-8,-11],[-9,-3],[-6,-10],[2,-7],[-15,-22],[-5,-24],[-13,-8],[-22,-24],[-10,-5],[-23,25],[1,9],[-4,7],[-9,9],[-6,-1],[-2,4],[0,12],[11,13],[-7,12],[6,6],[2,8],[-12,39],[-6,7],[-9,1],[-3,5],[2,7],[17,6],[14,18],[2,24],[-10,13],[3,25],[-4,8],[-2,25],[3,20],[8,8],[8,0],[22,-12],[31,29],[6,0],[13,-17],[6,-1],[13,8],[3,18],[6,8],[21,5],[11,10],[4,-4],[15,4],[15,-3],[1,7],[-12,4],[-1,6],[-11,3],[5,9],[0,16],[7,14],[1,14],[-6,8],[0,25],[-5,13],[3,4],[6,-4],[7,5],[3,-4]],[[56913,1705],[10,-7],[-1,-8],[-18,1],[0,9],[9,5]],[[56883,1708],[-3,-6],[-7,7],[0,3],[5,1],[5,-5]],[[56680,1819],[15,-19],[-6,-11],[-12,-5],[-5,8],[3,10],[-4,5],[2,9],[7,3]],[[56229,2719],[2,-3],[0,-2],[-5,1],[3,4]],[[56225,2730],[1,-3],[-2,-2],[-1,4],[2,1]],[[56315,2999],[13,-9],[28,-9],[25,-24],[-1,-4],[-8,-4],[-5,-13],[-1,-19],[4,-14],[-6,-18],[7,-12],[11,-9],[4,-14],[10,-6],[10,0],[20,20],[6,-6],[7,-21],[10,-4],[44,-40],[11,-18],[3,-15],[-1,-20],[20,-53],[-7,-10],[-2,-13],[-20,-25],[-19,7],[-3,20],[-23,35],[-42,20],[-19,-2],[-14,-10],[-6,3],[-17,-3],[-11,-22],[-13,-12],[-11,-5],[-4,-8],[-7,-1],[-10,5],[-5,7],[-6,-2],[-25,7],[-14,11],[-3,12],[-10,7],[-2,11],[7,3],[1,6],[-10,21],[20,30],[-12,-10],[-3,8],[29,26],[-7,-2],[-12,9],[-14,-13],[13,2],[-2,-11],[-11,-9],[-9,9],[-11,1],[-8,-17],[6,-8],[-5,-5],[-19,8],[-12,16],[5,16],[-16,25],[-3,26],[9,10],[4,9],[16,14],[-3,37],[9,26],[22,23],[14,-4],[10,14],[10,-19],[18,3],[15,11],[11,19],[20,6]],[[56688,3006],[1,-3],[6,2],[24,-10],[4,4],[4,-3],[4,-19],[11,-9],[11,-28],[14,-20],[-2,-14],[3,-5],[-8,-11],[8,-17],[-8,-14],[5,-6],[0,-11],[-5,-9],[5,-8],[-3,-20],[2,-10],[-4,-4],[0,-8],[-6,-4],[3,-5],[-2,-3],[-8,1],[-24,20],[-25,28],[-14,6],[-16,16],[0,6],[-6,6],[-24,11],[-1,6],[-6,0],[-13,9],[3,4],[-3,6],[-19,14],[2,9],[-7,12],[5,7],[13,6],[3,-9],[8,-5],[17,16],[4,11],[8,4],[-2,22],[-5,7],[5,13],[5,2],[6,-2],[5,-16],[11,-5],[2,-21],[17,-24],[2,9],[-3,13],[4,6],[-4,2],[0,11],[-4,2],[-2,6],[3,8],[-13,11],[4,7],[5,0]],[[56758,3236],[4,-1],[19,-37],[4,-25],[-4,-9],[5,-3],[-1,-25],[5,-15],[-5,-16],[3,-12],[12,-14],[5,-18],[4,-3],[-1,-14],[-18,-15],[-17,27],[-7,1],[-4,16],[-11,6],[-9,18],[6,15],[16,2],[0,10],[-4,1],[4,6],[-20,24],[-4,-2],[-3,12],[13,34],[-10,-8],[-20,28],[3,6],[35,11]],[[56642,3486],[24,-4],[15,-11],[6,-35],[-3,-29],[-7,-11],[-10,-6],[1,-12],[-8,-13],[-21,-20],[-2,7],[11,7],[10,15],[-11,-6],[-16,-21],[-8,1],[-16,-11],[-3,-9],[7,-4],[-2,-12],[-8,-4],[-2,-16],[-10,-2],[3,-9],[21,-18],[15,-27],[8,-7],[19,-41],[-1,-14],[20,-18],[11,-2],[5,-5],[11,-52],[-5,-6],[-2,-16],[-3,-2],[1,-14],[-8,-3],[8,-12],[3,-19],[-3,-1],[-17,5],[-5,4],[1,7],[-9,6],[1,5],[-12,5],[-6,-9],[2,-16],[-8,-15],[-7,2],[-4,10],[-8,-7],[-19,-1],[-5,-23],[13,-18],[-11,-4],[-1,-5],[7,-6],[-6,-5],[-1,-15],[-3,-7],[-8,4],[2,-5],[-4,-2],[-9,7],[-7,-3],[-4,2],[-14,39],[-2,15],[3,5],[-1,24],[2,10],[-2,12],[11,5],[6,-8],[15,-9],[9,20],[4,-17],[7,25],[-12,10],[12,6],[-1,13],[6,12],[6,-6],[4,-20],[-3,-18],[9,-7],[17,16],[-4,23],[11,2],[2,8],[-10,-2],[-4,16],[14,12],[-12,-1],[-4,13],[-6,-6],[-12,6],[-5,-24],[-13,-3],[-4,-9],[-4,2],[-8,-11],[-7,3],[-10,-9],[6,-6],[0,-14],[-4,-6],[-6,-4],[-5,6],[-4,-3],[-2,3],[-2,10],[1,18],[-3,8],[3,7],[-9,37],[15,4],[5,10],[-18,11],[-7,-15],[-26,38],[-1,13],[-5,8],[10,7],[-15,1],[-5,9],[1,13],[-4,7],[1,8],[14,13],[-5,8],[-9,-4],[-7,10],[-2,13],[5,16],[-7,19],[0,5],[3,2],[-2,11],[12,13],[22,5],[15,7],[12,19],[20,16],[0,11],[5,11],[-3,21],[8,13],[23,8],[8,6],[9,-1],[19,12],[12,-5]],[[55991,3567],[10,-11],[22,-47],[-1,-9],[6,-9],[-2,-2],[3,-9],[-4,-8],[-12,-6],[-11,2],[-1,-7],[-12,9],[-2,13],[-19,15],[-11,21],[4,28],[30,20]],[[55748,3780],[6,-2],[0,-7],[7,-9],[8,2],[17,-6],[0,-13],[-5,-9],[0,-18],[-15,-27],[-7,-20],[6,-19],[-17,-43],[0,-17],[16,-28],[47,-50],[43,-21],[12,-10],[34,-12],[8,-12],[15,-10],[2,-6],[-4,-27],[-4,-12],[-6,-6],[-18,0],[-7,-4],[-6,6],[-14,2],[-1,6],[-8,5],[-4,-3],[-3,6],[-10,-4],[-14,2],[-4,10],[-13,4],[-2,6],[-15,4],[-16,10],[-6,-2],[-9,12],[-7,-1],[-18,8],[-6,9],[-6,2],[1,13],[-9,0],[-15,18],[-9,14],[-2,18],[-5,0],[-24,37],[-8,30],[3,11],[-4,21],[5,29],[21,42],[0,32],[12,7],[1,7],[7,3],[4,9],[16,-7],[6,4],[-1,4],[9,-3],[16,15]],[[56923,3871],[10,-8],[-8,-7],[-6,5],[-7,-1],[-9,9],[4,3],[16,-1]],[[56884,3872],[-3,0],[-1,8],[5,-3],[-1,-5]],[[55564,4057],[29,-31],[-1,-28],[10,-12],[-7,-9],[-14,-2],[-19,5],[-17,19],[-2,10],[3,17],[9,22],[9,9]],[[56832,4084],[-1,3],[5,0],[0,-1],[-4,-2]],[[56841,4294],[5,-6],[-1,-7],[6,-8],[0,-14],[-5,-16],[5,-8],[-4,-6],[3,-3],[-1,-5],[4,-2],[5,-21],[-3,-3],[9,-10],[11,-4],[3,-4],[5,1],[3,-5],[-6,-11],[9,-13],[0,-4],[-9,-5],[-3,-7],[11,-20],[6,-31],[-2,-8],[8,-28],[-2,-9],[-6,1],[-11,13],[-16,-8],[-2,-27],[-6,-16],[10,-18],[-2,-4],[3,-7],[-3,-18],[-8,-18],[-8,26],[-7,5],[9,7],[-1,8],[-6,5],[6,8],[1,14],[-11,9],[9,0],[1,6],[7,5],[-6,20],[6,7],[-10,4],[4,4],[-4,11],[3,4],[10,0],[9,15],[-10,20],[4,16],[-2,27],[-5,10],[-5,3],[4,11],[-2,5],[-6,0],[-4,20],[-7,5],[-8,15],[4,6],[-5,13],[6,15],[-4,5],[9,9],[-7,16],[5,4],[-1,7],[6,-6]],[[56827,4313],[0,-5],[-3,-3],[-4,7],[7,1]],[[55152,4876],[-11,-2],[-5,7],[3,23],[12,13],[7,-7],[3,-11],[-2,-17],[-7,-6]],[[55005,5581],[5,-2],[2,1],[5,0],[-5,-2],[-10,0],[3,3]],[[55029,5586],[1,-2],[-4,-3],[-7,-1],[10,6]],[[55051,5600],[1,-3],[-6,-3],[0,3],[5,3]],[[54992,5877],[65,-65],[9,-18],[8,-31],[67,31],[6,-17],[-70,-23],[2,-11],[-3,-16],[8,-11],[7,-23],[-2,-20],[-7,-19],[6,-26],[-14,-1],[-17,-7],[-5,-9],[-6,-1],[-1,-18],[-7,1],[-11,-8],[-22,-3],[-25,2],[6,-5],[11,-1],[-1,-1],[-13,1],[-33,23],[-1,-4],[-5,1],[-6,-6],[-18,8],[-6,-5],[-19,1],[-12,-5],[-16,3],[-11,14],[-1,14],[-14,23],[-4,16],[0,16],[7,39],[-4,41],[4,9],[-3,24],[2,15],[7,11],[9,3],[14,-5],[4,-5],[10,3],[8,-2],[6,-9],[13,7],[31,0],[11,14],[-1,15],[7,4],[4,13],[-7,8],[2,6],[3,-4],[4,1],[5,12],[-11,28],[9,1],[8,-18],[13,-11]],[[54385,9779],[12,-2],[20,-23],[-4,-12],[8,-18],[-8,-13],[5,-8],[14,1],[-11,0],[-5,4],[8,15],[-5,11],[2,6],[-5,5],[5,4],[11,-5],[48,-46],[4,-11],[-6,-10],[-2,-24],[15,-38],[-5,-11],[1,-27],[7,-11],[-7,-9],[-4,5],[2,-10],[3,-2],[-1,6],[6,3],[18,-4],[6,-14],[9,-9],[14,-7],[6,-7],[1,-18],[-11,-48],[-1,-39],[11,-21],[5,-37],[18,-35],[-3,-58],[-5,-4],[-13,6],[-9,0],[-17,-13],[-3,-8],[6,-25],[1,-4],[6,2],[3,-5],[-15,-10],[-11,1],[-11,-6],[-30,-30],[-22,-37],[-7,-27],[2,-24],[8,-17],[43,-15],[12,-13],[1,-6],[-25,-40],[-12,-13],[-9,-4],[-7,-7],[-10,-36],[-7,-4],[-9,-12],[0,-16],[-5,-10],[-42,-17],[-31,-1],[-13,11],[-26,6],[-29,23],[-14,19],[-21,12],[-2,8],[-5,-3],[-34,12],[-17,2],[-18,-4],[-24,-30],[-14,-8],[-24,-2],[-13,4],[-9,12],[1,8],[26,30],[-3,8],[3,8],[12,17],[4,12],[19,23],[8,56],[6,9],[10,4],[2,7],[-10,41],[-18,39],[-19,30],[-10,13],[-13,-2],[-20,4],[7,16],[-5,9],[2,9],[-5,29],[2,12],[-1,35],[5,17],[-11,44],[1,37],[7,16],[-12,25],[0,20],[20,22],[4,-18],[18,-10],[-5,-8],[2,-16],[4,-16],[5,-3],[4,6],[-5,-4],[-2,3],[-5,22],[7,21],[22,8],[26,26],[8,18],[1,12],[8,11],[2,25],[16,-3],[29,36],[15,0],[8,6],[6,28],[-8,17],[1,6],[25,13],[4,11],[21,-1],[29,42],[16,4],[7,0],[5,-4],[3,-17],[12,-10],[-4,-18],[-16,6],[12,-9],[6,1],[5,11],[-1,9],[-10,10],[-3,18],[8,14],[12,5]],[[54593,9876],[21,-11],[6,-10],[-2,-3],[-13,-3],[-11,8],[-8,12],[7,7]],[[53740,9979],[5,-3],[-2,-12],[-13,-7],[-8,-1],[-9,12],[15,12],[12,-1]],[[54715,9978],[-5,0],[-6,11],[2,11],[5,4],[13,-3],[5,-7],[-1,-7],[-13,-9]],[[54854,10361],[0,-6],[-4,-3],[-3,7],[7,2]],[[54868,10374],[6,-10],[-10,-9],[-7,9],[11,10]],[[54745,10454],[9,-6],[-8,-10],[-4,3],[1,4],[-7,14],[4,9],[5,-3],[0,-11]],[[54810,10703],[3,-15],[-5,-30],[2,-16],[-25,-26],[1,-10],[-4,-11],[-14,-3],[1,10],[21,36],[-9,22],[2,9],[-3,15],[6,9],[24,10]],[[54798,10756],[5,-7],[16,0],[5,-13],[-7,-4],[-16,16],[-8,0],[-1,5],[6,3]],[[54848,10768],[-4,-5],[-8,4],[-4,-17],[-3,-2],[-4,2],[5,19],[-2,8],[8,8],[-1,11],[10,11],[5,-3],[-3,-16],[3,-14],[-2,-6]],[[54458,10949],[-6,6],[11,3],[0,-6],[-5,-3]],[[54479,10944],[-5,0],[2,10],[7,5],[7,-1],[0,-8],[-11,-6]],[[54737,11171],[-5,0],[-2,4],[5,0],[2,-4]],[[54597,11210],[-4,2],[3,7],[13,9],[-12,-18]],[[54672,11232],[-1,3],[4,2],[1,-3],[-4,-2]],[[54666,11225],[10,2],[0,-25],[30,-21],[15,0],[5,-4],[6,-26],[14,-17],[-3,-22],[9,-15],[-1,-7],[14,-39],[-2,-8],[-8,-4],[5,-12],[-5,-1],[-3,6],[-18,-6],[6,-12],[-6,-11],[-51,-21],[13,1],[13,-4],[-1,-7],[8,-3],[-4,-7],[5,-9],[12,2],[6,8],[6,0],[7,-16],[11,-6],[12,3],[3,-10],[8,1],[-7,-12],[3,-12],[-2,-16],[-11,-8],[-11,-2],[-6,-8],[-22,-2],[-7,-10],[-2,-13],[-7,7],[-20,5],[-25,-16],[-7,-10],[-23,8],[-11,-6],[-9,5],[-14,-2],[-8,-6],[-19,2],[-13,5],[-13,13],[-17,29],[2,10],[15,8],[8,15],[-12,47],[51,3],[9,-3],[20,11],[6,36],[-6,25],[-7,-1],[1,12],[4,0],[0,-5],[4,3],[0,14],[-7,3],[-21,39],[6,37],[16,55],[14,15],[11,25],[9,6],[12,-16]],[[53840,11239],[-2,2],[5,3],[1,-4],[-4,-1]],[[54583,11283],[4,-1],[1,-29],[-10,5],[-3,14],[4,19],[4,-8]],[[54485,11291],[1,-12],[18,-14],[-6,-24],[-11,0],[-2,9],[-17,24],[-1,18],[6,-2],[8,8],[4,-7]],[[54636,11300],[-3,5],[3,12],[4,-6],[-4,-11]],[[54596,11340],[6,5],[4,-3],[0,-5],[5,-2],[0,6],[4,2],[4,-10],[-6,-45],[-16,-12],[-8,12],[-2,28],[-10,11],[3,5],[5,-4],[3,3],[7,-3],[-8,15],[2,7],[7,-10]],[[54516,11349],[-3,7],[9,12],[0,-4],[-6,-15]],[[54501,11368],[-1,-5],[-4,-1],[0,6],[5,0]],[[54567,11299],[-4,-21],[-6,9],[-11,-7],[0,13],[-3,5],[-6,-16],[-2,14],[7,3],[1,5],[-4,19],[6,8],[5,15],[-4,21],[10,17],[5,-15],[-3,-10],[9,-10],[0,-50]],[[54525,11394],[-4,7],[1,1],[5,-2],[-2,-6]],[[54598,11409],[13,-13],[5,-13],[-4,-25],[-6,-9],[-19,19],[-7,-8],[-6,2],[2,41],[22,6]],[[53723,11419],[26,-12],[11,10],[13,1],[47,-5],[18,-14],[0,-18],[-5,-16],[3,-11],[-2,-23],[13,-45],[-11,-32],[-6,-1],[-3,-4],[-12,-7],[-13,16],[-9,4],[-33,-2],[-29,12],[-8,-3],[-1,-6],[-2,8],[-7,-1],[1,5],[-6,9],[-10,37],[3,21],[13,33],[-17,27],[18,9],[3,9],[-3,4],[5,0],[3,-5]],[[54439,11445],[14,-4],[4,-5],[-4,-6],[-1,-12],[10,3],[9,-5],[28,3],[6,-9],[-16,-11],[6,-26],[-17,-10],[-8,-16],[-12,-4],[-14,6],[-8,-2],[-19,-18],[2,10],[10,13],[-7,19],[7,24],[-8,30],[9,25],[5,0],[4,-5]],[[54795,11589],[4,-3],[-1,-9],[-18,3],[5,7],[10,2]],[[54936,11601],[-3,1],[-3,16],[14,10],[1,-6],[-9,-21]],[[54852,11647],[4,-3],[-3,-3],[-8,3],[2,4],[5,-1]],[[54464,11723],[-4,7],[5,3],[-2,-4],[1,-6]],[[55651,11861],[-9,-1],[-3,4],[7,17],[9,4],[4,-9],[-8,-15]],[[55513,12011],[33,-17],[11,5],[11,10],[40,6],[5,-6],[9,0],[5,-16],[-22,-33],[2,-6],[-3,-5],[-17,-10],[-9,-1],[-31,16],[-12,10],[-1,7],[-7,-2],[-21,12],[-3,-4],[-3,1],[-2,15],[-4,6],[-1,25],[4,2],[16,-15]],[[54567,12158],[-4,22],[4,6],[9,4],[1,-11],[-6,-9],[2,-2],[-2,-8],[-4,-2]],[[54496,12263],[6,0],[3,-9],[-2,-6],[-12,9],[3,6],[2,0]],[[54869,12273],[-7,-12],[6,-10],[-13,-9],[-5,14],[6,13],[-7,-4],[0,5],[22,15],[-2,-12]],[[54893,12297],[-3,4],[6,3],[1,-3],[-4,-4]],[[54908,12306],[29,-3],[6,-4],[3,-22],[-3,-8],[-10,-9],[-10,1],[-10,-7],[-14,-3],[-11,14],[-9,0],[-2,6],[8,19],[21,4],[2,12]],[[54565,12325],[10,-11],[0,-7],[6,-7],[-1,-11],[9,-23],[-1,-15],[6,-5],[-4,-12],[-10,-3],[-9,-20],[-6,7],[-1,16],[4,2],[0,7],[-3,1],[2,24],[-4,34],[-15,14],[0,7],[11,4],[6,-2]],[[54535,12324],[-3,8],[5,8],[3,-12],[-5,-4]],[[54966,12423],[2,-4],[-5,-8],[-7,3],[-1,9],[11,0]],[[55398,12461],[12,8],[-1,12],[18,3],[12,-14],[24,-9],[11,-11],[13,-24],[2,-14],[-7,-20],[0,-10],[21,-48],[19,-32],[7,-35],[6,-8],[8,2],[7,-4],[-1,-7],[21,-47],[-3,-6],[6,-4],[-1,-8],[5,-12],[-1,-8],[11,-13],[0,-13],[-6,-15],[-12,-17],[-8,-4],[-17,-1],[-21,15],[-7,30],[-7,15],[-30,51],[-17,12],[1,9],[-9,6],[5,10],[11,7],[-3,6],[-8,-7],[-15,9],[-11,-14],[-24,8],[-13,19],[-20,59],[-26,9],[-31,0],[-8,17],[-11,8],[-1,5],[7,4],[6,14],[26,4],[18,14],[7,18],[18,23],[3,34],[4,11],[2,-2],[-1,-15],[9,-20]],[[55399,12532],[-1,2],[4,1],[0,-2],[-3,-1]],[[55447,12638],[4,-5],[23,-4],[4,-5],[-10,-39],[-1,-22],[3,-6],[-6,-5],[4,-12],[-6,-5],[8,-7],[-6,-17],[5,-10],[-8,-13],[-11,-4],[-20,16],[-9,2],[0,8],[-9,14],[-6,-2],[4,14],[-4,-3],[-9,9],[-11,1],[-5,8],[-3,25],[21,8],[2,4],[-3,7],[-9,-2],[0,11],[-10,-3],[2,18],[-5,13],[3,4],[7,-2],[5,5],[17,-16],[7,3],[-6,0],[-1,4],[17,2],[9,7],[13,-1]],[[55453,12641],[-4,1],[0,3],[4,-2],[0,-2]],[[54892,12653],[-1,-7],[-8,-13],[1,9],[8,11]],[[55351,12654],[18,-24],[3,-15],[-2,-8],[-13,-12],[2,-16],[-5,11],[1,53],[-4,11]],[[54638,12647],[-1,6],[4,3],[0,-7],[-3,-2]],[[54642,12659],[-1,4],[3,2],[-1,-3],[-1,-3]],[[55685,12705],[2,-3],[-2,-6],[-4,3],[4,6]],[[55735,12731],[0,-6],[-5,-4],[8,2],[-1,-8],[5,-3],[-18,-24],[-14,31],[13,3],[4,9],[8,0]],[[55122,12729],[-4,4],[6,4],[1,-1],[-3,-7]],[[55528,12751],[-2,-21],[4,-10],[-5,-6],[0,-5],[10,-10],[5,-18],[5,-4],[-8,-22],[0,-14],[8,-17],[-2,-6],[18,-28],[16,-13],[9,-16],[-6,-7],[5,-9],[-2,-15],[2,-6],[-8,-22],[-9,-14],[-10,2],[-15,34],[-15,18],[-18,9],[-19,-2],[-9,11],[0,42],[4,15],[-3,17],[-15,-1],[-1,12],[-7,4],[-37,-4],[-10,4],[-2,9],[-20,4],[-9,9],[-15,46],[2,12],[12,7],[28,-5],[24,0],[16,-12],[6,-32],[12,-17],[2,-11],[6,-10],[4,8],[-7,18],[-1,22],[10,29],[9,11],[23,15],[5,15],[10,7],[5,-6],[-5,-17]],[[54928,12809],[11,-5],[-10,-30],[0,27],[-6,5],[5,3]],[[54842,12807],[-3,-3],[1,5],[3,2],[-1,-4]],[[54867,12824],[-3,-8],[5,-5],[-9,-1],[0,8],[-6,-1],[-1,3],[8,7],[4,1],[2,-4]],[[55619,12880],[18,-4],[2,-18],[21,-21],[-3,-15],[6,-9],[-4,-7],[7,1],[1,-14],[-14,-45],[6,-9],[6,2],[11,-10],[2,-14],[-16,-29],[5,-7],[-5,-9],[12,-1],[-3,-9],[2,-5],[-6,-4],[8,-8],[0,-3],[-4,1],[-2,-26],[-12,-16],[2,-5],[-2,-3],[-3,-3],[-10,2],[-2,-11],[-6,2],[-3,-5],[-5,8],[-7,1],[2,8],[-4,0],[-5,17],[-6,1],[-3,11],[-9,3],[-18,25],[10,18],[4,2],[-7,-1],[-6,-8],[-3,2],[-6,18],[-15,-3],[-6,16],[14,53],[-15,2],[2,7],[15,-1],[26,73],[23,47],[5,3]],[[54759,12888],[-4,1],[-3,9],[6,13],[1,-23]],[[55511,12913],[4,-3],[-4,-3],[-2,0],[2,6]],[[55330,12909],[6,-15],[-7,-12],[-7,2],[-2,-6],[3,-19],[-6,-16],[-1,17],[-15,10],[-2,10],[6,26],[13,6],[8,-3],[2,4],[2,-4]],[[54798,12937],[11,-11],[4,-30],[5,-5],[1,-19],[-8,-23],[13,-19],[-7,-6],[-8,-18],[-4,-34],[20,24],[1,-13],[-3,-6],[4,-6],[17,35],[7,-4],[27,9],[15,-4],[11,-8],[10,7],[11,-9],[0,-27],[-5,-29],[-21,-51],[-5,-25],[-12,-18],[-5,-14],[-1,-53],[12,-24],[-4,-8],[-4,0],[-5,-13],[5,-3],[-2,4],[4,4],[-1,7],[7,2],[1,7],[3,0],[5,-5],[15,-3],[13,-12],[0,-10],[-13,-13],[1,-3],[17,3],[5,-11],[8,1],[0,-10],[3,-2],[13,1],[12,8],[12,-8],[-8,-14],[-7,-2],[-3,-21],[8,-12],[-1,-5],[-31,4],[2,-5],[-8,-7],[-9,4],[-3,9],[-6,2],[-2,17],[-8,-5],[-2,10],[-10,-4],[-8,10],[2,7],[-5,-3],[3,-15],[-5,2],[-4,-11],[10,0],[1,-4],[-3,-9],[-12,-3],[-3,-5],[3,-4],[4,2],[8,-4],[0,-5],[-8,-2],[8,-7],[9,11],[6,-1],[7,-8],[1,-6],[-4,-5],[4,-4],[-1,-7],[6,-5],[11,0],[9,18],[10,3],[1,-21],[5,-8],[-45,-9],[-5,3],[-7,-7],[0,-12],[20,9],[11,-9],[-6,-16],[-13,-10],[-5,1],[-4,11],[-18,-13],[-4,0],[-3,14],[6,3],[4,7],[-2,9],[4,15],[-11,1],[-13,-7],[0,-4],[6,0],[-9,-21],[1,-4],[-8,-4],[3,-9],[-2,-5],[15,0],[5,-15],[-17,-4],[-3,-10],[-7,2],[-4,-5],[0,-10],[-7,-15],[6,-5],[-4,-7],[4,-15],[-4,-7],[-4,0],[-1,-8],[2,-5],[5,8],[7,0],[8,-9],[2,-7],[-3,-22],[3,-22],[-2,-10],[-5,-4],[7,-2],[4,-9],[-8,-17],[6,-2],[-7,-30],[5,-5],[4,-30],[-6,-28],[-22,-59],[-17,-22],[-10,-6],[-13,3],[-1,-5],[-28,13],[-8,0],[18,-10],[9,-1],[1,-12],[14,9],[5,-2],[20,6],[18,24],[4,17],[13,25],[5,19],[8,16],[-3,11],[5,31],[-2,21],[4,49],[8,25],[10,13],[11,26],[15,-1],[20,13],[5,7],[7,-4],[8,4],[30,-9],[2,-4],[-7,-9],[12,-12],[1,-13],[-11,-36],[6,-8],[6,0],[-18,-11],[-3,-11],[8,-11],[12,-8],[-5,-8],[3,-21],[-8,-30],[6,-9],[-3,-9],[-9,-1],[1,-17],[-7,-7],[1,-9],[-5,-8],[3,-16],[-4,-4],[-4,-33],[-11,-29],[4,-31],[-8,-13],[3,-18],[-9,-14],[2,-9],[-4,-7],[4,-4],[1,-15],[-12,-16],[3,-9],[-7,-14],[0,-14],[-6,-9],[1,-14],[-4,-5],[6,-22],[-6,-16],[-17,21],[-2,8],[-7,-2],[-2,-13],[6,-36],[-10,-4],[-9,4],[-11,15],[-8,-8],[-3,6],[-9,0],[-10,20],[-9,-5],[1,-11],[-6,-9],[-8,11],[1,8],[-15,9],[7,-10],[-21,-6],[20,1],[5,-4],[1,-6],[-2,5],[-9,-6],[-1,-10],[4,-21],[-7,-14],[3,-10],[14,-2],[0,-4],[-22,-11],[-12,6],[-2,-9],[-16,-7],[-2,-7],[6,-7],[-7,-11],[-22,7],[-17,0],[-1,-22],[6,-9],[0,-18],[12,-8],[0,-11],[4,0],[3,8],[8,4],[-2,11],[4,6],[9,-14],[2,21],[3,1],[6,-10],[-2,-16],[11,-16],[1,13],[-5,18],[4,7],[13,6],[0,13],[-9,6],[-3,8],[16,4],[9,-13],[4,-14],[9,1],[-5,16],[2,4],[21,2],[6,6],[14,4],[2,5],[-1,5],[-30,8],[5,13],[-6,17],[3,3],[0,6],[10,12],[11,-15],[10,-2],[2,-13],[5,-2],[2,8],[6,3],[17,-5],[8,2],[3,-12],[-6,1],[2,-8],[7,-4],[3,3],[9,-7],[-5,-16],[9,-4],[-4,-9],[3,-5],[-11,-14],[-11,0],[-4,-11],[5,0],[8,-15],[-4,-12],[4,-2],[-1,-18],[7,-4],[-5,-4],[0,-16],[-9,-9],[1,-12],[-9,-4],[-10,-16],[1,-6],[8,-2],[-1,-10],[-5,-14],[-8,2],[2,-22],[-20,-26],[1,-7],[9,-10],[-5,-6],[2,-5],[-5,-1],[1,-14],[-6,-3],[-12,-25],[10,-31],[-10,-6],[-13,-27],[-2,-20],[-5,-3],[-5,-12],[-2,-24],[-11,20],[6,11],[-9,6],[-13,32],[-12,-2],[-4,5],[-9,1],[-8,8],[-14,0],[-14,-18],[-11,0],[-18,23],[-12,4],[-15,16],[-7,44],[12,12],[4,13],[-17,14],[-3,8],[12,28],[-18,5],[-14,11],[-4,-18],[-8,-2],[-16,-22],[-6,3],[6,26],[-3,21],[-18,24],[-8,5],[3,12],[-7,21],[7,15],[-1,11],[3,4],[12,0],[21,-10],[7,20],[4,-4],[1,-17],[14,-3],[18,20],[0,29],[-4,6],[-9,-10],[-9,0],[2,14],[6,12],[-6,9],[-8,3],[-2,-7],[4,-22],[-3,-24],[-13,0],[-10,10],[-19,6],[-9,-3],[-3,17],[-11,19],[-8,6],[3,11],[-13,24],[-4,1],[-2,4],[1,6],[8,4],[7,14],[2,28],[-14,28],[3,19],[-14,17],[-5,-9],[-11,6],[-15,-2],[-4,-39],[-16,-17],[-9,7],[-20,62],[0,37],[4,10],[-3,51],[14,16],[0,9],[-7,-2],[-3,19],[-5,8],[3,22],[-11,54],[-7,7],[-11,0],[3,14],[10,11],[-1,12],[-9,-14],[-2,17],[-10,6],[-10,-13],[-4,0],[-6,-10],[-11,-8],[-11,20],[2,9],[-2,12],[-10,12],[11,21],[5,24],[9,10],[0,16],[5,11],[-3,8],[2,22],[20,10],[6,11],[-8,18],[15,14],[4,14],[17,6],[10,-2],[1,9],[11,14],[-5,11],[9,16],[7,-8],[17,-38],[12,0],[4,-6],[7,-38],[-2,-8],[7,-23],[-1,-11],[4,-7],[5,-4],[6,2],[5,29],[8,-7],[6,4],[3,-2],[1,-54],[-4,-17],[9,-21],[-1,21],[16,10],[-2,53],[3,47],[-5,10],[-7,0],[0,13],[6,13],[6,29],[-7,17],[1,18],[7,5],[3,11],[-3,49],[4,16],[7,2],[-8,15],[-1,22],[5,11],[4,33],[8,0],[5,6],[-7,12],[5,9],[-5,10],[6,-1],[12,6],[-2,11],[-10,1],[-4,11],[8,4],[3,14],[-2,5],[-9,6],[-2,13],[8,51],[1,25],[8,17],[9,6],[4,13],[6,5],[-1,4],[-8,2],[8,41],[5,8],[-1,6],[11,29],[8,49],[9,11],[28,75],[4,4],[3,-1],[-4,-23],[-18,-43],[-3,-14],[2,-3],[7,3],[-1,11],[8,10],[9,25],[9,8],[11,29],[4,1],[4,-5],[-1,-27],[2,-3],[4,24],[7,0],[3,-14],[5,11],[-4,20],[9,32],[9,10],[9,2],[5,-2],[3,-8]],[[54865,12953],[9,-7],[-2,-8],[-5,-5],[1,-10],[-4,-2],[-1,-8],[4,-12],[-2,-15],[5,-9],[5,25],[5,1],[4,6],[11,-8],[-4,-16],[6,-8],[-4,8],[4,22],[-15,12],[3,18],[8,-6],[4,-15],[4,9],[7,-4],[8,4],[5,-4],[5,3],[10,-2],[0,-47],[13,-19],[-1,-9],[-6,-9],[0,-7],[4,-3],[-2,-10],[-5,-7],[-25,1],[-3,3],[-10,-8],[-9,9],[-21,2],[-5,19],[-10,-10],[-7,0],[-3,16],[4,17],[-4,6],[5,6],[-5,20],[6,12],[-4,5],[-2,23],[6,5],[2,11],[11,5]],[[55199,12971],[4,-3],[-2,-8],[-4,6],[2,5]],[[55168,12937],[-7,7],[-4,11],[2,12],[8,6],[7,-7],[-6,-29]],[[54794,12959],[-6,4],[2,10],[5,-6],[-1,-8]],[[55247,12985],[9,-11],[0,-8],[6,-5],[12,-31],[-1,-23],[-4,0],[0,12],[-6,8],[-18,-8],[-21,14],[-14,-15],[-1,-8],[-5,0],[4,-6],[-8,-10],[2,-7],[-5,-14],[-10,28],[-1,19],[-10,22],[2,17],[7,9],[10,-2],[3,-19],[3,-2],[1,6],[6,-5],[2,21],[5,8],[17,10],[15,0]],[[55640,12999],[13,-8],[6,-29],[-3,-18],[4,-3],[12,2],[8,12],[1,9],[7,6],[-2,10],[5,15],[12,0],[2,-20],[-3,-28],[-11,-20],[7,-23],[-1,-31],[-6,-11],[-4,1],[-4,11],[-7,2],[-6,12],[5,15],[-1,8],[-15,-1],[-8,-4],[-16,7],[-22,4],[-5,5],[-2,11],[5,4],[6,32],[9,9],[-2,11],[16,10]],[[55246,13000],[0,-8],[-2,-1],[-2,6],[1,4],[3,-1]],[[54880,13021],[-5,-4],[7,14],[1,-6],[-3,-4]],[[55533,13042],[1,-5],[-7,-10],[-11,2],[5,8],[12,5]],[[54908,13060],[-16,-77],[-13,-6],[-5,-9],[1,22],[5,8],[-2,6],[6,4],[2,17],[-1,22],[2,1],[1,-9],[2,1],[10,19],[8,1]],[[54879,13054],[-2,-8],[-2,16],[7,9],[-3,-17]],[[54945,13019],[-4,-10],[-3,0],[-4,9],[-6,-1],[-13,19],[4,14],[18,25],[6,-4],[-1,-10],[6,-9],[-3,-33]],[[54918,13077],[1,-3],[-4,-4],[-1,5],[4,2]],[[54955,13077],[-5,-15],[-5,1],[4,9],[6,5]],[[55194,13074],[-2,5],[7,5],[1,-6],[-6,-4]],[[54822,13080],[7,-2],[7,4],[5,-5],[6,1],[3,-9],[-9,-20],[2,-10],[-9,-31],[5,-7],[-8,-6],[1,-3],[7,0],[-11,-16],[-8,-51],[-6,24],[-7,9],[-1,23],[-6,31],[4,10],[-4,8],[6,20],[-4,13],[5,21],[4,2],[11,-6]],[[54944,13087],[0,-4],[-5,-2],[0,4],[5,2]],[[55335,13044],[2,-15],[-27,-37],[-5,-14],[2,-35],[-8,-15],[-7,-2],[-8,19],[0,12],[10,34],[-3,15],[-4,2],[-3,-7],[-4,2],[1,10],[-10,-11],[2,23],[-13,4],[-7,-9],[-7,2],[6,14],[-5,8],[-1,17],[9,9],[18,2],[13,-10],[2,-15],[7,5],[8,-9],[8,11],[-4,15],[4,16],[-3,14],[12,15],[5,-28],[-8,-13],[0,-10],[3,-7],[15,-12]],[[54967,13113],[19,2],[10,-6],[6,-9],[9,-2],[8,5],[8,13],[15,3],[22,-10],[24,-19],[10,0],[5,7],[16,3],[7,0],[6,-6],[15,8],[14,-5],[7,5],[-2,-10],[18,-1],[-5,-6],[2,-7],[-8,-7],[2,-5],[5,4],[7,-11],[12,1],[4,6],[10,-8],[-3,-11],[-6,-2],[-6,-8],[5,-10],[2,-24],[8,9],[6,-3],[-6,-8],[3,-9],[-22,-18],[-10,-2],[-20,2],[-13,-13],[9,-23],[21,-23],[4,-48],[10,-10],[6,-2],[-2,-13],[-12,-5],[-12,8],[-15,2],[0,7],[-20,8],[-16,-15],[3,-8],[-2,-10],[13,4],[5,-6],[-1,-9],[-6,-3],[2,-5],[-5,-12],[10,-13],[-11,-10],[-3,-11],[4,-12],[-7,-1],[-4,9],[-13,1],[-3,9],[-6,6],[-11,-2],[-5,-5],[-9,6],[-5,-3],[-8,-19],[4,-6],[12,-3],[-15,-15],[-9,-23],[-1,-12],[-8,-7],[-13,9],[-7,-6],[3,-13],[10,-3],[8,-16],[2,-25],[-8,-5],[-23,9],[-23,-14],[6,-12],[8,-4],[-2,-13],[-5,-7],[2,-15],[-7,2],[-8,-5],[-9,0],[-7,-11],[-10,-5],[-4,-9],[-11,-2],[-6,-11],[-18,25],[-20,1],[-14,8],[-4,12],[-1,28],[3,17],[10,24],[14,54],[6,12],[1,15],[7,10],[9,40],[9,21],[-1,13],[6,10],[-2,17],[6,17],[-12,25],[14,47],[-2,13],[-3,3],[-5,-2],[-9,-12],[-6,3],[3,7],[-21,-9],[-7,6],[2,15],[-3,6],[-12,4],[14,38],[-1,8],[6,21],[3,1],[12,-16],[16,-9],[16,22],[6,15],[7,-2],[9,15],[-6,14],[-10,5],[6,8],[-5,11],[-5,0],[-5,-9],[-7,1],[9,35],[11,-6]],[[55628,13134],[3,-5],[-2,-4],[-22,2],[12,7],[9,0]],[[57341,13138],[40,-65],[10,7],[11,-1],[18,-18],[0,-11],[6,-3],[0,-7],[-3,-20],[-9,-7],[18,-74],[-28,-7],[-12,77],[-8,-2],[6,-74],[-24,1],[-23,6],[-19,10],[45,62],[-5,5],[-52,-58],[-25,61],[-2,34],[9,36],[12,17],[54,-52],[6,4],[-49,59],[24,20]],[[55271,13164],[-3,4],[1,4],[4,-5],[-2,-3]],[[55256,13180],[-3,3],[2,3],[3,-3],[-2,-3]],[[55269,13179],[-7,7],[4,7],[-2,10],[7,13],[6,4],[5,-3],[3,-9],[-16,-29]],[[55236,13306],[-3,2],[1,6],[4,-2],[-2,-6]],[[55138,13346],[28,-12],[18,4],[6,-11],[11,-6],[7,4],[5,17],[5,1],[2,-16],[9,-1],[1,-5],[-9,-16],[-13,-8],[4,-22],[-5,-11],[-5,2],[1,14],[-5,6],[-6,-2],[-8,4],[-15,-15],[-13,8],[-2,16],[-11,1],[-13,12],[-11,3],[0,22],[19,11]],[[55241,13343],[-4,3],[2,6],[2,0],[0,-9]],[[55219,13355],[-2,1],[1,2],[1,0],[0,-3]],[[55167,13375],[7,-4],[0,-13],[-7,-4],[-12,3],[-4,8],[16,10]],[[55250,13373],[-8,3],[2,11],[10,-7],[-4,-7]],[[55091,13388],[14,-4],[17,-17],[1,-7],[-17,0],[-11,7],[-10,13],[6,8]],[[55367,13360],[-6,-15],[-15,-4],[-6,-9],[-1,-43],[-13,-19],[-11,-40],[-3,-2],[-8,9],[-18,5],[-3,9],[2,16],[20,28],[-7,10],[3,29],[10,27],[5,9],[16,7],[12,-7],[9,-10],[0,34],[7,3],[9,12],[0,-19],[10,-12],[0,-6],[-12,-12]],[[55187,13432],[2,-1],[-1,-2],[-2,1],[1,2]],[[54751,13658],[7,-1],[4,-4],[-14,-39],[-18,16],[-4,12],[9,17],[16,-1]],[[54802,13887],[-4,3],[3,3],[3,-3],[-2,-3]],[[54867,14041],[-2,-2],[1,5],[3,-3],[-2,0]],[[54851,14120],[6,-1],[6,-13],[-4,-10],[-4,3],[-1,13],[-6,5],[3,3]],[[54856,14154],[-2,2],[-1,4],[3,-1],[0,-5]],[[54698,14196],[-3,6],[5,6],[2,-2],[-4,-10]],[[54835,14210],[-4,2],[0,3],[5,-2],[-1,-3]],[[54852,14179],[-16,23],[5,15],[-10,1],[0,7],[5,3],[-1,12],[5,-3],[6,-18],[6,-40]],[[54833,14263],[0,-3],[-3,-2],[1,4],[2,1]],[[54834,14271],[0,-5],[-1,-1],[-2,6],[3,0]],[[54836,14276],[-2,-1],[-2,0],[1,4],[3,-3]],[[54821,14338],[7,1],[2,-6],[-5,-22],[3,-70],[-4,-26],[21,-35],[7,-18],[1,-14],[-4,-15],[-8,21],[-2,-2],[-2,-39],[4,-25],[-4,-10],[-6,4],[-17,-2],[8,19],[-5,-1],[-1,8],[9,17],[-4,52],[-5,20],[1,12],[-6,16],[-16,15],[-11,24],[5,10],[9,-1],[-4,10],[6,21],[10,10],[4,26],[7,0]],[[54858,14355],[0,-6],[-5,-3],[-1,3],[5,10],[1,-4]],[[54867,14402],[0,-2],[-5,-1],[1,3],[4,0]],[[54860,14421],[3,-8],[-10,-15],[1,-8],[-16,-38],[-6,-6],[-7,4],[-6,-1],[-5,11],[8,13],[4,-1],[3,21],[7,12],[2,-1],[-2,4],[8,3],[-3,2],[1,8],[18,0]],[[54972,14422],[-5,1],[-1,2],[4,2],[2,-5]],[[54943,14398],[-5,3],[-5,28],[10,12],[3,-3],[-3,-18],[4,-14],[-4,-8]],[[54930,14452],[1,0],[-7,-3],[0,5],[6,-2]],[[54988,14489],[13,-5],[-2,-7],[0,-8],[-11,-6],[-9,7],[0,15],[9,4]],[[55229,14502],[0,-3],[-5,0],[1,6],[4,-3]],[[54919,14536],[6,-12],[-2,-32],[-2,-7],[-6,-5],[0,5],[-6,-2],[-5,7],[4,8],[4,-1],[1,-5],[4,-3],[-2,6],[5,6],[0,6],[-4,-1],[0,11],[1,19],[2,0]],[[55164,14535],[-4,3],[1,1],[4,-1],[-1,-3]],[[55008,14532],[13,-33],[-4,-6],[-13,-7],[-19,5],[-4,5],[13,11],[1,9],[-4,1],[-15,-8],[-9,4],[-5,6],[2,15],[13,-2],[16,3],[8,9],[7,-12]],[[55272,14546],[-2,-8],[-8,-1],[6,9],[4,0]],[[54949,14547],[0,-3],[-4,2],[0,1],[4,0]],[[55322,14548],[3,-7],[-6,-5],[-6,13],[9,-1]],[[54946,14564],[1,-11],[-7,-7],[-4,11],[10,7]],[[55240,14543],[17,-3],[4,-10],[5,-5],[24,11],[2,-2],[-11,-12],[-15,-7],[0,-16],[-12,-29],[9,-5],[19,6],[5,5],[19,-9],[-2,-24],[5,-34],[15,-12],[10,4],[-4,-18],[2,-18],[4,-10],[7,3],[7,-2],[-8,-24],[5,-9],[0,-10],[17,-27],[-2,-11],[-9,-8],[0,-15],[-14,-7],[-12,-16],[-7,-3],[-1,-19],[12,-14],[15,6],[8,-1],[-1,-20],[7,-10],[23,-10],[0,-13],[13,-18],[-9,-24],[3,-15],[4,-8],[21,-4],[8,-20],[-4,-5],[-12,9],[-6,-1],[-12,-14],[-5,-15],[0,-10],[6,-3],[-6,-19],[5,-12],[-8,-26],[2,-24],[-10,-38],[0,-43],[-3,-4],[4,-10],[-6,-25],[0,-15],[5,-8],[-2,-11],[11,-23],[-1,-17],[19,-41],[12,-41],[-2,-24],[-6,-18],[-5,-16],[-8,-9],[-2,-21],[7,-19],[-10,-8],[-2,-13],[-9,-2],[-22,28],[-6,1],[-16,-38],[-16,-5],[-2,-12],[9,-14],[-10,-9],[28,6],[5,11],[16,7],[13,-7],[-2,-13],[-10,-7],[-8,-1],[-8,-9],[-4,1],[4,-9],[-11,-19],[-9,-5],[-13,4],[-18,-14],[-18,2],[-1,-5],[10,-1],[1,-8],[9,-5],[-10,-14],[2,-14],[-11,-27],[-2,-15],[-10,-1],[-7,5],[6,22],[-1,10],[-12,12],[-15,8],[-10,16],[-17,13],[-15,6],[10,9],[7,13],[-13,-14],[-23,-4],[-20,19],[-14,8],[-22,28],[0,27],[-15,11],[2,16],[-2,-2],[-7,8],[-12,4],[19,-14],[-4,-11],[16,-16],[-3,-20],[16,-29],[43,-36],[12,-6],[8,4],[25,-19],[16,-21],[8,-23],[-7,-1],[-23,19],[-15,-11],[-9,-11],[-6,14],[-16,14],[-10,-1],[-8,-7],[-10,5],[-14,-3],[-17,12],[-3,7],[-6,-2],[-20,5],[-13,12],[-4,-3],[6,-2],[-5,-4],[-19,5],[-12,10],[-18,-5],[-1,20],[8,19],[-4,15],[5,8],[-20,13],[16,-13],[-4,-10],[3,-15],[-8,-17],[0,-20],[7,-4],[17,5],[14,-12],[24,-4],[18,-9],[-3,-11],[2,-8],[7,-6],[4,-15],[-2,-4],[12,-2],[6,-6],[-8,-18],[1,-8],[17,-13],[13,-27],[17,-15],[1,-4],[-5,-8],[4,-9],[6,-3],[14,1],[2,-10],[8,-10],[9,3],[5,8],[13,-7],[3,-10],[8,-1],[4,-19],[9,-15],[-4,0],[-4,8],[-11,11],[-8,-2],[-4,3],[-3,-2],[-2,-24],[8,0],[-5,-3],[1,-3],[5,3],[11,-2],[-4,-9],[5,-6],[17,3],[-4,-14],[-13,2],[-7,5],[-18,-24],[-13,11],[-8,-10],[-25,2],[-10,-4],[-10,-11],[-22,-4],[-14,-9],[-51,29],[-15,-5],[-17,-15],[-10,13],[-14,4],[-11,-1],[-13,7],[-5,9],[1,-5],[-7,-9],[-8,-27],[-3,-1],[-1,8],[1,16],[-14,-22],[0,-12],[-6,-5],[-15,10],[-6,-2],[-8,6],[-13,-2],[0,19],[-8,-16],[-9,2],[-18,-6],[-4,3],[1,6],[-8,18],[-4,1],[-5,-7],[-9,17],[3,28],[-8,5],[-9,-9],[-4,4],[3,18],[-1,42],[3,9],[-3,20],[12,11],[-5,6],[-1,13],[-8,2],[-4,23],[2,29],[5,16],[-6,30],[11,35],[-2,24],[10,13],[-11,31],[-5,6],[10,42],[11,19],[-8,12],[-8,6],[-1,24],[-12,4],[-3,7],[1,10],[5,4],[1,12],[4,5],[-1,25],[3,10],[3,5],[7,0],[4,5],[-7,-1],[12,21],[-2,13],[-7,8],[9,24],[-8,8],[4,14],[-6,7],[7,22],[-5,-1],[-9,7],[-25,6],[-7,-2],[-4,5],[-1,11],[5,18],[2,-9],[9,-9],[7,-2],[17,14],[4,-13],[7,16],[5,4],[6,18],[7,47],[10,-1],[-1,-13],[8,-24],[4,-2],[5,18],[16,8],[4,6],[-7,28],[3,11],[13,8],[9,18],[14,-5],[6,12],[22,-7],[25,4],[7,-6],[5,-20],[0,-39],[-7,-13],[3,-9],[-1,12],[6,-1],[-1,-16],[14,-13],[-5,-15],[4,2],[2,15],[-13,12],[4,15],[-4,38],[4,2],[2,-3],[2,29],[10,22],[-5,25],[2,52],[-18,14],[16,-18],[-4,-27],[-35,-52],[-19,-2],[-18,9],[-18,-9],[-5,3],[-12,-1],[-8,6],[7,17],[-1,7],[-5,10],[-6,6],[-5,-1],[-1,5],[4,12],[25,5],[5,-2],[-6,9],[-2,25],[3,16],[11,4],[-10,5],[-5,25],[-3,-5],[2,12],[-8,2],[-9,10],[-3,11],[3,14],[-11,30],[-11,50],[6,20],[-7,2],[-1,20],[8,51],[7,5],[6,13],[5,1],[13,-59],[4,19],[-4,24],[6,18],[3,-2],[3,-25],[3,35],[20,14],[0,6],[10,-1],[2,22],[4,6],[6,-16],[24,-26],[-2,-21],[3,-9],[12,-9],[5,-41],[9,8],[-7,-2],[-4,32],[6,2],[-21,14],[-1,11],[3,15],[-10,9],[-5,13],[4,16],[-2,10],[4,4],[8,-4],[8,6],[4,-4],[2,-34],[3,28],[24,7],[-1,40],[2,6],[-5,7],[1,10],[26,17],[16,1],[30,-5],[6,-18],[8,-7],[8,2],[12,14],[6,-1],[2,-13],[-6,-17],[3,-6],[7,-2],[64,15],[4,7],[-9,9],[2,10],[16,8],[16,-4],[12,3],[9,9],[5,13],[0,13],[-7,16],[7,13],[-3,8],[2,4],[6,-4],[2,-7],[-6,-16]],[[54962,14579],[3,-2],[1,-10],[-4,-16],[-5,-4],[-5,12],[3,7],[-2,8],[3,4],[6,1]],[[55192,14581],[16,-6],[4,-15],[-12,-6],[-3,7],[-9,7],[-4,-5],[-1,-19],[-18,1],[-14,23],[3,15],[14,1],[7,-3],[9,6],[8,-6]],[[54943,14582],[2,-11],[-7,-5],[-5,7],[0,9],[6,6],[4,-6]],[[55227,14593],[0,-2],[-8,-3],[2,5],[6,0]],[[55246,14602],[2,0],[2,-6],[-8,6],[4,0]],[[54733,14619],[-3,0],[0,3],[5,-1],[-2,-2]],[[54727,14631],[2,-3],[-3,-1],[-1,5],[2,-1]],[[54787,14722],[4,-6],[6,-3],[7,2],[0,-4],[7,1],[1,-4],[6,2],[-2,4],[5,-1],[0,-8],[8,-1],[-3,-4],[15,-10],[0,-38],[-6,-17],[0,-14],[-6,-10],[3,-7],[5,3],[4,9],[4,-5],[-3,-31],[3,-11],[-2,-7],[-11,-2],[9,-7],[0,-23],[6,-12],[-3,-13],[2,-5],[-1,-22],[-3,-13],[-6,-5],[-4,-1],[-6,7],[-10,1],[8,-4],[2,-11],[11,1],[3,-9],[-8,-11],[-8,-22],[-12,-14],[-8,-3],[-2,-12],[3,-4],[-6,-12],[-25,-15],[-14,2],[-8,7],[-11,-6],[6,-6],[-4,-23],[20,14],[5,-7],[-3,-6],[7,-17],[-3,-1],[-1,-9],[-9,-1],[0,-7],[-14,0],[-4,-3],[-7,-37],[-9,-23],[-1,20],[-16,11],[1,3],[5,-3],[5,6],[3,11],[-2,22],[-11,15],[-1,24],[-9,7],[-6,14],[-6,21],[0,18],[-6,16],[6,3],[0,13],[8,-1],[19,28],[-74,4],[0,4],[77,-4],[5,14],[-2,17],[4,4],[-4,16],[12,8],[-1,15],[-76,3],[1,14],[74,-3],[1,12],[8,12],[-1,11],[6,3],[-2,6],[5,5],[-2,3],[6,2],[-2,6],[4,11],[-6,-2],[-5,8],[-16,-1],[4,5],[-1,24],[9,6],[1,10],[19,29],[3,12],[10,2],[1,8],[15,2]],[[55481,14734],[-14,-20],[-17,-6],[-11,-24],[-19,-21],[1,-16],[19,-11],[0,-4],[-17,-9],[-1,-4],[0,-14],[6,-10],[0,-8],[-8,-4],[-12,6],[-1,5],[-5,1],[4,4],[-3,3],[1,5],[-6,3],[-25,-4],[-5,-6],[-9,1],[6,2],[3,12],[9,7],[17,-5],[9,-8],[6,3],[-3,22],[-25,0],[-16,13],[0,19],[9,-8],[5,1],[5,7],[-2,7],[-5,0],[1,8],[-13,4],[-5,8],[6,7],[6,1],[4,14],[3,2],[6,-9],[12,-8],[0,-4],[-10,-4],[0,-3],[11,-9],[-1,-6],[7,-5],[10,13],[6,0],[0,11],[10,3],[5,10],[7,-1],[-9,15],[2,6],[18,-6],[16,8],[1,5],[11,1]],[[55440,14737],[-4,0],[0,4],[7,1],[-3,-5]],[[55271,14747],[-4,3],[1,4],[3,-5],[0,-2]],[[55354,14791],[-3,0],[-3,8],[-4,2],[9,-2],[1,-8]],[[55302,14798],[7,-2],[16,7],[7,-2],[-3,-11],[9,-6],[-7,-20],[11,-29],[-6,-5],[-12,1],[-8,10],[-12,-2],[-7,5],[-7,0],[-12,32],[16,17],[-4,5],[3,11],[7,-2],[2,-9]],[[55284,14836],[-9,5],[4,12],[6,-9],[-1,-8]],[[55318,14858],[-2,1],[-1,7],[5,-3],[-2,-5]],[[55281,14878],[-8,9],[0,12],[8,-10],[0,-11]],[[54865,14967],[2,-6],[-7,-7],[-1,6],[6,7]],[[54839,14975],[4,-9],[-22,-13],[-13,-18],[-3,-9],[6,-12],[-1,-7],[-11,1],[-12,47],[1,10],[7,8],[15,-8],[14,2],[15,8]],[[55008,15145],[6,-4],[-1,-4],[-8,2],[3,6]],[[55603,15264],[-5,1],[-2,11],[4,-2],[3,-10]],[[55503,15412],[-3,-2],[-2,3],[4,1],[1,-2]],[[55633,15457],[9,-4],[0,-4],[-13,-5],[-4,7],[8,6]],[[55508,15519],[14,-3],[0,-5],[-6,0],[-2,-21],[-4,-2],[9,-18],[0,-8],[-4,-6],[-8,13],[-20,6],[2,14],[12,-2],[4,29],[-6,4],[4,4],[5,-5]],[[55395,15526],[-5,7],[9,7],[-5,-7],[1,-7]],[[55502,15541],[0,-2],[-5,-1],[1,7],[4,-4]],[[55550,15545],[-2,4],[3,4],[1,-4],[-2,-4]],[[55639,15602],[1,-4],[-9,7],[5,2],[3,-5]],[[55651,15607],[-4,3],[2,5],[4,-3],[-2,-5]],[[55605,15646],[-1,5],[3,3],[2,-3],[-4,-5]],[[55167,15717],[3,-2],[0,-2],[-5,0],[2,4]],[[55049,15732],[13,-8],[-9,-31],[-7,6],[4,18],[-4,14],[3,1]],[[55677,15727],[2,-5],[-3,1],[-6,-13],[-6,-1],[-3,14],[12,10],[4,-6]],[[55627,15747],[-3,-8],[3,-22],[-7,0],[-3,25],[12,17],[-2,-12]],[[55687,15770],[9,-3],[3,-11],[-12,2],[-6,12],[5,5],[1,-5]],[[55116,15782],[7,-24],[-10,-12],[-22,-17],[-11,6],[-8,-3],[-3,2],[-4,15],[5,15],[-2,8],[4,-1],[5,7],[12,-3],[21,5],[5,11],[1,-9]],[[58309,15838],[2,-6],[8,-1],[-6,-10],[4,-12],[-4,-28],[-7,-10],[-14,-6],[-6,-9],[-16,1],[-15,25],[1,13],[7,3],[3,11],[21,29],[8,-5],[9,6],[5,-1]],[[55186,15950],[-3,-6],[3,-12],[-7,-6],[-9,8],[-1,9],[7,9],[10,-2]],[[55285,15958],[6,-6],[-10,-14],[-7,1],[3,15],[8,4]],[[55265,16009],[6,-9],[-15,-7],[-3,8],[5,8],[7,0]],[[55187,16018],[8,-7],[-6,-8],[-4,5],[2,10]],[[55484,16052],[-5,4],[1,7],[1,-2],[3,-9]],[[55594,16078],[0,-9],[-7,-7],[-4,12],[11,4]],[[55532,16094],[22,-57],[5,-35],[6,-9],[2,-12],[-6,-13],[3,-34],[-9,-15],[4,-15],[-4,-14],[-11,-8],[7,-6],[-7,-11],[2,-13],[-4,-10],[-7,-4],[-15,7],[-12,-7],[1,-3],[24,-7],[8,-8],[5,-11],[-1,-3],[-3,4],[-1,-3],[5,-17],[-2,-22],[-6,-6],[-12,3],[-13,-6],[21,-8],[5,-7],[10,5],[8,-1],[-9,-23],[19,-15],[-2,-11],[2,-4],[16,7],[12,14],[8,19],[3,-3],[-5,-37],[-3,-5],[2,-7],[3,0],[10,15],[9,5],[2,-3],[-5,-11],[2,-10],[-5,-5],[-10,-9],[-14,4],[-4,-7],[-4,2],[-9,-39],[-9,6],[-8,-5],[-17,1],[-12,-5],[17,4],[15,-3],[7,4],[8,-3],[14,20],[10,-20],[6,-31],[7,-4],[13,-27],[8,-2],[7,3],[-2,-12],[4,-4],[11,0],[8,5],[6,-18],[-7,-7],[-25,-9],[-9,-15],[1,-14],[-4,-23],[-8,-4],[-3,-5],[-7,9],[2,6],[-6,17],[2,18],[-4,11],[-13,-2],[-17,-18],[-9,0],[-6,6],[4,36],[9,18],[-4,20],[-10,16],[5,14],[-8,-4],[-8,-12],[5,4],[4,-4],[7,-12],[-1,-8],[-15,-7],[-4,-9],[-11,0],[-9,9],[-11,4],[-7,-3],[-9,8],[-18,1],[-30,-26],[-3,-8],[1,-19],[-5,-4],[-6,1],[-10,12],[-1,10],[-6,9],[0,14],[-3,3],[-7,-5],[-1,2],[1,10],[-6,7],[3,9],[-3,2],[-11,-2],[-21,-36],[-8,2],[-2,-3],[6,-11],[1,-15],[25,-20],[30,-1],[5,-6],[10,-4],[3,-6],[25,-4],[0,-8],[4,-3],[14,21],[8,0],[-6,-25],[7,2],[8,-7],[2,-20],[9,-5],[7,3],[1,-6],[-5,-5],[-16,5],[9,-13],[-6,-13],[-7,-5],[4,-13],[22,5],[8,12],[10,-7],[5,-11],[13,10],[12,-2],[5,6],[2,-11],[-15,-17],[12,-26],[47,31],[-4,-19],[-11,-7],[-5,-12],[0,-19],[-5,-9],[3,-15],[-1,-12],[-12,-14],[-18,-10],[7,-30],[-10,-9],[-2,-14],[-8,-12],[-11,-39],[11,-18],[-7,-20],[8,-56],[-15,-26],[4,-11],[-2,-20],[4,-30],[4,-8],[-3,-12],[4,-5],[-2,-25],[-12,-2],[-5,-6],[-2,-13],[10,-7],[-7,-15],[-16,-30],[-11,2],[-7,-6],[-1,-5],[5,-5],[-11,-1],[3,-9],[-15,-26],[-3,1],[0,6],[-8,0],[-9,8],[-10,-6],[-1,-15],[-12,-1],[-5,-4],[-4,8],[-22,5],[-11,13],[1,-21],[5,-9],[0,-10],[10,-7],[4,3],[3,-5],[-3,-3],[-17,1],[-9,8],[-7,-4],[-11,8],[-1,10],[-8,15],[-24,15],[-12,17],[-3,12],[4,8],[11,2],[6,6],[-5,10],[3,11],[-9,18],[2,15],[-5,17],[-2,-47],[-3,-9],[-14,3],[-7,-12],[-7,-1],[-16,32],[-4,-1],[-5,-20],[-27,-5],[-10,-6],[-9,-12],[-5,-14],[5,3],[1,8],[17,18],[15,0],[25,-9],[-15,-49],[-12,-26],[-5,-1],[8,-11],[6,-41],[8,-4],[5,8],[5,-3],[0,-17],[5,-6],[-3,-4],[5,-5],[6,-1],[12,7],[13,0],[-5,-21],[13,2],[4,-24],[-6,-9],[-9,-3],[-2,-11],[-6,-8],[-12,6],[-9,-1],[-14,-32],[-10,11],[4,26],[-8,13],[1,41],[-18,3],[2,17],[-6,3],[-12,-13],[-8,-16],[-4,3],[-9,-2],[3,-10],[-9,-14],[5,-8],[-15,-13],[6,-14],[-11,-18],[1,-4],[8,-3],[1,-7],[-17,-23],[-26,1],[0,-9],[-8,-9],[-1,-26],[5,-9],[8,0],[-6,-8],[4,-14],[13,-3],[12,16],[8,2],[6,-3],[1,-6],[-9,-11],[-7,-24],[7,-18],[-34,-11],[-35,-5],[5,21],[-3,15],[-10,0],[-18,-13],[-5,4],[-3,17],[-4,4],[-37,7],[-13,-2],[-10,27],[-8,9],[3,26],[-4,11],[11,2],[6,19],[-4,8],[1,14],[-16,8],[-3,11],[2,26],[3,2],[8,-7],[0,14],[-10,21],[3,13],[12,15],[15,-21],[10,3],[6,-3],[4,8],[6,1],[2,3],[-3,6],[-10,2],[-3,6],[-7,-1],[0,10],[16,2],[7,4],[2,10],[8,4],[4,15],[-19,-5],[-4,-8],[-9,5],[-10,-6],[-5,13],[-10,-6],[-19,5],[-6,18],[14,27],[-5,8],[7,15],[-5,18],[5,5],[-7,13],[2,17],[8,12],[-3,20],[4,12],[-4,8],[2,10],[9,5],[4,-8],[-4,-13],[6,-12],[6,-6],[10,1],[2,8],[-9,3],[4,8],[-8,7],[5,17],[0,14],[9,9],[5,1],[16,-20],[2,3],[-5,11],[3,8],[-2,8],[4,10],[7,5],[-2,3],[-18,-1],[-14,28],[19,2],[3,10],[7,4],[3,0],[5,-8],[7,4],[6,-17],[5,5],[2,8],[10,-7],[5,0],[2,9],[-8,12],[7,7],[11,0],[-12,16],[-20,-3],[-3,10],[-5,0],[-18,-10],[-2,8],[-15,9],[-10,2],[7,12],[1,19],[7,10],[-5,6],[3,4],[5,-5],[23,4],[10,-7],[7,7],[-20,17],[-6,-6],[-11,12],[7,6],[5,16],[-13,4],[4,7],[-4,9],[6,2],[11,14],[7,1],[5,11],[-16,9],[12,15],[-9,1],[5,9],[0,21],[8,14],[11,2],[7,-2],[10,-14],[13,6],[10,42],[-15,13],[-15,-4],[-5,-5],[-7,20],[-6,5],[-5,0],[-8,-8],[1,6],[-11,21],[6,9],[-1,18],[9,-1],[9,-7],[13,4],[-7,16],[15,19],[-8,11],[-11,-5],[-27,12],[4,4],[13,2],[5,8],[-9,7],[-3,21],[19,25],[-2,7],[4,15],[-4,11],[5,13],[0,20],[6,8],[2,13],[5,7],[6,-2],[13,-14],[11,18],[23,6],[3,10],[-6,10],[-11,-10],[-28,11],[-9,10],[1,19],[4,6],[1,9],[10,7],[5,-1],[4,-6],[12,0],[4,-11],[10,-7],[5,3],[9,22],[6,-9],[-3,16],[-9,4],[-2,6],[5,14],[5,2],[5,-6],[5,9],[16,7],[-8,33],[-9,-1],[-8,10],[7,29],[-12,13],[3,5],[-1,9],[2,2],[8,-4],[2,11],[21,6],[12,-1],[6,-6],[9,3],[11,20],[2,13],[-2,17],[7,3],[15,-3],[6,7],[8,1],[4,-11],[3,-1],[15,14],[-15,27],[9,7],[2,10],[-21,4],[-9,10],[-1,12],[8,12],[6,3],[9,-2],[7,6],[10,0],[13,0],[4,-5],[6,-2],[11,2],[10,14],[10,3],[10,-6],[9,6],[10,-6],[2,-8],[5,0],[10,-25],[16,-3],[11,3],[8,20],[-6,1],[-7,20],[-10,7],[-3,10],[10,11],[-2,11],[9,12],[0,7],[-3,-1],[2,9],[5,2],[8,-8],[-1,-11],[15,-11],[6,-1],[8,-15],[3,-24],[4,2],[-2,-4],[4,-4],[1,5],[8,-1],[-1,9],[4,7],[-3,16],[4,0],[3,13],[-2,2],[-3,-12],[2,29],[7,7],[9,-2],[8,15],[6,-14]],[[55236,16161],[12,-2],[3,-10],[-25,-24],[-8,-22],[-8,-7],[-9,21],[5,0],[10,29],[20,15]],[[55609,16285],[8,-8],[-6,-8],[-13,-2],[-8,-9],[-4,-23],[-12,-22],[2,-4],[-5,-2],[-10,37],[22,25],[9,16],[17,0]],[[55519,16325],[-2,1],[0,7],[3,-5],[-1,-3]],[[55501,16337],[15,-14],[-1,-7],[8,-15],[-2,-7],[4,-9],[-2,-14],[15,-34],[-1,-11],[-9,-5],[-8,1],[-14,13],[-6,14],[-1,12],[-25,7],[-6,6],[-14,-12],[-6,2],[-12,-6],[-6,4],[0,10],[-16,15],[1,5],[8,5],[-1,11],[3,4],[39,6],[9,6],[8,-7],[4,14],[14,1],[-2,2],[4,3]],[[55967,17139],[6,-9],[-4,-25],[16,-43],[-3,-20],[-18,-8],[-9,7],[-1,6],[6,46],[-3,43],[7,5],[3,-2]],[[56285,17213],[-3,-2],[-4,4],[1,21],[7,-10],[-1,-13]],[[56323,17403],[-4,-1],[-3,2],[3,3],[4,-4]],[[56284,17471],[5,-19],[19,0],[4,-3],[-8,-5],[-8,2],[-4,-7],[1,-27],[17,-25],[-7,-24],[3,-12],[-4,-9],[1,-22],[-9,-16],[-4,-20],[2,-13],[-8,-7],[3,-12],[-7,-12],[0,10],[-7,9],[-2,9],[-13,5],[-5,10],[6,6],[-1,7],[8,3],[12,33],[-4,42],[-5,11],[2,4],[-16,57],[1,8],[9,2],[12,13],[7,2]],[[56263,17556],[7,-1],[3,-2],[-9,-6],[-6,4],[5,5]],[[56293,17558],[6,-9],[-9,-21],[-4,-4],[-6,6],[-8,1],[-3,12],[10,5],[1,5],[7,0],[6,5]],[[56695,18952],[-3,3],[3,7],[1,-1],[-1,-9]],[[56741,19099],[-5,5],[2,2],[5,-3],[-2,-4]],[[56744,19130],[-4,-1],[-2,4],[4,1],[2,-4]],[[56745,19156],[-1,-5],[-9,6],[3,3],[7,-4]],[[56898,19232],[4,-11],[-13,-16],[-4,-34],[2,-6],[-8,-2],[-23,-19],[-11,-26],[-13,-20],[0,-25],[-5,11],[-2,15],[6,20],[4,44],[16,25],[11,33],[8,7],[8,-2],[20,6]],[[56914,19308],[8,-5],[-3,-7],[-10,13],[5,-1]],[[20884,21635],[11,53],[3,34],[-2,13],[-14,10],[-7,12],[10,70],[-19,8],[-7,20],[1,7],[-15,20],[-3,12],[11,41],[-3,4],[4,12],[7,-1],[8,45],[-22,15],[0,10],[11,31],[12,11],[14,4],[-32,26],[-19,3],[4,25],[-1,50],[-10,26],[10,47],[15,21],[-3,45],[4,16],[16,6],[14,-2],[5,5],[-1,15],[-19,3],[-19,-4],[-11,3],[-2,60],[25,19],[5,24],[41,7],[11,-2],[3,-7],[18,-10],[13,47],[8,10],[49,26],[20,-21],[15,-7],[21,2],[4,8],[-8,13],[5,21],[0,17],[-14,38],[16,22],[-44,-3],[-39,13],[-22,19],[-21,8],[-37,40],[-19,0],[-35,14],[-29,5],[-97,-9],[-23,-22],[-12,-5],[-24,0],[-52,21],[-34,20],[-46,-8],[-21,7],[-23,20],[-58,14],[-49,21],[-45,64],[-14,41],[-52,49],[8,11],[13,-2],[16,-10],[75,9],[15,5],[9,18],[2,24],[27,-5],[34,-20],[43,3],[0,6],[10,2],[8,-5],[33,2],[6,42],[22,20],[49,13],[25,-6],[7,10],[1,62],[-31,6],[-15,27],[-11,4],[3,13],[14,-5],[10,7],[34,-5],[8,3],[35,38],[44,-1],[17,8],[0,7],[-11,11],[3,8],[8,0],[-1,22],[-22,6],[0,16],[4,14],[13,11],[10,27],[12,18],[-4,8],[-18,4],[-39,-30],[-24,4],[7,11],[-13,5],[-5,13],[-25,11],[-1,19],[46,9],[21,18],[34,-4],[7,14],[9,71],[-5,8],[-13,3],[-10,-6],[-24,8],[-19,-15],[-16,10],[-10,0],[-5,6],[2,8],[6,1],[2,7],[-5,14],[13,22],[9,31],[4,32],[-4,34],[5,13],[16,-7],[50,-8],[9,6],[1,40],[-20,20],[-13,45],[8,48],[0,25],[-6,58],[-12,6],[4,10],[4,44],[-6,10],[27,12],[5,8],[1,16],[-7,2],[-3,10],[5,13],[-3,12],[-1,31],[12,2],[22,34],[2,17],[-4,35],[11,20],[23,17],[13,3],[-3,19],[-13,15],[2,27],[-3,14],[-11,13],[-20,39],[-5,21],[5,6],[-2,9],[-19,11],[-18,28],[5,27],[-23,8],[-9,9],[-22,8],[-10,-8],[-23,6],[-44,22],[-11,21],[-51,14],[-2,25],[-19,6],[-15,24],[11,9],[-3,10],[10,17],[-1,15],[7,17],[24,8],[22,-3],[4,34],[13,5],[0,6],[-32,4],[-8,8],[-2,8],[35,31],[7,-3],[14,13],[21,-17],[7,6],[6,40],[5,9],[32,19],[12,17],[16,3],[11,14],[-4,26],[-13,5],[-29,-2],[9,20],[6,3],[20,40],[4,29],[8,26],[3,16],[-15,12],[0,31],[4,17],[62,-2],[-9,-3],[-6,-12],[5,-9],[18,-11],[21,2],[15,-3],[24,12],[25,7],[16,23],[5,14],[-8,2],[-12,18],[27,29],[5,13],[-5,5],[-15,-1],[-36,16],[-1,35],[30,22],[22,10],[34,-14],[20,0],[34,-13],[1,58],[38,-14],[13,-13],[32,4],[1,60],[52,6],[14,8],[8,45],[19,20],[-8,-28],[-2,-24],[80,-20],[2,29],[5,15],[2,17],[-5,16],[-6,-3],[-2,6],[-7,-4],[-29,12],[-21,27],[-15,-1],[-10,-5],[-27,10],[-27,-2],[-10,17],[-30,3],[-9,7],[-17,-3],[2,39],[-6,32],[-10,-1],[0,-9],[-55,-11],[-27,-10],[-10,12],[-17,39],[-20,5],[-31,-38],[-9,-19],[-18,-19],[-11,6],[-15,54],[-36,-3],[-4,9],[-7,-2],[-8,15],[-9,6],[-48,11],[5,33],[-3,20],[2,6],[11,1],[-2,12],[7,25],[10,19],[-5,4],[-8,34],[-5,3],[1,22],[8,20],[4,35],[-1,25],[9,6],[7,12],[31,12],[6,-7],[10,4],[5,9],[8,-7],[11,7],[11,22],[24,-3],[10,12],[29,10],[11,7],[26,-4],[11,19],[17,2],[6,16],[17,14],[9,41],[-26,-7],[-39,21],[-6,11],[-25,11],[-31,1],[-10,6],[14,45],[16,14],[18,10],[0,35],[39,-1],[2,-21],[11,2],[11,29],[11,20],[9,7],[-3,17],[9,1],[3,39],[12,16],[11,-4],[8,11],[25,-14],[9,2],[3,15],[-12,6],[-21,45],[4,23],[33,-11],[11,4],[27,-6],[5,25],[1,39],[-6,19],[7,15],[10,-2],[10,12],[0,12],[-11,10],[13,12],[5,-22],[8,-8],[11,-2],[8,-7],[7,16],[-10,10],[3,12],[18,4],[3,12],[-14,2],[-8,8],[12,11],[2,18],[-5,3],[-3,14],[-18,8],[-21,-9],[-16,13],[5,7],[-3,8],[-15,4],[-13,10],[-7,18],[-17,-6],[-16,-13],[-11,8],[-5,27],[-23,14],[-38,10],[-10,-1],[-2,29],[-9,3],[-5,13],[3,24],[21,-4],[8,21],[16,12],[22,2],[28,8],[17,9],[7,36],[-9,51],[-7,16],[10,57],[-19,3],[-23,21],[-15,40],[-5,24],[-13,2],[0,25],[22,-2],[24,40],[-28,56],[20,37],[24,13],[24,38],[-11,8],[-31,4],[-22,9],[1,6],[-9,3],[-21,-18],[-25,20],[11,16],[34,24],[-7,23],[-30,31],[-59,19],[-17,24],[4,36],[20,26],[25,23],[18,6],[13,71],[-45,7],[2,6],[-23,9],[6,31],[13,4],[27,-4],[31,-13],[15,9],[16,1],[25,15],[-5,4],[1,15],[-55,10],[-20,0],[-9,13],[1,6],[26,-2],[5,6],[23,-2],[13,40],[32,-6],[5,-18],[18,2],[6,26],[-2,14],[-20,6],[-17,21],[2,17],[21,12],[11,16],[-2,7],[-16,-4],[0,12],[11,16],[-2,30],[30,0],[5,-13],[6,2],[1,13],[29,5],[11,-13],[14,21],[19,-3],[1,-7],[6,0],[-6,-20],[-9,-12],[27,-21],[10,14],[31,19],[15,-1],[66,32],[35,-7],[19,8],[-2,20],[26,61],[2,38],[-11,38],[-30,50],[3,30],[5,1],[0,15],[-11,5],[10,28],[26,19],[12,13],[0,19],[18,22],[15,2],[9,-15],[2,-26],[38,-15],[0,24],[35,51],[1,31],[17,27],[29,66],[10,42],[22,50],[156,52],[48,-18],[30,1],[6,23],[-2,24],[-32,10],[6,11],[-18,7],[2,12],[-43,19],[-16,2],[-1,37],[-24,3],[-12,27],[-2,29],[-27,4],[-28,-10],[-36,12],[1,24],[7,21],[10,3],[11,49],[-52,-5],[-7,-11],[-32,9],[5,23],[-5,2],[9,53],[-67,4],[-12,-18],[-32,12],[3,42],[-6,19],[-1,19],[-3,10],[-9,7],[-6,14],[8,53],[-3,19],[5,7],[20,-14],[16,-4],[11,1],[18,-10],[14,1],[-4,23],[4,10],[-8,14],[8,9],[9,23],[-3,24],[1,10],[5,7],[28,4],[16,-17],[14,-27],[30,4],[14,8],[0,6],[-9,8],[2,43],[-15,11],[-10,33],[-7,7],[15,6],[26,40],[3,29],[7,4],[-1,18],[12,9],[-31,18],[4,20],[14,18],[-1,12],[14,21],[7,18],[1,19],[7,9],[6,19],[-1,22],[38,12],[16,-8],[19,-2],[12,26],[-11,24],[-57,6],[-30,10],[-2,8],[4,19],[-4,16],[23,8],[9,8],[29,8],[11,21],[28,-13],[15,5],[22,19],[9,14],[25,9],[7,16],[19,-3],[62,-48],[19,-28],[59,-19],[14,-11],[20,-42],[13,-11],[29,-7],[8,-19],[-4,-17],[1,-19],[7,-14],[14,-5],[40,16],[15,20],[29,-12],[9,-10],[62,2],[27,-16],[24,-23],[45,15],[30,13],[7,18],[-7,28],[0,42],[22,57],[5,27],[-1,24],[5,17],[-23,16],[-10,16],[-6,18],[10,35],[7,65],[-12,38],[36,-10],[16,16],[22,30],[20,17],[21,-3],[27,-9],[14,2],[48,57],[19,-2],[21,-10],[13,0],[26,18],[7,22],[0,32],[-4,17],[-14,17],[-10,24],[-10,79],[-35,49],[14,5],[25,-5],[6,7],[1,13],[14,2],[11,10],[2,16],[-4,19],[2,42],[-5,17],[-22,28],[-14,49],[-11,24],[-34,14],[-6,7],[36,62],[42,-3],[25,5],[15,31],[50,24],[-2,25],[3,24],[17,8],[17,38],[16,64],[-2,32],[-15,26],[-19,11],[-28,7],[-7,13],[12,33],[-6,15],[-80,16],[-20,9],[8,56],[23,83],[5,10],[41,8],[15,-14],[-1,-14],[-18,-12],[-8,-10],[5,-11],[24,-17],[24,-4],[42,3],[20,-8],[21,0],[0,-37],[4,-26],[8,-15],[18,-23],[26,-16],[44,-16],[80,-16],[26,0],[39,-54],[22,-2],[13,20],[6,31],[16,14],[16,4],[131,-24],[22,14],[19,0],[24,-10],[11,-11],[36,-11],[29,-6],[85,-27],[21,-1],[13,-9],[17,-31],[16,-14],[19,6],[15,9],[15,15],[55,-9],[23,9],[26,-2],[27,-24],[14,-20],[10,-5],[21,6],[47,4],[17,-9],[25,-64],[1,-27],[13,-54],[0,-41],[-9,-25],[-1,-29],[43,1],[29,-4],[28,22],[27,8],[43,-14],[19,7],[24,-4],[16,-11],[17,-22],[-14,-75],[7,-31],[28,-33],[5,-13],[-6,-12],[-53,-40],[-10,-13],[11,-13],[42,-5],[11,3],[32,26],[16,-6],[27,-37],[14,-9],[46,12],[28,0],[19,-15],[8,-18],[23,-6],[51,5],[14,-6],[-1,-21],[5,-15],[79,-28],[38,-36],[27,-43],[19,-16],[25,-5],[66,14],[10,7],[-5,19],[-27,22],[-4,16],[3,16],[17,29],[17,15],[19,8],[10,15],[6,36],[-2,21],[4,20],[22,43],[-3,22],[-24,29],[-1,24],[15,7],[25,-3],[28,-11],[57,-23],[26,-16],[10,-19],[11,-39],[16,15],[18,4],[88,-5],[5,-23],[68,-51],[26,-15],[22,-2],[16,6],[24,-4],[38,-35],[15,-23],[12,-27],[22,15],[29,3],[45,30],[6,10],[-2,47],[25,9],[37,6],[11,-53],[11,-14],[29,-22],[38,-18],[19,-3],[15,5],[7,9],[14,75],[19,45],[12,15],[41,24],[29,4],[57,-1],[15,7],[63,9],[61,47],[58,-7],[25,-6],[18,-10],[2,-9],[15,-22],[27,-8],[25,-18],[15,-59],[11,-17],[63,-47],[16,-8],[15,-21],[18,-10],[53,-10],[20,-10],[28,-34],[37,-31],[11,-14],[2,-42],[30,-35],[24,-39],[7,-20],[-6,-45],[-7,-17],[-7,-57],[-16,-38],[1,-24],[13,-42],[-4,-21],[-28,-21],[-9,-11],[-29,-59],[-27,-77],[-1,-27],[7,-27],[28,-47],[16,-18],[2,-13],[-6,-14],[-32,-9],[-45,-45],[-78,-45],[-18,-16],[-11,-28],[4,-31],[3,-73],[-10,-42],[6,-18],[26,3],[44,23],[27,6],[29,-2],[22,-11],[16,-31],[3,-18],[-7,-111],[22,-88],[0,-142],[-4,-43],[-13,-33],[-18,-18],[-47,-6],[-23,-10],[34,-57],[16,-22],[35,-30],[111,-24],[25,-2],[43,-16],[14,-37],[25,-6],[7,-5],[30,-60],[16,-8],[19,-3],[28,-33],[10,-2],[7,2],[5,-4],[50,-55],[9,-3],[12,-1],[11,13],[22,10],[25,2],[15,17],[21,6],[8,-5],[6,-9],[6,-24],[8,-6],[41,-4],[11,30],[17,21],[14,8],[14,1],[25,-12],[23,11],[24,2],[31,30],[16,9],[7,-11],[16,-6],[41,-59],[52,-151],[27,-60],[23,-24],[25,11],[6,7],[9,20],[6,3],[10,2],[8,-3],[24,-23],[27,22],[19,10],[31,4],[4,5],[73,37],[28,-9],[11,0],[35,13],[11,-3],[22,-22],[28,-5],[7,-6],[3,-13],[6,-9],[24,-23],[7,-18],[19,-8],[39,-24],[23,-27],[30,-9],[31,-20],[12,-9],[22,-28],[7,-17],[17,-7],[13,-12],[12,2],[5,-9],[3,-18],[-6,-10],[2,-11],[31,-46],[6,-16],[42,-26],[10,-12],[14,-6],[6,-21],[19,-10],[7,0],[9,-11],[-8,-3],[-10,-36],[50,-32],[11,9],[19,-1],[5,-13],[-11,-20],[-18,-19],[1,-10],[14,-17],[3,-9],[-3,-25],[8,-26],[19,-27],[18,-39],[4,-13],[0,-35],[15,-11],[4,-14],[9,-16],[14,-7],[7,-8],[24,-44],[17,-4],[7,-9],[-2,-18],[-6,-8],[-114,-57],[-2,-58],[5,-53],[23,-17],[39,-4],[54,3],[25,5],[29,28],[-1,12],[17,9],[1,75],[-3,15],[4,14],[12,6],[12,1],[10,-2],[12,-12],[44,-5],[18,-45],[0,-9],[-14,-11],[-27,4],[-2,-6],[9,-34],[-1,-35],[9,-40],[0,-20],[13,-16],[1,-9],[43,0],[44,5],[25,9],[44,26],[11,13],[17,5],[12,17],[10,6],[43,3],[3,-38],[-5,-20],[-52,-48],[-4,-15],[5,-44],[-13,-40],[19,-22],[30,-67],[-8,-28],[23,-91],[12,-103],[12,-34],[3,-29],[16,-8],[5,-12],[23,-179],[18,-51],[45,-64],[11,-8],[17,-5],[24,-3],[40,8],[30,40],[4,18],[19,15],[53,26],[85,57],[73,-13],[63,-42],[75,-40],[21,-4],[78,-1],[62,6],[70,-5],[60,-17],[2,8],[21,3],[33,-7],[12,12],[-1,15],[12,10],[14,2],[18,-14],[8,-1],[49,23],[16,0],[8,-4],[10,-31],[9,-13],[5,-4],[11,-1],[23,10],[34,0],[95,23],[33,27],[13,-1],[56,-28],[26,0],[10,15],[18,6],[28,28],[14,7],[8,18],[-1,22],[25,39],[24,13],[22,-2],[13,5],[11,12],[21,-21],[12,-34],[123,76]],[[30369,26291],[24,-35],[28,-19],[25,-43],[4,-20],[-15,-11],[-12,-17],[-41,-5],[-25,-28],[-31,8],[-21,-5],[-45,-34],[-12,-13],[-13,-35],[-15,-21],[-15,-12],[-23,-8],[-73,-4],[-42,-7],[-10,-10],[-13,-27],[-8,-8],[-61,-31],[-12,-10],[-8,-18],[-2,-16],[-2,-56],[-6,-12],[-18,-15],[-15,-24],[-21,-50],[-22,-35],[-34,-27],[-16,-21],[-6,-15],[0,-13],[-14,-20],[40,-33],[7,-7],[-1,-7],[-49,-72],[-5,-18],[-3,-51],[3,-20],[-3,-27],[-10,-31],[0,-26],[5,-13],[-5,-28],[-48,-69],[-46,-50],[-22,-39],[-18,-16],[-30,-7],[-10,-24],[-21,-1],[-47,-15],[-30,5],[-49,27],[-14,17],[-1,23],[-13,11],[-15,4]],[[29414,25107],[-18,-6],[-24,-34]],[[29372,25067],[-50,-88],[-17,-19],[-32,-23],[-22,7],[-87,-2],[-63,13],[-20,-12],[-21,-40],[-3,-21],[1,-71],[8,-15],[13,-13],[-28,-29],[-11,-23],[-39,-2],[-61,-17],[-75,-26],[-50,-22],[-35,23],[-6,-22],[-9,-11],[-11,-6],[-19,-25],[-47,-6],[-31,-11],[-14,0],[-65,20],[-57,40],[-37,1],[-19,-10],[5,-20],[-2,-21],[4,-14],[14,-19],[-6,-39],[3,-17],[-9,-9],[-30,-4],[-16,1],[-41,12],[-8,-51],[-8,-15],[-18,-16],[20,-37],[-4,-33],[-13,-31],[5,-42],[-9,-16],[-22,-26],[-28,-17],[-7,16],[-14,12],[-44,12],[-23,1],[-17,10],[-86,18],[-47,22],[-93,10],[-6,-10],[-13,-7],[-59,-16],[-22,1],[-12,9],[8,16],[1,15],[39,28],[3,9],[-24,16],[-46,17],[10,20],[-38,15],[-20,-2],[-20,9],[-48,37],[-30,7],[-25,-34],[-16,-8],[-14,-1],[-14,-15],[-22,-13],[-17,-4],[-35,4],[1,-16],[-22,-43],[-4,-63],[-6,-14],[-23,-29],[-42,-3],[-15,-47],[-58,19],[-6,9],[-7,31],[-30,29],[-5,13],[2,13],[-10,29],[-11,-3]],[[27315,24362],[-36,-31],[-16,-15]],[[27263,24316],[2,-10],[23,-43],[-1,-26],[13,-8],[11,-14]],[[27311,24215],[-1,-16],[-3,-10]],[[27307,24189],[-35,-17],[1,-20],[-4,-10],[-26,-29],[88,-32],[33,-7],[68,-22],[76,-56],[25,-9],[-5,23],[3,23],[10,27],[41,-14],[24,-14],[25,33],[84,-56],[33,0],[14,-36],[-3,-10],[-16,-10],[-2,-15],[10,-22],[3,-31],[-23,-2],[-26,-10],[-2,-62],[-4,-15],[-17,-28],[3,-14],[25,-4],[10,-11],[32,-13],[26,-35],[14,-10],[-77,-40],[-15,-19],[-36,12],[-37,6],[-27,-4],[-16,3],[-47,14],[-11,13],[-31,16],[-32,5],[-3,38],[-6,21],[-46,20],[0,8],[-20,5],[-4,19],[-6,12],[-42,18],[-1,-43],[-11,-16],[-33,-13],[-4,-16],[-4,-5],[-7,1],[-13,37],[-13,56],[-6,11],[-17,-4],[-36,6],[6,26],[-23,10],[-18,-1],[-7,31],[0,26],[-6,40],[5,1],[-17,27],[-14,76],[-28,49],[-60,80],[-27,-7],[-20,-11],[-12,-2],[-40,41],[-10,-1],[-27,-14],[-13,12],[-3,57],[-27,6],[-26,-34],[-7,-16],[-55,-53],[-5,-19],[-15,-18],[-30,3],[-12,-2],[-4,-9],[-16,-2],[-40,15],[-9,-24],[1,-34],[-86,5],[-20,-68],[-41,-41],[-20,-28],[-32,-70],[-8,-34],[50,-24],[43,-1],[2,-32],[5,-15],[12,-15],[62,-30],[-27,-75],[-13,-25],[-8,-62],[-11,-12],[-23,-19],[-36,-47],[-32,-21],[-24,-25],[-42,-78],[-33,-41],[-35,-22],[-42,-5],[-48,17],[-25,28],[-23,63],[-16,29],[-26,23],[-38,-4],[-42,-12],[-35,-3],[-60,82],[-19,11],[-26,-6],[-28,-17],[-38,-52],[-24,-12],[-89,-6],[-32,-15],[-29,-23],[-17,-29],[-33,-2],[-37,8],[-38,-3],[-57,-46],[-45,-21],[-39,-8],[-54,5],[-34,-7],[-104,-51],[-16,-36],[-20,-19],[-17,-7],[-54,-5],[-155,-5],[-30,-6],[-55,-20],[-65,-14],[-12,-35],[-67,-65],[-12,-26],[-3,-38],[16,-24],[9,-26],[2,-29],[-21,-14],[-17,-34],[-14,-105],[1,-46],[-4,-27],[26,-29],[11,-32],[4,-87],[-10,-118],[-15,-25],[-25,-21],[-34,-18],[-34,-14],[-57,18],[-40,28],[-23,3],[-122,1],[-58,16],[-26,2],[-24,-4],[-22,-9],[-40,-28],[-74,-26],[-75,-36],[-39,-26],[-6,-22],[0,-40],[34,-74],[3,-28],[-26,-39],[-21,-18],[-26,3],[-37,27],[-7,27],[-7,53],[-8,21],[-14,13],[-23,3],[-19,-7],[-13,-12],[-3,-22],[7,-53],[15,-40],[-2,-21],[-7,-16],[-33,-59],[-31,-38],[-73,-53],[-47,-7],[-34,1],[-56,13],[-61,32],[-26,21],[-14,15],[-24,37],[-47,48],[-44,17],[-30,-6],[-81,-81],[-18,-13],[-27,0],[-32,14],[-83,25],[-99,19],[-68,4],[-34,-4],[-48,-22],[-31,-28],[-38,-12],[-28,-5],[-21,-13],[-34,-42],[-53,-2],[-54,15],[-25,-8],[-12,-14],[16,-48],[2,-25],[-19,-56],[-6,-6],[-12,-74],[-11,-18],[-23,-14],[-50,-15],[-57,-39],[-1,-13],[5,-17],[-6,-19],[-18,-31],[-5,-32],[-9,-10],[-59,4],[-27,-4],[2,-33],[-16,-11],[-23,-7],[-19,2],[-83,39],[-12,14],[-21,48],[-18,3],[-2,61],[-8,10],[-17,1],[-10,-9],[-16,-9],[-34,-84],[-19,4],[-46,31],[-22,4],[-42,-2],[-36,3],[-46,20],[-44,26],[-25,0],[-21,-8],[-26,-39],[-12,-5],[-36,4],[-19,-4],[-17,-10],[-42,-10],[-45,9],[-42,18],[-23,-2],[-25,6],[-31,15],[-19,4],[-37,-14],[-16,-12],[-20,-4],[-55,6],[-24,6],[-19,10],[-31,38],[-43,30],[-40,-12],[-38,13]],[[21022,21615],[-51,3],[-87,17]],[[27057,15826],[7,-11],[15,-6],[4,-9],[-6,6],[-18,9],[-4,8],[2,3]],[[26951,15907],[0,-8],[-7,-1],[0,4],[7,5]],[[26963,15909],[5,-6],[-10,-4],[-2,7],[7,3]],[[27036,15968],[4,-5],[-2,-7],[4,-10],[-5,-26],[-2,9],[4,17],[-5,14],[2,8]],[[26874,15970],[6,-6],[4,-12],[-20,5],[-1,12],[11,1]],[[26856,16005],[-2,-7],[-9,2],[0,2],[11,3]],[[26563,16132],[6,-1],[2,-5],[-11,4],[3,2]],[[26776,16201],[2,-9],[-7,-9],[9,2],[12,-10],[12,-2],[3,-4],[-3,-21],[6,-9],[7,0],[1,-5],[-5,-14],[-12,-7],[0,-24],[-13,-36],[-18,-23],[-10,-3],[-10,21],[0,17],[5,1],[2,10],[-10,19],[-18,12],[-3,15],[2,4],[14,3],[10,8],[19,0],[22,-5],[4,4],[-24,3],[-5,3],[-2,7],[-44,12],[2,-4],[7,-3],[4,-10],[-3,-7],[3,-5],[-9,-2],[-14,41],[6,3],[3,-1],[-2,-3],[6,-2],[4,3],[25,3],[15,11],[7,16]],[[26660,16255],[-1,-9],[-11,-3],[4,8],[8,4]],[[26681,16282],[4,-14],[-5,-4],[-5,-18],[-5,-2],[-3,6],[14,32]],[[26673,16341],[8,-2],[-4,-21],[-6,21],[2,2]],[[26577,19933],[6,-5],[0,-1],[-7,5],[1,1]],[[26914,20645],[2,-5],[-4,-1],[-2,4],[4,2]],[[28739,21269],[4,-2],[-2,-4],[-12,-13],[-8,0],[13,8],[5,11]],[[28192,21439],[17,-15],[2,-9],[5,-3],[-5,-5],[-5,0],[-16,28],[2,4]],[[28203,21452],[5,-4],[-3,-9],[-6,9],[4,4]],[[28198,21483],[5,-4],[-1,-23],[-5,4],[-4,13],[1,7],[4,3]],[[28170,21496],[6,-9],[3,-16],[6,-8],[1,-11],[-19,30],[0,10],[3,4]],[[29886,22661],[12,-11],[-1,-4],[-75,2],[6,8],[10,3],[4,0],[2,-7],[4,-2],[8,0],[11,2],[7,7],[12,2]],[[29871,22662],[-4,-8],[-4,0],[2,7],[6,1]],[[31617,23183],[0,-6],[-5,-1],[1,5],[4,2]],[[31494,23422],[3,-7],[-2,-13],[-4,15],[3,5]],[[31577,23508],[0,-1],[0,0],[0,0],[0,1]],[[31596,23513],[3,-5],[-5,-3],[-15,-4],[3,6],[14,6]],[[31612,23535],[-2,-15],[-9,-2],[0,6],[11,11]],[[31650,23533],[-2,3],[3,5],[3,-8],[-4,0]],[[31650,23533],[4,-12],[8,0],[-4,-10],[8,-2],[13,-23],[-1,-3],[-7,1],[-14,-13],[-2,-8],[4,-9],[15,10],[2,6],[10,6],[2,8],[9,6],[0,7],[-12,0],[0,6],[-11,-5],[-7,19],[21,-7],[7,1],[7,-8],[8,0],[13,13],[0,9],[-4,10],[-7,-1],[-4,5],[5,2],[10,-3],[8,-10],[-3,-10],[-21,-32],[-7,-4],[-23,-33],[-23,-23],[-16,-26],[-10,-30],[-8,-11],[2,-18],[-4,-2],[-1,-27],[3,-6],[-6,6],[-1,11],[-7,6],[-1,10],[6,11],[-7,9],[-4,0],[4,-18],[-3,-9],[11,-16],[1,-10],[6,-9],[-1,-7],[3,-3],[-9,-30],[-7,-14],[-3,0],[-18,12],[-11,13],[-31,71],[-36,1],[-15,8],[-8,11],[-3,15],[22,33],[-8,33],[-8,11],[40,7],[20,10],[15,-2],[2,4],[24,2],[15,5],[21,13],[11,17],[9,1],[-6,7],[1,10],[5,9],[7,-1]],[[33525,25525],[1,-5],[-4,-2],[2,6],[1,1]],[[33824,25798],[-1,-3],[-6,-2],[2,3],[5,2]],[[33838,25798],[-18,-9],[-14,-3],[30,12],[2,0]],[[33744,25855],[-3,-2],[0,4],[3,1],[0,-3]],[[31577,23508],[8,20],[-4,25],[-8,16],[-9,7],[-10,-5],[-19,-43],[-38,-8],[-82,-5],[-14,2],[-21,23],[-2,8],[21,32],[5,13],[-9,3],[-15,-8],[-9,-11],[-23,-17],[-18,-22],[-19,2],[-13,-7],[10,-20],[33,-19],[20,-2],[29,5],[26,-12],[43,-31],[27,-4],[2,-38],[5,-13],[-17,-27],[0,-13],[10,-14],[0,-4],[-5,2],[0,-4],[8,-4],[13,3],[28,-14],[14,-24],[12,-37],[5,-4],[-1,-7],[-11,-11],[-47,-8],[-7,-20],[-6,-6],[7,4],[8,18],[18,2],[19,8],[9,-1],[12,6],[4,-1],[11,-24],[-4,-20],[-7,-7],[-2,-9],[-10,-14],[-4,-2],[-2,6],[-17,-2],[-24,-18],[12,-10],[13,1],[9,7],[20,2],[8,3],[-1,4],[26,5],[-2,13],[9,-6],[0,-10],[-28,-10],[-25,-15],[-66,-18],[-72,-27],[-118,-61],[-2,-4],[-46,-24],[-19,-6],[-3,-5],[-46,-24],[-10,-1],[-6,8],[-1,-7],[4,-4],[-10,-7],[-82,-42],[-60,-37],[-20,-7],[-9,2],[-13,-10],[1,-4],[4,2],[5,-2],[-23,-12],[-1,-7],[-9,1],[-20,-11],[-3,-7],[-3,0],[2,4],[-3,-1],[-60,-33],[-66,-31],[-8,-8],[-45,-3],[-72,-17],[-85,-28],[-72,-33],[-107,-63],[-60,-27],[-19,-4],[0,-4],[-12,-5],[-1,-4],[-18,-5],[-10,-7],[-3,3],[3,3],[-3,4],[4,10],[-10,4],[-11,-2],[-61,32],[-14,-3],[-9,4],[-64,2],[-137,22],[-51,4],[-4,3],[2,12],[-18,0],[-24,17],[-14,0],[-15,-12],[-10,4],[2,6],[-13,1],[-9,-9],[-9,0],[-4,-5],[-7,2],[-24,-4],[-9,3],[-57,0],[-60,-7],[-74,-15],[-4,4],[8,5],[-2,2],[-6,-2],[-3,11],[-3,-1],[2,-14],[-5,-4],[-15,8],[-8,15],[-11,4],[-3,15],[-22,-5],[-3,6],[-5,0],[-10,-6],[-9,-12],[1,-8],[-8,-3],[5,-3],[-2,-7],[-13,-19],[-17,-17],[22,7],[9,16],[11,10],[14,3],[-12,11],[0,4],[32,18],[6,-2],[5,-12],[7,-2],[-2,-7],[12,-12],[1,-7],[-80,-29],[-64,-28],[-92,-57],[-42,-36],[-6,7],[-7,-24],[-44,-50],[-16,-28],[-10,-7],[0,-8],[-29,-52],[-18,-57],[-11,-23],[-5,-34],[3,-28],[-4,-10],[-5,-2],[-1,7],[-6,-11],[-32,1],[27,-5],[16,4],[-9,-38],[-19,-55],[-78,-153],[-30,-48],[-4,-53],[6,-25],[9,-11],[-1,-16],[-7,-2],[-16,3],[-8,-3],[-2,-13],[-6,-10],[-89,-79],[-10,-15],[-32,-30],[-45,-62],[-36,-33],[-31,-35],[-22,-43],[-3,5],[-3,-2],[0,-17],[-2,21],[-3,0],[0,-14],[-4,0],[0,-7],[-7,1],[-8,-26],[-7,0],[4,-14],[-2,-11],[3,-18],[12,-21],[3,-15],[11,-18],[3,5],[-3,6],[3,0],[6,-11],[3,-23],[-3,-5],[-11,-2],[1,-22],[-12,-14],[-76,-47],[-23,-10],[-5,0],[-34,-22],[-8,2],[-8,11],[-114,-24],[-63,-8],[-9,2],[-2,-4],[-22,-1],[-35,9],[-14,16],[-7,20],[-27,27],[-8,11],[-9,31],[-16,24],[-11,31],[0,21],[4,6],[0,-8],[7,-8],[5,1],[-2,-14],[4,-17],[11,-4],[-3,-25],[10,-10],[3,-13],[5,-3],[6,-13],[9,-6],[14,-4],[3,7],[-6,18],[-3,32],[-11,20],[-5,30],[-13,28],[-11,42],[1,5],[6,1],[33,-3],[-2,14],[4,27],[-14,22],[-37,37],[-7,5],[-9,-3],[-17,17],[-12,-7],[-35,17],[-43,12],[-49,11],[-49,3],[-7,3],[-19,-5],[-77,-7],[-12,-5],[-87,-14],[-73,-21],[-48,-20],[-8,0],[-10,6],[-10,-8],[-7,1],[9,-6],[-3,-4],[-69,-24],[-157,-75],[-11,-10],[-36,-19],[-110,-72],[-27,-25],[-20,-11],[-18,-21],[-44,-42],[-86,-109],[-7,-3],[-16,-36],[-1,-11],[-34,-65],[-22,-59],[-25,-102],[3,-37],[-6,-10],[0,-13],[-21,-37],[0,-7],[-6,-6],[4,-6],[-4,-14],[-9,7],[-7,-12],[-5,-2],[1,-4],[-8,0],[0,-7],[25,2],[-9,-38],[-15,-34],[-50,-67],[-68,-80],[-44,-61],[-38,-67],[-13,-36],[-1,-15],[-6,-6],[-7,0],[5,-13],[-7,-11],[-6,-3],[-35,7],[14,-9],[29,-6],[-18,-38],[-17,-63],[-1,-31],[10,-39],[2,-43],[-11,-58],[-12,-13],[-18,8],[-8,12],[-26,22],[-20,6],[40,-41],[-5,-1],[-1,-3],[36,-20],[9,10],[-33,-67],[-28,-95],[-12,-54],[-1,-41],[6,-117],[9,-67],[18,-88],[13,-82],[15,-28],[21,-86],[8,-135],[-4,3],[-5,-3],[7,-2],[3,-22],[-18,-3],[-28,22],[-12,4],[-8,-4],[17,-2],[14,-13],[4,0],[-1,-7],[16,-6],[11,1],[10,7],[5,-2],[2,-33],[15,-63],[24,-60],[4,0],[4,-6],[-2,-25],[6,6],[1,8],[-4,4],[2,2],[20,-22],[2,-9],[14,-16],[9,-21],[2,-16],[-18,-28],[11,2],[3,12],[10,12],[-3,17],[-9,19],[2,1],[13,-25],[7,-22],[1,-16],[11,-35],[0,-10],[13,-37],[5,-31],[31,-82],[25,-18],[10,-4],[10,1],[6,-13],[5,-3],[4,-16],[-34,-119],[-17,-8],[-5,6],[-3,-2],[3,-8],[10,1],[5,4],[4,-8],[-6,-42],[-7,-89],[-8,-116],[-1,-93],[-6,-60],[-11,-48],[-8,-13],[-33,-84],[-18,-64],[-2,-44],[-5,-7],[-4,-18],[3,-8],[-6,-12],[-9,-54],[-3,-51],[1,-71],[-3,-4],[4,-14],[4,-68],[-8,-2],[0,11],[3,-1],[1,6],[-4,11],[-1,-32],[-8,-14],[8,10],[2,-17],[5,1],[3,5],[-5,-2],[-2,17],[7,2],[18,-116],[8,-10],[-1,-18],[2,-2],[8,-44],[6,-13],[-1,-18],[5,-9],[-1,-12],[8,7],[-7,14],[3,6],[9,-23],[-3,-18],[8,-15],[0,-15],[5,-3],[3,-11],[0,-8],[-3,-1],[3,-6],[6,-1],[-4,-8],[4,-13],[11,-14],[1,-21],[5,1],[3,-10],[1,8],[-9,23],[2,6],[-6,5],[2,2],[-2,9],[-3,1],[-1,-6],[-3,3],[5,12],[-14,44],[-7,11],[-4,18],[54,-120],[3,-14],[5,-6],[32,-95],[24,-41],[1,-8],[4,-2],[21,-46],[15,-58],[19,-47],[9,-17],[12,-13],[9,-45],[-3,-5],[6,-8],[5,-35],[-7,-42],[-22,-74],[-12,-80],[-3,-65],[3,-6],[-2,-8],[2,-1],[5,-56],[13,-55],[38,-76],[0,-7],[27,-56],[27,-73],[29,-96],[12,-25],[-1,-6],[14,-13],[6,-14],[4,-17],[-1,-7],[4,-2],[4,-13],[0,-26],[-12,-3],[-8,4],[-10,15],[-19,16],[-12,28],[-5,19],[4,-5],[2,22],[-3,6],[-5,-2],[-1,19],[-6,7],[1,30],[-9,22],[0,27],[-5,11],[1,-19],[-4,-7],[-4,5],[-2,17],[-4,2],[-5,-6],[-7,4],[13,12],[-7,18],[0,18],[-6,11],[0,30],[-21,21],[-11,4],[2,16],[-15,16],[-7,27],[-33,25],[2,3],[-5,3],[-15,32],[-9,9],[-34,15],[-20,21],[-5,13],[5,28],[-2,16],[-13,18],[-24,22],[-4,14],[-3,-1],[-2,-6],[-5,0],[-27,39],[-11,-1],[-4,4],[-2,-7],[-6,0],[-9,20],[5,0],[-1,6],[-8,1],[-5,14],[10,-11],[1,11],[7,-1],[7,5],[0,9],[-14,-4],[-1,4],[3,2],[-16,2],[-10,-6],[2,-25],[11,-3],[1,5],[9,-31],[6,3],[-7,-27],[6,-24],[1,-26],[10,-23],[-4,-19],[3,-12],[-7,-4],[-2,-17],[4,-18],[-14,-40],[-13,-7],[-15,4],[-17,22],[1,17],[-16,18],[-7,15],[2,15],[-4,13],[5,10],[18,1],[0,-7],[-2,-2],[0,3],[-4,0],[-1,-3],[11,-10],[-2,-6],[-16,-14],[20,8],[3,17],[-5,7],[-1,17],[6,3],[9,15],[-4,17],[-9,1],[4,-8],[-2,-10],[-9,4],[-6,9],[-7,-11],[-6,0],[-4,6],[4,16],[-5,8],[5,1],[0,12],[7,7],[-11,18],[6,18],[-6,3],[-5,-4],[-1,-12],[-8,-1],[5,-15],[7,-1],[4,-5],[-7,-13],[-8,-1],[-1,-22],[9,-41],[-2,-15],[-5,-3],[-8,0],[2,20],[-3,1],[-10,-18],[-9,0],[18,25],[-3,10],[-12,-10],[-5,2],[-9,-16],[-10,-7],[4,-13],[22,2],[0,-6],[8,-3],[-7,-4],[-22,-2],[-20,-18],[-5,-15],[3,-12],[-1,-26],[8,-2],[3,-7],[-3,-6],[-10,-4],[-1,-10],[-8,1],[-8,-7],[-4,-11],[-5,-2],[-6,4],[-4,-3],[3,-10],[-8,0],[-3,-5],[16,-26],[19,-11],[15,-34],[7,-4],[2,-6],[24,-7],[6,-19],[14,-5],[2,-11],[4,-1],[-2,-11],[3,-5],[8,-4],[12,-19],[7,-2],[-1,-5],[7,3],[9,-6],[1,-7],[-7,0],[-1,-7],[-3,0],[2,-4],[5,-1],[-1,9],[2,0],[1,-11],[16,-1],[3,13],[-5,10],[9,4],[24,-14],[8,-10],[12,-24],[29,-17],[15,0],[14,10],[12,2],[11,-7],[60,-12],[57,-6],[-6,7],[5,2],[10,-14],[14,-11],[0,-11],[13,-1],[4,5],[16,-4],[11,-14],[-1,-19],[5,-4],[11,-29],[8,-10],[-3,-2],[11,-3],[-12,-1],[0,-15],[-13,-20],[-3,-14],[20,44],[12,0],[5,-8],[11,6],[10,-10],[1,-8],[12,-1],[3,-6],[-4,-13],[6,-7],[-2,14],[4,7],[11,7],[11,0],[-4,-23],[11,-99],[-3,-4],[1,-7],[-7,-5],[-43,33],[-24,5],[-14,9],[-5,20],[13,4],[1,6],[-5,13],[-14,13],[-8,3],[-4,9],[-4,41],[-10,28],[-30,43],[-36,27],[-42,13],[-18,-10],[-21,-5],[-41,7],[-28,-4],[-25,4],[-54,47],[-16,8],[-45,7],[-11,11],[-18,39],[-18,7],[-7,-8],[-15,27],[-9,-7],[-32,-10],[-13,-20],[-25,0],[-37,8],[-22,17],[-31,-7],[-9,-6],[1,-40],[36,12],[4,-16],[12,-10],[12,-6],[15,6],[16,-5],[9,-6],[-2,-35],[-67,8],[-4,-23],[-20,-44],[-10,-1],[0,7],[-7,0],[-43,-13],[-15,-13],[3,-25],[-4,-30],[5,-24],[-11,-11],[-17,-11],[-15,6],[-18,-3],[-8,-12],[7,-46],[33,-7],[7,-19],[-12,-16],[-19,4],[1,-26],[-25,-34],[-8,-18],[-33,18],[-10,-11],[-5,-13],[-27,-21],[-37,-17],[-10,-13],[-12,-2],[-15,7],[-17,-24],[-46,-4],[-49,7],[-18,-1],[-12,-14],[-17,-33],[-17,-6],[-26,18],[-32,31],[-7,-9],[-2,-19],[-8,-26],[-10,-8],[-46,-10],[1,-16],[70,-52],[50,-22],[18,-14],[3,-11],[-3,-14],[-22,0],[-23,-21],[-12,-7],[-13,-3],[-17,-23],[-14,8],[-1,17],[-9,11],[-3,12],[-13,5],[-8,11],[-10,2],[-6,-20],[-9,-9],[-13,-3],[-14,-15],[-16,11],[-8,0],[16,38],[0,24],[-9,11],[-17,-11],[-8,-13],[-17,3],[-5,15],[6,26],[24,23],[-11,30],[-24,30],[-6,-21],[-8,-12],[-11,1],[-9,14],[-22,-3],[-11,7],[-14,-6],[-6,-30],[-12,3],[-8,-8],[-12,4],[-23,16],[-9,1],[-28,-17],[-7,-31],[-11,-4],[-34,9],[-23,23],[-14,19],[-5,16],[-11,12],[-6,51],[-7,25],[-29,11],[-55,-3],[-24,4],[-18,12],[-55,7],[-57,-2],[-26,-4],[-96,-45],[25,-19],[44,-22],[37,3],[7,-13],[-15,-16],[2,-19],[-15,-21],[-9,-25],[-2,-22],[5,-22],[-3,-21],[5,-17],[14,0],[3,15],[19,10],[21,17],[14,-2],[7,-17],[0,-12],[-53,-20],[3,-22],[-4,-14],[5,-13],[-7,-7],[-51,4],[-11,-4],[-19,0],[-13,-5],[-21,-15],[4,-18],[-8,-7],[-14,-22],[-14,12],[-15,4],[-3,-67],[18,-11],[-10,-11],[-13,-4],[-15,-1],[-5,10],[-11,-15],[-31,-4],[-9,-13],[-6,-16],[0,-17],[-4,-7],[-24,1],[3,41],[-24,8],[-7,11],[-16,-7],[-8,2],[-6,41],[-9,8],[-14,-2],[-10,-10],[-9,12],[-3,11],[-9,5],[-7,-17],[-2,-18],[-14,-15],[-8,2],[-15,16],[-19,2],[-8,-18],[8,-17],[10,-11],[-10,-13],[0,-15],[-9,-17],[-15,-13],[-31,-4],[-10,-12],[-4,-18],[-14,-23],[-4,-17],[-22,-17],[12,-7],[-5,-15],[9,-12],[1,-20],[-8,-25],[-6,-9],[-40,-20],[-25,7],[-49,30],[-34,3],[-48,-27],[-31,4],[-33,33],[-2,23],[-21,13],[-23,5],[-17,9],[-7,16],[-50,4],[-27,35],[-19,9],[-34,-9],[-12,-17],[-21,1],[-9,-6],[-20,15],[-15,-9],[-35,4],[-13,-41],[-17,4],[-17,-40],[11,-8],[14,-1],[29,3],[25,-26],[-9,-7],[-4,8],[-16,3],[-76,-8],[-5,13],[3,45],[-1,60],[7,29],[-17,9],[-12,3],[-13,-6],[-9,-12],[-5,-20],[-32,1],[-26,-4],[-42,12],[-12,7],[-16,-5],[-32,-32],[-8,-14],[-13,-7],[-70,-19],[-14,0],[-32,18],[-51,8],[-19,-122],[-57,15],[-39,16],[-4,-3],[-17,-35],[-9,-11],[-38,-34],[-15,-9],[14,-11],[40,-46],[-20,-3],[39,-81],[-20,-7],[-15,0],[-11,7],[-14,-40],[-30,-67],[-4,-38],[-29,-45],[5,-13],[4,-41],[5,-11],[-21,-15],[5,-16],[-2,-12],[-16,-17],[-1,-35],[-4,-8],[-32,-20],[2,-16],[-19,-1],[-9,-13],[-7,2],[-12,-7],[10,-12],[-10,-24],[18,-6],[-19,-44],[15,-25],[0,-6],[-9,2],[-6,-6],[6,-8],[-1,-9],[-14,-1],[-30,-14],[-8,1],[-13,30],[5,12],[11,-6],[4,6],[-2,9],[-23,5],[0,7],[-9,4],[-3,32],[-8,-20],[-8,1],[-4,19],[-10,6],[-7,15],[-22,10],[-10,-11],[10,-16],[16,-14],[5,-15],[34,-14],[3,-8],[-1,-7],[-12,-1],[-2,-12],[-13,13],[-6,12],[-4,-1],[-1,-23],[-12,-2],[-3,-5],[8,-9],[9,-2],[-1,-12],[9,-4],[0,-6],[-7,-4],[-2,-13],[-11,-14],[-32,-10],[-37,7],[4,-55],[8,-8],[-2,-8],[-7,-2],[2,-33],[-11,-12],[-7,8],[-10,2],[-50,-4],[-15,14],[-24,-7],[-17,-11],[-30,2],[-40,-5],[-17,8],[-70,55],[-16,-3],[-30,30],[-31,10],[-10,-3],[-8,13],[-6,22],[-44,57],[-71,5],[-12,-11],[-1,-22],[3,-14],[-63,4],[-10,10],[-13,3],[0,5],[22,16],[-10,12],[2,3],[9,-1],[7,7],[15,0],[9,8],[15,2],[19,40],[-22,63],[3,13],[10,6],[10,17],[24,97],[4,21],[-2,83],[8,9],[20,-4],[10,15],[10,2],[18,-14],[11,-4],[61,-5],[7,23],[-4,21],[39,-7],[2,12],[11,15],[-11,5],[-3,-11],[-23,6],[-2,6],[7,8],[1,20],[6,10],[13,-7],[11,-1],[25,41],[0,21],[13,6],[-8,9],[0,7],[11,7],[52,-62],[21,-15],[15,2],[8,22],[25,-22],[7,-11],[32,-6],[17,11],[4,20],[21,-3],[-1,-28],[6,-6],[1,-16],[17,-11],[14,-22],[-1,-23],[5,-6],[9,62],[-5,31],[-16,9],[-17,22],[-15,6],[-30,36],[-2,13],[10,21],[-11,20],[17,9],[-10,18],[-1,25],[7,3],[18,-2],[54,-14],[-1,18],[9,20],[-14,26],[-7,32],[-5,52],[4,14],[21,1],[8,7],[5,15],[9,6],[14,-2],[24,16],[37,7],[1,15],[-14,25],[7,28],[11,6],[16,1],[2,15],[29,15],[-26,8],[-11,13],[-6,17],[1,15],[9,1],[19,21],[31,4],[3,14],[-9,13],[2,9],[11,13],[19,4],[24,-2],[8,8],[17,1],[-13,50],[-8,6],[-28,-3],[-10,4],[-4,16],[28,5],[11,7],[4,14],[13,6],[6,8],[-25,19],[3,35],[3,15],[27,36],[12,32],[-3,12],[-20,11],[-6,27],[-20,38],[-3,-3],[-2,-32],[-6,-20],[-8,-8],[-26,8],[-15,-1],[-18,-47],[-19,10],[-9,22],[-9,7],[-6,12],[-14,4],[-26,21],[-24,7],[-6,7],[4,33],[-12,5],[-27,-14],[-41,-14],[-13,23],[-2,22],[-11,4],[-20,-4],[-19,-17],[-35,-15],[-27,31],[-27,7],[2,21],[8,9],[14,-3],[-5,-11],[20,-7],[9,-12],[6,12],[9,-3],[5,24],[-28,13],[-3,10],[-20,10],[-14,4],[-27,-3],[-2,19],[30,59],[6,26],[-5,43],[-9,36],[4,16],[-6,16],[-4,33],[2,17],[9,18],[0,67],[15,24],[-2,16],[27,46],[1,29],[27,53],[-9,10],[-7,18],[-23,7],[-82,-8],[-47,12],[-23,1],[-46,-11],[-59,-1],[-16,-7],[-19,-2],[-29,24],[-20,6],[-11,-24],[-32,12],[-14,-33],[-14,-17],[-15,-11],[-13,0],[-7,19],[2,22],[-4,13],[32,37],[4,16],[-3,34],[-19,12],[-45,0],[-11,6],[-3,51],[-8,8],[-72,1],[-17,-8],[-19,4],[-30,-16],[-7,-18],[-22,6],[-2,35],[-16,11],[-15,23],[-17,6],[13,17],[3,13],[-6,13],[3,6],[47,-17],[45,9],[4,33],[6,13],[-1,15],[-20,18],[-16,23],[-19,13],[10,23],[13,17],[25,15],[10,12],[17,36],[-7,25],[-14,26],[-3,12],[21,43],[-8,45],[-17,30],[-19,-2],[-20,5],[-30,0],[-9,40],[-7,6],[-29,12],[-14,12],[-16,5],[3,-54],[-11,-26],[-50,4],[-11,5],[-13,12],[-43,0],[-7,-11],[-2,-19],[-35,-68],[-47,0],[8,11],[0,11],[-14,98],[1,22],[16,10],[49,10],[15,11],[-8,28],[-3,34],[11,42],[1,24],[-27,7],[-12,-2],[-13,-19],[-10,-33],[-4,-2],[-7,4],[-16,-10],[-20,-37],[-22,-24],[-19,-3],[-25,12],[-10,13],[-14,8],[-5,15],[-1,32],[-54,-10],[-37,3],[-36,-3],[-19,8],[-7,11],[-22,-29],[-5,-12],[0,-21],[11,-33],[8,-9],[14,-4],[9,-22],[5,-20],[-18,-13],[19,-13],[-38,-20],[-18,-27],[-36,-1],[-23,-10],[-5,-10],[14,-27],[-4,-17],[-21,-11],[-30,-2],[-61,-14],[-22,-21],[-12,-5],[5,-17],[-6,-20],[4,-33],[-2,-35],[-10,-31],[-4,3],[-11,-7],[-15,71],[-60,-21],[-11,0],[14,24],[4,18],[-4,17],[-13,-4],[-34,0],[-77,-36],[-9,-12],[5,-20],[47,-13],[7,-14],[-19,-13],[-16,-6],[-12,2],[-26,34],[-19,2],[-31,-31],[-18,-9],[-16,7],[-23,-31],[-18,10],[-15,34],[-5,21],[-22,5],[-22,-5],[-10,-16],[17,-14],[9,-14],[2,-15],[0,-28],[-14,-45],[-20,-5],[-10,7],[-2,27],[-9,10],[-35,5],[-17,-8],[6,-10],[6,-29],[-5,-17],[-14,-4],[-60,-5],[-11,47],[3,12],[16,8],[8,20],[3,42],[10,31],[-1,13],[-8,2],[-11,67],[-7,17],[5,14],[10,14],[-4,6],[-33,6],[-12,-7],[-15,-27],[-19,2],[-7,5],[6,12],[-1,9],[-23,-1],[-2,7],[13,12],[-2,10],[30,43],[-4,12],[-46,-8],[-31,3],[-38,-4],[0,17],[-12,11],[-18,6],[-17,-3],[-55,-46],[-16,2],[-9,33],[-21,41],[-38,-17],[-15,-21],[-17,5],[-56,-8],[6,39],[-21,10],[-6,13],[-5,37],[6,17],[-3,12],[-14,3],[-19,1],[-7,-16],[-11,-46],[-13,-19],[-7,-2],[1,43],[-8,6],[-9,-35],[-9,-16],[-10,-8],[-31,9],[-8,3],[10,40],[6,54],[-1,23],[-11,16],[-15,-3],[-24,-19],[-8,-20],[3,-20],[10,-21],[7,-38],[-5,-22],[-32,7],[-20,-2],[-20,-22],[-14,-1],[3,-15],[45,-19],[5,-14],[23,-8],[9,-12],[0,-12],[-13,-10],[0,-18],[-5,-7],[10,-32],[29,-36],[-4,-25],[-7,-16],[-65,3],[-8,-7],[-23,-4],[-63,23],[-21,-6],[-2,-9],[-10,-3],[-3,-17],[3,-20],[-46,3],[-28,41],[-27,31],[-20,5],[-14,-4],[-19,-87],[-42,23],[-2,16],[-24,86],[8,7],[2,10],[-4,26],[-8,7],[-26,7],[0,10],[7,11],[27,21],[5,27],[18,-1],[27,27],[4,30],[10,3],[-2,17],[13,52],[23,9],[30,0],[-12,67],[-38,22],[-24,29],[-19,7],[-23,15],[5,45],[7,14],[-21,14],[-22,21],[-25,14],[-35,10],[-8,10],[-9,23],[-22,5],[6,42],[10,17],[26,0],[49,11],[6,13],[1,18],[-6,7],[-1,17],[-8,10],[-37,13],[-12,0],[5,14],[0,13],[-12,36],[-13,7],[-23,29],[-10,4],[-22,-16],[-65,21],[8,12],[10,54],[12,6],[45,-9],[13,13],[32,6],[5,4],[5,25],[-6,20],[6,6],[27,-19],[11,-13],[61,-7],[45,5],[30,-5],[3,-20],[-11,-27],[-5,-60],[12,-5],[2,-7],[-8,-11],[0,-27],[-18,-19],[4,-14],[31,-21],[1,-14],[-10,-38],[8,-19],[44,-4],[57,-10],[1,-18],[16,-4],[32,1],[13,5],[54,4],[9,-18],[7,-37],[13,-22],[-2,-13],[3,-14],[12,-2],[17,-13],[16,-3],[19,17],[-3,20],[22,6],[52,-14],[54,12],[53,-4],[29,35],[20,13],[15,4],[6,-28],[-3,-20],[13,-2],[31,18],[12,20],[13,8],[22,-4],[7,-8],[1,-14],[7,-15],[22,-34],[1,-10],[7,-6],[45,-13],[-1,-14],[-14,-37],[0,-13],[-7,-10],[40,-13],[2,-8],[-45,-71],[2,-14],[11,-23],[23,-2],[71,5],[3,-42],[12,1],[49,35],[14,16],[4,17],[-11,7],[-27,6],[-6,51],[34,7],[13,10],[4,60],[-9,10],[-13,9],[-76,-7],[-24,-11],[-7,15],[1,14],[15,28],[8,33],[-19,11],[-28,9],[-27,1],[-54,16],[12,39],[15,33],[27,0],[19,12],[6,17],[25,14],[16,44],[13,7],[22,24],[2,16],[-4,10],[-11,9],[-21,-4],[-15,-10],[-32,-9],[-15,-8],[-18,-22],[7,67],[16,-2],[49,14],[13,43],[16,14],[0,27],[45,11],[15,-1],[16,-10],[67,-5],[22,3],[56,-26],[26,-5],[23,50],[-2,11],[-12,9],[-10,56],[-15,22],[0,15],[-7,18],[14,30],[6,21],[1,26],[-7,27],[-9,-1],[-17,9],[-12,22],[-55,-29],[-24,13],[-3,76],[-33,-12],[-4,38],[-37,14],[-32,5],[-21,-10],[-15,-18],[-11,-28],[2,-24],[23,-53],[-2,-17],[13,-10],[24,-2],[9,-28],[9,-59],[13,-15],[2,-12],[-2,-21],[-52,-29],[-17,2],[-8,25],[3,19],[-11,15],[-47,32],[8,31],[0,61],[-115,11],[-27,6],[-23,-4],[-13,3],[7,62],[-3,68],[-18,1],[-13,-11],[-21,-3],[-29,-26],[-29,-8],[-20,9],[-30,-5],[-29,3],[-55,38],[-17,1],[-10,13],[-17,4],[-13,-13],[-13,9],[-11,-5],[-8,-8],[1,-16],[-4,-24],[-11,-29],[-19,-24],[-12,-9],[-3,-30],[-8,-31],[19,-11],[-9,-20],[3,-20],[-5,-19],[-1,-25],[-11,-19],[-22,-9],[-45,-1],[-34,35],[-23,37],[-37,2],[-19,-9],[-27,-4],[-19,-8],[-21,9],[-4,-6],[-7,8],[-16,4],[-29,-6],[-18,1],[-23,-4],[-17,5],[-13,9],[-4,21],[-22,37],[-3,18],[43,22],[11,12],[3,18],[-16,26],[-15,7],[-30,3],[-53,23],[-31,48],[-14,16],[9,104],[30,10],[37,45],[64,-33],[7,22],[-5,72],[3,13],[33,1],[13,15],[22,44],[-2,18],[-40,3],[-23,6],[-87,5],[-27,-8],[-19,-11],[-12,-13],[-23,-5],[-14,15],[-7,29],[-14,28],[-23,24],[-27,14],[-10,19],[-17,-7],[-45,18],[-11,31],[-19,29],[-18,62],[-4,26],[-5,0],[-3,-8],[-27,22],[-1,13],[6,24],[18,146],[22,39],[10,39],[28,65],[-22,41],[-4,24],[-13,41],[68,5],[13,2],[1,7],[8,3],[13,1],[11,-7],[5,2],[3,36],[5,10],[21,-5],[4,4],[2,19],[-2,5],[-9,3],[-3,21],[-7,14],[21,20],[10,54],[-5,2],[-6,41],[-13,4],[1,12],[6,9],[31,2],[8,48],[4,61],[-4,42],[2,21],[-52,-7],[-12,-5],[-8,-13],[-10,-6],[-10,6],[-18,24],[-41,-2],[-74,16],[-16,31],[13,16],[6,-1],[10,27],[22,13],[11,25],[-6,16],[-2,25],[-22,47],[3,26],[8,10],[-4,5],[5,5],[5,-4],[12,9],[-4,8],[5,4],[7,0],[21,24],[54,-38],[36,-5],[13,-15],[39,-22],[8,-16],[12,-14],[16,-37],[27,8],[16,0],[21,-6],[18,4],[41,-11],[24,1],[18,-6],[36,-26],[34,-7],[3,24],[27,8],[12,13],[49,-4],[33,0],[21,4],[4,-13],[-17,-43],[84,-13],[7,52],[14,2],[6,11],[42,2],[4,23],[10,4],[5,25],[16,42],[5,60],[26,14],[19,18],[14,31],[-3,26],[-39,11],[-7,16],[11,15],[19,3],[27,-4],[4,8],[-1,13],[9,8],[3,17],[-14,60],[-5,1],[-13,32],[-6,2],[-13,23],[-46,7],[6,28],[20,4],[17,39],[15,-3],[41,2],[-2,19],[-15,3],[-17,16],[-11,-2],[0,7],[7,4],[-1,35],[-20,0],[-52,10],[-5,69],[-7,4],[-1,15],[-23,-2],[-68,-16],[-16,5],[3,15],[0,23],[-12,13],[-34,21],[-10,15],[13,59],[-6,19],[-18,11],[-10,12],[-4,15],[9,25],[-1,19],[-7,21],[-8,8],[-19,6],[-20,17],[-9,17],[-3,14],[-11,14],[-44,34],[-13,21],[3,37],[22,-4],[32,-12],[21,7],[48,-6],[4,20],[1,39],[-12,121],[2,19],[10,33],[-4,73],[5,11],[7,-5],[8,1],[73,20],[28,29],[32,-21],[18,-24],[28,-21],[10,29],[9,51],[-13,7],[-41,40],[-55,28],[13,11],[5,32],[-18,3],[0,26],[-65,9],[1,19],[-9,3],[7,40],[12,-3],[3,21],[-11,4],[3,8],[9,-1],[14,36],[6,-1],[10,41],[-12,5],[5,60],[-26,2],[-5,-10],[-19,4],[-7,9],[-10,-3],[-13,3],[-13,15],[24,50],[43,55],[30,54],[24,25],[63,35],[56,14],[30,24],[31,9],[30,2],[22,11],[50,0],[74,6],[29,12],[32,-15],[43,-9],[39,7],[33,-13],[45,-4],[42,1],[50,-25],[37,9],[33,-3],[42,16],[58,-26],[33,-9],[36,1],[31,-4],[28,-13]],[[20884,21635],[49,-11],[89,-9]],[[27307,24189],[4,26]],[[27263,24316],[52,46]],[[29372,25067],[29,37],[13,3]],[[30369,26291],[54,38],[8,9],[18,38],[15,15],[73,36],[30,-1],[61,22],[24,14],[32,6],[32,27],[24,2],[26,8],[35,19],[12,11],[15,7],[49,34],[7,14],[29,8],[6,25],[-7,25],[34,25],[18,6],[11,-3],[6,-12],[28,-14],[33,-1],[13,9],[0,5],[-10,7],[-5,10],[12,0],[13,5],[5,12],[17,-12],[21,-7],[7,-11],[35,3],[6,8],[5,1],[14,-16],[17,0],[5,-6],[7,-31],[22,19],[11,-7],[30,7],[7,-5],[30,-48],[-6,-13],[7,-12],[17,-7],[26,3],[48,-34],[42,-5],[3,-20],[7,-9],[26,0],[17,6],[14,9],[8,27],[0,30],[-10,36],[-18,22],[14,9],[6,22],[36,18],[4,9],[29,6],[-4,-11],[-8,-7],[9,-20],[10,-5],[12,2],[-5,-12],[3,-4],[9,1],[8,-9],[8,3],[-9,22],[10,8],[10,4],[10,-9],[-3,-9],[11,-5],[15,16],[15,48],[-3,9],[4,8],[-1,18],[-6,11],[-13,7],[-6,10],[1,30],[-5,28],[11,20],[-4,35],[54,-40],[9,9],[8,25],[-37,52],[-35,4],[-18,7],[-13,12],[-20,7],[-4,16],[2,19],[-7,15],[31,13],[29,35],[-14,1],[-12,14],[3,14],[17,7],[2,5],[1,32],[12,46],[15,13],[52,-2],[11,7],[30,36],[4,27],[13,14],[-10,11],[-9,17],[-9,2],[-34,-7],[-16,-19],[-8,2],[-13,-7],[-13,3],[-19,23],[5,7],[20,4],[11,17],[14,11],[8,23],[36,23],[7,10],[-2,10],[6,12],[7,5],[0,8],[-21,25],[0,23],[-6,13],[-14,12],[-11,16],[11,7],[2,10],[24,11],[10,23],[34,47],[51,43],[15,17],[5,19],[17,29],[37,46],[46,47],[17,4],[8,-11],[-17,-5],[-4,-5],[12,-34],[38,-21],[2,-10],[6,-1],[13,16],[15,-11],[7,5],[13,-4],[1,-11],[-4,-6],[6,-17],[-10,-6],[-2,-11],[11,1],[8,-12],[-15,-13],[14,-10],[-22,-21],[-3,-8],[16,-7],[-6,-5],[1,-8],[5,-3],[8,3],[5,-10],[2,-21],[7,0],[13,9],[-1,12],[13,-4],[7,1],[6,-7],[8,-3],[-6,-9],[-2,-17],[-9,-6],[-2,-16],[-12,-1],[-9,-20],[2,-10],[9,-2],[-1,-3],[-17,-12],[-1,-8],[6,-9],[17,-2],[15,-13],[5,9],[10,3],[20,-10],[13,0],[15,-16],[7,3],[19,-4],[10,-15],[12,2],[3,-6],[1,-7],[-7,-8],[4,-6],[-4,-9],[2,-5],[23,-7],[5,-11],[-7,-11],[-20,1],[-5,-3],[2,-17],[6,-7],[8,-25],[-4,-7],[-14,-3],[-14,8],[-14,-19],[-12,-5],[-3,-6],[7,-13],[18,2],[7,-24],[-1,-9],[-11,-17],[6,-6],[0,-7],[-17,-12],[6,-9],[9,-2],[4,-21],[20,-5],[6,-6],[19,-6],[6,-7],[-2,-6],[5,-11],[16,-7],[14,-18],[11,0],[12,15],[18,13],[5,10],[-6,29],[26,51],[6,19],[13,9],[38,5],[19,10],[17,-2],[5,9],[5,20],[19,11],[14,4],[18,-7],[20,4],[-3,11],[11,4],[19,0],[9,8],[1,12],[8,4],[9,-6],[19,9],[10,20],[29,34],[-15,40],[22,17],[0,28],[13,11],[-13,12],[-14,-1],[1,11],[-13,27],[1,10],[24,17],[27,29],[43,-2],[1,-12],[38,-22],[2,-23],[18,-11],[8,13],[32,-17],[16,-4],[21,20],[12,-4],[13,-34],[1,-15],[-14,-32],[16,-28],[24,-26],[13,9],[15,-7],[11,7],[17,3],[11,-22],[28,-2],[32,16],[20,0],[18,-6],[10,26],[11,0],[13,21],[44,8],[12,15],[7,-3],[8,-16],[30,-16],[43,18],[21,28],[2,7],[-17,16],[-7,13],[-1,8],[11,13],[1,14],[3,4],[-5,18],[-26,-9],[-13,-16],[-11,2],[-9,10],[10,9],[2,12],[-3,7],[-28,4],[-16,9],[-6,9],[3,8],[23,22],[23,14],[15,22],[18,12],[7,25],[31,33],[10,30],[20,30],[14,13],[2,12],[-5,7],[-35,4],[-32,-19],[-14,1],[-24,23],[-17,8],[2,24],[-18,14],[3,9],[15,18],[7,4],[18,2],[21,19],[-5,16],[-7,5],[-17,4],[-7,-19],[-23,-15],[-26,5],[-18,9],[27,40],[3,12],[-9,31],[-14,10],[-4,9],[1,12],[4,5],[25,13],[30,8],[33,15],[1,22],[10,9],[33,52],[-3,11],[3,8],[16,19],[23,17],[10,22],[15,12],[15,27],[23,23],[2,6],[-11,18],[8,9],[38,24],[13,-3],[14,-10],[13,-19],[12,-3],[27,4],[19,-11],[19,-24],[14,-6],[22,1],[4,-4],[-2,-19],[9,-9],[-6,-12],[-1,-9],[4,-9],[17,44],[22,25],[-1,16],[-11,17],[0,11],[5,5],[22,-4],[23,-13],[35,0],[24,-4],[13,15],[-6,17],[2,11],[12,24],[9,10],[28,7],[27,15],[22,-8],[10,1],[10,5],[7,-8],[16,-5],[6,1],[4,6],[3,18],[39,-7],[8,10],[0,7],[-22,34],[7,13],[12,11],[8,0],[24,-26],[52,23],[5,7],[-4,37],[2,8],[25,4],[6,11],[-13,15],[-26,6],[-19,12],[0,5],[-15,12],[-11,13],[-3,10],[24,17],[1,6],[-16,6],[-21,-5],[-15,2],[-9,9],[-14,26],[-8,26],[6,16],[30,-9],[3,-17],[15,-13],[12,2],[9,12],[-36,35],[-7,24],[0,12],[-34,9],[-5,-52],[-9,-7],[4,-32],[-5,-5],[-22,2],[-20,20],[-4,19],[6,5],[22,4],[5,4],[-1,10],[-15,16],[2,17],[-30,22],[-10,32],[-10,16],[2,6],[5,3],[48,-6],[5,4],[-3,16],[6,7],[5,16],[25,8],[20,-1],[6,-8],[10,-27],[11,-3],[22,3],[26,13],[10,-2],[6,-8],[12,1],[8,-8],[9,8],[6,-18],[-6,-21],[13,-5],[41,-39],[21,-32],[20,-8],[9,3],[15,32],[-2,21],[-7,10],[5,20],[-6,4],[-17,0],[-3,41],[3,5],[7,1],[32,-8],[16,3],[4,9],[-3,18],[6,22],[-1,11],[-27,25],[-6,18],[1,21],[-14,8],[6,32],[10,4],[14,-3],[7,18],[8,-6],[8,-21],[29,-31],[21,27],[5,0],[2,-24],[10,-15],[-1,-28],[7,-14],[1,-13],[-12,-7],[-10,10],[-23,2],[-1,-21],[5,-16],[21,-3],[24,-12],[35,1],[8,55],[18,19],[11,20],[10,5],[-16,35],[3,28],[11,9],[8,1],[13,-28],[-8,-15],[1,-20],[8,-3],[14,5],[25,-6],[5,13],[3,48],[5,10],[7,8],[13,4],[14,0],[10,8],[0,11],[-22,42],[0,23],[24,25],[12,-1],[8,7],[11,19],[8,7],[-5,9],[7,12],[11,-9],[4,-12],[-4,-31],[3,-11],[8,-6],[36,-6],[3,-8],[-2,-9],[-11,-3],[7,-26],[21,-34],[-1,-31],[6,-12],[16,-12],[39,-49],[28,-64],[6,-4],[39,-1],[14,-6],[-8,-18],[-33,-12],[2,-33],[7,-4],[5,3],[13,-6],[21,-16],[2,-22],[20,-65],[11,-20],[2,-17],[8,-12],[23,-3],[15,-24],[11,-10],[8,-2],[14,7],[6,8],[-7,26],[-16,33],[-10,8],[-9,20],[-14,-6],[-11,5],[-4,17],[1,17],[-16,20],[-5,27],[4,12],[22,23],[13,1],[26,12],[16,24],[10,2],[18,-5],[1,-22],[5,-15],[26,-24],[27,-68],[3,-11],[-6,-35],[17,-28],[-9,-29],[3,-6],[11,-4],[26,9],[6,-1],[6,-11],[5,-37],[-13,-37],[1,-19],[15,-31],[9,-9],[25,-11],[12,-9],[5,-37],[8,-12],[8,-2],[21,5],[8,-34],[9,4],[10,18],[15,5],[13,-1],[29,-11],[12,-12],[16,1],[7,-18],[7,-7],[21,1],[14,15],[19,2],[41,-9],[21,10],[35,-1],[12,-8],[7,2],[8,-9],[17,11],[8,-5],[0,-11],[8,-13],[31,-15],[-1,-9],[5,-6],[-4,-7],[3,-9],[9,-5],[11,-1],[17,-39],[26,-6],[9,-10],[16,6],[6,-5],[21,18],[15,5],[14,0],[11,-4],[9,-12],[15,11],[-4,20],[8,8],[37,17],[8,9],[17,-2],[2,-6],[-4,-7],[10,-2],[10,4],[28,-3],[4,20],[11,5],[9,-7],[58,25],[11,-2],[6,-5],[7,7],[8,-3],[1,-13],[33,-16],[14,-3],[15,6],[12,13],[8,0],[12,5],[4,11],[8,6],[11,3],[37,-22],[15,0],[4,-8],[8,2],[8,17],[36,14],[3,7],[-9,22],[0,11],[33,7],[-7,14],[7,11],[0,24],[-14,8],[-8,36],[0,29],[4,7],[18,-9],[16,-28],[9,4],[16,-4],[15,19],[5,19],[-12,11],[-14,0],[-13,8],[-5,6],[-1,13],[45,-19],[6,3],[20,-17],[7,6],[3,14],[-3,13],[-27,13],[-15,1],[-6,10],[1,7],[29,-7],[35,-18],[9,1],[27,10],[5,8],[-14,29],[8,5],[19,-18],[5,10],[20,21],[-30,57],[10,27],[32,32],[13,10],[-13,23],[-18,17],[-3,27],[-22,30],[-1,13],[11,-3],[22,-27],[7,2],[10,-10],[15,-7],[18,-15],[24,-12],[20,-5],[9,25],[5,38],[9,5],[16,26],[19,9],[27,30],[38,3],[10,13],[8,2],[42,5],[13,29],[14,13],[6,-10],[5,-1],[13,10],[3,-6],[-6,-58],[-4,-6],[4,-18],[6,-20],[22,-14],[5,1],[15,15],[8,31],[16,30],[15,3],[-6,16],[2,3],[24,2],[6,-13],[9,-2],[15,19],[25,-3],[15,-9],[10,27],[9,2],[3,4],[-11,11],[-12,24],[-12,7],[-9,1],[-22,-14],[-8,-14],[-25,9],[-8,21],[1,11],[-6,5],[-10,-3],[-9,4],[-6,9],[-16,45],[-9,13],[0,7],[39,-15],[36,2],[9,5],[24,4],[3,6],[13,-10],[13,6],[18,-3],[7,15],[3,17],[-1,22],[-5,6],[4,23],[10,-3],[9,3],[18,-17],[24,4],[12,-3],[10,2],[7,-5],[3,-13],[-21,-43],[-7,-9],[0,-4],[8,-10],[0,-16],[51,-32],[5,-13],[3,3],[13,-3],[70,-43],[-31,-45],[-2,-9],[-7,-4],[-9,-18],[-7,-4],[-37,-54],[-21,-23],[-6,-14],[-44,-63],[-10,-7],[-29,3],[-13,-12],[-1,-9],[4,0],[0,-9],[5,-2],[27,28],[7,-3],[-27,-29],[-4,-9],[-129,-122],[-29,-42],[-20,-22],[-6,0],[-9,8],[8,-13],[-5,-14],[-7,-5],[0,-10],[-11,-23],[1,-27],[-27,-22],[-17,-25],[-7,-34],[2,-16],[-4,-3],[1,-7],[-4,3],[-1,-4],[-6,-1],[2,-3],[-7,-9],[-20,-17],[-13,-15],[-11,-7],[-1,-5],[-10,-4],[-43,-34],[-27,-28],[-12,-22],[-18,-14],[-20,-25],[-5,-1],[-13,-26],[-42,-51],[-1,-38],[-4,0],[-15,-23],[-10,-6],[-15,-19],[-14,-10],[-82,-79],[-36,-46],[-13,-28],[-2,-25],[-24,-6],[-8,-11],[0,-10],[-3,-5],[6,3],[-1,9],[8,8],[24,10],[1,-16],[-161,-133],[-183,-175],[-116,-124],[-29,-57],[-11,-6],[-2,6],[-13,5],[5,-5],[-2,-6],[5,1],[-3,-5],[3,-5],[-11,0],[7,-5],[0,-11],[-4,-18],[-5,0],[0,-4],[4,-6],[5,4],[6,-26],[-12,-14],[-10,-2],[-76,-48],[-5,-11],[-14,-7],[-4,-6],[-14,-4],[-118,-60],[-11,-1],[-10,-10],[-7,0],[-3,-5],[-72,-36],[-45,-28],[-18,-7],[-18,1],[6,-8],[-42,-10],[-65,-23],[-26,-16],[-6,-6],[-1,-8],[-10,-11],[-16,-9],[-74,-26],[-63,-28],[-17,-4],[-7,-7],[-13,-2],[-28,-18],[-12,-3],[-5,-6],[-9,-2],[-105,-57],[-90,-57],[-17,-17],[-20,-13],[0,-6],[-19,-9],[-10,-14],[-13,-4],[-13,-13],[-47,-28],[-58,-50],[-4,0],[-18,-12],[-5,4],[0,-8],[-18,-9],[3,-8],[-15,-20],[-1,-14],[3,-12],[-3,-11],[-27,-29],[-6,-18],[-20,-17],[-13,-16],[-20,-10],[-21,-18],[-52,-28],[-5,-7],[-34,-19],[-22,-24],[-2,37],[-5,1],[4,-35],[-12,-7],[-5,-6],[1,-11],[8,-8],[-2,-11],[-18,-16],[-6,-19],[-11,-4],[-44,-32],[-21,-33],[3,-15],[10,-4],[1,-4],[-1,-25],[-12,-30],[-42,-40],[-15,-23],[3,-11],[-3,-5],[-59,-38],[-20,-24],[4,-7],[-11,-8],[-8,-16],[2,-14],[5,-6],[-3,-10],[-60,-34],[-24,-20],[-1,-11],[-9,1],[4,-6],[9,6],[-3,-6],[0,-17],[-2,12],[-8,0],[-2,7],[-5,-2],[6,-5],[-1,-2],[-6,5],[-4,-2],[6,-7],[-6,3],[-5,-6],[-15,-3],[-12,3],[-1,12],[-6,1],[-2,13],[-13,16],[0,11],[-6,3],[-6,-7],[-9,2],[6,-12],[-6,-4],[19,2],[24,-41],[22,1],[5,-6],[8,2],[0,-2],[-8,-2],[-1,-5],[4,-4],[-1,-14],[-27,-24],[-2,-12],[-11,-1],[-35,-20],[-5,-16],[-38,-20],[-16,-15],[-6,-11],[-1,-12],[3,-1],[-2,-8],[5,-7],[7,3],[0,-5],[-48,-29],[-7,-20],[-13,-1],[-72,-36],[-12,-10],[-3,-12],[-14,-11],[-113,-34],[-38,-17],[-7,-1],[-7,-14],[-37,-10],[-10,-5],[-2,-6],[-4,3],[-13,-2],[-7,-7],[-50,-19],[-57,-34],[-10,-16],[4,-11],[-26,-20],[4,-10],[-11,-7],[-82,-30],[-8,-5],[0,-6],[-6,-6],[-12,-2],[-35,-19],[-93,-39],[-14,-16],[-8,0],[-5,6],[1,13],[10,8],[6,9],[-2,2],[-4,-7],[-10,-5],[-4,-13],[-7,-9],[-1,-7],[8,-4],[-3,-4],[-71,-23],[-222,-106],[-125,-66],[-76,-47],[-22,-10],[-11,-11],[-48,-28],[-11,9],[5,-10],[-1,-5],[-19,-8],[-11,0],[3,-6],[-3,-3],[-144,-93],[-40,-34],[-80,-56],[-84,-74],[-8,-12],[-82,-75],[-22,-26],[-50,-47],[-5,10],[7,8],[1,10],[-1,2],[-2,-11],[-10,-11],[6,-11],[-22,-24],[-6,9],[-4,-1],[4,-10],[-5,-8],[-71,-73],[-34,-41],[-14,-21],[-43,-94],[4,-16],[13,-8],[-17,2],[-5,-5],[0,-12],[17,1],[1,-7],[-2,-7],[-18,0],[-11,-23],[-3,-25],[5,-5],[6,-2],[-5,-9],[0,-7],[-8,-5],[-10,0],[-5,-5],[-16,-1],[-8,-4],[-3,-10],[3,-39],[-3,-16],[13,-9],[2,-8],[4,-17],[-3,-15],[8,5],[12,-7],[9,-13],[1,-10],[27,4],[8,-10],[-1,-10],[-6,-9],[10,15],[-2,8],[1,5],[6,-11],[30,-19],[24,-30],[3,-17],[-6,-10],[11,10],[5,16],[15,10],[23,3],[28,-14],[13,2],[3,5],[-2,28],[15,42],[0,33],[4,27],[-9,84],[-10,28],[-13,12],[-19,10],[-16,33],[-14,9],[-6,13],[4,5],[12,0],[22,-13],[17,-17],[20,-34],[17,-114],[0,-32],[-4,-42],[-2,3],[-2,-3],[-9,-45],[1,-49],[-8,-18],[-4,-34],[-3,-1],[1,-9],[-9,-23],[11,22],[3,2],[3,-15],[-9,-30],[-1,-20],[-5,-9],[1,-6],[-5,-2],[-6,-40],[-4,-4],[2,-5],[-5,-23],[-1,-20],[4,-16],[-3,-5],[-31,-3],[-3,-3],[-5,5],[-17,-9],[-10,4],[0,-20],[-16,-20],[-12,-5]],[[10839,3602],[6,-4],[-1,-4],[-5,1],[0,7]],[[10997,3713],[-27,-46],[-5,-28],[1,-24],[-25,-24],[-15,-21],[-40,-1],[-19,5],[-9,7],[-1,15],[9,-4],[3,-8],[39,3],[13,5],[19,15],[21,34],[4,21],[15,31],[8,15],[9,5]],[[9231,7778],[-7,-21],[-11,-7],[-1,5],[5,8],[14,15]],[[12230,7827],[1,-4],[-8,-3],[-1,3],[8,4]],[[12220,7838],[-2,-8],[-6,3],[7,5],[1,0]],[[12271,7907],[1,-20],[-9,-40],[2,-19],[-2,-1],[0,-22],[-3,-8],[-11,-2],[-5,5],[2,5],[-11,26],[12,-2],[10,15],[12,43],[2,20]],[[9316,7983],[6,-14],[2,-14],[-3,4],[-10,1],[1,20],[4,3]],[[12292,8029],[9,-34],[-7,-28],[-2,3],[5,27],[-7,23],[-4,2],[1,4],[5,3]],[[10017,9023],[9,-2],[7,-10],[0,-25],[-6,-5],[-28,-10],[-19,-15],[-13,-17],[-10,-2],[4,10],[14,5],[28,50],[6,19],[8,2]],[[8960,9584],[1,-6],[-9,-1],[2,4],[6,3]],[[8969,9596],[0,-5],[-4,-1],[0,2],[4,4]],[[12331,9599],[-3,-9],[42,2],[14,-4],[1,-4],[-38,-18],[-29,-6],[-12,2],[-12,7],[-4,12],[3,9],[14,4],[16,-2],[3,7],[5,0]],[[8969,9596],[37,69],[4,29],[7,22],[15,16],[13,-1],[-6,-20],[-31,-48],[-23,-48],[-16,-19]],[[9234,9893],[-7,-5],[6,-18],[-6,-3],[-9,1],[3,23],[13,2]],[[9313,9910],[-20,-22],[-9,-1],[3,12],[14,3],[12,8]],[[9329,9923],[1,-6],[-6,-2],[1,8],[4,0]],[[10217,10342],[6,-4],[-3,-15],[-9,-20],[-19,-16],[-1,-5],[-11,14],[2,20],[16,17],[19,9]],[[8820,10523],[0,-7],[-5,-4],[1,7],[4,4]],[[8813,10529],[5,-4],[-1,-2],[-10,4],[6,2]],[[10348,10634],[0,-13],[-14,-33],[-13,-54],[-20,-32],[-15,-54],[-3,-2],[2,26],[24,69],[1,14],[4,4],[6,31],[18,38],[10,6]],[[10818,11173],[3,-6],[-1,-2],[-2,2],[0,6]],[[10816,11196],[9,-4],[11,-21],[6,-37],[-9,-10],[-13,57],[-6,1],[-5,8],[7,6]],[[8999,11440],[7,-6],[0,-7],[-10,4],[-1,6],[4,3]],[[10178,11688],[6,-10],[-1,-24],[-18,-26],[-8,-1],[-1,8],[7,5],[5,16],[-1,6],[4,-1],[9,18],[-2,9]],[[19362,56474],[-124,-14],[-182,229],[267,36]],[[19323,56725],[39,-251]],[[20191,52211],[58,-222],[183,-143],[65,-236],[-26,-236]],[[20471,51374],[-222,-86],[-71,-122],[-209,100],[-72,129],[-437,-21],[-91,121],[261,294],[-26,279],[293,157],[294,-14]],[[22826,60831],[157,-236],[13,-465],[124,-57],[306,-401],[216,-171],[-170,-458],[137,-243],[196,-144],[-268,-228],[144,-151],[-59,-300],[313,-43]],[[23935,57934],[261,-322],[0,-79],[-274,-21],[-215,207],[-378,43],[-235,-28],[-268,171],[-182,15],[-601,-294],[-195,7],[-326,-307],[-27,-401],[-182,-193],[156,-365],[-71,-86],[163,-186],[-555,-250],[39,-79]],[[21045,55766],[-150,100],[-267,15],[-437,157],[-163,172],[52,257],[-339,229],[-209,294],[-196,78],[-111,-64]],[[19225,57004],[-280,222],[-98,314],[72,201],[-144,143],[-280,50],[-183,308],[-183,-287],[-176,-7],[-117,115],[-163,493],[-340,573],[111,78],[-208,315],[-281,143],[-378,100],[182,265],[-111,150],[222,65],[450,329],[-156,229]],[[17164,60803],[169,236],[-26,365],[-241,336],[98,71],[222,-107],[352,272],[254,93],[170,229],[235,114],[365,79],[144,-100],[261,21],[437,-386],[339,-200],[574,-194],[457,129],[378,215],[450,-565],[33,-193],[163,-194],[228,136],[294,50],[293,151],[0,-244],[-156,-121],[-72,-222],[85,-79],[156,136]],[[20373,49685],[-535,0],[59,-150],[-352,-172],[-26,179],[98,286],[-53,394],[27,293],[-170,172],[-437,-315],[0,-186],[-274,-79],[-196,172],[78,150],[-84,115],[-333,57],[111,-279],[-365,0],[-53,-72],[124,-479],[-476,0],[-157,179],[216,393],[-183,101],[196,143],[-13,179],[-313,329],[-235,57],[-392,458],[-267,737],[65,150],[-150,57],[-170,351],[27,207],[-124,93],[-516,-143],[-287,107],[-98,201],[-235,85],[-489,-150],[-143,243],[130,58],[-46,250],[46,451],[-241,-65],[-13,215],[137,64],[-66,222]],[[14195,54743],[307,-78],[124,128],[254,36],[242,-100],[150,-165],[241,108],[0,-229],[196,28],[98,-200],[-144,-143],[144,-301],[150,51],[313,529],[359,-107],[254,43],[170,121],[209,-193],[352,14],[378,244],[-85,207],[111,458],[320,-57],[104,157],[98,-200],[150,-29],[216,136],[39,143],[-209,115],[365,200],[92,222],[195,-15],[92,-157],[52,114],[-26,523],[-144,128]],[[19323,56725],[46,129],[-144,150]],[[21045,55766],[-26,-243],[-365,-322],[-418,-429],[-84,-372],[-98,-86],[-170,-465],[0,-343],[157,7],[13,-701],[163,-458],[-26,-143]],[[20471,51374],[379,-301],[-72,-193],[143,-136],[26,-172],[-150,-164],[-13,-158],[137,-221],[-124,-151],[-424,-193]],[[43134,35070],[-300,-122],[-319,-21],[-300,-186],[-333,-344],[-183,-372],[26,-207],[268,-651],[-189,-65],[221,-64],[-84,-136],[176,-36],[-555,-393],[-124,-344],[170,29],[-170,-222],[-495,-236],[-66,-214],[-156,-265],[-268,200],[-150,0],[366,-243],[-229,-129],[-424,-157],[-52,36],[-698,-222],[-646,-236],[-72,78],[307,136],[20,286],[-294,51],[-483,-387],[-248,-458],[39,-121],[170,71],[-20,129],[118,200],[130,-35],[190,114],[32,-107],[-156,-165],[-353,-236],[-685,-608],[-208,-243],[-46,107],[-163,-14],[-98,-136],[-365,-150],[-26,-208],[-327,-329],[-352,-57],[-196,79],[-378,-29],[-111,129],[-111,336],[-137,-165],[-287,473],[-209,-287],[-124,151],[-71,-265],[-294,72],[209,-294],[-307,-243],[-332,-57],[-183,-243],[124,-265],[-118,-172],[20,-143],[-307,-93],[-32,107],[-235,50],[-46,-200],[-222,-129],[-39,-114],[-143,64],[26,193],[-176,194],[-20,193],[-124,43],[-182,-251],[-33,-357],[-91,-165],[111,-107],[-59,-229],[-183,-129],[-359,122],[-371,-115],[-770,-486],[-150,71],[-72,-93],[-196,43]],[[29552,26077],[13,193],[98,-21],[228,923],[222,50],[196,136],[137,221],[339,301],[-98,122],[150,157],[372,143],[65,279],[144,165],[-13,214],[-131,215],[-39,250],[53,387],[-320,314],[26,558],[-502,401],[97,265],[209,157],[196,-215],[130,93],[248,-171],[183,-337],[157,115],[476,-86],[0,-193],[306,193],[-52,365],[-169,-36],[-438,186],[46,301],[-59,314],[13,315],[-169,222],[59,272],[-53,465],[248,-50],[340,422],[97,293],[294,-7],[404,72],[242,-144],[261,86],[208,487],[229,-29],[-124,251],[39,257],[222,365],[59,215],[195,64],[13,222],[-111,214],[196,408],[294,165],[241,207],[235,50],[98,108],[-52,293]],[[35300,37259],[221,-93],[183,-272],[365,-143],[209,7],[209,100],[39,122],[483,14],[182,50],[209,-64],[352,193],[72,-258],[-6,-250],[-235,-436],[267,7],[268,-172],[209,215],[306,71],[196,-114],[306,-72],[216,115],[6,-265],[105,-64],[189,86],[117,178],[26,737],[-97,215],[254,129],[111,-129],[378,-186],[255,-236],[221,36],[451,-287]],[[41367,36493],[332,-221],[340,-129],[13,-222],[143,-157],[137,164],[196,-86],[72,-257],[378,-107],[156,-408]],[[14952,14180],[-85,236],[-221,1109],[-59,114],[-26,759],[-46,-100],[-169,579],[-196,293],[-65,358],[-118,286],[-52,372],[85,29],[-157,172],[-124,-43],[-111,450],[-130,-7],[-222,186],[72,108],[235,64],[-72,57],[-163,-114],[-85,107]],[[13243,19195],[346,172],[111,558],[-111,136],[130,64],[-143,451],[0,336],[-163,93],[-144,-29]],[[13269,20976],[85,208],[150,100],[170,-100],[195,222],[-39,93],[157,264],[-33,279],[144,36],[-46,343],[-294,86],[-26,201],[111,50],[-241,350],[228,-7],[183,250],[209,-57],[45,-164],[261,121],[46,244],[404,157],[-26,207],[235,208],[215,0],[222,-200],[196,78],[0,129],[404,72],[85,-58],[209,129],[196,-36],[13,194],[-92,150],[26,179],[-156,393],[143,200],[346,-229],[228,93],[151,-214],[352,121],[280,22],[242,-86],[111,64],[-144,265],[13,308],[157,43],[267,314],[196,-14],[169,-136],[183,301],[-32,157],[221,-43],[105,222],[65,451],[385,71],[65,129],[241,157],[85,315],[176,-57],[7,-186],[261,-165],[196,65]],[[20974,27265],[117,-430],[-91,-128],[104,-122],[26,-222],[-235,-193],[39,-207],[-137,-79],[-130,-215],[196,-128],[267,-58],[144,36],[-196,-186],[-496,-622],[124,-208],[72,-293],[-65,-179],[-59,-508],[59,-300],[-392,-344],[79,-107],[450,-64],[124,-108],[-111,-128],[-53,-222],[14,-422],[-85,-115],[-476,50],[-196,-35],[-242,-201],[-26,-272],[137,-221],[-195,-122],[19,-243],[-85,-22],[124,-357],[183,-101],[59,-393],[-203,-322],[-404,86],[-222,114],[-98,-236],[222,-121],[-46,-358],[-137,-372],[46,-165],[170,-200],[195,14],[-130,-207],[124,-193],[-26,-129],[352,-72],[137,272],[300,-14],[248,-236],[-13,222],[222,-93],[6,-229],[-202,-57],[-98,-251],[157,-393],[-157,28],[-71,222],[-124,50],[-294,-43],[-267,143],[-53,251],[-117,43],[-98,-122],[131,-136],[13,-164],[156,-251],[-117,-229],[169,-150],[196,43],[-39,215],[111,121],[320,-136],[195,0],[131,-343],[515,136],[268,293],[0,136],[195,-57],[111,100],[-13,-308],[241,129],[111,-64],[40,-379],[202,-229],[417,-29],[-45,-515],[84,-122],[392,-100],[-26,-215],[-320,-593],[85,-165],[-170,115],[-85,-108],[-208,-35],[-33,-222]],[[22487,14166],[-391,214],[-170,-100],[-111,136],[-280,-14],[-111,-272],[-137,-150],[-183,-7],[-98,-279],[124,-215],[-52,-179],[-300,-300],[59,-136],[391,0],[157,-72],[65,-193],[-274,-336],[-274,-22],[-248,-357],[-307,57],[-280,-36],[-144,-100],[-182,157],[-209,-57],[-183,-408],[-156,43],[-444,-14],[-46,164],[-261,-93]],[[18442,11597],[-84,194],[-157,0],[-346,279],[-130,-22],[-39,236],[-216,-64],[-306,36],[-183,279],[-280,78],[-222,165],[-209,250],[-130,58],[-98,228],[45,194],[-111,-22],[-143,172],[46,143],[-340,57],[-39,129],[-169,14],[-170,201],[-209,-22]],[[12356,21170],[-235,422],[-307,393],[-19,315],[-65,64],[-229,787],[33,265],[-118,465],[46,265],[-170,672],[72,29],[-169,250],[26,215],[-124,200],[-59,544],[-189,372],[-105,579],[20,107],[209,-42],[-33,128],[-176,29],[-157,172],[-26,329],[163,86],[-137,43],[-123,293],[26,272],[137,64],[111,-114],[91,78],[-268,201],[209,243],[-32,393],[-66,-257],[-130,-72],[-163,-300],[-46,207],[72,437],[-98,-22],[-85,723],[307,157],[-222,7],[-144,165],[-150,558],[124,543]],[[10157,31435],[535,129],[111,-207],[222,36],[117,-65],[40,208],[150,21],[84,165],[255,-22],[0,365],[-52,72],[221,393],[-195,286],[150,136],[580,-365],[209,108],[39,150],[209,207],[0,294],[-78,214],[-353,329],[-169,15],[-183,150],[326,-43],[177,114],[71,172],[222,0],[85,208],[215,207],[137,-21],[418,143],[-13,143],[-235,-65],[-411,22],[-392,-115],[-137,279],[157,65],[-46,436],[294,86],[411,186]],[[13328,35871],[222,-64],[365,229],[209,-179],[13,-301],[72,-250],[417,-243],[411,7],[346,-136],[202,-301],[391,-107],[490,-29],[626,29],[144,43],[489,-100],[111,-401],[-98,-50],[98,-143],[313,-79],[333,79],[195,193],[209,29],[85,114],[-52,215],[221,172],[124,186],[20,200],[280,100],[248,172],[307,78],[98,-64],[228,172],[333,0],[196,-179],[58,-344],[-319,-14],[124,-358],[306,22],[170,-57],[209,114],[169,-64],[352,93],[366,272],[489,128],[39,-236],[124,50],[463,-128],[503,93],[6,143],[685,207],[26,115],[548,-115],[157,-279],[456,122],[203,-158],[515,101],[235,164],[274,-143],[209,-236],[39,-208],[182,8],[281,-165],[111,64]],[[27954,34454],[-111,-264],[-352,-193],[-79,-344],[105,-193],[169,-79],[33,-479],[-170,-179],[281,-50],[0,-644],[-222,-150],[-202,-43],[-39,-207],[254,-50],[65,-229],[-52,-251],[-182,15],[-59,-108],[130,-107],[-169,-157],[169,-36],[53,121],[208,-250],[131,-29],[72,-214],[319,-150],[124,-136],[-52,-158],[-144,-36],[59,-164],[-241,-179],[-98,150],[-137,-7],[-85,172],[-391,-336],[-131,-394],[-163,-322],[163,-229],[-182,-229],[19,-93]],[[27047,28223],[-411,-35],[-196,200],[-182,100],[98,93],[-59,444],[-163,-8],[182,287],[-39,136],[92,443],[-379,422],[-137,22],[-267,-93],[-39,-108],[-437,43],[-124,100],[-229,43],[-111,115],[-195,-22],[-281,-150],[-235,157],[-71,215],[-548,208],[-268,-43],[-248,178],[-111,-28],[176,-308],[-195,-343],[-13,-229],[-183,-93],[-111,-179],[13,-236],[-254,-36],[-176,150],[-170,15],[-124,-251],[-46,-243],[-182,-157],[352,-522],[-157,-65],[-137,-243],[-169,-57],[-46,-258],[-176,-28],[-228,-423],[111,-171]],[[13269,20976],[-306,-57],[-118,243],[-189,151],[-72,-101],[-228,-42]],[[53566,41980],[189,558],[-39,229],[78,58],[281,-143],[221,64],[20,150],[-222,179]],[[54094,43075],[398,351],[189,7],[346,171],[-46,301],[-443,336],[222,229],[-209,-21],[-463,422],[-490,-179],[0,300],[118,244],[-72,171],[183,215],[-842,-93],[-143,107],[-170,-100],[-98,-222],[-176,-14],[26,186],[-130,0],[-235,-308],[0,-86],[-294,-57],[-169,-200],[-157,21],[0,251],[-391,-65],[13,143],[-124,108],[-418,-43],[-71,86],[-242,-72],[-59,86],[-195,-136],[45,150],[-124,86],[-254,14],[-124,-78],[-424,-57],[-359,-372],[-78,-229],[117,-308],[-195,-50],[-39,-186],[-177,-86]],[[48340,44098],[59,458],[-124,429],[124,279],[-196,258],[-71,243],[-137,100]],[[47995,45865],[391,329],[131,487],[-72,450]],[[48445,47131],[515,43],[196,208],[463,150],[463,-265],[281,-35],[646,35],[123,58],[562,-65],[169,193],[196,15],[72,-136],[430,-15],[209,115],[183,-115],[32,186],[320,-71],[98,164]],[[53403,47596],[293,-21],[888,229],[208,136],[261,-36],[450,-229],[803,86],[189,-100],[522,136],[313,236],[26,222],[307,293],[574,479],[-52,236],[84,50],[209,-128],[392,21],[182,107],[431,129],[332,157],[816,301],[157,-64],[352,78],[391,208],[555,7],[-150,-301],[-281,-350],[59,-215],[183,-143],[13,-372],[208,100],[72,-179],[-241,-236],[-235,29],[-352,-136],[-209,107],[-111,-43],[-170,-271],[-365,-222],[-183,-36]],[[60324,47861],[-332,-236],[-255,43],[-254,-322],[-248,-172],[-450,-150],[-209,-336],[-144,-129],[-130,172],[-150,-165],[-72,-300],[-365,-408],[-78,-336],[39,-222],[-196,-222],[-254,-50],[45,236],[-124,65],[-169,-93],[71,-129],[-411,-415],[-430,-358],[267,-336],[-6,-222]],[[56469,43776],[-124,-157],[-431,-988],[-169,-14],[-85,-286],[26,-265],[-78,-43],[-105,-386]],[[55503,41637],[-417,-43],[-196,222],[-78,-243],[-176,-172],[-13,-136],[-294,-250],[-124,28],[-46,229],[-267,-7]],[[53892,41265],[-170,64],[92,208],[-85,350],[-163,93]],[[59150,44120],[-98,-122],[-124,-358],[52,-164],[255,-93],[52,-158],[-124,-429],[-156,-329],[-164,-100],[-84,-251],[-144,-121],[-183,-437],[-78,-71],[-241,-794],[-196,-358],[-222,165],[-267,78],[-170,-35],[-137,150],[-287,36],[-91,-101],[-268,-21],[-195,279],[-144,-100]],[[56136,40786],[-169,78],[-268,-57],[-280,143],[84,687]],[[56469,43776],[352,-229],[163,294],[287,279],[-111,121],[98,107],[503,22],[352,-129],[306,29],[561,415],[-84,-379],[254,-186]],[[60481,46953],[-98,50],[-196,-158],[-169,-336],[58,-157],[-58,-251],[111,-436],[111,-172],[-307,-250],[33,-394],[-105,-71],[-417,-523],[-294,-135]],[[60324,47861],[111,-136],[-52,-257],[72,-158],[26,-357]],[[54094,43075],[-182,165],[-679,257],[-600,-36],[-157,-107],[-248,93],[-267,-64],[-437,157],[-926,-150],[-150,71],[-562,0],[-306,-50],[-522,151],[-496,200],[-196,-29],[-26,365]],[[12930,55344],[-124,301],[-111,57],[365,365],[111,50],[59,229],[183,86],[391,565],[150,-7],[255,150],[306,286],[-235,57],[-98,107],[53,351],[169,322],[-124,408],[-143,236],[130,272],[333,286],[196,-14],[98,193],[306,28],[170,143],[293,-21],[268,143],[143,265],[-130,164]],[[15944,60366],[326,15],[124,-86],[254,221],[150,15],[366,272]],[[14195,54743],[-1343,72],[-33,136],[157,236],[-46,157]],[[6471,42338],[-319,601],[-118,444],[-208,229],[-274,472],[26,472],[-46,164],[-613,-64],[-255,79],[-71,186],[-294,336],[-13,393],[170,372],[26,566],[-72,164],[-176,57],[-535,-14],[-339,229],[-359,136],[-85,172],[98,572],[150,322],[607,529],[378,444],[163,458],[522,486],[418,72],[280,-229],[13,-186],[268,-344],[339,22],[528,243],[366,100],[548,15],[671,193],[85,386],[209,265],[352,300],[111,215],[131,472],[274,322],[1167,565],[333,487],[411,729],[307,923],[417,193],[398,93],[470,365]],[[20373,49685],[111,-372],[33,-250],[248,-372],[326,-136],[124,-293],[-157,-172],[-195,-79],[130,-143],[196,22],[163,-100],[-574,-229],[-137,-101],[-13,-178],[548,229],[137,107],[613,-57],[294,100],[267,-29],[-124,-172],[59,-93]],[[22422,47367],[-215,-64],[-53,-265],[-156,29],[-261,-86],[-144,-200],[-254,-165],[-222,-50],[-411,-257],[-189,-29],[-300,-286],[-196,-7],[-685,-515],[-209,-244],[-156,15],[-242,-179],[-137,-258],[144,-658],[183,-164],[332,-136],[313,-65],[392,122],[196,-36],[124,193],[195,50],[144,-701],[-105,-78],[-319,28],[-431,-86],[-326,-128],[52,-272],[-235,-222],[216,-193],[195,-15],[190,-214],[-27,-258],[-261,-100],[-71,143],[-183,0],[13,-465],[183,-279],[-72,-164],[-209,-36],[-254,200],[-13,165],[-150,-65],[-85,-164],[-189,121],[-516,29],[-84,179],[-137,-72],[-20,-443],[-274,-200],[-20,-201],[-469,-193],[-105,72],[-65,-287],[-228,58],[-209,229],[-39,178],[98,129],[169,-107],[274,7],[170,279],[-137,165],[111,293],[-98,64],[-13,301],[235,7],[45,300],[-254,422],[-241,-93],[-444,-85],[-509,43],[-111,100],[72,300],[124,-107],[281,43],[0,93],[-196,-43],[-13,265],[72,150],[-424,-43],[-79,-329],[-267,-93],[-353,164],[40,-322],[300,-21],[-20,-222],[-209,-71],[-221,236],[26,-222],[-137,-394],[280,-157],[-182,-179],[-72,-236],[306,-57],[59,-279],[163,-200],[-137,-322],[-13,-215],[72,-336],[-268,-394],[-378,-157],[-280,-329],[71,-107],[281,-65],[91,-114],[-541,-251],[-196,29],[-144,-93]],[[13771,38425],[-208,286],[-196,7],[-137,265],[-281,207],[-143,-57],[-183,229],[-222,-36],[-182,43],[-26,394],[-118,78],[-150,-64],[26,172],[-332,243],[26,293],[111,79],[-157,386],[-209,-214],[-319,293],[-85,157],[137,315],[169,43],[-280,122],[0,236],[-209,-43],[-156,-301],[-405,43],[-169,193],[-346,115],[-144,-179],[-71,193],[-359,158],[137,136],[-255,-29],[-235,57],[-84,115],[-307,-115],[-98,79],[-156,-122],[-124,100],[-255,-57],[-209,86],[-378,-107],[-313,-22],[-405,136]],[[26610,52082],[352,-208],[261,-264],[313,-108],[53,251],[300,-143],[293,-251],[490,-279],[332,-57],[352,-587],[144,108],[196,-215],[652,-400],[300,-144],[209,165],[157,-29],[489,-343],[391,-222],[463,93],[137,-179],[85,-314],[281,-22],[306,-100],[268,0],[280,-258],[183,51],[98,271],[463,-35],[587,-265]],[[35045,48598],[196,-286],[-13,-143],[209,-279],[97,-286],[170,-115],[209,0],[0,-265],[143,-43],[170,-243],[-633,22],[-117,-215],[-196,-100],[-39,-143],[169,43],[379,-186],[0,-244],[-405,-100],[-45,-100],[182,-257],[183,-79],[294,-329],[208,36],[183,-179],[170,-15],[169,-143],[-13,-121],[-267,-108],[-242,151],[-137,-58],[39,-171],[-241,-22],[-19,165],[-157,14],[-307,-300],[-522,-387],[-893,-515],[-105,-372],[92,-157],[-33,-279],[405,-422],[-27,-415]],[[34301,41952],[-280,-86],[130,-329],[-267,-501]],[[33884,41036],[-281,-465],[-267,-86],[-281,7],[-365,208]],[[32690,40700],[-267,393],[124,115],[71,272],[-71,207],[0,315],[169,36],[-65,221],[-170,151],[-241,-86],[-378,79],[-13,-179],[-255,-29],[46,115],[-144,100],[7,150],[-144,-22],[0,165],[-150,-93],[-398,150],[-169,122],[-111,257],[-176,-28],[-98,107],[-300,43],[-85,272],[-372,-107],[-280,35],[-7,-164],[-137,-172],[-13,-172],[-170,-114],[-221,143],[-535,43],[143,243],[85,272],[-437,-136],[111,-150],[-196,-7],[-111,157],[-85,-93],[-182,29],[124,-179],[-124,-64],[-366,-8],[-65,122],[346,265],[-52,171],[-157,86],[-98,308],[-209,0],[-143,-150],[-248,-43],[-398,-229],[59,-193],[-450,-22],[-222,86],[-131,-143],[-248,36],[0,-143],[-123,164],[195,265],[-365,43],[39,-258],[-378,72],[-183,-50],[46,193],[-111,64],[-242,-257],[-58,107],[143,179],[79,307],[-124,36],[-66,222],[-71,-258],[-98,0],[-46,229],[-124,-64],[46,-143],[-59,-208],[-124,129],[-183,15],[-143,-337],[228,-372],[39,-336],[209,-358],[-26,-379],[307,-36],[267,-400],[-26,-158],[-307,-407],[-352,136],[-398,286],[-189,-236],[-170,78],[40,151],[-281,271],[98,151],[-13,257],[-209,437],[320,257],[117,472],[-241,515],[209,194],[45,157],[418,50],[424,157],[0,380],[137,93],[326,629],[-78,129],[58,236],[255,200],[-72,351],[-143,229],[-79,264],[-195,15],[-294,207],[-326,-93],[-392,158],[-84,78],[-333,-86]],[[21045,55766],[170,29],[209,-165],[437,-229],[-255,-229],[-195,-357],[0,-236],[182,-515],[307,150],[320,-165],[202,222],[-98,415],[85,79],[209,-158],[208,-315],[222,-85],[241,-337],[490,-293],[222,-57],[0,-100],[-418,-251],[326,-157],[111,-258],[307,108],[548,-422],[163,-8],[156,-286],[281,72],[46,-72],[502,65],[52,-165],[118,29],[150,-193],[97,0],[170,200]],[[23935,57934],[92,129],[130,-79],[85,243],[111,22],[280,-229],[59,-251],[170,-250],[176,-72],[45,-136],[183,-50],[255,-178],[332,85],[255,-50],[476,-400],[235,0],[143,-151],[-156,-107],[39,-272],[326,-35],[444,-208],[104,22],[268,-129],[163,-193],[463,-186],[72,-93],[-353,-165],[-293,-315],[-320,-143],[-267,-372],[-183,-86],[39,-300],[-150,-272],[-228,-179],[130,-300],[-98,-401],[-228,-71],[-52,-272],[-131,-108],[-26,-264],[85,-36]],[[43819,43569],[-13,-294],[164,-136],[71,-336],[-85,-243],[118,-394],[-170,-93],[-124,51],[79,-222],[-183,-451],[-222,-136],[85,-172],[-144,-28],[-52,-136],[-182,36],[-72,-265],[-268,-43],[-65,129],[-183,-65],[137,-207],[-97,-215],[-196,72],[26,-165],[-248,36],[-398,200],[-124,-143],[-13,-236],[-796,-264],[-228,-129],[-52,-179],[-203,-157],[-273,143],[26,136],[-242,114],[-65,-229],[-372,-64],[144,-158],[-137,-365],[124,-236],[293,-21],[352,-351],[85,36],[529,-36],[124,-50],[-203,-100],[-45,-365],[424,-257],[52,-172],[170,-29],[169,-171],[-111,-50],[176,-193],[131,-287],[-170,-28],[-195,-158]],[[35300,37259],[195,229],[307,143],[111,229],[248,214],[-53,201],[-404,128],[-72,-64],[-58,208],[-164,228],[53,301],[-53,172],[-156,-29],[19,265],[137,186],[-71,179],[-137,-158],[-379,79],[-45,315],[-85,193],[-307,265],[-85,314],[-150,129],[-267,50]],[[34301,41952],[516,-50],[78,71],[294,15],[280,186],[137,-329],[450,114],[13,-193],[379,-351],[241,215],[150,-43],[98,165],[222,121],[156,-129],[85,-207],[379,93],[39,-115],[169,208],[281,143],[509,21],[124,136],[182,22],[-39,179],[222,300],[196,0],[182,-172],[235,108],[196,-172],[111,-272],[300,-14],[-33,-272],[366,-222],[124,329],[202,194],[176,-51],[202,115],[300,-136],[59,193],[300,-43],[39,429],[124,201],[-13,257],[150,215],[176,21],[65,244],[255,14],[261,336],[169,-136],[385,-64],[26,-57]],[[35045,48598],[-52,207],[444,50],[195,144],[379,-330],[645,-114],[164,-200],[19,-179],[-85,-258],[313,-136],[98,36],[261,-136],[222,-272],[313,15],[78,-208],[203,-50],[698,265],[195,-93],[59,-372],[261,-208],[411,208],[378,-165],[222,58],[477,-187],[489,-271],[241,57],[111,136],[378,200],[85,-350],[118,-93],[195,35],[209,-157],[98,150],[209,57],[306,-121],[379,164],[254,29],[235,-229],[215,215],[26,200]],[[44491,46695],[242,29],[0,-122],[195,-165],[40,-221],[-268,-115],[-215,-222],[-248,-128],[-294,-272],[-84,-351],[241,-257],[294,-208],[58,-443],[-254,107],[-463,-300],[208,-308],[-124,-150]],[[44309,48369],[72,172],[-33,415],[202,336],[111,486],[-143,143],[65,108],[567,78],[268,108],[248,179],[463,-258],[72,-358],[-98,-450],[-131,-229],[59,-351],[254,-222],[-254,-171],[-98,-222]],[[45933,48133],[-476,64],[-333,-221],[-398,150],[-222,14],[-195,229]],[[29552,26077],[-378,7],[-144,72],[-287,-150],[-98,150],[-19,300],[-98,294],[39,157],[-176,-50],[-46,150],[-261,-57],[92,157],[-176,408],[-301,351],[-137,93],[-332,-22],[-118,272],[-65,14]],[[27954,34454],[98,287],[13,558],[169,150],[72,172],[0,250],[222,351],[98,-115],[98,329],[228,286],[13,258],[111,136],[124,-86],[241,129],[196,-136],[241,186],[235,71],[59,143],[209,122],[26,408],[196,107],[182,193],[0,193],[281,136],[124,-14],[130,508],[-189,143],[-124,-14],[-307,329],[-365,93],[-254,-129],[-92,172],[222,293],[-150,351],[137,121],[209,-200],[352,93],[320,-93],[1011,-64],[267,164],[40,122],[254,100],[39,143]],[[13328,35871],[39,258],[-183,357],[26,308],[268,-29],[111,150],[-261,36],[-228,165],[84,100],[222,-14],[268,229],[215,78],[183,372],[-216,165],[-85,379]],[[26108,12277],[-85,-300]],[[26023,11977],[-183,21],[-130,315],[215,14],[13,-150],[170,100]],[[15957,12470],[-176,-50]],[[15781,12420],[0,201],[222,100],[124,-36],[-170,-215]],[[26101,9966],[0,-400]],[[26101,9566],[-306,229],[45,186],[261,-15]],[[26023,11977],[-131,-544],[72,-408],[98,-207],[59,-422],[-20,-430]],[[26101,9566],[33,-1009],[-26,-229],[-216,64],[-319,0],[332,-64],[0,-57],[-456,93],[-59,86],[-293,-29],[-281,-215],[-85,-150],[98,-315],[-170,-150],[-247,-400],[-327,-473],[-65,-350],[281,-322],[463,-72],[163,86],[228,-393],[-300,222],[-274,50],[-182,-43],[-216,57],[-280,-64],[-542,-265],[-463,-86],[-385,-322],[-137,-250],[-39,-308],[-111,-172],[65,-143],[-26,-250],[-143,-272],[-581,-343],[-117,-136],[-248,-43],[-294,-186],[-450,136],[-437,357]],[[19995,3606],[124,51],[104,264],[-19,150],[156,129],[-195,222],[-20,157],[170,372],[-124,93],[-85,258],[209,279],[241,701],[85,107],[-124,272],[-228,-43],[-124,122],[98,358],[-14,279],[72,193],[-72,229],[111,357],[-195,329],[-255,-107],[-267,-193],[-261,229],[-72,279],[39,465],[118,136],[26,207],[-131,215],[-280,122],[-39,264],[182,36],[-254,379],[-281,-21],[-195,43],[228,272],[-294,243],[-352,93],[-26,300],[222,-28],[169,178]],[[22487,14166],[157,-193],[267,-101],[163,136],[7,115],[195,86],[137,508],[170,150],[476,93],[320,-136],[228,50],[137,193],[144,-21],[261,214],[58,265],[196,0],[98,-129],[196,36],[117,-165],[150,0],[-72,129],[451,208],[13,121],[195,136],[477,-14],[143,-93],[52,-186],[-39,-308],[-111,-357],[-39,-551],[-78,-379],[-163,-473],[-659,-1073],[-26,-150]],[[13243,19195],[-111,79],[-19,179],[-261,193],[78,193],[-124,429],[-248,158],[346,7],[-307,86],[150,214],[-261,-57],[-130,494]],[[53403,47596],[-59,251],[-137,186],[209,472],[-242,393],[-502,-128],[-346,307],[-32,258],[117,243],[320,7],[196,-79],[326,29],[215,157],[228,-14],[85,143],[131,-179],[724,301],[156,265],[-98,186],[281,214],[85,-43],[613,444],[98,136],[182,501],[183,57],[724,28],[216,58],[319,186],[124,136],[242,71],[-27,258],[274,50],[229,314],[293,165],[281,43],[293,250],[157,-93],[170,-272],[169,8],[307,-108],[-85,108],[613,-258],[385,-71],[261,422],[744,422],[163,14],[313,157],[320,-479],[254,36],[98,-65],[-111,-171],[-235,-65],[-215,-193],[98,-193],[-59,-136],[163,-14],[261,243],[365,100],[-71,-193],[313,-529],[-313,-179],[-13,-122],[-294,-236],[46,-143],[-216,-150],[340,-122],[58,115],[333,128],[170,8],[319,-236],[477,-58],[267,72],[463,-351],[-39,-357],[111,-101],[-59,-307],[-195,36],[-405,-372],[-130,-36],[-313,-322],[39,-365],[567,-765],[-241,-79],[-411,243],[39,122],[-222,229],[-385,35],[-91,-114],[-313,-14],[-587,-101],[-294,-157],[-280,-386],[-242,-72],[-176,-236],[-241,-172],[-235,-28],[-215,-279],[-320,-107]],[[56136,40786],[111,-294],[52,-407],[131,-215],[-72,-458],[20,-250],[-72,-158],[-7,-357],[-124,-222],[-163,-72],[-156,129],[-85,-129],[85,-243],[-216,-300],[-19,-251],[78,-121],[-13,-244],[150,-300],[7,-329],[-59,-150],[-268,21],[7,-186],[-131,-121],[27,-158],[-281,72],[-326,286],[-78,-29],[-46,-272],[-170,-100],[-91,358],[91,86],[-130,822],[-46,423],[-124,164],[-32,258],[-150,128],[-72,673],[45,315],[-104,200],[-111,429],[20,215]],[[53814,39999],[26,322],[111,43],[13,586],[-72,315]],[[53814,39999],[-150,-129],[-92,200],[-339,-200],[-150,179],[-46,-172],[66,-365],[-248,-193],[-196,-336],[111,-451],[-222,-214],[-248,-115],[-176,243],[-91,322],[-118,165],[-124,-57],[40,-387],[-164,193],[-45,380],[-111,386],[-209,379],[72,129],[-59,136],[144,71],[13,294],[137,221],[150,15],[45,250],[444,-28],[144,271],[241,-100],[0,172],[170,-29],[124,-171],[97,264],[-13,179],[157,-50],[-46,136],[352,64],[-6,222],[98,107]],[[44563,35649],[65,29],[33,-401],[-72,-179],[-195,122],[169,429]],[[47995,45865],[-98,79],[-13,-387],[-170,-236],[-85,101],[-306,-8],[-496,329],[-170,494],[-235,222],[-137,-172],[333,-279],[-137,-57],[-169,114],[-170,-107],[-268,200],[-110,244],[-327,171],[-332,244],[-98,-222],[326,-100],[78,-244],[-150,22],[-182,-136],[-85,-229],[-346,-179],[-13,-229],[-170,-293],[124,-315],[222,72],[431,-358],[6,-143],[235,-222],[326,-79],[150,115],[157,-129],[-26,-136],[111,-179],[280,-57],[-117,-315],[-261,65],[-33,-72],[-430,65],[-379,-43],[-13,-294],[-222,-415],[-182,15],[-131,157],[-156,-71],[58,-172],[-195,-208],[-72,-264],[267,-351],[574,-300],[170,-122],[352,-50],[190,50],[71,-243],[-150,-115],[-13,-221],[111,-101],[-13,-200],[-143,-172],[-137,-7],[-98,-221],[-20,-322],[398,-401],[111,0],[-183,-415],[46,-122],[554,-78],[-234,-315],[-26,-258],[234,-279],[-84,-250],[97,-422],[111,-258],[-26,-157],[196,-565],[-85,-143],[46,-351],[-105,-78],[-234,157],[241,-279],[150,-558],[-176,-29],[-268,150],[-267,-264],[-170,329],[98,808],[-111,-236],[-124,43],[66,150],[-40,215],[-156,-615],[0,-186],[130,14],[-71,-386],[-111,-186],[-131,50],[98,236],[-52,193],[59,136],[-118,272],[33,-251],[-92,-157],[46,-179],[-143,-150],[-40,229],[-150,7],[-130,186],[85,-486],[-124,-29],[-157,243],[59,336],[-111,201],[6,243],[144,200],[-52,208],[-385,143],[-91,93],[-131,379],[46,-351],[137,-178],[280,-58],[85,-143],[-267,-307],[-150,-308],[-340,-308],[-293,-164],[-503,-100]],[[44491,46695],[170,393],[-26,372],[-170,308],[-228,258],[72,343]],[[45933,48133],[242,-179],[26,-300],[71,78],[248,-128],[229,-244],[195,-21],[353,93],[221,-129],[235,7],[255,-171],[352,-72],[85,64]],[[46312,34991],[-137,-114],[0,193],[137,-79]],[[45750,35814],[-13,-329],[-110,35],[123,294]],[[19995,3606],[-267,201],[-248,357],[-718,873],[157,272],[-209,-150],[-385,908],[-124,394],[-59,823],[170,-58],[72,-322],[-85,-343],[241,-86],[98,86],[-215,86],[19,265],[-130,550],[-183,144],[-65,286],[-143,14],[-170,665],[-124,301],[-254,493],[-235,880],[-353,837],[-137,58],[-241,601],[-437,479],[-13,250]],[[15781,12420],[-46,-21],[-170,472],[-391,773],[-222,536]],[[10157,31435],[98,480],[294,558],[32,508],[98,64],[-228,193],[59,143],[-222,329],[196,29],[-98,193],[-242,-136],[59,179],[-215,-28],[182,128],[-208,136],[-124,322],[391,229],[-352,-157],[85,171],[293,179],[170,186],[137,-7],[509,222],[26,79],[-450,-201],[-431,7],[-437,-35],[59,400],[124,201],[208,136],[-195,-36],[-183,-136],[-85,121],[85,451],[157,136],[306,-114],[144,171],[182,-57],[66,107],[-235,43],[-144,-71],[-352,100],[-294,-129],[-163,50],[13,272],[-156,-250],[-196,64],[144,-150],[0,-344],[-131,-171],[-209,-29],[-280,-136],[280,-28],[13,-172],[-221,107],[97,-150],[-221,57],[-7,-164],[365,14],[111,-200],[131,-50],[52,-172],[-124,-322],[-307,-386],[0,-272],[-391,-165],[-365,-236],[-405,-172],[-32,51],[-235,-222],[-326,-86],[-392,-208],[-306,-57],[-53,-71],[-313,-22],[-672,258],[-613,408],[-463,400],[-672,809],[-281,293],[-463,386],[-71,229],[-124,-36],[-522,508],[-248,294],[-105,221],[85,294],[196,150],[0,-200],[241,71],[59,-71],[-72,-215],[85,-79],[333,129],[241,22],[183,271],[13,-178],[137,-51],[182,115],[72,179],[124,-136],[392,265],[411,28],[391,544],[124,293],[267,165],[59,236],[-85,121],[-169,-85],[-13,-322],[-229,-36],[-150,93],[-215,-107],[-639,-151],[-307,-279],[-280,36],[-561,172],[-301,43],[-358,221],[-392,172],[-398,265],[-182,179],[32,143],[-156,-22],[124,158],[-405,279],[131,164],[-170,-14],[-13,215],[294,186],[306,329],[333,143],[-418,-108],[-97,-135],[-405,-172],[-183,-272],[-378,36],[183,164],[-170,208],[52,200],[157,193],[391,100],[659,-7],[0,766],[157,93],[111,-201],[97,179],[157,-150],[196,72],[222,-72],[293,64],[633,-14],[235,-207],[228,-72],[450,7],[209,136],[98,200],[548,144],[372,143],[91,-329],[137,-108],[294,-21],[234,93],[-13,121],[183,108],[130,-29],[196,122],[-241,171],[-39,244],[221,257]],[[15944,60366],[-235,158],[-378,164],[-268,-50],[-143,72],[-261,-36],[-131,86],[-72,214],[118,565],[-157,-143],[-293,-43],[-339,58],[-27,107],[-756,358],[-170,143],[-183,-43],[-443,265],[52,164],[-111,122],[-52,336],[124,150],[13,243],[-137,165],[52,279],[-39,393],[-144,229],[-97,616],[-150,207],[97,479],[346,65],[215,393],[418,136],[293,165],[183,307],[0,308],[-535,150],[-261,15],[-130,236],[85,243],[143,86],[-33,171],[-600,29],[-450,150],[-378,265],[32,286],[-143,107],[-476,-7],[-137,-86],[-340,36],[-319,122],[163,257],[-124,222],[124,358],[215,21],[431,272],[45,186],[196,22],[248,314],[-52,208],[248,93],[293,-36],[229,86],[1050,-100],[0,143],[-392,200],[0,86],[353,-50],[176,-100],[326,0],[52,143],[216,7],[404,236],[320,-71],[58,157],[255,50],[261,-86],[169,-257],[85,136],[424,71],[476,-150],[190,-158],[32,-271],[183,-72],[170,115],[358,-108],[327,-243],[221,-365],[392,-86],[195,-250],[340,-22],[85,-164],[306,-122],[228,0],[196,-186],[52,-472],[137,-122],[372,-93],[189,-193],[255,-71],[313,21],[359,-322],[6,-243],[333,-43],[320,86],[254,0],[85,157],[352,-43],[111,179],[248,172],[365,157],[242,50],[430,330],[450,-58],[783,193],[242,-35],[84,-251],[242,22],[222,-150],[-72,-108],[124,-243],[280,-86],[98,-129],[170,115],[182,-401],[242,-36],[189,308],[215,-136],[170,7],[13,-179],[-241,-264],[19,-279],[-183,-215],[-19,-486],[-170,-258],[-111,-279],[-443,-71],[-85,-179],[-228,-72],[58,-214],[-156,-86],[-346,14],[85,-386],[-144,-158],[26,-179],[-267,-228],[-542,35],[-156,-71],[-294,28],[-98,-143],[222,-465],[59,-272],[-215,0],[-79,-100],[79,-486],[117,-179],[196,-79],[59,-143],[150,29],[508,-150],[-104,-401],[385,-665],[-72,-158],[-404,-357],[-170,28],[-228,-79],[-85,-243],[-372,-36],[-313,251],[-170,400],[-235,-143],[-313,-7],[-150,-93]]],"objects":{"india_state_boundaries":{"type":"GeometryCollection","geometries":[{"arcs":[[[0]],[[1]],[[2]],[[3]],[[4]],[[5]],[[6]],[[7]],[[8]],[[9]],[[10]],[[11]],[[12]],[[13]],[[14]],[[15]],[[16]],[[17]],[[18]],[[19]],[[20]],[[21]],[[22]],[[23]],[[24]],[[25]],[[26]],[[27]],[[28]],[[29]],[[30]],[[31]],[[32]],[[33]],[[34]],[[35]],[[36]],[[37]],[[38]],[[39]],[[40]],[[41]],[[42]],[[43]],[[44]],[[45]],[[46]],[[47]],[[48]],[[49]],[[50]],[[51]],[[52]],[[53]],[[54]],[[55]],[[56]],[[57]],[[58]],[[59]],[[60]],[[61]],[[62]],[[63]],[[64]],[[65]],[[66]],[[67]],[[68]],[[69]],[[70]],[[71]],[[72]],[[73]],[[74]],[[75]],[[76]],[[77]],[[78]],[[79]],[[80]],[[81]],[[82]],[[83]],[[84]],[[85]],[[86]],[[87]],[[88]],[[89]],[[90]],[[91]],[[92]],[[93]],[[94]],[[95]],[[96]],[[97]],[[98]],[[99]],[[100]],[[101]],[[102]],[[103]],[[104]],[[105]],[[106]],[[107]],[[108]],[[109]],[[110]],[[111]],[[112]],[[113]],[[114]],[[115]],[[116]],[[117]],[[118]],[[119]],[[120]],[[121]],[[122]],[[123]],[[124]],[[125]],[[126]],[[127]],[[128]],[[129]],[[130]],[[131]],[[132]],[[133]],[[134]],[[135]],[[136]],[[137]],[[138]],[[139]],[[140]],[[141]],[[142]],[[143]],[[144]],[[145]],[[146]],[[147]],[[148]],[[149]],[[150]],[[151]],[[152]],[[153]],[[154]],[[155]],[[156]],[[157]],[[158]],[[159]],[[160]],[[161]],[[162]],[[163]],[[164]],[[165]],[[166]],[[167]],[[168]],[[169]],[[170]],[[171]],[[172]],[[173]],[[174]],[[175]],[[176]],[[177]],[[178]],[[179]],[[180]],[[181]],[[182]],[[183]],[[184]],[[185]],[[186]],[[187]],[[188]],[[189]],[[190]],[[191]],[[192]],[[193]],[[194]],[[195]],[[196]],[[197]],[[198]],[[199]],[[200]],[[201]],[[202]],[[203]],[[204]],[[205]],[[206]],[[207]],[[208]],[[209]],[[210]],[[211]]],"type":"MultiPolygon","properties":{"NAME_1":"Andaman & Nicobar","HASC_1":"IN.AN"}},{"arcs":[[212,213,214,215,216,217,218,219,220]],"type":"Polygon","properties":{"NAME_1":"Telangana","HASC_1":"IN.TE"}},{"arcs":[[[221]],[[222]],[[223]],[[224]],[[225]],[[226]],[[227]],[[228]],[[229]],[[230]],[[231]],[[232]],[[233]],[[234]],[[235]],[[236]],[[237]],[[238]],[[239]],[[240]],[[241]],[[242]],[[244]],[[245]],[[246]],[[247]],[[248]],[[249]],[[250]],[[251]],[[252,253,-220,254,-218,255,-216,256,-214,257]]],"type":"MultiPolygon","properties":{"NAME_1":"Andhra Pradesh","HASC_1":"IN.AP"}},{"arcs":[[[258]],[[259]],[[260]],[[261]],[[262]],[[263]],[[264]],[[265]],[[266]],[[267]],[[268]],[[269]],[[270]],[[271]],[[272]],[[273]],[[274]],[[275]],[[276]],[[277]],[[278]],[[279]],[[280]],[[281]]],"type":"MultiPolygon","properties":{"NAME_1":"Lakshadweep","HASC_1":"IN.LA"}},{"arcs":[[282,283]],"type":"Polygon","properties":{"NAME_1":"Chandigarh","HASC_1":"IN.CH"}},{"arcs":[[284,285]],"type":"Polygon","properties":{"NAME_1":"Delhi","HASC_1":"IN.DL"}},{"arcs":[[286,287,288,289,290]],"type":"Polygon","properties":{"NAME_1":"Himachal Pradesh","HASC_1":"IN.HP"}},{"arcs":[[291,292,-284,293,-289,294,-286,295]],"type":"Polygon","properties":{"NAME_1":"Haryana","HASC_1":"IN.HR"}},{"arcs":[[296,297,298,299]],"type":"Polygon","properties":{"NAME_1":"Odisha","HASC_1":"IN.OR"}},{"arcs":[[300,301,302,303,304,305]],"type":"Polygon","properties":{"NAME_1":"Karnataka","HASC_1":"IN.KA"}},{"arcs":[[306,307,308,309,310,-303,311]],"type":"Polygon","properties":{"NAME_1":"Maharashtra","HASC_1":"IN.MH"}},{"arcs":[[312,313,314,315,316,317,318,319,320,321]],"type":"Polygon","properties":{"NAME_1":"Assam","HASC_1":"IN.AS"}},{"arcs":[[322,323,-320,324]],"type":"Polygon","properties":{"NAME_1":"Manipur","HASC_1":"IN.MN"}},{"arcs":[[325,-325,-319,326]],"type":"Polygon","properties":{"NAME_1":"Nagaland","HASC_1":"IN.NL"}},{"arcs":[[327,-314]],"type":"Polygon","properties":{"NAME_1":"Meghalaya","HASC_1":"IN.ML"}},{"arcs":[[328,329,-290,-294,-283,-293,330]],"type":"Polygon","properties":{"NAME_1":"Punjab","HASC_1":"IN.PB"}},{"arcs":[[331,-331,-292,332,333,334]],"type":"Polygon","properties":{"NAME_1":"Rajasthan","HASC_1":"IN.RJ"}},{"arcs":[[335,336,337,338,339,-333,-296,-285,-295,340]],"type":"Polygon","properties":{"NAME_1":"Uttar Pradesh","HASC_1":"IN.UP"}},{"arcs":[[341,-341,-288]],"type":"Polygon","properties":{"NAME_1":"Uttarakhand","HASC_1":"IN.UT"}},{"arcs":[[342,-299,343,-338,344]],"type":"Polygon","properties":{"NAME_1":"Jharkhand","HASC_1":"IN.JH"}},{"arcs":[[345,346,-345,-337]],"type":"Polygon","properties":{"NAME_1":"Bihar","HASC_1":"IN.BR"}},{"arcs":[[347,348]],"type":"Polygon","properties":{"NAME_1":"Sikkim","HASC_1":"IN.SK"}},{"arcs":[[-298,349,-310,350,-339,-344]],"type":"Polygon","properties":{"NAME_1":"Chhattisgarh","HASC_1":"IN.CT"}},{"arcs":[[-309,351,-334,-340,-351]],"type":"Polygon","properties":{"NAME_1":"Madhya Pradesh","HASC_1":"IN.MP"}},{"arcs":[[[352,353]],[[354,355]],[[356,357]]],"type":"MultiPolygon","properties":{"NAME_1":"Puducherry","HASC_1":"IN.PY"}},{"arcs":[[-354,358,-358,359,360,-305,361]],"type":"Polygon","properties":{"NAME_1":"Tamil Nadu","HASC_1":"IN.TN"}},{"arcs":[[362,-312,-302]],"type":"Polygon","properties":{"NAME_1":"Goa","HASC_1":"IN.GA"}},{"arcs":[[-327,-318,363]],"type":"Polygon","properties":{"NAME_1":"Arunachal Pradesh","HASC_1":"IN.AR"}},{"arcs":[[364,365,-321,-324]],"type":"Polygon","properties":{"NAME_1":"Mizoram","HASC_1":"IN.MZ"}},{"arcs":[[366,-322,-366]],"type":"Polygon","properties":{"NAME_1":"Tripura","HASC_1":"IN.TR"}},{"arcs":[[[367]],[[368,-300,-343,-347,369,-349,370,-316]],[[371]],[[372]]],"type":"MultiPolygon","properties":{"NAME_1":"West Bengal","HASC_1":"IN.WB"}},{"arcs":[[373,-356,374,-306,-361]],"type":"Polygon","properties":{"NAME_1":"Kerala","HASC_1":"IN.KL"}},{"arcs":[[375,-335,-352,-308]],"type":"Polygon","properties":{"NAME_1":"Gujarat","HASC_1":"IN.GJ"}},{"arcs":[[-291,-330,376]],"type":"Polygon","properties":{"NAME_1":"Jammu and Kashmir","HASC_1":"IN.JK"}}]}},"crs":{"type":"name","properties":{"name":"urn:ogc:def:crs:OGC:1.3:CRS84"}}}; \ No newline at end of file diff --git a/src/data/expenditure_data.js b/src/data/expenditure_data.js new file mode 100644 index 0000000..386f948 --- /dev/null +++ b/src/data/expenditure_data.js @@ -0,0 +1 @@ +export let expenditure_data = [{"sector": " Agriculture & Allied Activities", "subIndicators": [{"stateFigures": [{"state": "Andhra Pradesh", "figures": {"A": [{"2013-14": "3576.4"}, {"2014-15": ""}], "BE": [{"2014-15": "8437.6"}, {"2015-16": "8400.6"}, {"2016-17": "8046.6"}], "RE": [{"2014-15": "8476.6"}, {"2015-16": "7298.1"}]}}, {"state": "Assam", "figures": {"A": [{"2013-14": "1212.8"}, {"2014-15": "1430"}], "BE": [{"2014-15": "2198.2"}, {"2015-16": "3832.4"}, {"2016-17": "2319.4"}], "RE": [{"2014-15": "2307.9"}, {"2015-16": "2902.8"}]}}, {"state": "Bihar", "figures": {"A": [{"2013-14": "2248.2"}, {"2014-15": "2345.6"}], "BE": [{"2014-15": "3357.9"}, {"2015-16": "3363.3"}, {"2016-17": "3262.3"}], "RE": [{"2014-15": "4175.9"}, {"2015-16": "3471.2"}]}}, {"state": "Chhattisgarh", "figures": {"A": [{"2013-14": "1340.4"}, {"2014-15": "4043.1"}], "BE": [{"2014-15": "4603.7"}, {"2015-16": "2184.1"}, {"2016-17": "2658.6"}], "RE": [{"2014-15": "4528.9"}, {"2015-16": "2219.4"}]}}, {"state": "Delhi", "figures": {"A": [{"2013-14": "40.8"}, {"2014-15": "39.3"}], "BE": [{"2014-15": "41.7"}, {"2015-16": "50.6"}, {"2016-17": "64.4"}], "RE": [{"2014-15": "42.4"}, {"2015-16": "54.9"}]}}, {"state": "Gujarat", "figures": {"A": [{"2013-14": "3255.3"}, {"2014-15": "3215.1"}], "BE": [{"2014-15": "4059.8"}, {"2015-16": "4251.7"}, {"2016-17": "5082.8"}], "RE": [{"2014-15": "3955.3"}, {"2015-16": "3847.5"}]}}, {"state": "Haryana", "figures": {"A": [{"2013-14": "1279.4"}, {"2014-15": "1349.2"}], "BE": [{"2014-15": "1867.4"}, {"2015-16": "1987.2"}, {"2016-17": "2792.2"}], "RE": [{"2014-15": "1635.6"}, {"2015-16": "2141.7"}]}}, {"state": "Himachal Pradesh", "figures": {"A": [{"2013-14": "655.1"}, {"2014-15": "773.7"}], "BE": [{"2014-15": "695.4"}, {"2015-16": "915"}, {"2016-17": "949.9"}], "RE": [{"2014-15": "777"}, {"2015-16": "882.5"}]}}, {"state": "Jammu and Kashmir", "figures": {"A": [{"2013-14": "1052.1"}, {"2014-15": "1017.4"}], "BE": [{"2014-15": "1679.9"}, {"2015-16": "1939.9"}, {"2016-17": "2537.8"}], "RE": [{"2014-15": "1632.9"}, {"2015-16": "2026.8"}]}}, {"state": "Jharkhand", "figures": {"A": [{"2013-14": "662.6"}, {"2014-15": "704"}], "BE": [{"2014-15": "1305.3"}, {"2015-16": "1352.5"}, {"2016-17": "2580"}], "RE": [{"2014-15": "1382.3"}, {"2015-16": "1425.5"}]}}, {"state": "Karnataka", "figures": {"A": [{"2013-14": "5002.2"}, {"2014-15": "5917.6"}], "BE": [{"2014-15": "6897.1"}, {"2015-16": "6646.9"}, {"2016-17": "7159.6"}], "RE": [{"2014-15": "6406.9"}, {"2015-16": "6799"}]}}, {"state": "Kerala", "figures": {"A": [{"2013-14": "2939.4"}, {"2014-15": "3192.4"}], "BE": [{"2014-15": "3724.4"}, {"2015-16": "4064.4"}, {"2016-17": "4726.8"}], "RE": [{"2014-15": "3262.6"}, {"2015-16": "3614.6"}]}}, {"state": "Madhya Pradesh", "figures": {"A": [{"2013-14": "2089.4"}, {"2014-15": "3569.9"}], "BE": [{"2014-15": "4649.4"}, {"2015-16": "4196.7"}, {"2016-17": "4633"}], "RE": [{"2014-15": "4486.1"}, {"2015-16": "5106.7"}]}}, {"state": "Maharashtra", "figures": {"A": [{"2013-14": "4960.5"}, {"2014-15": "5528"}], "BE": [{"2014-15": "5478.5"}, {"2015-16": "5244.5"}, {"2016-17": "7685.7"}], "RE": [{"2014-15": "6318.2"}, {"2015-16": "7116.2"}]}}, {"state": "Meghalaya", "figures": {"A": [{"2013-14": "386.6"}, {"2014-15": "406.7"}], "BE": [{"2014-15": "792.4"}, {"2015-16": "667.5"}, {"2016-17": "688.7"}], "RE": [{"2014-15": "792.4"}, {"2015-16": "667.5"}]}}, {"state": "Mizoram", "figures": {"A": [{"2013-14": "541.3"}, {"2014-15": "574.4"}], "BE": [{"2014-15": "634.5"}, {"2015-16": "445.1"}, {"2016-17": "332.4"}], "RE": [{"2014-15": "636.8"}, {"2015-16": "446.6"}]}}, {"state": "Odisha", "figures": {"A": [{"2013-14": "2310.1"}, {"2014-15": "3126.3"}], "BE": [{"2014-15": "3248.1"}, {"2015-16": "3749.2"}, {"2016-17": "4118.5"}], "RE": [{"2014-15": "3481.1"}, {"2015-16": "3812.9"}]}}, {"state": "Punjab", "figures": {"A": [{"2013-14": "1400.3"}, {"2014-15": "3715.2"}], "BE": [{"2014-15": "6462.2"}, {"2015-16": "4262.9"}, {"2016-17": "6917"}], "RE": [{"2014-15": "4305.7"}, {"2015-16": "6966.4"}]}}, {"state": "Rajasthan", "figures": {"A": [{"2013-14": "2624.8"}, {"2014-15": "2993.1"}], "BE": [{"2014-15": "3876.5"}, {"2015-16": "3590.1"}, {"2016-17": "4862.3"}], "RE": [{"2014-15": "3604.6"}, {"2015-16": "3433.4"}]}}, {"state": "Sikkim", "figures": {"A": [{"2013-14": "118.9"}, {"2014-15": "151.7"}], "BE": [{"2014-15": "205"}, {"2015-16": "246.4"}, {"2016-17": "247.5"}], "RE": [{"2014-15": "212.7"}, {"2015-16": "265"}]}}, {"state": "Tamil Nadu", "figures": {"A": [{"2013-14": "6708.8"}, {"2014-15": "7046.1"}], "BE": [{"2014-15": "7012.1"}, {"2015-16": "8540"}, {"2016-17": "8995.7"}], "RE": [{"2014-15": "7767"}, {"2015-16": "8395.3"}]}}, {"state": "Telangana", "figures": {"A": [{"2013-14": ""}, {"2014-15": "5544.6"}], "BE": [{"2014-15": "7875.6"}, {"2015-16": "7735.5"}, {"2016-17": "7311.5"}], "RE": [{"2014-15": "7875.6"}, {"2015-16": "6926.1"}]}}, {"state": "Tripura", "figures": {"A": [{"2013-14": "282.2"}, {"2014-15": "353.5"}], "BE": [{"2014-15": "480.5"}, {"2015-16": "569.4"}, {"2016-17": "499.1"}], "RE": [{"2014-15": "476"}, {"2015-16": "470.4"}]}}, {"state": "Uttar Pradesh", "figures": {"A": [{"2013-14": "4548.5"}, {"2014-15": "6073.9"}], "BE": [{"2014-15": "6248.5"}, {"2015-16": "8084.8"}, {"2016-17": "8881.8"}], "RE": [{"2014-15": "7058.3"}, {"2015-16": "9913.1"}]}}, {"state": "Uttarakhand", "figures": {"A": [{"2013-14": "790.6"}, {"2014-15": "917.7"}], "BE": [{"2014-15": "816.6"}, {"2015-16": "920.8"}, {"2016-17": "1443"}], "RE": [{"2014-15": "983.2"}, {"2015-16": "1030.4"}]}}, {"state": "West Bengal", "figures": {"A": [{"2013-14": "1801.7"}, {"2014-15": "2346.2"}], "BE": [{"2014-15": "3402.1"}, {"2015-16": "3850.5"}, {"2016-17": "4480"}], "RE": [{"2014-15": "2944"}, {"2015-16": "3772.2"}]}}], "indicator": "Total Sector Expenditure", "slugIndicator": "total_sector_expenditure", "unit": "INR (in Crores)"}, {"stateFigures": [{"state": "Andhra Pradesh", "figures": {"A": [{"2013-14": "2.6"}, {"2014-15": ""}], "BE": [{"2014-15": "7.5"}, {"2015-16": "7.4"}, {"2016-17": "5.9"}], "RE": [{"2014-15": "7.6"}, {"2015-16": "6.5"}]}}, {"state": "Assam", "figures": {"A": [{"2013-14": "3.3"}, {"2014-15": "3.1"}], "BE": [{"2014-15": "3.8"}, {"2015-16": "5.8"}, {"2016-17": "3"}], "RE": [{"2014-15": "3.6"}, {"2015-16": "3.9"}]}}, {"state": "Bihar", "figures": {"A": [{"2013-14": "2.8"}, {"2014-15": "2.5"}], "BE": [{"2014-15": "2.9"}, {"2015-16": "2.8"}, {"2016-17": "2.3"}], "RE": [{"2014-15": "3.2"}, {"2015-16": "2.6"}]}}, {"state": "Chhattisgarh", "figures": {"A": [{"2013-14": "3.5"}, {"2014-15": "8.8"}], "BE": [{"2014-15": "8.4"}, {"2015-16": "3.4"}, {"2016-17": "3.8"}], "RE": [{"2014-15": "8.2"}, {"2015-16": "3.4"}]}}, {"state": "Delhi", "figures": {"A": [{"2013-14": "0.1"}, {"2014-15": ""}], "BE": [{"2014-15": "0.1"}, {"2015-16": "0.1"}, {"2016-17": "0.1"}], "RE": [{"2014-15": "0.1"}, {"2015-16": ""}]}}, {"state": "Gujarat", "figures": {"A": [{"2013-14": "3.1"}, {"2014-15": "2.8"}], "BE": [{"2014-15": "3.1"}, {"2015-16": "3.1"}, {"2016-17": "3.4"}], "RE": [{"2014-15": "3.2"}, {"2015-16": "2.9"}]}}, {"state": "Haryana", "figures": {"A": [{"2013-14": "2.7"}, {"2014-15": "2.5"}], "BE": [{"2014-15": "3.1"}, {"2015-16": "2.9"}, {"2016-17": "3.1"}], "RE": [{"2014-15": "2.7"}, {"2015-16": "2.5"}]}}, {"state": "Himachal Pradesh", "figures": {"A": [{"2013-14": "3"}, {"2014-15": "3.1"}], "BE": [{"2014-15": "2.9"}, {"2015-16": "3.2"}, {"2016-17": "2.9"}], "RE": [{"2014-15": "3.2"}, {"2015-16": "3.2"}]}}, {"state": "Jammu and Kashmir", "figures": {"A": [{"2013-14": "3.2"}, {"2014-15": "2.9"}], "BE": [{"2014-15": "3.9"}, {"2015-16": "4.2"}, {"2016-17": "4.5"}], "RE": [{"2014-15": "3.8"}, {"2015-16": "4.1"}]}}, {"state": "Jharkhand", "figures": {"A": [{"2013-14": "2.2"}, {"2014-15": "1.8"}], "BE": [{"2014-15": "2.6"}, {"2015-16": "2.4"}, {"2016-17": "4.1"}], "RE": [{"2014-15": "2.7"}, {"2015-16": "2.5"}]}}, {"state": "Karnataka", "figures": {"A": [{"2013-14": "4.7"}, {"2014-15": "4.8"}], "BE": [{"2014-15": "5.3"}, {"2015-16": "4.9"}, {"2016-17": "4.6"}], "RE": [{"2014-15": "5"}, {"2015-16": "4.9"}]}}, {"state": "Kerala", "figures": {"A": [{"2013-14": "4.4"}, {"2014-15": "4.2"}], "BE": [{"2014-15": "4.7"}, {"2015-16": "4.3"}, {"2016-17": "4.4"}], "RE": [{"2014-15": "4.1"}, {"2015-16": "4.1"}]}}, {"state": "Madhya Pradesh", "figures": {"A": [{"2013-14": "2.4"}, {"2014-15": "3.6"}], "BE": [{"2014-15": "4"}, {"2015-16": "3.2"}, {"2016-17": "3.1"}], "RE": [{"2014-15": "3.8"}, {"2015-16": "3.8"}]}}, {"state": "Maharashtra", "figures": {"A": [{"2013-14": "2.8"}, {"2014-15": "2.8"}], "BE": [{"2014-15": "2.6"}, {"2015-16": "2.3"}, {"2016-17": "3"}], "RE": [{"2014-15": "2.9"}, {"2015-16": "3"}]}}, {"state": "Meghalaya", "figures": {"A": [{"2013-14": "5.5"}, {"2014-15": "5.3"}], "BE": [{"2014-15": "6.7"}, {"2015-16": "7"}, {"2016-17": "6.6"}], "RE": [{"2014-15": "6.7"}, {"2015-16": "7"}]}}, {"state": "Mizoram", "figures": {"A": [{"2013-14": "9.6"}, {"2014-15": "7.4"}], "BE": [{"2014-15": "9.5"}, {"2015-16": "5.7"}, {"2016-17": "4"}], "RE": [{"2014-15": "8.5"}, {"2015-16": "5.3"}]}}, {"state": "Odisha", "figures": {"A": [{"2013-14": "4.1"}, {"2014-15": "4.7"}], "BE": [{"2014-15": "4.1"}, {"2015-16": "4.4"}, {"2016-17": "4.4"}], "RE": [{"2014-15": "4.5"}, {"2015-16": "4.5"}]}}, {"state": "Punjab", "figures": {"A": [{"2013-14": "2.3"}, {"2014-15": "5.1"}], "BE": [{"2014-15": "8.8"}, {"2015-16": "5.4"}, {"2016-17": "8"}], "RE": [{"2014-15": "5.7"}, {"2015-16": "8.9"}]}}, {"state": "Rajasthan", "figures": {"A": [{"2013-14": "2.8"}, {"2014-15": "2.6"}], "BE": [{"2014-15": "2.9"}, {"2015-16": "2.6"}, {"2016-17": "3.2"}], "RE": [{"2014-15": "2.9"}, {"2015-16": "2.5"}]}}, {"state": "Sikkim", "figures": {"A": [{"2013-14": "2.7"}, {"2014-15": "3.2"}], "BE": [{"2014-15": "3.2"}, {"2015-16": "4.6"}, {"2016-17": "4.5"}], "RE": [{"2014-15": "3.2"}, {"2015-16": "4.9"}]}}, {"state": "Tamil Nadu", "figures": {"A": [{"2013-14": "5.2"}, {"2014-15": "4.7"}], "BE": [{"2014-15": "4.6"}, {"2015-16": "4.9"}, {"2016-17": "4.8"}], "RE": [{"2014-15": "4.8"}, {"2015-16": "4.9"}]}}, {"state": "Telangana", "figures": {"A": [{"2013-14": ""}, {"2014-15": "8.9"}], "BE": [{"2014-15": "8.1"}, {"2015-16": "6.7"}, {"2016-17": "5.6"}], "RE": [{"2014-15": "8.1"}, {"2015-16": "6.9"}]}}, {"state": "Tripura", "figures": {"A": [{"2013-14": "3.6"}, {"2014-15": "3.3"}], "BE": [{"2014-15": "3.9"}, {"2015-16": "3.8"}, {"2016-17": "3.3"}], "RE": [{"2014-15": "3.8"}, {"2015-16": "3.6"}]}}, {"state": "Uttar Pradesh", "figures": {"A": [{"2013-14": "2.3"}, {"2014-15": "2.6"}], "BE": [{"2014-15": "2.3"}, {"2015-16": "2.7"}, {"2016-17": "2.6"}], "RE": [{"2014-15": "2.7"}, {"2015-16": "3"}]}}, {"state": "Uttarakhand", "figures": {"A": [{"2013-14": "3.6"}, {"2014-15": "3.4"}], "BE": [{"2014-15": "2.7"}, {"2015-16": "2.8"}, {"2016-17": "3.6"}], "RE": [{"2014-15": "3"}, {"2015-16": "3.1"}]}}, {"state": "West Bengal", "figures": {"A": [{"2013-14": "1.7"}, {"2014-15": "1.9"}], "BE": [{"2014-15": "2.6"}, {"2015-16": "2.8"}, {"2016-17": "2.8"}], "RE": [{"2014-15": "2.3"}, {"2015-16": "2.6"}]}}], "indicator": "Total Sector Expenditure as % of State Budget", "slugIndicator": "total_sector_expenditure_as_of_state_budget", "unit": "Percentage"}, {"stateFigures": [{"state": "Andhra Pradesh", "figures": {"A": [{"2013-14": "414.8"}, {"2014-15": ""}], "BE": [{"2014-15": "970.4"}, {"2015-16": "958.3"}, {"2016-17": "910.7"}], "RE": [{"2014-15": "974.9"}, {"2015-16": "832.5"}]}}, {"state": "Assam", "figures": {"A": [{"2013-14": "387.2"}, {"2014-15": "451.2"}], "BE": [{"2014-15": "693.6"}, {"2015-16": "1195"}, {"2016-17": "714.8"}], "RE": [{"2014-15": "728.2"}, {"2015-16": "905.2"}]}}, {"state": "Bihar", "figures": {"A": [{"2013-14": "224.2"}, {"2014-15": "231"}], "BE": [{"2014-15": "330.7"}, {"2015-16": "327.4"}, {"2016-17": "314"}], "RE": [{"2014-15": "411.3"}, {"2015-16": "337.9"}]}}, {"state": "Chhattisgarh", "figures": {"A": [{"2013-14": "538.1"}, {"2014-15": "1602.4"}], "BE": [{"2014-15": "1824.6"}, {"2015-16": "854.7"}, {"2016-17": "1027.3"}], "RE": [{"2014-15": "1794.9"}, {"2015-16": "868.5"}]}}, {"state": "Delhi", "figures": {"A": [{"2013-14": "20.9"}, {"2014-15": "19.6"}], "BE": [{"2014-15": "20.7"}, {"2015-16": "24.5"}, {"2016-17": "30.2"}], "RE": [{"2014-15": "21.1"}, {"2015-16": "26.6"}]}}, {"state": "Gujarat", "figures": {"A": [{"2013-14": "537.5"}, {"2014-15": "524.2"}], "BE": [{"2014-15": "662"}, {"2015-16": "684.9"}, {"2016-17": "809"}], "RE": [{"2014-15": "644.9"}, {"2015-16": "619.7"}]}}, {"state": "Haryana", "figures": {"A": [{"2013-14": "487.1"}, {"2014-15": "505.8"}], "BE": [{"2014-15": "700"}, {"2015-16": "733.9"}, {"2016-17": "1016.2"}], "RE": [{"2014-15": "613.2"}, {"2015-16": "790.9"}]}}, {"state": "Himachal Pradesh", "figures": {"A": [{"2013-14": "946.9"}, {"2014-15": "1108.8"}], "BE": [{"2014-15": "996.5"}, {"2015-16": "1300.2"}, {"2016-17": "1338.8"}], "RE": [{"2014-15": "1113.4"}, {"2015-16": "1254.1"}]}}, {"state": "Jammu and Kashmir", "figures": {"A": [{"2013-14": "876"}, {"2014-15": "837.2"}], "BE": [{"2014-15": "1382.4"}, {"2015-16": "1578.6"}, {"2016-17": "2043.5"}], "RE": [{"2014-15": "1343.7"}, {"2015-16": "1649.3"}]}}, {"state": "Jharkhand", "figures": {"A": [{"2013-14": "204.9"}, {"2014-15": "214.9"}], "BE": [{"2014-15": "398.4"}, {"2015-16": "407.3"}, {"2016-17": "766.7"}], "RE": [{"2014-15": "421.9"}, {"2015-16": "429.3"}]}}, {"state": "Karnataka", "figures": {"A": [{"2013-14": "825.1"}, {"2014-15": "966.7"}], "BE": [{"2014-15": "1126.7"}, {"2015-16": "1075.6"}, {"2016-17": "1147.8"}], "RE": [{"2014-15": "1046.6"}, {"2015-16": "1100.2"}]}}, {"state": "Kerala", "figures": {"A": [{"2013-14": "839"}, {"2014-15": "905.4"}], "BE": [{"2014-15": "1056.3"}, {"2015-16": "1145.8"}, {"2016-17": "1324.9"}], "RE": [{"2014-15": "925.4"}, {"2015-16": "1019"}]}}, {"state": "Madhya Pradesh", "figures": {"A": [{"2013-14": "242.3"}, {"2014-15": "410.6"}], "BE": [{"2014-15": "534.7"}, {"2015-16": "478.7"}, {"2016-17": "524.3"}], "RE": [{"2014-15": "515.9"}, {"2015-16": "582.5"}]}}, {"state": "Maharashtra", "figures": {"A": [{"2013-14": "428.7"}, {"2014-15": "471.7"}], "BE": [{"2014-15": "467.5"}, {"2015-16": "442"}, {"2016-17": "640.1"}], "RE": [{"2014-15": "539.1"}, {"2015-16": "599.8"}]}}, {"state": "Meghalaya", "figures": {"A": [{"2013-14": "1441.4"}, {"2014-15": "1499.5"}], "BE": [{"2014-15": "2921.7"}, {"2015-16": "2433.5"}, {"2016-17": "2483.7"}], "RE": [{"2014-15": "2921.7"}, {"2015-16": "2433.5"}]}}, {"state": "Mizoram", "figures": {"A": [{"2013-14": "5265.9"}, {"2014-15": "5528.7"}], "BE": [{"2014-15": "6106.5"}, {"2015-16": "4235.5"}, {"2016-17": "3127.2"}], "RE": [{"2014-15": "6128.5"}, {"2015-16": "4249.2"}]}}, {"state": "Odisha", "figures": {"A": [{"2013-14": "557.3"}, {"2014-15": "748"}], "BE": [{"2014-15": "777.1"}, {"2015-16": "889.7"}, {"2016-17": "969.5"}], "RE": [{"2014-15": "832.9"}, {"2015-16": "904.9"}]}}, {"state": "Punjab", "figures": {"A": [{"2013-14": "495.2"}, {"2014-15": "1300.5"}], "BE": [{"2014-15": "2262"}, {"2015-16": "1477.8"}, {"2016-17": "2376"}], "RE": [{"2014-15": "1507.2"}, {"2015-16": "2415"}]}}, {"state": "Rajasthan", "figures": {"A": [{"2013-14": "375.3"}, {"2014-15": "421.7"}], "BE": [{"2014-15": "546.2"}, {"2015-16": "498.8"}, {"2016-17": "666.5"}], "RE": [{"2014-15": "507.9"}, {"2015-16": "477"}]}}, {"state": "Sikkim", "figures": {"A": [{"2013-14": "1899.4"}, {"2014-15": "2396.8"}], "BE": [{"2014-15": "3238.6"}, {"2015-16": "3849.5"}, {"2016-17": "3826"}], "RE": [{"2014-15": "3360.1"}, {"2015-16": "4139.9"}]}}, {"state": "Tamil Nadu", "figures": {"A": [{"2013-14": "982.8"}, {"2014-15": "1026.3"}], "BE": [{"2014-15": "1021.4"}, {"2015-16": "1237.1"}, {"2016-17": "1296.3"}], "RE": [{"2014-15": "1131.3"}, {"2015-16": "1216.2"}]}}, {"state": "Telangana", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Tripura", "figures": {"A": [{"2013-14": "762.7"}, {"2014-15": "944.6"}], "BE": [{"2014-15": "1284.1"}, {"2015-16": "1504.7"}, {"2016-17": "1304.6"}], "RE": [{"2014-15": "1272"}, {"2015-16": "1243.2"}]}}, {"state": "Uttar Pradesh", "figures": {"A": [{"2013-14": "219"}, {"2014-15": "287.6"}], "BE": [{"2014-15": "295.8"}, {"2015-16": "376.6"}, {"2016-17": "407.3"}], "RE": [{"2014-15": "334.2"}, {"2015-16": "461.8"}]}}, {"state": "Uttarakhand", "figures": {"A": [{"2013-14": "773.3"}, {"2014-15": "885.7"}], "BE": [{"2014-15": "788.1"}, {"2015-16": "877"}, {"2016-17": "1357.3"}], "RE": [{"2014-15": "948.9"}, {"2015-16": "981.4"}]}}, {"state": "West Bengal", "figures": {"A": [{"2013-14": "197.7"}, {"2014-15": "255.2"}], "BE": [{"2014-15": "370.1"}, {"2015-16": "415.3"}, {"2016-17": "478.9"}], "RE": [{"2014-15": "320.3"}, {"2015-16": "406.8"}]}}], "indicator": "Per Capita Expenditure on Sector ", "slugIndicator": "per_capita_expenditure_on_sector", "unit": "INR Rs."}, {"stateFigures": [{"state": "Andhra Pradesh", "figures": {"A": [{"2013-14": "99.3"}, {"2014-15": ""}], "BE": [{"2014-15": "98.6"}, {"2015-16": "98.1"}, {"2016-17": "98.2"}], "RE": [{"2014-15": "98.6"}, {"2015-16": "98.7"}]}}, {"state": "Assam", "figures": {"A": [{"2013-14": "99.9"}, {"2014-15": "99.4"}], "BE": [{"2014-15": "98.3"}, {"2015-16": "65.3"}, {"2016-17": "92.8"}], "RE": [{"2014-15": "98.4"}, {"2015-16": "92.5"}]}}, {"state": "Bihar", "figures": {"A": [{"2013-14": "99.7"}, {"2014-15": "99.4"}], "BE": [{"2014-15": "99.2"}, {"2015-16": "87.6"}, {"2016-17": "99.4"}], "RE": [{"2014-15": "99.1"}, {"2015-16": "97.1"}]}}, {"state": "Chhattisgarh", "figures": {"A": [{"2013-14": "88.2"}, {"2014-15": "99.5"}], "BE": [{"2014-15": "97.7"}, {"2015-16": "94"}, {"2016-17": "97.5"}], "RE": [{"2014-15": "99.2"}, {"2015-16": "96.8"}]}}, {"state": "Delhi", "figures": {"A": [{"2013-14": "96.8"}, {"2014-15": "94"}], "BE": [{"2014-15": "94"}, {"2015-16": "94.1"}, {"2016-17": "95.3"}], "RE": [{"2014-15": "92.9"}, {"2015-16": "94.5"}]}}, {"state": "Gujarat", "figures": {"A": [{"2013-14": "93.7"}, {"2014-15": "96.5"}], "BE": [{"2014-15": "91.6"}, {"2015-16": "92.1"}, {"2016-17": "88.4"}], "RE": [{"2014-15": "96.3"}, {"2015-16": "92.4"}]}}, {"state": "Haryana", "figures": {"A": [{"2013-14": "99.2"}, {"2014-15": "99.7"}], "BE": [{"2014-15": "98.9"}, {"2015-16": "98.9"}, {"2016-17": "97.7"}], "RE": [{"2014-15": "98.8"}, {"2015-16": "90.5"}]}}, {"state": "Himachal Pradesh", "figures": {"A": [{"2013-14": "88.5"}, {"2014-15": "90.1"}], "BE": [{"2014-15": "91.3"}, {"2015-16": "91.9"}, {"2016-17": "92.1"}], "RE": [{"2014-15": "90.2"}, {"2015-16": "87.5"}]}}, {"state": "Jammu and Kashmir", "figures": {"A": [{"2013-14": "96.8"}, {"2014-15": "98"}], "BE": [{"2014-15": "73.4"}, {"2015-16": "70.5"}, {"2016-17": "59.4"}], "RE": [{"2014-15": "70.7"}, {"2015-16": "70.7"}]}}, {"state": "Jharkhand", "figures": {"A": [{"2013-14": "97.7"}, {"2014-15": "89.4"}], "BE": [{"2014-15": "91.3"}, {"2015-16": "90.8"}, {"2016-17": "72.1"}], "RE": [{"2014-15": "91.4"}, {"2015-16": "91"}]}}, {"state": "Karnataka", "figures": {"A": [{"2013-14": "95"}, {"2014-15": "96.8"}], "BE": [{"2014-15": "95.9"}, {"2015-16": "97.3"}, {"2016-17": "97.7"}], "RE": [{"2014-15": "95.9"}, {"2015-16": "98.1"}]}}, {"state": "Kerala", "figures": {"A": [{"2013-14": "89.1"}, {"2014-15": "91"}], "BE": [{"2014-15": "89.6"}, {"2015-16": "87.2"}, {"2016-17": "85.2"}], "RE": [{"2014-15": "88"}, {"2015-16": "84.3"}]}}, {"state": "Madhya Pradesh", "figures": {"A": [{"2013-14": "98.9"}, {"2014-15": "98.9"}], "BE": [{"2014-15": "99.6"}, {"2015-16": "99.1"}, {"2016-17": "99.5"}], "RE": [{"2014-15": "99.1"}, {"2015-16": "99.4"}]}}, {"state": "Maharashtra", "figures": {"A": [{"2013-14": "98.2"}, {"2014-15": "98.4"}], "BE": [{"2014-15": "98.2"}, {"2015-16": "97.9"}, {"2016-17": "98.1"}], "RE": [{"2014-15": "98.5"}, {"2015-16": "98.5"}]}}, {"state": "Meghalaya", "figures": {"A": [{"2013-14": "97.4"}, {"2014-15": "88.7"}], "BE": [{"2014-15": "78.7"}, {"2015-16": "82.3"}, {"2016-17": "86.3"}], "RE": [{"2014-15": "78.7"}, {"2015-16": "82.3"}]}}, {"state": "Mizoram", "figures": {"A": [{"2013-14": "97.4"}, {"2014-15": "99.1"}], "BE": [{"2014-15": "99.2"}, {"2015-16": "98.4"}, {"2016-17": "100"}], "RE": [{"2014-15": "99.2"}, {"2015-16": "98.1"}]}}, {"state": "Odisha", "figures": {"A": [{"2013-14": "98.9"}, {"2014-15": "93.1"}], "BE": [{"2014-15": "93.2"}, {"2015-16": "93.3"}, {"2016-17": "95.9"}], "RE": [{"2014-15": "94.2"}, {"2015-16": "93.8"}]}}, {"state": "Punjab", "figures": {"A": [{"2013-14": "95.7"}, {"2014-15": "99.7"}], "BE": [{"2014-15": "99.3"}, {"2015-16": "99"}, {"2016-17": "99.3"}], "RE": [{"2014-15": "99.6"}, {"2015-16": "99.4"}]}}, {"state": "Rajasthan", "figures": {"A": [{"2013-14": "91.8"}, {"2014-15": "89.1"}], "BE": [{"2014-15": "88.9"}, {"2015-16": "92.6"}, {"2016-17": "88.8"}], "RE": [{"2014-15": "90.1"}, {"2015-16": "92.1"}]}}, {"state": "Sikkim", "figures": {"A": [{"2013-14": "94.8"}, {"2014-15": "98.2"}], "BE": [{"2014-15": "98.1"}, {"2015-16": "97.5"}, {"2016-17": "91"}], "RE": [{"2014-15": "97.9"}, {"2015-16": "97.7"}]}}, {"state": "Tamil Nadu", "figures": {"A": [{"2013-14": "92.5"}, {"2014-15": "92.9"}], "BE": [{"2014-15": "92.4"}, {"2015-16": "89.8"}, {"2016-17": "89.1"}], "RE": [{"2014-15": "91.2"}, {"2015-16": "90"}]}}, {"state": "Telangana", "figures": {"A": [{"2013-14": ""}, {"2014-15": "99"}], "BE": [{"2014-15": "98.5"}, {"2015-16": "92.7"}, {"2016-17": "95.7"}], "RE": [{"2014-15": "98.5"}, {"2015-16": "91.9"}]}}, {"state": "Tripura", "figures": {"A": [{"2013-14": "85.1"}, {"2014-15": "87.5"}], "BE": [{"2014-15": "69.1"}, {"2015-16": "72.1"}, {"2016-17": "78.1"}], "RE": [{"2014-15": "73.8"}, {"2015-16": "77.6"}]}}, {"state": "Uttar Pradesh", "figures": {"A": [{"2013-14": "75.4"}, {"2014-15": "75.6"}], "BE": [{"2014-15": "78.2"}, {"2015-16": "76.7"}, {"2016-17": "76.5"}], "RE": [{"2014-15": "75.5"}, {"2015-16": "76.4"}]}}, {"state": "Uttarakhand", "figures": {"A": [{"2013-14": "71"}, {"2014-15": "84.8"}], "BE": [{"2014-15": "99.2"}, {"2015-16": "98.3"}, {"2016-17": "92.9"}], "RE": [{"2014-15": "85.6"}, {"2015-16": "96"}]}}, {"state": "West Bengal", "figures": {"A": [{"2013-14": "80.2"}, {"2014-15": "73.9"}], "BE": [{"2014-15": "67.2"}, {"2015-16": "75.2"}, {"2016-17": "70.7"}], "RE": [{"2014-15": "67.5"}, {"2015-16": "71.8"}]}}], "indicator": "Revenue Expenditure as % of Total Sector Expenditure", "slugIndicator": "revenue_expenditure_as_of_total_sector_expenditure", "unit": "Percentage"}, {"stateFigures": [{"state": "Andhra Pradesh", "figures": {"A": [{"2013-14": "0.7"}, {"2014-15": ""}], "BE": [{"2014-15": "1.4"}, {"2015-16": "1.9"}, {"2016-17": "1.8"}], "RE": [{"2014-15": "1.4"}, {"2015-16": "1.3"}]}}, {"state": "Assam", "figures": {"A": [{"2013-14": "0.1"}, {"2014-15": "0.6"}], "BE": [{"2014-15": "1.7"}, {"2015-16": "34.7"}, {"2016-17": "7.2"}], "RE": [{"2014-15": "1.6"}, {"2015-16": "7.5"}]}}, {"state": "Bihar", "figures": {"A": [{"2013-14": "0.3"}, {"2014-15": "0.6"}], "BE": [{"2014-15": "0.8"}, {"2015-16": "12.4"}, {"2016-17": "0.6"}], "RE": [{"2014-15": "0.9"}, {"2015-16": "2.9"}]}}, {"state": "Chhattisgarh", "figures": {"A": [{"2013-14": "11.8"}, {"2014-15": "0.5"}], "BE": [{"2014-15": "2.3"}, {"2015-16": "6"}, {"2016-17": "2.5"}], "RE": [{"2014-15": "0.8"}, {"2015-16": "3.2"}]}}, {"state": "Delhi", "figures": {"A": [{"2013-14": "3.2"}, {"2014-15": "6"}], "BE": [{"2014-15": "6"}, {"2015-16": "5.9"}, {"2016-17": "4.7"}], "RE": [{"2014-15": "7.1"}, {"2015-16": "5.5"}]}}, {"state": "Gujarat", "figures": {"A": [{"2013-14": "6.3"}, {"2014-15": "3.5"}], "BE": [{"2014-15": "8.4"}, {"2015-16": "7.9"}, {"2016-17": "11.6"}], "RE": [{"2014-15": "3.7"}, {"2015-16": "7.6"}]}}, {"state": "Haryana", "figures": {"A": [{"2013-14": "0.8"}, {"2014-15": "0.3"}], "BE": [{"2014-15": "1.1"}, {"2015-16": "1.1"}, {"2016-17": "2.3"}], "RE": [{"2014-15": "1.2"}, {"2015-16": "9.5"}]}}, {"state": "Himachal Pradesh", "figures": {"A": [{"2013-14": "11.5"}, {"2014-15": "9.9"}], "BE": [{"2014-15": "8.7"}, {"2015-16": "8.1"}, {"2016-17": "7.9"}], "RE": [{"2014-15": "9.8"}, {"2015-16": "12.5"}]}}, {"state": "Jammu and Kashmir", "figures": {"A": [{"2013-14": "3.2"}, {"2014-15": "2"}], "BE": [{"2014-15": "26.6"}, {"2015-16": "29.5"}, {"2016-17": "40.6"}], "RE": [{"2014-15": "29.3"}, {"2015-16": "29.3"}]}}, {"state": "Jharkhand", "figures": {"A": [{"2013-14": "2.3"}, {"2014-15": "10.6"}], "BE": [{"2014-15": "8.7"}, {"2015-16": "9.2"}, {"2016-17": "27.9"}], "RE": [{"2014-15": "8.6"}, {"2015-16": "9"}]}}, {"state": "Karnataka", "figures": {"A": [{"2013-14": "5"}, {"2014-15": "3.2"}], "BE": [{"2014-15": "4.1"}, {"2015-16": "2.7"}, {"2016-17": "2.3"}], "RE": [{"2014-15": "4.1"}, {"2015-16": "1.9"}]}}, {"state": "Kerala", "figures": {"A": [{"2013-14": "10.9"}, {"2014-15": "9"}], "BE": [{"2014-15": "10.4"}, {"2015-16": "12.8"}, {"2016-17": "14.8"}], "RE": [{"2014-15": "12"}, {"2015-16": "15.7"}]}}, {"state": "Madhya Pradesh", "figures": {"A": [{"2013-14": "1.1"}, {"2014-15": "1.1"}], "BE": [{"2014-15": "0.4"}, {"2015-16": "0.9"}, {"2016-17": "0.5"}], "RE": [{"2014-15": "0.9"}, {"2015-16": "0.6"}]}}, {"state": "Maharashtra", "figures": {"A": [{"2013-14": "1.8"}, {"2014-15": "1.6"}], "BE": [{"2014-15": "1.8"}, {"2015-16": "2.1"}, {"2016-17": "1.9"}], "RE": [{"2014-15": "1.5"}, {"2015-16": "1.5"}]}}, {"state": "Meghalaya", "figures": {"A": [{"2013-14": "2.6"}, {"2014-15": "11.3"}], "BE": [{"2014-15": "21.3"}, {"2015-16": "17.7"}, {"2016-17": "13.7"}], "RE": [{"2014-15": "21.3"}, {"2015-16": "17.7"}]}}, {"state": "Mizoram", "figures": {"A": [{"2013-14": "2.6"}, {"2014-15": "0.9"}], "BE": [{"2014-15": "0.8"}, {"2015-16": "1.6"}, {"2016-17": "0"}], "RE": [{"2014-15": "0.8"}, {"2015-16": "1.9"}]}}, {"state": "Odisha", "figures": {"A": [{"2013-14": "1.1"}, {"2014-15": "6.9"}], "BE": [{"2014-15": "6.8"}, {"2015-16": "6.7"}, {"2016-17": "4.1"}], "RE": [{"2014-15": "5.8"}, {"2015-16": "6.2"}]}}, {"state": "Punjab", "figures": {"A": [{"2013-14": "4.3"}, {"2014-15": "0.3"}], "BE": [{"2014-15": "0.7"}, {"2015-16": "1"}, {"2016-17": "0.7"}], "RE": [{"2014-15": "0.4"}, {"2015-16": "0.6"}]}}, {"state": "Rajasthan", "figures": {"A": [{"2013-14": "8.2"}, {"2014-15": "10.9"}], "BE": [{"2014-15": "11.1"}, {"2015-16": "7.4"}, {"2016-17": "11.2"}], "RE": [{"2014-15": "9.9"}, {"2015-16": "7.9"}]}}, {"state": "Sikkim", "figures": {"A": [{"2013-14": "5.2"}, {"2014-15": "1.8"}], "BE": [{"2014-15": "1.9"}, {"2015-16": "2.5"}, {"2016-17": "9"}], "RE": [{"2014-15": "2.1"}, {"2015-16": "2.3"}]}}, {"state": "Tamil Nadu", "figures": {"A": [{"2013-14": "7.5"}, {"2014-15": "7.1"}], "BE": [{"2014-15": "7.6"}, {"2015-16": "10.2"}, {"2016-17": "10.9"}], "RE": [{"2014-15": "8.8"}, {"2015-16": "10"}]}}, {"state": "Telangana", "figures": {"A": [{"2013-14": ""}, {"2014-15": "1"}], "BE": [{"2014-15": "1.5"}, {"2015-16": "7.3"}, {"2016-17": "4.3"}], "RE": [{"2014-15": "1.5"}, {"2015-16": "8.1"}]}}, {"state": "Tripura", "figures": {"A": [{"2013-14": "14.9"}, {"2014-15": "12.5"}], "BE": [{"2014-15": "30.9"}, {"2015-16": "27.9"}, {"2016-17": "21.9"}], "RE": [{"2014-15": "26.2"}, {"2015-16": "22.4"}]}}, {"state": "Uttar Pradesh", "figures": {"A": [{"2013-14": "24.6"}, {"2014-15": "24.4"}], "BE": [{"2014-15": "21.8"}, {"2015-16": "23.3"}, {"2016-17": "23.5"}], "RE": [{"2014-15": "24.5"}, {"2015-16": "23.6"}]}}, {"state": "Uttarakhand", "figures": {"A": [{"2013-14": "29"}, {"2014-15": "15.2"}], "BE": [{"2014-15": "0.8"}, {"2015-16": "1.7"}, {"2016-17": "7.1"}], "RE": [{"2014-15": "14.4"}, {"2015-16": "4"}]}}, {"state": "West Bengal", "figures": {"A": [{"2013-14": "19.8"}, {"2014-15": "26.1"}], "BE": [{"2014-15": "32.8"}, {"2015-16": "24.8"}, {"2016-17": "29.3"}], "RE": [{"2014-15": "32.5"}, {"2015-16": "28.2"}]}}], "indicator": "Capital Expenditure (including Loans & Advances ) as % of Total Sector Expenditure", "slugIndicator": "capital_expenditure_including_loans_advances_as_of_total_sector_expenditure", "unit": "Percentage"}], "slugSector": "agriculture_allied_activities"}, {"sector": " Cooperation & Food, Civil Supplies ", "subIndicators": [{"stateFigures": [{"state": "Andhra Pradesh", "figures": {"A": [{"2013-14": "3426.5"}, {"2014-15": ""}], "BE": [{"2014-15": "2499.7"}, {"2015-16": "2634.1"}, {"2016-17": "2899.7"}], "RE": [{"2014-15": "2455.8"}, {"2015-16": "2632.4"}]}}, {"state": "Assam", "figures": {"A": [{"2013-14": "76.7"}, {"2014-15": "171.4"}], "BE": [{"2014-15": "498.7"}, {"2015-16": "314.1"}, {"2016-17": "902.9"}], "RE": [{"2014-15": "518.5"}, {"2015-16": "479"}]}}, {"state": "Bihar", "figures": {"A": [{"2013-14": "1153.7"}, {"2014-15": "1335.5"}], "BE": [{"2014-15": "1270.4"}, {"2015-16": "2879.8"}, {"2016-17": "2816"}], "RE": [{"2014-15": "2012.2"}, {"2015-16": "3309.3"}]}}, {"state": "Chhattisgarh", "figures": {"A": [{"2013-14": "6014.4"}, {"2014-15": "2810.9"}], "BE": [{"2014-15": "4631.7"}, {"2015-16": "8320.8"}, {"2016-17": "5020.9"}], "RE": [{"2014-15": "3949.6"}, {"2015-16": "7432.6"}]}}, {"state": "Delhi", "figures": {"A": [{"2013-14": "209.9"}, {"2014-15": "139.5"}], "BE": [{"2014-15": "209.3"}, {"2015-16": "181.2"}, {"2016-17": "249.7"}], "RE": [{"2014-15": "145.2"}, {"2015-16": "161"}]}}, {"state": "Gujarat", "figures": {"A": [{"2013-14": "350.8"}, {"2014-15": "477.8"}], "BE": [{"2014-15": "511.3"}, {"2015-16": "626.2"}, {"2016-17": "903.5"}], "RE": [{"2014-15": "493"}, {"2015-16": "585"}]}}, {"state": "Haryana", "figures": {"A": [{"2013-14": "-711.2321"}, {"2014-15": "-397.4314"}], "BE": [{"2014-15": "570.3572"}, {"2015-16": "361.3772"}, {"2016-17": "671.9539"}], "RE": [{"2014-15": "431.7655"}, {"2015-16": "522.8522"}]}}, {"state": "Himachal Pradesh", "figures": {"A": [{"2013-14": "330.8"}, {"2014-15": "287.5"}], "BE": [{"2014-15": "269"}, {"2015-16": "263.9"}, {"2016-17": "272.7"}], "RE": [{"2014-15": "287.5"}, {"2015-16": "218.9"}]}}, {"state": "Jammu and Kashmir", "figures": {"A": [{"2013-14": "883.7"}, {"2014-15": "957.4"}], "BE": [{"2014-15": "1004.3"}, {"2015-16": "994"}, {"2016-17": "769.5"}], "RE": [{"2014-15": "1022"}, {"2015-16": "1072"}]}}, {"state": "Jharkhand", "figures": {"A": [{"2013-14": "656.1"}, {"2014-15": "959"}], "BE": [{"2014-15": "1152.4"}, {"2015-16": "1369.6"}, {"2016-17": "1594.8"}], "RE": [{"2014-15": "1064.2"}, {"2015-16": "1037.5"}]}}, {"state": "Karnataka", "figures": {"A": [{"2013-14": "6339.2"}, {"2014-15": "3735.1"}], "BE": [{"2014-15": "4953.6"}, {"2015-16": "3441.8"}, {"2016-17": "3558.6"}], "RE": [{"2014-15": "3437.5"}, {"2015-16": "3509.1"}]}}, {"state": "Kerala", "figures": {"A": [{"2013-14": "1336.2"}, {"2014-15": "1608.9"}], "BE": [{"2014-15": "1278.7"}, {"2015-16": "1185.7"}, {"2016-17": "1378.3"}], "RE": [{"2014-15": "1423.3"}, {"2015-16": "1526.8"}]}}, {"state": "Madhya Pradesh", "figures": {"A": [{"2013-14": "2542.6"}, {"2014-15": "2919.2"}], "BE": [{"2014-15": "2987.6"}, {"2015-16": "2145"}, {"2016-17": "2360.5"}], "RE": [{"2014-15": "3391.6"}, {"2015-16": "3737.9"}]}}, {"state": "Maharashtra", "figures": {"A": [{"2013-14": "4741.6"}, {"2014-15": "8610.2"}], "BE": [{"2014-15": "4574.4"}, {"2015-16": "7797.3"}, {"2016-17": "7474.7"}], "RE": [{"2014-15": "7509.4"}, {"2015-16": "7722.5"}]}}, {"state": "Meghalaya", "figures": {"A": [{"2013-14": "42.7"}, {"2014-15": "42"}], "BE": [{"2014-15": "57.2"}, {"2015-16": "41.2"}, {"2016-17": "150.4"}], "RE": [{"2014-15": "57.2"}, {"2015-16": "41.2"}]}}, {"state": "Mizoram", "figures": {"A": [{"2013-14": "207.9"}, {"2014-15": "232.8"}], "BE": [{"2014-15": "281.8"}, {"2015-16": "305.5"}, {"2016-17": "272.7"}], "RE": [{"2014-15": "402.4"}, {"2015-16": "381"}]}}, {"state": "Odisha", "figures": {"A": [{"2013-14": "2042.4"}, {"2014-15": "2173.2"}], "BE": [{"2014-15": "2512.6"}, {"2015-16": "2451.7"}, {"2016-17": "2776.3"}], "RE": [{"2014-15": "2604.4"}, {"2015-16": "2302.9"}]}}, {"state": "Punjab", "figures": {"A": [{"2013-14": "677.5"}, {"2014-15": "611.5"}], "BE": [{"2014-15": "900"}, {"2015-16": "1342.6"}, {"2016-17": "1306.1"}], "RE": [{"2014-15": "686.2"}, {"2015-16": "1101.3"}]}}, {"state": "Rajasthan", "figures": {"A": [{"2013-14": "1499.1"}, {"2014-15": "1598.7"}], "BE": [{"2014-15": "1426.1"}, {"2015-16": "1185.1"}, {"2016-17": "1284.3"}], "RE": [{"2014-15": "1667.2"}, {"2015-16": "1049.3"}]}}, {"state": "Sikkim", "figures": {"A": [{"2013-14": "42.7"}, {"2014-15": "48.4"}], "BE": [{"2014-15": "51.6"}, {"2015-16": "44.4"}, {"2016-17": "43.8"}], "RE": [{"2014-15": "53.8"}, {"2015-16": "44.8"}]}}, {"state": "Tamil Nadu", "figures": {"A": [{"2013-14": "5606.2"}, {"2014-15": "5870.1"}], "BE": [{"2014-15": "6619.2"}, {"2015-16": "6716.1"}, {"2016-17": "8622.6"}], "RE": [{"2014-15": "6466.8"}, {"2015-16": "6419.8"}]}}, {"state": "Telangana", "figures": {"A": [{"2013-14": ""}, {"2014-15": "867.6"}], "BE": [{"2014-15": "1347.3"}, {"2015-16": "2579.5"}, {"2016-17": "2514.8"}], "RE": [{"2014-15": "1347.3"}, {"2015-16": "1945.3"}]}}, {"state": "Tripura", "figures": {"A": [{"2013-14": "100.8"}, {"2014-15": "121.7"}], "BE": [{"2014-15": "77.6"}, {"2015-16": "135.5"}, {"2016-17": "126"}], "RE": [{"2014-15": "134.4"}, {"2015-16": "112"}]}}, {"state": "Uttar Pradesh", "figures": {"A": [{"2013-14": "6245.6"}, {"2014-15": "7339.8"}], "BE": [{"2014-15": "9550.7"}, {"2015-16": "9311.8"}, {"2016-17": "8460.9"}], "RE": [{"2014-15": "9599.7"}, {"2015-16": "10093"}]}}, {"state": "Uttarakhand", "figures": {"A": [{"2013-14": "594.9"}, {"2014-15": "374.2"}], "BE": [{"2014-15": "283.2"}, {"2015-16": "386.4"}, {"2016-17": "414.2"}], "RE": [{"2014-15": "356.4"}, {"2015-16": "330.5"}]}}, {"state": "West Bengal", "figures": {"A": [{"2013-14": "2796"}, {"2014-15": "1504.5"}], "BE": [{"2014-15": "3439.1"}, {"2015-16": "1825.4"}, {"2016-17": "6090.9"}], "RE": [{"2014-15": "3362.1"}, {"2015-16": "3744.2"}]}}], "indicator": "Total Sector Expenditure", "slugIndicator": "total_sector_expenditure", "unit": "INR (in Crores)"}, {"stateFigures": [{"state": "Andhra Pradesh", "figures": {"A": [{"2013-14": "2.5"}, {"2014-15": ""}], "BE": [{"2014-15": "2.2"}, {"2015-16": "2.3"}, {"2016-17": "2.1"}], "RE": [{"2014-15": "2.2"}, {"2015-16": "2.3"}]}}, {"state": "Assam", "figures": {"A": [{"2013-14": "0.2"}, {"2014-15": "0.4"}], "BE": [{"2014-15": "0.9"}, {"2015-16": "0.5"}, {"2016-17": "1.2"}], "RE": [{"2014-15": "0.8"}, {"2015-16": "0.6"}]}}, {"state": "Bihar", "figures": {"A": [{"2013-14": "1.4"}, {"2014-15": "1.4"}], "BE": [{"2014-15": "1.1"}, {"2015-16": "2.4"}, {"2016-17": "1.9"}], "RE": [{"2014-15": "1.5"}, {"2015-16": "2.5"}]}}, {"state": "Chhattisgarh", "figures": {"A": [{"2013-14": "15.5"}, {"2014-15": "6.1"}], "BE": [{"2014-15": "8.5"}, {"2015-16": "12.8"}, {"2016-17": "7.2"}], "RE": [{"2014-15": "7.2"}, {"2015-16": "11.3"}]}}, {"state": "Delhi", "figures": {"A": [{"2013-14": "0.6"}, {"2014-15": ""}], "BE": [{"2014-15": "0.6"}, {"2015-16": "0.4"}, {"2016-17": "0.5"}], "RE": [{"2014-15": "0.4"}, {"2015-16": ""}]}}, {"state": "Gujarat", "figures": {"A": [{"2013-14": "0.3"}, {"2014-15": "0.4"}], "BE": [{"2014-15": "0.4"}, {"2015-16": "0.5"}, {"2016-17": "0.6"}], "RE": [{"2014-15": "0.4"}, {"2015-16": "0.4"}]}}, {"state": "Haryana", "figures": {"A": [{"2013-14": "-1.5"}, {"2014-15": "-0.7"}], "BE": [{"2014-15": "1"}, {"2015-16": "0.5"}, {"2016-17": "0.8"}], "RE": [{"2014-15": "0.7"}, {"2015-16": "0.6"}]}}, {"state": "Himachal Pradesh", "figures": {"A": [{"2013-14": "1.5"}, {"2014-15": "1.1"}], "BE": [{"2014-15": "1.1"}, {"2015-16": "0.9"}, {"2016-17": "0.8"}], "RE": [{"2014-15": "1.2"}, {"2015-16": "0.8"}]}}, {"state": "Jammu and Kashmir", "figures": {"A": [{"2013-14": "2.7"}, {"2014-15": "2.7"}], "BE": [{"2014-15": "2.3"}, {"2015-16": "2.1"}, {"2016-17": "1.4"}], "RE": [{"2014-15": "2.4"}, {"2015-16": "2.2"}]}}, {"state": "Jharkhand", "figures": {"A": [{"2013-14": "2.2"}, {"2014-15": "2.4"}], "BE": [{"2014-15": "2.3"}, {"2015-16": "2.5"}, {"2016-17": "2.5"}], "RE": [{"2014-15": "2.1"}, {"2015-16": "1.8"}]}}, {"state": "Karnataka", "figures": {"A": [{"2013-14": "5.9"}, {"2014-15": "3"}], "BE": [{"2014-15": "3.8"}, {"2015-16": "2.5"}, {"2016-17": "2.3"}], "RE": [{"2014-15": "2.7"}, {"2015-16": "2.5"}]}}, {"state": "Kerala", "figures": {"A": [{"2013-14": "2"}, {"2014-15": "2.1"}], "BE": [{"2014-15": "1.6"}, {"2015-16": "1.2"}, {"2016-17": "1.3"}], "RE": [{"2014-15": "1.8"}, {"2015-16": "1.7"}]}}, {"state": "Madhya Pradesh", "figures": {"A": [{"2013-14": "3"}, {"2014-15": "2.9"}], "BE": [{"2014-15": "2.6"}, {"2015-16": "1.6"}, {"2016-17": "1.6"}], "RE": [{"2014-15": "2.9"}, {"2015-16": "2.8"}]}}, {"state": "Maharashtra", "figures": {"A": [{"2013-14": "2.7"}, {"2014-15": "4.3"}], "BE": [{"2014-15": "2.2"}, {"2015-16": "3.4"}, {"2016-17": "2.9"}], "RE": [{"2014-15": "3.4"}, {"2015-16": "3.3"}]}}, {"state": "Meghalaya", "figures": {"A": [{"2013-14": "0.6"}, {"2014-15": "0.6"}], "BE": [{"2014-15": "0.5"}, {"2015-16": "0.4"}, {"2016-17": "1.4"}], "RE": [{"2014-15": "0.5"}, {"2015-16": "0.4"}]}}, {"state": "Mizoram", "figures": {"A": [{"2013-14": "3.7"}, {"2014-15": "3"}], "BE": [{"2014-15": "4.2"}, {"2015-16": "3.9"}, {"2016-17": "3.3"}], "RE": [{"2014-15": "5.3"}, {"2015-16": "4.5"}]}}, {"state": "Odisha", "figures": {"A": [{"2013-14": "3.6"}, {"2014-15": "3.3"}], "BE": [{"2014-15": "3.1"}, {"2015-16": "2.9"}, {"2016-17": "3"}], "RE": [{"2014-15": "3.4"}, {"2015-16": "2.7"}]}}, {"state": "Punjab", "figures": {"A": [{"2013-14": "1.1"}, {"2014-15": "0.8"}], "BE": [{"2014-15": "1.2"}, {"2015-16": "1.7"}, {"2016-17": "1.5"}], "RE": [{"2014-15": "0.9"}, {"2015-16": "1.4"}]}}, {"state": "Rajasthan", "figures": {"A": [{"2013-14": "1.6"}, {"2014-15": "1.4"}], "BE": [{"2014-15": "1.1"}, {"2015-16": "0.9"}, {"2016-17": "0.8"}], "RE": [{"2014-15": "1.3"}, {"2015-16": "0.8"}]}}, {"state": "Sikkim", "figures": {"A": [{"2013-14": "1"}, {"2014-15": "1"}], "BE": [{"2014-15": "0.8"}, {"2015-16": "0.8"}, {"2016-17": "0.8"}], "RE": [{"2014-15": "0.8"}, {"2015-16": "0.8"}]}}, {"state": "Tamil Nadu", "figures": {"A": [{"2013-14": "4.4"}, {"2014-15": "3.9"}], "BE": [{"2014-15": "4.3"}, {"2015-16": "3.8"}, {"2016-17": "4.6"}], "RE": [{"2014-15": "4"}, {"2015-16": "3.8"}]}}, {"state": "Telangana", "figures": {"A": [{"2013-14": ""}, {"2014-15": "1.4"}], "BE": [{"2014-15": "1.4"}, {"2015-16": "2.2"}, {"2016-17": "1.9"}], "RE": [{"2014-15": "1.4"}, {"2015-16": "1.9"}]}}, {"state": "Tripura", "figures": {"A": [{"2013-14": "1.3"}, {"2014-15": "1.1"}], "BE": [{"2014-15": "0.6"}, {"2015-16": "0.9"}, {"2016-17": "0.8"}], "RE": [{"2014-15": "1.1"}, {"2015-16": "0.9"}]}}, {"state": "Uttar Pradesh", "figures": {"A": [{"2013-14": "3.1"}, {"2014-15": "3.1"}], "BE": [{"2014-15": "3.5"}, {"2015-16": "3.1"}, {"2016-17": "2.4"}], "RE": [{"2014-15": "3.6"}, {"2015-16": "3.1"}]}}, {"state": "Uttarakhand", "figures": {"A": [{"2013-14": "2.7"}, {"2014-15": "1.4"}], "BE": [{"2014-15": "0.9"}, {"2015-16": "1.2"}, {"2016-17": "1"}], "RE": [{"2014-15": "1.1"}, {"2015-16": "1"}]}}, {"state": "West Bengal", "figures": {"A": [{"2013-14": "2.6"}, {"2014-15": "1.2"}], "BE": [{"2014-15": "2.6"}, {"2015-16": "1.3"}, {"2016-17": "3.8"}], "RE": [{"2014-15": "2.6"}, {"2015-16": "2.6"}]}}], "indicator": "Total Sector Expenditure as % of State Budget", "slugIndicator": "total_sector_expenditure_as_of_state_budget", "unit": "Percentage"}, {"stateFigures": [{"state": "Andhra Pradesh", "figures": {"A": [{"2013-14": "397.4"}, {"2014-15": ""}], "BE": [{"2014-15": "287.5"}, {"2015-16": "300.5"}, {"2016-17": "328.2"}], "RE": [{"2014-15": "282.4"}, {"2015-16": "300.3"}]}}, {"state": "Assam", "figures": {"A": [{"2013-14": "24.5"}, {"2014-15": "54.1"}], "BE": [{"2014-15": "157.4"}, {"2015-16": "98"}, {"2016-17": "278.2"}], "RE": [{"2014-15": "163.6"}, {"2015-16": "149.4"}]}}, {"state": "Bihar", "figures": {"A": [{"2013-14": "115"}, {"2014-15": "131.5"}], "BE": [{"2014-15": "125.1"}, {"2015-16": "280.3"}, {"2016-17": "271"}], "RE": [{"2014-15": "198.2"}, {"2015-16": "322.1"}]}}, {"state": "Chhattisgarh", "figures": {"A": [{"2013-14": "2414.6"}, {"2014-15": "1114"}], "BE": [{"2014-15": "1835.6"}, {"2015-16": "3256"}, {"2016-17": "1940.1"}], "RE": [{"2014-15": "1565.3"}, {"2015-16": "2908.5"}]}}, {"state": "Delhi", "figures": {"A": [{"2013-14": "107.5"}, {"2014-15": "69.4"}], "BE": [{"2014-15": "104.1"}, {"2015-16": "87.6"}, {"2016-17": "117.3"}], "RE": [{"2014-15": "72.3"}, {"2015-16": "77.9"}]}}, {"state": "Gujarat", "figures": {"A": [{"2013-14": "57.9"}, {"2014-15": "77.9"}], "BE": [{"2014-15": "83.4"}, {"2015-16": "100.9"}, {"2016-17": "143.8"}], "RE": [{"2014-15": "80.4"}, {"2015-16": "94.2"}]}}, {"state": "Haryana", "figures": {"A": [{"2013-14": "-270.8"}, {"2014-15": "-149"}], "BE": [{"2014-15": "213.8"}, {"2015-16": "133.5"}, {"2016-17": "244.6"}], "RE": [{"2014-15": "161.9"}, {"2015-16": "193.1"}]}}, {"state": "Himachal Pradesh", "figures": {"A": [{"2013-14": "478.2"}, {"2014-15": "412"}], "BE": [{"2014-15": "385.5"}, {"2015-16": "375.1"}, {"2016-17": "384.4"}], "RE": [{"2014-15": "411.9"}, {"2015-16": "311.1"}]}}, {"state": "Jammu and Kashmir", "figures": {"A": [{"2013-14": "735.8"}, {"2014-15": "787.9"}], "BE": [{"2014-15": "826.5"}, {"2015-16": "808.9"}, {"2016-17": "619.6"}], "RE": [{"2014-15": "841"}, {"2015-16": "872.3"}]}}, {"state": "Jharkhand", "figures": {"A": [{"2013-14": "202.9"}, {"2014-15": "292.7"}], "BE": [{"2014-15": "351.7"}, {"2015-16": "412.5"}, {"2016-17": "473.9"}], "RE": [{"2014-15": "324.8"}, {"2015-16": "312.5"}]}}, {"state": "Karnataka", "figures": {"A": [{"2013-14": "1045.7"}, {"2014-15": "610.2"}], "BE": [{"2014-15": "809.2"}, {"2015-16": "557"}, {"2016-17": "570.5"}], "RE": [{"2014-15": "561.5"}, {"2015-16": "567.8"}]}}, {"state": "Kerala", "figures": {"A": [{"2013-14": "381.4"}, {"2014-15": "456.3"}], "BE": [{"2014-15": "362.7"}, {"2015-16": "334.3"}, {"2016-17": "386.3"}], "RE": [{"2014-15": "403.7"}, {"2015-16": "430.4"}]}}, {"state": "Madhya Pradesh", "figures": {"A": [{"2013-14": "294.9"}, {"2014-15": "335.7"}], "BE": [{"2014-15": "343.6"}, {"2015-16": "244.7"}, {"2016-17": "267.1"}], "RE": [{"2014-15": "390.1"}, {"2015-16": "426.4"}]}}, {"state": "Maharashtra", "figures": {"A": [{"2013-14": "409.8"}, {"2014-15": "734.7"}], "BE": [{"2014-15": "390.3"}, {"2015-16": "657.2"}, {"2016-17": "622.5"}], "RE": [{"2014-15": "640.8"}, {"2015-16": "650.9"}]}}, {"state": "Meghalaya", "figures": {"A": [{"2013-14": "159"}, {"2014-15": "154.8"}], "BE": [{"2014-15": "211.1"}, {"2015-16": "150.3"}, {"2016-17": "542.3"}], "RE": [{"2014-15": "210.8"}, {"2015-16": "150.3"}]}}, {"state": "Mizoram", "figures": {"A": [{"2013-14": "2022"}, {"2014-15": "2240.9"}], "BE": [{"2014-15": "2712.5"}, {"2015-16": "2906.5"}, {"2016-17": "2565.6"}], "RE": [{"2014-15": "3873.3"}, {"2015-16": "3624.9"}]}}, {"state": "Odisha", "figures": {"A": [{"2013-14": "492.7"}, {"2014-15": "519.9"}], "BE": [{"2014-15": "601.1"}, {"2015-16": "581.8"}, {"2016-17": "653.6"}], "RE": [{"2014-15": "623.1"}, {"2015-16": "546.5"}]}}, {"state": "Punjab", "figures": {"A": [{"2013-14": "239.6"}, {"2014-15": "214"}], "BE": [{"2014-15": "315.1"}, {"2015-16": "465.4"}, {"2016-17": "448.6"}], "RE": [{"2014-15": "240.2"}, {"2015-16": "381.8"}]}}, {"state": "Rajasthan", "figures": {"A": [{"2013-14": "214.3"}, {"2014-15": "225.3"}], "BE": [{"2014-15": "200.9"}, {"2015-16": "164.7"}, {"2016-17": "176.1"}], "RE": [{"2014-15": "234.9"}, {"2015-16": "145.8"}]}}, {"state": "Sikkim", "figures": {"A": [{"2013-14": "681.6"}, {"2014-15": "765.3"}], "BE": [{"2014-15": "815.7"}, {"2015-16": "693.3"}, {"2016-17": "677.3"}], "RE": [{"2014-15": "849.3"}, {"2015-16": "699.9"}]}}, {"state": "Tamil Nadu", "figures": {"A": [{"2013-14": "821.2"}, {"2014-15": "855"}], "BE": [{"2014-15": "964.1"}, {"2015-16": "972.9"}, {"2016-17": "1242.5"}], "RE": [{"2014-15": "941.9"}, {"2015-16": "930"}]}}, {"state": "Telangana", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Tripura", "figures": {"A": [{"2013-14": "272.3"}, {"2014-15": "325.2"}], "BE": [{"2014-15": "207.4"}, {"2015-16": "358"}, {"2016-17": "329.4"}], "RE": [{"2014-15": "359.2"}, {"2015-16": "296"}]}}, {"state": "Uttar Pradesh", "figures": {"A": [{"2013-14": "300.6"}, {"2014-15": "347.5"}], "BE": [{"2014-15": "452.2"}, {"2015-16": "433.8"}, {"2016-17": "388"}], "RE": [{"2014-15": "454.5"}, {"2015-16": "470.2"}]}}, {"state": "Uttarakhand", "figures": {"A": [{"2013-14": "581.8"}, {"2014-15": "361.1"}], "BE": [{"2014-15": "273.3"}, {"2015-16": "368"}, {"2016-17": "389.6"}], "RE": [{"2014-15": "344"}, {"2015-16": "314.8"}]}}, {"state": "West Bengal", "figures": {"A": [{"2013-14": "306.8"}, {"2014-15": "163.7"}], "BE": [{"2014-15": "374.1"}, {"2015-16": "196.9"}, {"2016-17": "651.1"}], "RE": [{"2014-15": "365.8"}, {"2015-16": "403.8"}]}}], "indicator": "Per Capita Expenditure on Sector ", "slugIndicator": "per_capita_expenditure_on_sector", "unit": "INR Rs."}, {"stateFigures": [{"state": "Andhra Pradesh", "figures": {"A": [{"2013-14": "100"}, {"2014-15": ""}], "BE": [{"2014-15": "100"}, {"2015-16": "99.8"}, {"2016-17": "99.8"}], "RE": [{"2014-15": "100"}, {"2015-16": "99.8"}]}}, {"state": "Assam", "figures": {"A": [{"2013-14": "91.2"}, {"2014-15": "99.1"}], "BE": [{"2014-15": "99.3"}, {"2015-16": "96.8"}, {"2016-17": "99.7"}], "RE": [{"2014-15": "97.8"}, {"2015-16": "97.9"}]}}, {"state": "Bihar", "figures": {"A": [{"2013-14": "94.4"}, {"2014-15": "90.7"}], "BE": [{"2014-15": "95.4"}, {"2015-16": "94.3"}, {"2016-17": "95.1"}], "RE": [{"2014-15": "92"}, {"2015-16": "94.1"}]}}, {"state": "Chhattisgarh", "figures": {"A": [{"2013-14": "80.1"}, {"2014-15": "97.9"}], "BE": [{"2014-15": "97.8"}, {"2015-16": "98.1"}, {"2016-17": "97"}], "RE": [{"2014-15": "96.5"}, {"2015-16": "97.5"}]}}, {"state": "Delhi", "figures": {"A": [{"2013-14": "98.8"}, {"2014-15": "96.2"}], "BE": [{"2014-15": "94.1"}, {"2015-16": "97.2"}, {"2016-17": "98.7"}], "RE": [{"2014-15": "96.3"}, {"2015-16": "100"}]}}, {"state": "Gujarat", "figures": {"A": [{"2013-14": "97.1"}, {"2014-15": "98.5"}], "BE": [{"2014-15": "75.4"}, {"2015-16": "77.2"}, {"2016-17": "85"}], "RE": [{"2014-15": "96.2"}, {"2015-16": "81.3"}]}}, {"state": "Haryana", "figures": {"A": [{"2013-14": "-46.9"}, {"2014-15": "-110"}], "BE": [{"2014-15": "74.8"}, {"2015-16": "147"}, {"2016-17": "87"}], "RE": [{"2014-15": "101"}, {"2015-16": "126.7"}]}}, {"state": "Himachal Pradesh", "figures": {"A": [{"2013-14": "85.9"}, {"2014-15": "84.6"}], "BE": [{"2014-15": "100"}, {"2015-16": "99"}, {"2016-17": "99.3"}], "RE": [{"2014-15": "84.6"}, {"2015-16": "98.5"}]}}, {"state": "Jammu and Kashmir", "figures": {"A": [{"2013-14": "0.8"}, {"2014-15": "0.8"}], "BE": [{"2014-15": "2.8"}, {"2015-16": "0.9"}, {"2016-17": "20.4"}], "RE": [{"2014-15": "0.8"}, {"2015-16": "0.9"}]}}, {"state": "Jharkhand", "figures": {"A": [{"2013-14": "98.4"}, {"2014-15": "97.9"}], "BE": [{"2014-15": "96.9"}, {"2015-16": "97.5"}, {"2016-17": "93.7"}], "RE": [{"2014-15": "97"}, {"2015-16": "96.7"}]}}, {"state": "Karnataka", "figures": {"A": [{"2013-14": "99.4"}, {"2014-15": "99.3"}], "BE": [{"2014-15": "99.4"}, {"2015-16": "96.3"}, {"2016-17": "98.3"}], "RE": [{"2014-15": "99.3"}, {"2015-16": "97"}]}}, {"state": "Kerala", "figures": {"A": [{"2013-14": "91"}, {"2014-15": "83.1"}], "BE": [{"2014-15": "90.7"}, {"2015-16": "88.2"}, {"2016-17": "89.2"}], "RE": [{"2014-15": "86.3"}, {"2015-16": "90.4"}]}}, {"state": "Madhya Pradesh", "figures": {"A": [{"2013-14": "86.6"}, {"2014-15": "85.4"}], "BE": [{"2014-15": "89.7"}, {"2015-16": "83.7"}, {"2016-17": "83.5"}], "RE": [{"2014-15": "86.6"}, {"2015-16": "74.3"}]}}, {"state": "Maharashtra", "figures": {"A": [{"2013-14": "28.1"}, {"2014-15": "24"}], "BE": [{"2014-15": "43.2"}, {"2015-16": "28.8"}, {"2016-17": "36.8"}], "RE": [{"2014-15": "29.3"}, {"2015-16": "39.7"}]}}, {"state": "Meghalaya", "figures": {"A": [{"2013-14": "80.6"}, {"2014-15": "86.3"}], "BE": [{"2014-15": "73.7"}, {"2015-16": "77.5"}, {"2016-17": "88.8"}], "RE": [{"2014-15": "73.7"}, {"2015-16": "77.5"}]}}, {"state": "Mizoram", "figures": {"A": [{"2013-14": "44.8"}, {"2014-15": "37.9"}], "BE": [{"2014-15": "30.1"}, {"2015-16": "29.2"}, {"2016-17": "31.5"}], "RE": [{"2014-15": "27"}, {"2015-16": "27.5"}]}}, {"state": "Odisha", "figures": {"A": [{"2013-14": "93.3"}, {"2014-15": "97.2"}], "BE": [{"2014-15": "88.8"}, {"2015-16": "90.1"}, {"2016-17": "89.2"}], "RE": [{"2014-15": "88.7"}, {"2015-16": "92"}]}}, {"state": "Punjab", "figures": {"A": [{"2013-14": "81.5"}, {"2014-15": "56.4"}], "BE": [{"2014-15": "76.9"}, {"2015-16": "49.3"}, {"2016-17": "73.2"}], "RE": [{"2014-15": "53.9"}, {"2015-16": "58.6"}]}}, {"state": "Rajasthan", "figures": {"A": [{"2013-14": "88"}, {"2014-15": "90.4"}], "BE": [{"2014-15": "85.3"}, {"2015-16": "90.1"}, {"2016-17": "85.1"}], "RE": [{"2014-15": "88.9"}, {"2015-16": "90.9"}]}}, {"state": "Sikkim", "figures": {"A": [{"2013-14": "91.1"}, {"2014-15": "83"}], "BE": [{"2014-15": "80.9"}, {"2015-16": "86.2"}, {"2016-17": "92.1"}], "RE": [{"2014-15": "78.8"}, {"2015-16": "85.7"}]}}, {"state": "Tamil Nadu", "figures": {"A": [{"2013-14": "97.4"}, {"2014-15": "95.3"}], "BE": [{"2014-15": "89.4"}, {"2015-16": "89.6"}, {"2016-17": "92.7"}], "RE": [{"2014-15": "91.3"}, {"2015-16": "93.7"}]}}, {"state": "Telangana", "figures": {"A": [{"2013-14": ""}, {"2014-15": "100"}], "BE": [{"2014-15": "99.6"}, {"2015-16": "100"}, {"2016-17": "100"}], "RE": [{"2014-15": "99.6"}, {"2015-16": "100"}]}}, {"state": "Tripura", "figures": {"A": [{"2013-14": "88.2"}, {"2014-15": "94.2"}], "BE": [{"2014-15": "94.8"}, {"2015-16": "93.1"}, {"2016-17": "88"}], "RE": [{"2014-15": "93.4"}, {"2015-16": "91.1"}]}}, {"state": "Uttar Pradesh", "figures": {"A": [{"2013-14": "16.6"}, {"2014-15": "17.4"}], "BE": [{"2014-15": "13.3"}, {"2015-16": "7.5"}, {"2016-17": "9.2"}], "RE": [{"2014-15": "13.6"}, {"2015-16": "6.6"}]}}, {"state": "Uttarakhand", "figures": {"A": [{"2013-14": "10.5"}, {"2014-15": "64.9"}], "BE": [{"2014-15": "95.8"}, {"2015-16": "94.8"}, {"2016-17": "95.4"}], "RE": [{"2014-15": "96.2"}, {"2015-16": "93"}]}}, {"state": "West Bengal", "figures": {"A": [{"2013-14": "95.9"}, {"2014-15": "89.3"}], "BE": [{"2014-15": "95.4"}, {"2015-16": "89.7"}, {"2016-17": "96.3"}], "RE": [{"2014-15": "94.8"}, {"2015-16": "93.4"}]}}], "indicator": "Revenue Expenditure as % of Total Sector Expenditure", "slugIndicator": "revenue_expenditure_as_of_total_sector_expenditure", "unit": "Percentage"}, {"stateFigures": [{"state": "Andhra Pradesh", "figures": {"A": [{"2013-14": "0.044"}, {"2014-15": ""}], "BE": [{"2014-15": "0"}, {"2015-16": "0.204"}, {"2016-17": "0.169"}], "RE": [{"2014-15": "0"}, {"2015-16": "0.228"}]}}, {"state": "Assam", "figures": {"A": [{"2013-14": "10.428"}, {"2014-15": "0.916"}], "BE": [{"2014-15": "0.702"}, {"2015-16": "3.17"}, {"2016-17": "0.338"}], "RE": [{"2014-15": "2.193"}, {"2015-16": "2.125"}]}}, {"state": "Bihar", "figures": {"A": [{"2013-14": "5.557"}, {"2014-15": "9.265"}], "BE": [{"2014-15": "4.587"}, {"2015-16": "5.709"}, {"2016-17": "4.9"}], "RE": [{"2014-15": "7.98"}, {"2015-16": "5.86"}]}}, {"state": "Chhattisgarh", "figures": {"A": [{"2013-14": "19.948"}, {"2014-15": "2.055"}], "BE": [{"2014-15": "2.198"}, {"2015-16": "1.945"}, {"2016-17": "2.958"}], "RE": [{"2014-15": "3.468"}, {"2015-16": "2.475"}]}}, {"state": "Delhi", "figures": {"A": [{"2013-14": "1.166"}, {"2014-15": "3.811"}], "BE": [{"2014-15": "5.902"}, {"2015-16": "2.76"}, {"2016-17": "1.281"}], "RE": [{"2014-15": "3.718"}, {"2015-16": "0"}]}}, {"state": "Gujarat", "figures": {"A": [{"2013-14": "2.876"}, {"2014-15": "1.483"}], "BE": [{"2014-15": "24.641"}, {"2015-16": "22.825"}, {"2016-17": "15.013"}], "RE": [{"2014-15": "3.76"}, {"2015-16": "18.714"}]}}, {"state": "Haryana", "figures": {"A": [{"2013-14": "146.908"}, {"2014-15": "210.038"}], "BE": [{"2014-15": "25.198"}, {"2015-16": "-47.026"}, {"2016-17": "13.014"}], "RE": [{"2014-15": "-1.037"}, {"2015-16": "-26.717"}]}}, {"state": "Himachal Pradesh", "figures": {"A": [{"2013-14": "14.131"}, {"2014-15": "15.406"}], "BE": [{"2014-15": "0"}, {"2015-16": "0.997"}, {"2016-17": "0.719"}], "RE": [{"2014-15": "15.407"}, {"2015-16": "1.452"}]}}, {"state": "Jammu and Kashmir", "figures": {"A": [{"2013-14": "99.181"}, {"2014-15": "99.221"}], "BE": [{"2014-15": "97.239"}, {"2015-16": "99.073"}, {"2016-17": "79.552"}], "RE": [{"2014-15": "99.188"}, {"2015-16": "99.123"}]}}, {"state": "Jharkhand", "figures": {"A": [{"2013-14": "1.623"}, {"2014-15": "2.112"}], "BE": [{"2014-15": "3.121"}, {"2015-16": "2.468"}, {"2016-17": "6.348"}], "RE": [{"2014-15": "3.004"}, {"2015-16": "3.258"}]}}, {"state": "Karnataka", "figures": {"A": [{"2013-14": "0.589"}, {"2014-15": "0.664"}], "BE": [{"2014-15": "0.609"}, {"2015-16": "3.715"}, {"2016-17": "1.725"}], "RE": [{"2014-15": "0.733"}, {"2015-16": "3.034"}]}}, {"state": "Kerala", "figures": {"A": [{"2013-14": "8.968"}, {"2014-15": "16.926"}], "BE": [{"2014-15": "9.271"}, {"2015-16": "11.799"}, {"2016-17": "10.763"}], "RE": [{"2014-15": "13.67"}, {"2015-16": "9.567"}]}}, {"state": "Madhya Pradesh", "figures": {"A": [{"2013-14": "13.396"}, {"2014-15": "14.559"}], "BE": [{"2014-15": "10.306"}, {"2015-16": "16.331"}, {"2016-17": "16.549"}], "RE": [{"2014-15": "13.413"}, {"2015-16": "25.689"}]}}, {"state": "Maharashtra", "figures": {"A": [{"2013-14": "71.947"}, {"2014-15": "75.989"}], "BE": [{"2014-15": "56.754"}, {"2015-16": "71.156"}, {"2016-17": "63.248"}], "RE": [{"2014-15": "70.721"}, {"2015-16": "60.334"}]}}, {"state": "Meghalaya", "figures": {"A": [{"2013-14": "19.436"}, {"2014-15": "13.693"}], "BE": [{"2014-15": "26.292"}, {"2015-16": "22.509"}, {"2016-17": "11.245"}], "RE": [{"2014-15": "26.334"}, {"2015-16": "22.509"}]}}, {"state": "Mizoram", "figures": {"A": [{"2013-14": "55.213"}, {"2014-15": "62.117"}], "BE": [{"2014-15": "69.853"}, {"2015-16": "70.773"}, {"2016-17": "68.452"}], "RE": [{"2014-15": "73.044"}, {"2015-16": "72.524"}]}}, {"state": "Odisha", "figures": {"A": [{"2013-14": "6.704"}, {"2014-15": "2.787"}], "BE": [{"2014-15": "11.168"}, {"2015-16": "9.889"}, {"2016-17": "10.788"}], "RE": [{"2014-15": "11.259"}, {"2015-16": "7.996"}]}}, {"state": "Punjab", "figures": {"A": [{"2013-14": "18.548"}, {"2014-15": "43.588"}], "BE": [{"2014-15": "23.132"}, {"2015-16": "50.652"}, {"2016-17": "26.802"}], "RE": [{"2014-15": "46.129"}, {"2015-16": "41.431"}]}}, {"state": "Rajasthan", "figures": {"A": [{"2013-14": "12.012"}, {"2014-15": "9.639"}], "BE": [{"2014-15": "14.668"}, {"2015-16": "9.933"}, {"2016-17": "14.908"}], "RE": [{"2014-15": "11.107"}, {"2015-16": "9.138"}]}}, {"state": "Sikkim", "figures": {"A": [{"2013-14": "8.945"}, {"2014-15": "16.991"}], "BE": [{"2014-15": "19.105"}, {"2015-16": "13.803"}, {"2016-17": "7.872"}], "RE": [{"2014-15": "21.188"}, {"2015-16": "14.335"}]}}, {"state": "Tamil Nadu", "figures": {"A": [{"2013-14": "2.618"}, {"2014-15": "4.729"}], "BE": [{"2014-15": "10.63"}, {"2015-16": "10.375"}, {"2016-17": "7.292"}], "RE": [{"2014-15": "8.691"}, {"2015-16": "6.254"}]}}, {"state": "Telangana", "figures": {"A": [{"2013-14": ""}, {"2014-15": "0"}], "BE": [{"2014-15": "0.404"}, {"2015-16": "0"}, {"2016-17": "0"}], "RE": [{"2014-15": "0.404"}, {"2015-16": "0"}]}}, {"state": "Tripura", "figures": {"A": [{"2013-14": "11.798"}, {"2014-15": "5.787"}], "BE": [{"2014-15": "5.169"}, {"2015-16": "6.94"}, {"2016-17": "12.048"}], "RE": [{"2014-15": "6.561"}, {"2015-16": "8.907"}]}}, {"state": "Uttar Pradesh", "figures": {"A": [{"2013-14": "83.423"}, {"2014-15": "82.603"}], "BE": [{"2014-15": "86.716"}, {"2015-16": "92.511"}, {"2016-17": "90.77"}], "RE": [{"2014-15": "86.417"}, {"2015-16": "93.412"}]}}, {"state": "Uttarakhand", "figures": {"A": [{"2013-14": "89.485"}, {"2014-15": "35.149"}], "BE": [{"2014-15": "4.237"}, {"2015-16": "5.177"}, {"2016-17": "4.585"}], "RE": [{"2014-15": "3.775"}, {"2015-16": "7.02"}]}}, {"state": "West Bengal", "figures": {"A": [{"2013-14": "6.225"}, {"2014-15": "10.706"}], "BE": [{"2014-15": "4.605"}, {"2015-16": "10.286"}, {"2016-17": "3.711"}], "RE": [{"2014-15": "5.19"}, {"2015-16": "6.572"}]}}], "indicator": "Capital Expenditure (including Loans & Advances ) as % of Total Sector Expenditure", "slugIndicator": "capital_expenditure_including_loans_advances_as_of_total_sector_expenditure", "unit": "Percentage"}], "slugSector": "cooperation_food_civil_supplies"}, {"sector": " Rural Development", "subIndicators": [{"stateFigures": [{"state": "Andhra Pradesh", "figures": {"A": [{"2013-14": "4157.1"}, {"2014-15": ""}], "BE": [{"2014-15": "6094.4"}, {"2015-16": "8185.9"}, {"2016-17": "10434.8"}], "RE": [{"2014-15": "6269"}, {"2015-16": "14388.2"}]}}, {"state": "Assam", "figures": {"A": [{"2013-14": "332.3"}, {"2014-15": "1691"}], "BE": [{"2014-15": "2806.2"}, {"2015-16": "3286.5"}, {"2016-17": "4069.9"}], "RE": [{"2014-15": "2806.5"}, {"2015-16": "3298.7"}]}}, {"state": "Bihar", "figures": {"A": [{"2013-14": "4052.4"}, {"2014-15": "7411.8"}], "BE": [{"2014-15": "12048.7"}, {"2015-16": "12037.2"}, {"2016-17": "12660.6"}], "RE": [{"2014-15": "12438.3"}, {"2015-16": "14433.7"}]}}, {"state": "Chhattisgarh", "figures": {"A": [{"2013-14": "3264.3"}, {"2014-15": "5704.3"}], "BE": [{"2014-15": "7583.3"}, {"2015-16": "8126.9"}, {"2016-17": "6007.3"}], "RE": [{"2014-15": "8138.9"}, {"2015-16": "8479.5"}]}}, {"state": "Delhi", "figures": {"A": [{"2013-14": "164"}, {"2014-15": "11.5"}], "BE": [{"2014-15": "203"}, {"2015-16": "177"}, {"2016-17": "170.1"}], "RE": [{"2014-15": "100.3"}, {"2015-16": "102"}]}}, {"state": "Gujarat", "figures": {"A": [{"2013-14": "3021.8"}, {"2014-15": "3251.3"}], "BE": [{"2014-15": "4424.9"}, {"2015-16": "4646.1"}, {"2016-17": "5212.8"}], "RE": [{"2014-15": "4010.6"}, {"2015-16": "5011.7"}]}}, {"state": "Haryana", "figures": {"A": [{"2013-14": "1728.3"}, {"2014-15": "1844.1"}], "BE": [{"2014-15": "2327.2"}, {"2015-16": "2753.8"}, {"2016-17": "2853.9"}], "RE": [{"2014-15": "2275.1"}, {"2015-16": "2522.1"}]}}, {"state": "Himachal Pradesh", "figures": {"A": [{"2013-14": "400.9"}, {"2014-15": "839.9"}], "BE": [{"2014-15": "507.2"}, {"2015-16": "1186.4"}, {"2016-17": "1220.2"}], "RE": [{"2014-15": "839.8"}, {"2015-16": "982.6"}]}}, {"state": "Jammu and Kashmir", "figures": {"A": [{"2013-14": "906.7"}, {"2014-15": "658.6"}], "BE": [{"2014-15": "2146.1"}, {"2015-16": "2264.8"}, {"2016-17": "3142"}], "RE": [{"2014-15": "2529.8"}, {"2015-16": "2511.5"}]}}, {"state": "Jharkhand", "figures": {"A": [{"2013-14": "1816.3"}, {"2014-15": "3236.2"}], "BE": [{"2014-15": "4720.1"}, {"2015-16": "4639.6"}, {"2016-17": "6292.3"}], "RE": [{"2014-15": "4996.9"}, {"2015-16": "5585"}]}}, {"state": "Karnataka", "figures": {"A": [{"2013-14": "8069.1"}, {"2014-15": "10208.6"}], "BE": [{"2014-15": "13170.3"}, {"2015-16": "11487.9"}, {"2016-17": "14574"}], "RE": [{"2014-15": "13841.9"}, {"2015-16": "11577"}]}}, {"state": "Kerala", "figures": {"A": [{"2013-14": "399.9"}, {"2014-15": "2071.3"}], "BE": [{"2014-15": "339.1"}, {"2015-16": "2456.5"}, {"2016-17": "3032.7"}], "RE": [{"2014-15": "357.6"}, {"2015-16": "1763"}]}}, {"state": "Madhya Pradesh", "figures": {"A": [{"2013-14": "915.9"}, {"2014-15": "1522.2"}], "BE": [{"2014-15": "3195.3"}, {"2015-16": "3224.6"}, {"2016-17": "3065.4"}], "RE": [{"2014-15": "2733.7"}, {"2015-16": "2715.7"}]}}, {"state": "Maharashtra", "figures": {"A": [{"2013-14": "8500.1"}, {"2014-15": "11002"}], "BE": [{"2014-15": "12165.4"}, {"2015-16": "12187.8"}, {"2016-17": "14734.4"}], "RE": [{"2014-15": "14239.6"}, {"2015-16": "13907"}]}}, {"state": "Meghalaya", "figures": {"A": [{"2013-14": "350.6"}, {"2014-15": "568.4"}], "BE": [{"2014-15": "351.1"}, {"2015-16": "612.4"}, {"2016-17": "910"}], "RE": [{"2014-15": "672.9"}, {"2015-16": "612.4"}]}}, {"state": "Mizoram", "figures": {"A": [{"2013-14": "120.8"}, {"2014-15": "301.8"}], "BE": [{"2014-15": "370.7"}, {"2015-16": "383.1"}, {"2016-17": "358"}], "RE": [{"2014-15": "299.9"}, {"2015-16": "369.4"}]}}, {"state": "Odisha", "figures": {"A": [{"2013-14": "1988.8"}, {"2014-15": "3837.9"}], "BE": [{"2014-15": "4677.4"}, {"2015-16": "5975"}, {"2016-17": "6489.9"}], "RE": [{"2014-15": "4890.2"}, {"2015-16": "6705.5"}]}}, {"state": "Punjab", "figures": {"A": [{"2013-14": "1239.9"}, {"2014-15": "1493.6"}], "BE": [{"2014-15": "1938"}, {"2015-16": "1113"}, {"2016-17": "1569.1"}], "RE": [{"2014-15": "1395"}, {"2015-16": "1324.6"}]}}, {"state": "Rajasthan", "figures": {"A": [{"2013-14": "5600.5"}, {"2014-15": "11123.2"}], "BE": [{"2014-15": "14298.2"}, {"2015-16": "13298.8"}, {"2016-17": "15124.7"}], "RE": [{"2014-15": "12618.1"}, {"2015-16": "14363.6"}]}}, {"state": "Sikkim", "figures": {"A": [{"2013-14": "184.6"}, {"2014-15": "379.3"}], "BE": [{"2014-15": "461.1"}, {"2015-16": "341.4"}, {"2016-17": "330"}], "RE": [{"2014-15": "486.2"}, {"2015-16": "350"}]}}, {"state": "Tamil Nadu", "figures": {"A": [{"2013-14": "10149.7"}, {"2014-15": "14068.9"}], "BE": [{"2014-15": "12636.7"}, {"2015-16": "18089.9"}, {"2016-17": "20830.1"}], "RE": [{"2014-15": "16925.4"}, {"2015-16": "17114.6"}]}}, {"state": "Telangana", "figures": {"A": [{"2013-14": ""}, {"2014-15": "3725.7"}], "BE": [{"2014-15": "5415.5"}, {"2015-16": "6256.7"}, {"2016-17": "6344.5"}], "RE": [{"2014-15": "5415.5"}, {"2015-16": "6736.4"}]}}, {"state": "Tripura", "figures": {"A": [{"2013-14": "150.2"}, {"2014-15": "394.8"}], "BE": [{"2014-15": "728.6"}, {"2015-16": "584.9"}, {"2016-17": "542.7"}], "RE": [{"2014-15": "391.2"}, {"2015-16": "528.1"}]}}, {"state": "Uttar Pradesh", "figures": {"A": [{"2013-14": "3857.2"}, {"2014-15": "9980.8"}], "BE": [{"2014-15": "10999.9"}, {"2015-16": "12038.6"}, {"2016-17": "13213"}], "RE": [{"2014-15": "11595.4"}, {"2015-16": "11919.3"}]}}, {"state": "Uttarakhand", "figures": {"A": [{"2013-14": "551"}, {"2014-15": "1671.7"}], "BE": [{"2014-15": "1075.5"}, {"2015-16": "1471.2"}, {"2016-17": "1884.9"}], "RE": [{"2014-15": "1872.4"}, {"2015-16": "1470.7"}]}}, {"state": "West Bengal", "figures": {"A": [{"2013-14": "6607.1"}, {"2014-15": "13902.1"}], "BE": [{"2014-15": "9970.5"}, {"2015-16": "10938.9"}, {"2016-17": "14287.4"}], "RE": [{"2014-15": "14180.9"}, {"2015-16": "18089.7"}]}}], "indicator": "Total Sector Expenditure", "slugIndicator": "total_sector_expenditure", "unit": "INR (in Crores)"}, {"stateFigures": [{"state": "Andhra Pradesh", "figures": {"A": [{"2013-14": "3"}, {"2014-15": ""}], "BE": [{"2014-15": "5.5"}, {"2015-16": "7.2"}, {"2016-17": "7.7"}], "RE": [{"2014-15": "5.6"}, {"2015-16": "12.8"}]}}, {"state": "Assam", "figures": {"A": [{"2013-14": "0.9"}, {"2014-15": "3.6"}], "BE": [{"2014-15": "4.8"}, {"2015-16": "5"}, {"2016-17": "5.2"}], "RE": [{"2014-15": "4.3"}, {"2015-16": "4.4"}]}}, {"state": "Bihar", "figures": {"A": [{"2013-14": "5"}, {"2014-15": "7.8"}], "BE": [{"2014-15": "10.3"}, {"2015-16": "10"}, {"2016-17": "8.7"}], "RE": [{"2014-15": "9.4"}, {"2015-16": "10.9"}]}}, {"state": "Chhattisgarh", "figures": {"A": [{"2013-14": "8.4"}, {"2014-15": "12.3"}], "BE": [{"2014-15": "13.9"}, {"2015-16": "12.5"}, {"2016-17": "8.6"}], "RE": [{"2014-15": "14.8"}, {"2015-16": "12.9"}]}}, {"state": "Delhi", "figures": {"A": [{"2013-14": "0.5"}, {"2014-15": ""}], "BE": [{"2014-15": "0.6"}, {"2015-16": "0.4"}, {"2016-17": "0.4"}], "RE": [{"2014-15": "0.3"}, {"2015-16": ""}]}}, {"state": "Gujarat", "figures": {"A": [{"2013-14": "2.9"}, {"2014-15": "2.8"}], "BE": [{"2014-15": "3.4"}, {"2015-16": "3.4"}, {"2016-17": "3.5"}], "RE": [{"2014-15": "3.2"}, {"2015-16": "3.8"}]}}, {"state": "Haryana", "figures": {"A": [{"2013-14": "3.7"}, {"2014-15": "3.4"}], "BE": [{"2014-15": "3.9"}, {"2015-16": "4"}, {"2016-17": "3.2"}], "RE": [{"2014-15": "3.7"}, {"2015-16": "3"}]}}, {"state": "Himachal Pradesh", "figures": {"A": [{"2013-14": "1.8"}, {"2014-15": "3.3"}], "BE": [{"2014-15": "2.1"}, {"2015-16": "4.1"}, {"2016-17": "3.8"}], "RE": [{"2014-15": "3.5"}, {"2015-16": "3.6"}]}}, {"state": "Jammu and Kashmir", "figures": {"A": [{"2013-14": "2.8"}, {"2014-15": "1.8"}], "BE": [{"2014-15": "4.9"}, {"2015-16": "4.9"}, {"2016-17": "5.5"}], "RE": [{"2014-15": "5.9"}, {"2015-16": "5.1"}]}}, {"state": "Jharkhand", "figures": {"A": [{"2013-14": "6"}, {"2014-15": "8.1"}], "BE": [{"2014-15": "9.4"}, {"2015-16": "8.4"}, {"2016-17": "9.9"}], "RE": [{"2014-15": "9.8"}, {"2015-16": "10"}]}}, {"state": "Karnataka", "figures": {"A": [{"2013-14": "7.6"}, {"2014-15": "8.2"}], "BE": [{"2014-15": "10"}, {"2015-16": "8.4"}, {"2016-17": "9.3"}], "RE": [{"2014-15": "10.8"}, {"2015-16": "8.3"}]}}, {"state": "Kerala", "figures": {"A": [{"2013-14": "0.6"}, {"2014-15": "2.7"}], "BE": [{"2014-15": "0.4"}, {"2015-16": "2.6"}, {"2016-17": "2.8"}], "RE": [{"2014-15": "0.4"}, {"2015-16": "2"}]}}, {"state": "Madhya Pradesh", "figures": {"A": [{"2013-14": "1.1"}, {"2014-15": "1.5"}], "BE": [{"2014-15": "2.7"}, {"2015-16": "2.5"}, {"2016-17": "2"}], "RE": [{"2014-15": "2.3"}, {"2015-16": "2"}]}}, {"state": "Maharashtra", "figures": {"A": [{"2013-14": "4.8"}, {"2014-15": "5.6"}], "BE": [{"2014-15": "5.7"}, {"2015-16": "5.3"}, {"2016-17": "5.7"}], "RE": [{"2014-15": "6.5"}, {"2015-16": "5.9"}]}}, {"state": "Meghalaya", "figures": {"A": [{"2013-14": "5"}, {"2014-15": "7.4"}], "BE": [{"2014-15": "3"}, {"2015-16": "6.4"}, {"2016-17": "8.7"}], "RE": [{"2014-15": "5.7"}, {"2015-16": "6.4"}]}}, {"state": "Mizoram", "figures": {"A": [{"2013-14": "2.1"}, {"2014-15": "3.9"}], "BE": [{"2014-15": "5.6"}, {"2015-16": "4.9"}, {"2016-17": "4.4"}], "RE": [{"2014-15": "4"}, {"2015-16": "4.4"}]}}, {"state": "Odisha", "figures": {"A": [{"2013-14": "3.5"}, {"2014-15": "5.8"}], "BE": [{"2014-15": "5.8"}, {"2015-16": "7.1"}, {"2016-17": "6.9"}], "RE": [{"2014-15": "6.3"}, {"2015-16": "7.9"}]}}, {"state": "Punjab", "figures": {"A": [{"2013-14": "2"}, {"2014-15": "2"}], "BE": [{"2014-15": "2.6"}, {"2015-16": "1.4"}, {"2016-17": "1.8"}], "RE": [{"2014-15": "1.9"}, {"2015-16": "1.7"}]}}, {"state": "Rajasthan", "figures": {"A": [{"2013-14": "6"}, {"2014-15": "9.5"}], "BE": [{"2014-15": "10.9"}, {"2015-16": "9.7"}, {"2016-17": "10"}], "RE": [{"2014-15": "10"}, {"2015-16": "10.4"}]}}, {"state": "Sikkim", "figures": {"A": [{"2013-14": "4.2"}, {"2014-15": "8"}], "BE": [{"2014-15": "7.1"}, {"2015-16": "6.4"}, {"2016-17": "6"}], "RE": [{"2014-15": "7.3"}, {"2015-16": "6.4"}]}}, {"state": "Tamil Nadu", "figures": {"A": [{"2013-14": "7.9"}, {"2014-15": "9.4"}], "BE": [{"2014-15": "8.3"}, {"2015-16": "10.4"}, {"2016-17": "11"}], "RE": [{"2014-15": "10.5"}, {"2015-16": "10"}]}}, {"state": "Telangana", "figures": {"A": [{"2013-14": ""}, {"2014-15": "6"}], "BE": [{"2014-15": "5.6"}, {"2015-16": "5.4"}, {"2016-17": "4.9"}], "RE": [{"2014-15": "5.6"}, {"2015-16": "6.7"}]}}, {"state": "Tripura", "figures": {"A": [{"2013-14": "1.9"}, {"2014-15": "3.7"}], "BE": [{"2014-15": "5.9"}, {"2015-16": "3.9"}, {"2016-17": "3.6"}], "RE": [{"2014-15": "3.2"}, {"2015-16": "4.1"}]}}, {"state": "Uttar Pradesh", "figures": {"A": [{"2013-14": "1.9"}, {"2014-15": "4.2"}], "BE": [{"2014-15": "4"}, {"2015-16": "4"}, {"2016-17": "3.8"}], "RE": [{"2014-15": "4.4"}, {"2015-16": "3.6"}]}}, {"state": "Uttarakhand", "figures": {"A": [{"2013-14": "2.5"}, {"2014-15": "6.1"}], "BE": [{"2014-15": "3.5"}, {"2015-16": "4.5"}, {"2016-17": "4.7"}], "RE": [{"2014-15": "5.8"}, {"2015-16": "4.4"}]}}, {"state": "West Bengal", "figures": {"A": [{"2013-14": "6.1"}, {"2014-15": "11.3"}], "BE": [{"2014-15": "7.7"}, {"2015-16": "7.9"}, {"2016-17": "9"}], "RE": [{"2014-15": "10.9"}, {"2015-16": "12.5"}]}}], "indicator": "Total Sector Expenditure as % of State Budget", "slugIndicator": "total_sector_expenditure_as_of_state_budget", "unit": "Percentage"}, {"stateFigures": [{"state": "Andhra Pradesh", "figures": {"A": [{"2013-14": "482.1"}, {"2014-15": ""}], "BE": [{"2014-15": "700.9"}, {"2015-16": "933.8"}, {"2016-17": "1180.9"}], "RE": [{"2014-15": "721"}, {"2015-16": "1641.3"}]}}, {"state": "Assam", "figures": {"A": [{"2013-14": "106.1"}, {"2014-15": "533.6"}], "BE": [{"2014-15": "885.4"}, {"2015-16": "1024.8"}, {"2016-17": "1254.2"}], "RE": [{"2014-15": "885.5"}, {"2015-16": "1028.6"}]}}, {"state": "Bihar", "figures": {"A": [{"2013-14": "404.1"}, {"2014-15": "730"}], "BE": [{"2014-15": "1186.8"}, {"2015-16": "1171.7"}, {"2016-17": "1218.4"}], "RE": [{"2014-15": "1225.1"}, {"2015-16": "1405"}]}}, {"state": "Chhattisgarh", "figures": {"A": [{"2013-14": "1310.5"}, {"2014-15": "2260.8"}], "BE": [{"2014-15": "3005.4"}, {"2015-16": "3180.2"}, {"2016-17": "2321.3"}], "RE": [{"2014-15": "3225.6"}, {"2015-16": "3318.1"}]}}, {"state": "Delhi", "figures": {"A": [{"2013-14": "84"}, {"2014-15": "5.7"}], "BE": [{"2014-15": "101"}, {"2015-16": "85.6"}, {"2016-17": "79.9"}], "RE": [{"2014-15": "49.9"}, {"2015-16": "49.3"}]}}, {"state": "Gujarat", "figures": {"A": [{"2013-14": "498.9"}, {"2014-15": "530.1"}], "BE": [{"2014-15": "721.5"}, {"2015-16": "748.4"}, {"2016-17": "829.7"}], "RE": [{"2014-15": "653.9"}, {"2015-16": "807.3"}]}}, {"state": "Haryana", "figures": {"A": [{"2013-14": "658"}, {"2014-15": "691.3"}], "BE": [{"2014-15": "872.4"}, {"2015-16": "1017"}, {"2016-17": "1038.7"}], "RE": [{"2014-15": "852.9"}, {"2015-16": "931.4"}]}}, {"state": "Himachal Pradesh", "figures": {"A": [{"2013-14": "579.5"}, {"2014-15": "1203.7"}], "BE": [{"2014-15": "726.8"}, {"2015-16": "1686"}, {"2016-17": "1719.9"}], "RE": [{"2014-15": "1203.6"}, {"2015-16": "1396.3"}]}}, {"state": "Jammu and Kashmir", "figures": {"A": [{"2013-14": "755"}, {"2014-15": "542"}], "BE": [{"2014-15": "1766.1"}, {"2015-16": "1843"}, {"2016-17": "2530"}], "RE": [{"2014-15": "2081.8"}, {"2015-16": "2043.7"}]}}, {"state": "Jharkhand", "figures": {"A": [{"2013-14": "561.7"}, {"2014-15": "987.7"}], "BE": [{"2014-15": "1440.6"}, {"2015-16": "1397.3"}, {"2016-17": "1869.8"}], "RE": [{"2014-15": "1525"}, {"2015-16": "1682.1"}]}}, {"state": "Karnataka", "figures": {"A": [{"2013-14": "1331"}, {"2014-15": "1667.7"}], "BE": [{"2014-15": "2151.5"}, {"2015-16": "1859"}, {"2016-17": "2336.6"}], "RE": [{"2014-15": "2261.2"}, {"2015-16": "1873.4"}]}}, {"state": "Kerala", "figures": {"A": [{"2013-14": "114.1"}, {"2014-15": "587.5"}], "BE": [{"2014-15": "96.2"}, {"2015-16": "692.5"}, {"2016-17": "850"}], "RE": [{"2014-15": "101.4"}, {"2015-16": "497"}]}}, {"state": "Madhya Pradesh", "figures": {"A": [{"2013-14": "106.2"}, {"2014-15": "175.1"}], "BE": [{"2014-15": "367.5"}, {"2015-16": "367.8"}, {"2016-17": "346.9"}], "RE": [{"2014-15": "314.4"}, {"2015-16": "309.8"}]}}, {"state": "Maharashtra", "figures": {"A": [{"2013-14": "734.7"}, {"2014-15": "938.8"}], "BE": [{"2014-15": "1038.1"}, {"2015-16": "1027.2"}, {"2016-17": "1227.1"}], "RE": [{"2014-15": "1215.1"}, {"2015-16": "1172.1"}]}}, {"state": "Meghalaya", "figures": {"A": [{"2013-14": "1307.3"}, {"2014-15": "2095.7"}], "BE": [{"2014-15": "1294.7"}, {"2015-16": "2232.7"}, {"2016-17": "3281.7"}], "RE": [{"2014-15": "2481.1"}, {"2015-16": "2232.7"}]}}, {"state": "Mizoram", "figures": {"A": [{"2013-14": "1175.4"}, {"2014-15": "2904.5"}], "BE": [{"2014-15": "3567.9"}, {"2015-16": "3644.9"}, {"2016-17": "3367.9"}], "RE": [{"2014-15": "2886.2"}, {"2015-16": "3514.8"}]}}, {"state": "Odisha", "figures": {"A": [{"2013-14": "479.8"}, {"2014-15": "918.2"}], "BE": [{"2014-15": "1119.1"}, {"2015-16": "1418"}, {"2016-17": "1527.8"}], "RE": [{"2014-15": "1170"}, {"2015-16": "1591.3"}]}}, {"state": "Punjab", "figures": {"A": [{"2013-14": "438.5"}, {"2014-15": "522.8"}], "BE": [{"2014-15": "678.4"}, {"2015-16": "385.8"}, {"2016-17": "539"}], "RE": [{"2014-15": "488.3"}, {"2015-16": "459.2"}]}}, {"state": "Rajasthan", "figures": {"A": [{"2013-14": "800.8"}, {"2014-15": "1567.3"}], "BE": [{"2014-15": "2014.7"}, {"2015-16": "1847.8"}, {"2016-17": "2073.4"}], "RE": [{"2014-15": "1778"}, {"2015-16": "1995.7"}]}}, {"state": "Sikkim", "figures": {"A": [{"2013-14": "2948.1"}, {"2014-15": "5991.7"}], "BE": [{"2014-15": "7284.4"}, {"2015-16": "5334.5"}, {"2016-17": "5101"}], "RE": [{"2014-15": "7680.7"}, {"2015-16": "5468.5"}]}}, {"state": "Tamil Nadu", "figures": {"A": [{"2013-14": "1486.8"}, {"2014-15": "2049.2"}], "BE": [{"2014-15": "1840.6"}, {"2015-16": "2620.6"}, {"2016-17": "3001.6"}], "RE": [{"2014-15": "2465.3"}, {"2015-16": "2479.3"}]}}, {"state": "Telangana", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Tripura", "figures": {"A": [{"2013-14": "406"}, {"2014-15": "1055"}], "BE": [{"2014-15": "1947.1"}, {"2015-16": "1545.6"}, {"2016-17": "1418.5"}], "RE": [{"2014-15": "1045.4"}, {"2015-16": "1395.5"}]}}, {"state": "Uttar Pradesh", "figures": {"A": [{"2013-14": "185.7"}, {"2014-15": "472.5"}], "BE": [{"2014-15": "520.8"}, {"2015-16": "560.8"}, {"2016-17": "605.9"}], "RE": [{"2014-15": "549"}, {"2015-16": "555.2"}]}}, {"state": "Uttarakhand", "figures": {"A": [{"2013-14": "538.9"}, {"2014-15": "1613.3"}], "BE": [{"2014-15": "1038"}, {"2015-16": "1401.3"}, {"2016-17": "1772.9"}], "RE": [{"2014-15": "1806.9"}, {"2015-16": "1400.8"}]}}, {"state": "West Bengal", "figures": {"A": [{"2013-14": "725.1"}, {"2014-15": "1512.4"}], "BE": [{"2014-15": "1084.7"}, {"2015-16": "1179.7"}, {"2016-17": "1527.2"}], "RE": [{"2014-15": "1542.7"}, {"2015-16": "1950.9"}]}}], "indicator": "Per Capita Expenditure on Sector ", "slugIndicator": "per_capita_expenditure_on_sector", "unit": "INR Rs."}, {"stateFigures": [{"state": "Andhra Pradesh", "figures": {"A": [{"2013-14": "100"}, {"2014-15": ""}], "BE": [{"2014-15": "100"}, {"2015-16": "100"}, {"2016-17": "100"}], "RE": [{"2014-15": "100"}, {"2015-16": "100"}]}}, {"state": "Assam", "figures": {"A": [{"2013-14": "100"}, {"2014-15": "100"}], "BE": [{"2014-15": "100"}, {"2015-16": "100"}, {"2016-17": "100"}], "RE": [{"2014-15": "100"}, {"2015-16": "100"}]}}, {"state": "Bihar", "figures": {"A": [{"2013-14": "58.8"}, {"2014-15": "45.9"}], "BE": [{"2014-15": "65.1"}, {"2015-16": "53"}, {"2016-17": "53.7"}], "RE": [{"2014-15": "63.1"}, {"2015-16": "50.3"}]}}, {"state": "Chhattisgarh", "figures": {"A": [{"2013-14": "79.1"}, {"2014-15": "75.5"}], "BE": [{"2014-15": "77.8"}, {"2015-16": "68"}, {"2016-17": "63.1"}], "RE": [{"2014-15": "76.7"}, {"2015-16": "68.4"}]}}, {"state": "Delhi", "figures": {"A": [{"2013-14": "1.2"}, {"2014-15": "15"}], "BE": [{"2014-15": "1.2"}, {"2015-16": "1.1"}, {"2016-17": "0.6"}], "RE": [{"2014-15": "1.8"}, {"2015-16": "1.9"}]}}, {"state": "Gujarat", "figures": {"A": [{"2013-14": "99.9"}, {"2014-15": "99.9"}], "BE": [{"2014-15": "99.9"}, {"2015-16": "99.9"}, {"2016-17": "99.9"}], "RE": [{"2014-15": "100"}, {"2015-16": "99.9"}]}}, {"state": "Haryana", "figures": {"A": [{"2013-14": "99.9"}, {"2014-15": "100"}], "BE": [{"2014-15": "100"}, {"2015-16": "99.9"}, {"2016-17": "99.9"}], "RE": [{"2014-15": "100"}, {"2015-16": "100"}]}}, {"state": "Himachal Pradesh", "figures": {"A": [{"2013-14": "100"}, {"2014-15": "99.8"}], "BE": [{"2014-15": "99.7"}, {"2015-16": "99.9"}, {"2016-17": "99.8"}], "RE": [{"2014-15": "99.8"}, {"2015-16": "99.4"}]}}, {"state": "Jammu and Kashmir", "figures": {"A": [{"2013-14": "74.4"}, {"2014-15": "99.9"}], "BE": [{"2014-15": "38.8"}, {"2015-16": "38.2"}, {"2016-17": "32.8"}], "RE": [{"2014-15": "31.6"}, {"2015-16": "39.5"}]}}, {"state": "Jharkhand", "figures": {"A": [{"2013-14": "36.7"}, {"2014-15": "59.2"}], "BE": [{"2014-15": "75.9"}, {"2015-16": "72.1"}, {"2016-17": "72.1"}], "RE": [{"2014-15": "71.8"}, {"2015-16": "67.7"}]}}, {"state": "Karnataka", "figures": {"A": [{"2013-14": "92.4"}, {"2014-15": "75.3"}], "BE": [{"2014-15": "92"}, {"2015-16": "81.1"}, {"2016-17": "78.7"}], "RE": [{"2014-15": "92.4"}, {"2015-16": "84.6"}]}}, {"state": "Kerala", "figures": {"A": [{"2013-14": "99.5"}, {"2014-15": "100"}], "BE": [{"2014-15": "99.7"}, {"2015-16": "100"}, {"2016-17": "100"}], "RE": [{"2014-15": "99.7"}, {"2015-16": "100"}]}}, {"state": "Madhya Pradesh", "figures": {"A": [{"2013-14": "71.8"}, {"2014-15": "38.5"}], "BE": [{"2014-15": "28.8"}, {"2015-16": "23.1"}, {"2016-17": "27.7"}], "RE": [{"2014-15": "34"}, {"2015-16": "23.4"}]}}, {"state": "Maharashtra", "figures": {"A": [{"2013-14": "93.7"}, {"2014-15": "92"}], "BE": [{"2014-15": "80.5"}, {"2015-16": "78.3"}, {"2016-17": "84"}], "RE": [{"2014-15": "83.5"}, {"2015-16": "78.3"}]}}, {"state": "Meghalaya", "figures": {"A": [{"2013-14": "99.9"}, {"2014-15": "100"}], "BE": [{"2014-15": "99.8"}, {"2015-16": "99.9"}, {"2016-17": "99.7"}], "RE": [{"2014-15": "99.9"}, {"2015-16": "99.9"}]}}, {"state": "Mizoram", "figures": {"A": [{"2013-14": "63.7"}, {"2014-15": "82.6"}], "BE": [{"2014-15": "89.3"}, {"2015-16": "89.4"}, {"2016-17": "88.7"}], "RE": [{"2014-15": "81"}, {"2015-16": "88.1"}]}}, {"state": "Odisha", "figures": {"A": [{"2013-14": "61.5"}, {"2014-15": "42.3"}], "BE": [{"2014-15": "36.2"}, {"2015-16": "40"}, {"2016-17": "39.6"}], "RE": [{"2014-15": "48.5"}, {"2015-16": "36.6"}]}}, {"state": "Punjab", "figures": {"A": [{"2013-14": "89.5"}, {"2014-15": "93.8"}], "BE": [{"2014-15": "85.8"}, {"2015-16": "88.8"}, {"2016-17": "91"}], "RE": [{"2014-15": "87.7"}, {"2015-16": "92.4"}]}}, {"state": "Rajasthan", "figures": {"A": [{"2013-14": "85.8"}, {"2014-15": "93.5"}], "BE": [{"2014-15": "94.6"}, {"2015-16": "93.7"}, {"2016-17": "94.3"}], "RE": [{"2014-15": "94"}, {"2015-16": "94.4"}]}}, {"state": "Sikkim", "figures": {"A": [{"2013-14": "64.8"}, {"2014-15": "44.4"}], "BE": [{"2014-15": "54.6"}, {"2015-16": "57.7"}, {"2016-17": "60"}], "RE": [{"2014-15": "50.5"}, {"2015-16": "55.7"}]}}, {"state": "Tamil Nadu", "figures": {"A": [{"2013-14": "68.9"}, {"2014-15": "93.2"}], "BE": [{"2014-15": "74.9"}, {"2015-16": "90.2"}, {"2016-17": "95.6"}], "RE": [{"2014-15": "89.3"}, {"2015-16": "92.5"}]}}, {"state": "Telangana", "figures": {"A": [{"2013-14": ""}, {"2014-15": "99.6"}], "BE": [{"2014-15": "100"}, {"2015-16": "100"}, {"2016-17": "100"}], "RE": [{"2014-15": "100"}, {"2015-16": "100"}]}}, {"state": "Tripura", "figures": {"A": [{"2013-14": "44.3"}, {"2014-15": "23.8"}], "BE": [{"2014-15": "16.1"}, {"2015-16": "20.2"}, {"2016-17": "19.8"}], "RE": [{"2014-15": "27.8"}, {"2015-16": "25"}]}}, {"state": "Uttar Pradesh", "figures": {"A": [{"2013-14": "35.5"}, {"2014-15": "15.8"}], "BE": [{"2014-15": "17.9"}, {"2015-16": "15.2"}, {"2016-17": "15.1"}], "RE": [{"2014-15": "16"}, {"2015-16": "14.3"}]}}, {"state": "Uttarakhand", "figures": {"A": [{"2013-14": "56.8"}, {"2014-15": "61.7"}], "BE": [{"2014-15": "75.8"}, {"2015-16": "56.6"}, {"2016-17": "59"}], "RE": [{"2014-15": "57.8"}, {"2015-16": "55.4"}]}}, {"state": "West Bengal", "figures": {"A": [{"2013-14": "99"}, {"2014-15": "100"}], "BE": [{"2014-15": "99.5"}, {"2015-16": "99.9"}, {"2016-17": "99.9"}], "RE": [{"2014-15": "99.4"}, {"2015-16": "99.8"}]}}], "indicator": "Revenue Expenditure as % of Total Sector Expenditure", "slugIndicator": "revenue_expenditure_as_of_total_sector_expenditure", "unit": "Percentage"}, {"stateFigures": [{"state": "Andhra Pradesh", "figures": {"A": [{"2013-14": "0"}, {"2014-15": ""}], "BE": [{"2014-15": "0"}, {"2015-16": "0"}, {"2016-17": "0"}], "RE": [{"2014-15": "0"}, {"2015-16": "0"}]}}, {"state": "Assam", "figures": {"A": [{"2013-14": "0"}, {"2014-15": "0"}], "BE": [{"2014-15": "0"}, {"2015-16": "0"}, {"2016-17": "0"}], "RE": [{"2014-15": "0"}, {"2015-16": "0"}]}}, {"state": "Bihar", "figures": {"A": [{"2013-14": "41.2"}, {"2014-15": "54.1"}], "BE": [{"2014-15": "34.9"}, {"2015-16": "47"}, {"2016-17": "46.3"}], "RE": [{"2014-15": "0.2"}, {"2015-16": "49.7"}]}}, {"state": "Chhattisgarh", "figures": {"A": [{"2013-14": "20.9"}, {"2014-15": "24.5"}], "BE": [{"2014-15": "22.2"}, {"2015-16": "32"}, {"2016-17": "36.9"}], "RE": [{"2014-15": "23.3"}, {"2015-16": "31.6"}]}}, {"state": "Delhi", "figures": {"A": [{"2013-14": "98.8"}, {"2014-15": "85"}], "BE": [{"2014-15": "98.8"}, {"2015-16": "98.9"}, {"2016-17": "99.4"}], "RE": [{"2014-15": "98.2"}, {"2015-16": "98.1"}]}}, {"state": "Gujarat", "figures": {"A": [{"2013-14": "0.1"}, {"2014-15": "0.1"}], "BE": [{"2014-15": "0.1"}, {"2015-16": "0.1"}, {"2016-17": "0.1"}], "RE": [{"2014-15": "0"}, {"2015-16": "0.1"}]}}, {"state": "Haryana", "figures": {"A": [{"2013-14": "0.1"}, {"2014-15": "0"}], "BE": [{"2014-15": "0"}, {"2015-16": "0.1"}, {"2016-17": "0.1"}], "RE": [{"2014-15": "0"}, {"2015-16": "0"}]}}, {"state": "Himachal Pradesh", "figures": {"A": [{"2013-14": "0"}, {"2014-15": "0.2"}], "BE": [{"2014-15": "0.3"}, {"2015-16": "0.1"}, {"2016-17": "0.2"}], "RE": [{"2014-15": "0.2"}, {"2015-16": "0.6"}]}}, {"state": "Jammu and Kashmir", "figures": {"A": [{"2013-14": "25.6"}, {"2014-15": "0.1"}], "BE": [{"2014-15": "61.2"}, {"2015-16": "61.8"}, {"2016-17": "67.2"}], "RE": [{"2014-15": "68.4"}, {"2015-16": "60.5"}]}}, {"state": "Jharkhand", "figures": {"A": [{"2013-14": "63.3"}, {"2014-15": "40.8"}], "BE": [{"2014-15": "24.1"}, {"2015-16": "27.9"}, {"2016-17": "27.9"}], "RE": [{"2014-15": "28.2"}, {"2015-16": "32.3"}]}}, {"state": "Karnataka", "figures": {"A": [{"2013-14": "7.6"}, {"2014-15": "24.7"}], "BE": [{"2014-15": "8"}, {"2015-16": "18.9"}, {"2016-17": "21.3"}], "RE": [{"2014-15": "7.6"}, {"2015-16": "15.4"}]}}, {"state": "Kerala", "figures": {"A": [{"2013-14": "0.5"}, {"2014-15": "0"}], "BE": [{"2014-15": "0.3"}, {"2015-16": "0"}, {"2016-17": "0"}], "RE": [{"2014-15": "0.3"}, {"2015-16": "0"}]}}, {"state": "Madhya Pradesh", "figures": {"A": [{"2013-14": "28.2"}, {"2014-15": "61.5"}], "BE": [{"2014-15": "71.2"}, {"2015-16": "76.9"}, {"2016-17": "72.3"}], "RE": [{"2014-15": "66"}, {"2015-16": "76.6"}]}}, {"state": "Maharashtra", "figures": {"A": [{"2013-14": "6.3"}, {"2014-15": "8"}], "BE": [{"2014-15": "19.5"}, {"2015-16": "21.7"}, {"2016-17": "16"}], "RE": [{"2014-15": "16.5"}, {"2015-16": "21.7"}]}}, {"state": "Meghalaya", "figures": {"A": [{"2013-14": "0.1"}, {"2014-15": "0"}], "BE": [{"2014-15": "0.2"}, {"2015-16": "0.1"}, {"2016-17": "0.3"}], "RE": [{"2014-15": "0.1"}, {"2015-16": "0.1"}]}}, {"state": "Mizoram", "figures": {"A": [{"2013-14": "36.3"}, {"2014-15": "17.4"}], "BE": [{"2014-15": "10.7"}, {"2015-16": "10.6"}, {"2016-17": "11.3"}], "RE": [{"2014-15": "19"}, {"2015-16": "11.9"}]}}, {"state": "Odisha", "figures": {"A": [{"2013-14": "38.5"}, {"2014-15": "57.7"}], "BE": [{"2014-15": "63.8"}, {"2015-16": "60"}, {"2016-17": "60.4"}], "RE": [{"2014-15": "51.5"}, {"2015-16": "63.4"}]}}, {"state": "Punjab", "figures": {"A": [{"2013-14": "10.5"}, {"2014-15": "6.2"}], "BE": [{"2014-15": "14.2"}, {"2015-16": "11.2"}, {"2016-17": "9"}], "RE": [{"2014-15": "12.3"}, {"2015-16": "7.6"}]}}, {"state": "Rajasthan", "figures": {"A": [{"2013-14": "14.2"}, {"2014-15": "6.5"}], "BE": [{"2014-15": "5.4"}, {"2015-16": "6.3"}, {"2016-17": "5.7"}], "RE": [{"2014-15": "6"}, {"2015-16": "5.6"}]}}, {"state": "Sikkim", "figures": {"A": [{"2013-14": "35.2"}, {"2014-15": "55.6"}], "BE": [{"2014-15": "45.4"}, {"2015-16": "42.3"}, {"2016-17": "40"}], "RE": [{"2014-15": "49.5"}, {"2015-16": "44.3"}]}}, {"state": "Tamil Nadu", "figures": {"A": [{"2013-14": "31.1"}, {"2014-15": "6.8"}], "BE": [{"2014-15": "25.1"}, {"2015-16": "9.8"}, {"2016-17": "4.4"}], "RE": [{"2014-15": "10.7"}, {"2015-16": "7.5"}]}}, {"state": "Telangana", "figures": {"A": [{"2013-14": ""}, {"2014-15": "0.367"}], "BE": [{"2014-15": "0"}, {"2015-16": "0"}, {"2016-17": "0"}], "RE": [{"2014-15": "0"}, {"2015-16": "0"}]}}, {"state": "Tripura", "figures": {"A": [{"2013-14": "55.7"}, {"2014-15": "76.2"}], "BE": [{"2014-15": "83.9"}, {"2015-16": "79.8"}, {"2016-17": "80.2"}], "RE": [{"2014-15": "72.2"}, {"2015-16": "75"}]}}, {"state": "Uttar Pradesh", "figures": {"A": [{"2013-14": "64.5"}, {"2014-15": "84.2"}], "BE": [{"2014-15": "82.1"}, {"2015-16": "84.8"}, {"2016-17": "84.9"}], "RE": [{"2014-15": "84"}, {"2015-16": "85.7"}]}}, {"state": "Uttarakhand", "figures": {"A": [{"2013-14": "43.2"}, {"2014-15": "38.3"}], "BE": [{"2014-15": "24.2"}, {"2015-16": "43.4"}, {"2016-17": "41"}], "RE": [{"2014-15": "42.2"}, {"2015-16": "44.6"}]}}, {"state": "West Bengal", "figures": {"A": [{"2013-14": "1"}, {"2014-15": "0"}], "BE": [{"2014-15": "0"}, {"2015-16": "0.1"}, {"2016-17": "0.1"}], "RE": [{"2014-15": "0.4"}, {"2015-16": "0.2"}]}}], "indicator": "Capital Expenditure (including Loans & Advances ) as % of Total Sector Expenditure", "slugIndicator": "capital_expenditure_including_loans_advances_as_of_total_sector_expenditure", "unit": "Percentage"}], "slugSector": "rural_development"}, {"sector": " Panchayat", "subIndicators": [{"stateFigures": [{"state": "Andhra Pradesh", "figures": {"A": [{"2013-14": "4721.8"}, {"2014-15": ""}], "BE": [{"2014-15": "5522.3"}, {"2015-16": "4276.3"}, {"2016-17": "5753.9"}], "RE": [{"2014-15": "5494.4"}, {"2015-16": "4419.6"}]}}, {"state": "Assam", "figures": {"A": [{"2013-14": "1001.4"}, {"2014-15": "1800.3"}], "BE": [{"2014-15": "3303.3"}, {"2015-16": "1890"}, {"2016-17": "2801.8"}], "RE": [{"2014-15": "3359.1"}, {"2015-16": "2756.5"}]}}, {"state": "Bihar", "figures": {"A": [{"2013-14": "2974.9"}, {"2014-15": "2373.4"}], "BE": [{"2014-15": "4325.8"}, {"2015-16": "4364.3"}, {"2016-17": "7183.9"}], "RE": [{"2014-15": "4471.2"}, {"2015-16": "4531.1"}]}}, {"state": "Chhattisgarh", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Delhi", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Gujarat", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Haryana", "figures": {"A": [{"2013-14": "136.2"}, {"2014-15": "144.6"}], "BE": [{"2014-15": "193.7"}, {"2015-16": "213.2"}, {"2016-17": "247.6"}], "RE": [{"2014-15": "246.6"}, {"2015-16": "307.8"}]}}, {"state": "Himachal Pradesh", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Jammu and Kashmir", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Jharkhand", "figures": {"A": [{"2013-14": "832.1"}, {"2014-15": "1461.6"}], "BE": [{"2014-15": "1750.9"}, {"2015-16": "1526.7"}, {"2016-17": "1422.1"}], "RE": [{"2014-15": "2111.4"}, {"2015-16": "1243"}]}}, {"state": "Karnataka", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Kerala", "figures": {"A": [{"2013-14": "5284.2"}, {"2014-15": "6926.8"}], "BE": [{"2014-15": "6759.6"}, {"2015-16": "7381.2"}, {"2016-17": "8445.4"}], "RE": [{"2014-15": "7106.8"}, {"2015-16": "7182.6"}]}}, {"state": "Madhya Pradesh", "figures": {"A": [{"2013-14": "8815.6"}, {"2014-15": "12585.8"}], "BE": [{"2014-15": "16942.6"}, {"2015-16": "16217.8"}, {"2016-17": "23131.1"}], "RE": [{"2014-15": "17027.3"}, {"2015-16": "17560.4"}]}}, {"state": "Maharashtra", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Meghalaya", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Mizoram", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Odisha", "figures": {"A": [{"2013-14": "3329.4"}, {"2014-15": "4810.9"}], "BE": [{"2014-15": "6824.2"}, {"2015-16": "7057.1"}, {"2016-17": "8458.9"}], "RE": [{"2014-15": "6595.2"}, {"2015-16": "8419.8"}]}}, {"state": "Punjab", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Rajasthan", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Sikkim", "figures": {"A": [{"2013-14": "354.1"}, {"2014-15": "357.7"}], "BE": [{"2014-15": "413"}, {"2015-16": "395.3"}, {"2016-17": "455.5"}], "RE": [{"2014-15": "394.9"}, {"2015-16": "392"}]}}, {"state": "Tamil Nadu", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Telangana", "figures": {"A": [{"2013-14": ""}, {"2014-15": "2953.8"}], "BE": [{"2014-15": "8623"}, {"2015-16": "7577.5"}, {"2016-17": "4686.2"}], "RE": [{"2014-15": "8623"}, {"2015-16": "5472.2"}]}}, {"state": "Tripura", "figures": {"A": [{"2013-14": "175.2"}, {"2014-15": "251.6"}], "BE": [{"2014-15": "275.1"}, {"2015-16": "363.5"}, {"2016-17": "227.9"}], "RE": [{"2014-15": "264.1"}, {"2015-16": "211.3"}]}}, {"state": "Uttar Pradesh", "figures": {"A": [{"2013-14": "5664.7"}, {"2014-15": "4968.5"}], "BE": [{"2014-15": "6489.2"}, {"2015-16": "7674.3"}, {"2016-17": "9187.7"}], "RE": [{"2014-15": "7190.9"}, {"2015-16": "7632.9"}]}}, {"state": "Uttarakhand", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "West Bengal", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}], "indicator": "Total Sector Expenditure", "slugIndicator": "total_sector_expenditure", "unit": "INR (in Crores)"}, {"stateFigures": [{"state": "Andhra Pradesh", "figures": {"A": [{"2013-14": "3.5"}, {"2014-15": ""}], "BE": [{"2014-15": "4.9"}, {"2015-16": "3.8"}, {"2016-17": "4.2"}], "RE": [{"2014-15": "4.9"}, {"2015-16": "3.9"}]}}, {"state": "Assam", "figures": {"A": [{"2013-14": "2.7"}, {"2014-15": "3.8"}], "BE": [{"2014-15": "5.7"}, {"2015-16": "2.9"}, {"2016-17": "3.6"}], "RE": [{"2014-15": "5.2"}, {"2015-16": "3.7"}]}}, {"state": "Bihar", "figures": {"A": [{"2013-14": "3.7"}, {"2014-15": "2.5"}], "BE": [{"2014-15": "3.7"}, {"2015-16": "3.6"}, {"2016-17": "5"}], "RE": [{"2014-15": "3.4"}, {"2015-16": "3.4"}]}}, {"state": "Chhattisgarh", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Delhi", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Gujarat", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Haryana", "figures": {"A": [{"2013-14": "0.3"}, {"2014-15": "0.3"}], "BE": [{"2014-15": "0.3"}, {"2015-16": "0.3"}, {"2016-17": "0.3"}], "RE": [{"2014-15": "0.4"}, {"2015-16": "0.4"}]}}, {"state": "Himachal Pradesh", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Jammu and Kashmir", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Jharkhand", "figures": {"A": [{"2013-14": "2.7"}, {"2014-15": "3.7"}], "BE": [{"2014-15": "3.5"}, {"2015-16": "2.8"}, {"2016-17": "2.2"}], "RE": [{"2014-15": "4.2"}, {"2015-16": "2.2"}]}}, {"state": "Karnataka", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Kerala", "figures": {"A": [{"2013-14": "8"}, {"2014-15": "9"}], "BE": [{"2014-15": "8.5"}, {"2015-16": "7.7"}, {"2016-17": "7.8"}], "RE": [{"2014-15": "8.9"}, {"2015-16": "8.1"}]}}, {"state": "Madhya Pradesh", "figures": {"A": [{"2013-14": "10.3"}, {"2014-15": "12.5"}], "BE": [{"2014-15": "14.5"}, {"2015-16": "12.4"}, {"2016-17": "15.3"}], "RE": [{"2014-15": "14.4"}, {"2015-16": "13.2"}]}}, {"state": "Maharashtra", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Meghalaya", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Mizoram", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Odisha", "figures": {"A": [{"2013-14": "5.9"}, {"2014-15": "7.2"}], "BE": [{"2014-15": "8.5"}, {"2015-16": "8.4"}, {"2016-17": "9"}], "RE": [{"2014-15": "8.5"}, {"2015-16": "9.9"}]}}, {"state": "Punjab", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Rajasthan", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Sikkim", "figures": {"A": [{"2013-14": "8.1"}, {"2014-15": "7.5"}], "BE": [{"2014-15": "6.4"}, {"2015-16": "7.4"}, {"2016-17": "8.3"}], "RE": [{"2014-15": "6"}, {"2015-16": "7.2"}]}}, {"state": "Tamil Nadu", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Telangana", "figures": {"A": [{"2013-14": ""}, {"2014-15": "4.7"}], "BE": [{"2014-15": "8.8"}, {"2015-16": "6.5"}, {"2016-17": "3.6"}], "RE": [{"2014-15": "8.8"}, {"2015-16": "5.5"}]}}, {"state": "Tripura", "figures": {"A": [{"2013-14": "2.2"}, {"2014-15": "2.4"}], "BE": [{"2014-15": "2.2"}, {"2015-16": "2.4"}, {"2016-17": "1.5"}], "RE": [{"2014-15": "2.1"}, {"2015-16": "1.6"}]}}, {"state": "Uttar Pradesh", "figures": {"A": [{"2013-14": "2.8"}, {"2014-15": "2.1"}], "BE": [{"2014-15": "2.4"}, {"2015-16": "2.5"}, {"2016-17": "2.6"}], "RE": [{"2014-15": "2.7"}, {"2015-16": "2.3"}]}}, {"state": "Uttarakhand", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "West Bengal", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}], "indicator": "Total Sector Expenditure as % of State Budget", "slugIndicator": "total_sector_expenditure_as_of_state_budget", "unit": "Percentage"}, {"stateFigures": [{"state": "Andhra Pradesh", "figures": {"A": [{"2013-14": "547.6"}, {"2014-15": ""}], "BE": [{"2014-15": "635.1"}, {"2015-16": "487.8"}, {"2016-17": "651.2"}], "RE": [{"2014-15": "631.9"}, {"2015-16": "504.2"}]}}, {"state": "Assam", "figures": {"A": [{"2013-14": "319.7"}, {"2014-15": "568"}], "BE": [{"2014-15": "1042.3"}, {"2015-16": "589.4"}, {"2016-17": "863.4"}], "RE": [{"2014-15": "1059.9"}, {"2015-16": "859.6"}]}}, {"state": "Bihar", "figures": {"A": [{"2013-14": "296.6"}, {"2014-15": "233.8"}], "BE": [{"2014-15": "426.1"}, {"2015-16": "424.8"}, {"2016-17": "691.4"}], "RE": [{"2014-15": "440.4"}, {"2015-16": "441.1"}]}}, {"state": "Chhattisgarh", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Delhi", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Gujarat", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Haryana", "figures": {"A": [{"2013-14": "51.8"}, {"2014-15": "54.2"}], "BE": [{"2014-15": "72.6"}, {"2015-16": "78.7"}, {"2016-17": "90.1"}], "RE": [{"2014-15": "92.4"}, {"2015-16": "113.7"}]}}, {"state": "Himachal Pradesh", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Jammu and Kashmir", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Jharkhand", "figures": {"A": [{"2013-14": "257.3"}, {"2014-15": "446.1"}], "BE": [{"2014-15": "534.4"}, {"2015-16": "459.8"}, {"2016-17": "422.6"}], "RE": [{"2014-15": "644.4"}, {"2015-16": "374.4"}]}}, {"state": "Karnataka", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Kerala", "figures": {"A": [{"2013-14": "1508.3"}, {"2014-15": "1964.6"}], "BE": [{"2014-15": "1917.2"}, {"2015-16": "2080.8"}, {"2016-17": "2367.2"}], "RE": [{"2014-15": "2015.6"}, {"2015-16": "2024.8"}]}}, {"state": "Madhya Pradesh", "figures": {"A": [{"2013-14": "1022.3"}, {"2014-15": "1447.4"}], "BE": [{"2014-15": "1948.5"}, {"2015-16": "1850"}, {"2016-17": "2617.8"}], "RE": [{"2014-15": "1958.2"}, {"2015-16": "2003.2"}]}}, {"state": "Maharashtra", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Meghalaya", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Mizoram", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Odisha", "figures": {"A": [{"2013-14": "803.2"}, {"2014-15": "1151"}], "BE": [{"2014-15": "1632.7"}, {"2015-16": "1674.8"}, {"2016-17": "1991.3"}], "RE": [{"2014-15": "1577.9"}, {"2015-16": "1998.2"}]}}, {"state": "Punjab", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Rajasthan", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Sikkim", "figures": {"A": [{"2013-14": "5656.9"}, {"2014-15": "5650.3"}], "BE": [{"2014-15": "6523.8"}, {"2015-16": "6176.8"}, {"2016-17": "7040.6"}], "RE": [{"2014-15": "6238.1"}, {"2015-16": "6125.6"}]}}, {"state": "Tamil Nadu", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Telangana", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Tripura", "figures": {"A": [{"2013-14": "473.6"}, {"2014-15": "672.4"}], "BE": [{"2014-15": "735.3"}, {"2015-16": "960.7"}, {"2016-17": "595.6"}], "RE": [{"2014-15": "705.9"}, {"2015-16": "558.5"}]}}, {"state": "Uttar Pradesh", "figures": {"A": [{"2013-14": "272.7"}, {"2014-15": "235.2"}], "BE": [{"2014-15": "307.2"}, {"2015-16": "357.5"}, {"2016-17": "421.3"}], "RE": [{"2014-15": "340.4"}, {"2015-16": "355.6"}]}}, {"state": "Uttarakhand", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "West Bengal", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}], "indicator": "Per Capita Expenditure on Sector ", "slugIndicator": "per_capita_expenditure_on_sector", "unit": "INR Rs."}, {"stateFigures": [{"state": "Andhra Pradesh", "figures": {"A": [{"2013-14": "95.4"}, {"2014-15": ""}], "BE": [{"2014-15": "95.8"}, {"2015-16": "98.8"}, {"2016-17": "91.8"}], "RE": [{"2014-15": "95.7"}, {"2015-16": "87.5"}]}}, {"state": "Assam", "figures": {"A": [{"2013-14": "100"}, {"2014-15": "100"}], "BE": [{"2014-15": "100"}, {"2015-16": "100"}, {"2016-17": "100"}], "RE": [{"2014-15": "100"}, {"2015-16": "100"}]}}, {"state": "Bihar", "figures": {"A": [{"2013-14": "100"}, {"2014-15": "100"}], "BE": [{"2014-15": "97.7"}, {"2015-16": "100"}, {"2016-17": "100"}], "RE": [{"2014-15": "97.8"}, {"2015-16": "97.2"}]}}, {"state": "Chhattisgarh", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Delhi", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Gujarat", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Haryana", "figures": {"A": [{"2013-14": "100"}, {"2014-15": "100"}], "BE": [{"2014-15": "100"}, {"2015-16": "100"}, {"2016-17": "100"}], "RE": [{"2014-15": "100"}, {"2015-16": "100"}]}}, {"state": "Himachal Pradesh", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Jammu and Kashmir", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Jharkhand", "figures": {"A": [{"2013-14": "99.7"}, {"2014-15": "99.8"}], "BE": [{"2014-15": "99.7"}, {"2015-16": "99.7"}, {"2016-17": "99.6"}], "RE": [{"2014-15": "99.8"}, {"2015-16": "99.7"}]}}, {"state": "Karnataka", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Kerala", "figures": {"A": [{"2013-14": "99.5"}, {"2014-15": "96.9"}], "BE": [{"2014-15": "97.8"}, {"2015-16": "95.4"}, {"2016-17": "93.7"}], "RE": [{"2014-15": "97.2"}, {"2015-16": "96.1"}]}}, {"state": "Madhya Pradesh", "figures": {"A": [{"2013-14": "98.7"}, {"2014-15": "99.9"}], "BE": [{"2014-15": "99.3"}, {"2015-16": "99.3"}, {"2016-17": "99.2"}], "RE": [{"2014-15": "99.3"}, {"2015-16": "99.6"}]}}, {"state": "Maharashtra", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Meghalaya", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Mizoram", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Odisha", "figures": {"A": [{"2013-14": "99.9"}, {"2014-15": "99.6"}], "BE": [{"2014-15": "99.7"}, {"2015-16": "99.6"}, {"2016-17": "99.7"}], "RE": [{"2014-15": "99.7"}, {"2015-16": "99.7"}]}}, {"state": "Punjab", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Rajasthan", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Sikkim", "figures": {"A": [{"2013-14": "100"}, {"2014-15": "100"}], "BE": [{"2014-15": "100"}, {"2015-16": "100"}, {"2016-17": "100"}], "RE": [{"2014-15": "100"}, {"2015-16": "100"}]}}, {"state": "Tamil Nadu", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Telangana", "figures": {"A": [{"2013-14": ""}, {"2014-15": "92.8"}], "BE": [{"2014-15": "74.1"}, {"2015-16": "99.4"}, {"2016-17": "95.4"}], "RE": [{"2014-15": "74.1"}, {"2015-16": "72.8"}]}}, {"state": "Tripura", "figures": {"A": [{"2013-14": "97.3"}, {"2014-15": "97.9"}], "BE": [{"2014-15": "95.3"}, {"2015-16": "92.2"}, {"2016-17": "99.8"}], "RE": [{"2014-15": "97.4"}, {"2015-16": "98.7"}]}}, {"state": "Uttar Pradesh", "figures": {"A": [{"2013-14": "94.7"}, {"2014-15": "84.5"}], "BE": [{"2014-15": "92.6"}, {"2015-16": "91.9"}, {"2016-17": "94.7"}], "RE": [{"2014-15": "89.4"}, {"2015-16": "92.4"}]}}, {"state": "Uttarakhand", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "West Bengal", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}], "indicator": "Revenue Expenditure as % of Total Sector Expenditure", "slugIndicator": "revenue_expenditure_as_of_total_sector_expenditure", "unit": "Percentage"}, {"stateFigures": [{"state": "Andhra Pradesh", "figures": {"A": [{"2013-14": "4.6"}, {"2014-15": ""}], "BE": [{"2014-15": "4.2"}, {"2015-16": "1.2"}, {"2016-17": "8.2"}], "RE": [{"2014-15": "4.3"}, {"2015-16": "12.5"}]}}, {"state": "Assam", "figures": {"A": [{"2013-14": "0"}, {"2014-15": "0"}], "BE": [{"2014-15": "0"}, {"2015-16": "0"}, {"2016-17": "0"}], "RE": [{"2014-15": "0"}, {"2015-16": "0"}]}}, {"state": "Bihar", "figures": {"A": [{"2013-14": "0"}, {"2014-15": "0"}], "BE": [{"2014-15": "2.3"}, {"2015-16": "0"}, {"2016-17": "0"}], "RE": [{"2014-15": "2.2"}, {"2015-16": "2.8"}]}}, {"state": "Chhattisgarh", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Delhi", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Gujarat", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Haryana", "figures": {"A": [{"2013-14": "0"}, {"2014-15": "0"}], "BE": [{"2014-15": "0"}, {"2015-16": "0"}, {"2016-17": "0"}], "RE": [{"2014-15": "0"}, {"2015-16": "0"}]}}, {"state": "Himachal Pradesh", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Jammu and Kashmir", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Jharkhand", "figures": {"A": [{"2013-14": "0.3"}, {"2014-15": "0.2"}], "BE": [{"2014-15": "0.3"}, {"2015-16": "0.3"}, {"2016-17": "0.4"}], "RE": [{"2014-15": "0.2"}, {"2015-16": "0.3"}]}}, {"state": "Karnataka", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Kerala", "figures": {"A": [{"2013-14": "0.5"}, {"2014-15": "3.1"}], "BE": [{"2014-15": "2.2"}, {"2015-16": "4.6"}, {"2016-17": "6.3"}], "RE": [{"2014-15": "2.8"}, {"2015-16": "3.9"}]}}, {"state": "Madhya Pradesh", "figures": {"A": [{"2013-14": "1.3"}, {"2014-15": "0.1"}], "BE": [{"2014-15": "0.7"}, {"2015-16": "0.7"}, {"2016-17": "0.8"}], "RE": [{"2014-15": "0.7"}, {"2015-16": "0.4"}]}}, {"state": "Maharashtra", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Meghalaya", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Mizoram", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Odisha", "figures": {"A": [{"2013-14": "0.1"}, {"2014-15": "0.4"}], "BE": [{"2014-15": "0.3"}, {"2015-16": "0.4"}, {"2016-17": "0.3"}], "RE": [{"2014-15": "0.3"}, {"2015-16": "0.3"}]}}, {"state": "Punjab", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Rajasthan", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Sikkim", "figures": {"A": [{"2013-14": "0"}, {"2014-15": "0"}], "BE": [{"2014-15": "0"}, {"2015-16": "0"}, {"2016-17": "0"}], "RE": [{"2014-15": "0"}, {"2015-16": "0"}]}}, {"state": "Tamil Nadu", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Telangana", "figures": {"A": [{"2013-14": ""}, {"2014-15": "7.2"}], "BE": [{"2014-15": "25.9"}, {"2015-16": "0.6"}, {"2016-17": "4.6"}], "RE": [{"2014-15": "25.9"}, {"2015-16": "27.2"}]}}, {"state": "Tripura", "figures": {"A": [{"2013-14": "2.7"}, {"2014-15": "2.1"}], "BE": [{"2014-15": "4.7"}, {"2015-16": "7.8"}, {"2016-17": "0.2"}], "RE": [{"2014-15": "2.6"}, {"2015-16": "1.3"}]}}, {"state": "Uttar Pradesh", "figures": {"A": [{"2013-14": "5.3"}, {"2014-15": "15.5"}], "BE": [{"2014-15": "7.4"}, {"2015-16": "8.1"}, {"2016-17": "5.3"}], "RE": [{"2014-15": "10.6"}, {"2015-16": "7.6"}]}}, {"state": "Uttarakhand", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "West Bengal", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}], "indicator": "Capital Expenditure (including Loans & Advances ) as % of Total Sector Expenditure", "slugIndicator": "capital_expenditure_including_loans_advances_as_of_total_sector_expenditure", "unit": "Percentage"}], "slugSector": "panchayat"}, {"sector": " Power & Energy", "subIndicators": [{"stateFigures": [{"state": "Andhra Pradesh", "figures": {"A": [{"2013-14": "7557.5"}, {"2014-15": ""}], "BE": [{"2014-15": "7163.8"}, {"2015-16": "4560.2"}, {"2016-17": "4026.4"}], "RE": [{"2014-15": "7164.1"}, {"2015-16": "4836.8"}]}}, {"state": "Assam", "figures": {"A": [{"2013-14": "886.5"}, {"2014-15": "922.6"}], "BE": [{"2014-15": "1031.3"}, {"2015-16": "1263.3"}, {"2016-17": "1170.3"}], "RE": [{"2014-15": "1288.6"}, {"2015-16": "1269.3"}]}}, {"state": "Bihar", "figures": {"A": [{"2013-14": "5887.5"}, {"2014-15": "8202.7"}], "BE": [{"2014-15": "6355"}, {"2015-16": "8436.9"}, {"2016-17": "14367.8"}], "RE": [{"2014-15": "8355.5"}, {"2015-16": "9935.7"}]}}, {"state": "Chhattisgarh", "figures": {"A": [{"2013-14": "798.6"}, {"2014-15": "1375.3"}], "BE": [{"2014-15": "988.1"}, {"2015-16": "2667.4"}, {"2016-17": "2536.3"}], "RE": [{"2014-15": "1701.6"}, {"2015-16": "3745.7"}]}}, {"state": "Delhi", "figures": {"A": [{"2013-14": "4719.7"}, {"2014-15": "1239.8"}], "BE": [{"2014-15": "1357.8"}, {"2015-16": "2105.9"}, {"2016-17": "2189.1"}], "RE": [{"2014-15": "1358.9"}, {"2015-16": "2175.5"}]}}, {"state": "Gujarat", "figures": {"A": [{"2013-14": "5902.4"}, {"2014-15": "7640.5"}], "BE": [{"2014-15": "6399.2"}, {"2015-16": "7210.8"}, {"2016-17": "7268.1"}], "RE": [{"2014-15": "7772.1"}, {"2015-16": "8478.8"}]}}, {"state": "Haryana", "figures": {"A": [{"2013-14": "5603"}, {"2014-15": "5311.6"}], "BE": [{"2014-15": "5360.1"}, {"2015-16": "5946.9"}, {"2016-17": "8757.8"}], "RE": [{"2014-15": "5979"}, {"2015-16": "8068.5"}]}}, {"state": "Himachal Pradesh", "figures": {"A": [{"2013-14": "481.1"}, {"2014-15": "841.2"}], "BE": [{"2014-15": "712.4"}, {"2015-16": "829.5"}, {"2016-17": "882.9"}], "RE": [{"2014-15": "753.8"}, {"2015-16": "1255.3"}]}}, {"state": "Jammu and Kashmir", "figures": {"A": [{"2013-14": "3917"}, {"2014-15": "4832.1"}], "BE": [{"2014-15": "4761.8"}, {"2015-16": "4985.1"}, {"2016-17": "13242.6"}], "RE": [{"2014-15": "5295.6"}, {"2015-16": "7775.7"}]}}, {"state": "Jharkhand", "figures": {"A": [{"2013-14": "1712.2"}, {"2014-15": "3144.1"}], "BE": [{"2014-15": "1868.5"}, {"2015-16": "2511.7"}, {"2016-17": "2277"}], "RE": [{"2014-15": "3374.5"}, {"2015-16": "3386.3"}]}}, {"state": "Karnataka", "figures": {"A": [{"2013-14": "6382.3"}, {"2014-15": "7052.4"}], "BE": [{"2014-15": "7641.2"}, {"2015-16": "8165.9"}, {"2016-17": "7932.2"}], "RE": [{"2014-15": "7131.3"}, {"2015-16": "9421.2"}]}}, {"state": "Kerala", "figures": {"A": [{"2013-14": "242.7"}, {"2014-15": "105.6"}], "BE": [{"2014-15": "164.8"}, {"2015-16": "180"}, {"2016-17": "200.9"}], "RE": [{"2014-15": "193.9"}, {"2015-16": "158.7"}]}}, {"state": "Madhya Pradesh", "figures": {"A": [{"2013-14": "8049.2"}, {"2014-15": "17653"}], "BE": [{"2014-15": "8035"}, {"2015-16": "9733.3"}, {"2016-17": "20135.5"}], "RE": [{"2014-15": "11062.4"}, {"2015-16": "12113.8"}]}}, {"state": "Maharashtra", "figures": {"A": [{"2013-14": "10738.7"}, {"2014-15": "15468.5"}], "BE": [{"2014-15": "14615.1"}, {"2015-16": "11325.5"}, {"2016-17": "9840.2"}], "RE": [{"2014-15": "15857.7"}, {"2015-16": "14582.8"}]}}, {"state": "Meghalaya", "figures": {"A": [{"2013-14": "183.5"}, {"2014-15": "207.5"}], "BE": [{"2014-15": "177.5"}, {"2015-16": "140.4"}, {"2016-17": "197"}], "RE": [{"2014-15": "177.5"}, {"2015-16": "140.4"}]}}, {"state": "Mizoram", "figures": {"A": [{"2013-14": "382.4"}, {"2014-15": "480.1"}], "BE": [{"2014-15": "335.9"}, {"2015-16": "353.7"}, {"2016-17": "321.5"}], "RE": [{"2014-15": "487.7"}, {"2015-16": "441.8"}]}}, {"state": "Odisha", "figures": {"A": [{"2013-14": "1187.8"}, {"2014-15": "795.2"}], "BE": [{"2014-15": "1346.8"}, {"2015-16": "1239.8"}, {"2016-17": "2862.4"}], "RE": [{"2014-15": "946.9"}, {"2015-16": "1654.9"}]}}, {"state": "Punjab", "figures": {"A": [{"2013-14": "4815"}, {"2014-15": "2504.9"}], "BE": [{"2014-15": "800"}, {"2015-16": "2991.2"}, {"2016-17": "664.5"}], "RE": [{"2014-15": "2504.9"}, {"2015-16": "665.7"}]}}, {"state": "Rajasthan", "figures": {"A": [{"2013-14": "11171.9"}, {"2014-15": "13607.9"}], "BE": [{"2014-15": "14854.1"}, {"2015-16": "16852.9"}, {"2016-17": "13040.7"}], "RE": [{"2014-15": "14262.5"}, {"2015-16": "20607.1"}]}}, {"state": "Sikkim", "figures": {"A": [{"2013-14": "185.8"}, {"2014-15": "167.8"}], "BE": [{"2014-15": "197.2"}, {"2015-16": "312.8"}, {"2016-17": "323.9"}], "RE": [{"2014-15": "202.8"}, {"2015-16": "315"}]}}, {"state": "Tamil Nadu", "figures": {"A": [{"2013-14": "5034.4"}, {"2014-15": "9884.1"}], "BE": [{"2014-15": "7392.7"}, {"2015-16": "8970.1"}, {"2016-17": "9249.3"}], "RE": [{"2014-15": "7724"}, {"2015-16": "8432.7"}]}}, {"state": "Telangana", "figures": {"A": [{"2013-14": ""}, {"2014-15": "3537.9"}], "BE": [{"2014-15": "4922.3"}, {"2015-16": "7440.6"}, {"2016-17": "5359"}], "RE": [{"2014-15": "4916.5"}, {"2015-16": "5564"}]}}, {"state": "Tripura", "figures": {"A": [{"2013-14": "91.6"}, {"2014-15": "100"}], "BE": [{"2014-15": "76.5"}, {"2015-16": "161.7"}, {"2016-17": "114.1"}], "RE": [{"2014-15": "112.3"}, {"2015-16": "135.9"}]}}, {"state": "Uttar Pradesh", "figures": {"A": [{"2013-14": "12840.6"}, {"2014-15": "25949.2"}], "BE": [{"2014-15": "23039.8"}, {"2015-16": "24699.1"}, {"2016-17": "19532.1"}], "RE": [{"2014-15": "27563.5"}, {"2015-16": "25086.8"}]}}, {"state": "Uttarakhand", "figures": {"A": [{"2013-14": "300.5"}, {"2014-15": "152.2"}], "BE": [{"2014-15": "519.5"}, {"2015-16": "203"}, {"2016-17": "496.3"}], "RE": [{"2014-15": "409.5"}, {"2015-16": "179.5"}]}}, {"state": "West Bengal", "figures": {"A": [{"2013-14": "2054.3"}, {"2014-15": "1660.6"}], "BE": [{"2014-15": "1863.4"}, {"2015-16": "1984"}, {"2016-17": "2217.2"}], "RE": [{"2014-15": "2462.5"}, {"2015-16": "2264.3"}]}}], "indicator": "Total Sector Expenditure", "slugIndicator": "total_sector_expenditure", "unit": "INR (in Crores)"}, {"stateFigures": [{"state": "Andhra Pradesh", "figures": {"A": [{"2013-14": "5.5"}, {"2014-15": ""}], "BE": [{"2014-15": "6.4"}, {"2015-16": "4"}, {"2016-17": "3"}], "RE": [{"2014-15": "6.4"}, {"2015-16": "4.3"}]}}, {"state": "Assam", "figures": {"A": [{"2013-14": "2.4"}, {"2014-15": "2"}], "BE": [{"2014-15": "1.8"}, {"2015-16": "1.9"}, {"2016-17": "1.5"}], "RE": [{"2014-15": "2"}, {"2015-16": "1.7"}]}}, {"state": "Bihar", "figures": {"A": [{"2013-14": "7.3"}, {"2014-15": "8.7"}], "BE": [{"2014-15": "5.4"}, {"2015-16": "7"}, {"2016-17": "9.9"}], "RE": [{"2014-15": "6.3"}, {"2015-16": "7.5"}]}}, {"state": "Chhattisgarh", "figures": {"A": [{"2013-14": "2.1"}, {"2014-15": "3"}], "BE": [{"2014-15": "1.8"}, {"2015-16": "4.1"}, {"2016-17": "3.6"}], "RE": [{"2014-15": "3.1"}, {"2015-16": "5.7"}]}}, {"state": "Delhi", "figures": {"A": [{"2013-14": "13.9"}, {"2014-15": ""}], "BE": [{"2014-15": "3.7"}, {"2015-16": "5.1"}, {"2016-17": "4.7"}], "RE": [{"2014-15": "3.9"}, {"2015-16": ""}]}}, {"state": "Gujarat", "figures": {"A": [{"2013-14": "5.6"}, {"2014-15": "6.5"}], "BE": [{"2014-15": "4.9"}, {"2015-16": "5.2"}, {"2016-17": "4.8"}], "RE": [{"2014-15": "6.2"}, {"2015-16": "6.4"}]}}, {"state": "Haryana", "figures": {"A": [{"2013-14": "12"}, {"2014-15": "9.9"}], "BE": [{"2014-15": "9"}, {"2015-16": "8.6"}, {"2016-17": "9.9"}], "RE": [{"2014-15": "9.7"}, {"2015-16": "9.5"}]}}, {"state": "Himachal Pradesh", "figures": {"A": [{"2013-14": "2.2"}, {"2014-15": "3.3"}], "BE": [{"2014-15": "3"}, {"2015-16": "2.9"}, {"2016-17": "2.7"}], "RE": [{"2014-15": "3.1"}, {"2015-16": "4.6"}]}}, {"state": "Jammu and Kashmir", "figures": {"A": [{"2013-14": "11.9"}, {"2014-15": "13.5"}], "BE": [{"2014-15": "10.9"}, {"2015-16": "10.7"}, {"2016-17": "23.3"}], "RE": [{"2014-15": "12.3"}, {"2015-16": "15.6"}]}}, {"state": "Jharkhand", "figures": {"A": [{"2013-14": "5.6"}, {"2014-15": "7.9"}], "BE": [{"2014-15": "3.7"}, {"2015-16": "4.5"}, {"2016-17": "3.6"}], "RE": [{"2014-15": "6.6"}, {"2015-16": "6"}]}}, {"state": "Karnataka", "figures": {"A": [{"2013-14": "6"}, {"2014-15": "5.7"}], "BE": [{"2014-15": "5.8"}, {"2015-16": "6"}, {"2016-17": "5.1"}], "RE": [{"2014-15": "5.6"}, {"2015-16": "6.8"}]}}, {"state": "Kerala", "figures": {"A": [{"2013-14": "0.4"}, {"2014-15": "0.1"}], "BE": [{"2014-15": "0.2"}, {"2015-16": "0.2"}, {"2016-17": "0.2"}], "RE": [{"2014-15": "0.2"}, {"2015-16": "0.2"}]}}, {"state": "Madhya Pradesh", "figures": {"A": [{"2013-14": "9.4"}, {"2014-15": "17.6"}], "BE": [{"2014-15": "6.9"}, {"2015-16": "7.4"}, {"2016-17": "13.3"}], "RE": [{"2014-15": "9.3"}, {"2015-16": "9.1"}]}}, {"state": "Maharashtra", "figures": {"A": [{"2013-14": "6.1"}, {"2014-15": "7.8"}], "BE": [{"2014-15": "6.9"}, {"2015-16": "4.9"}, {"2016-17": "3.8"}], "RE": [{"2014-15": "7.2"}, {"2015-16": "6.1"}]}}, {"state": "Meghalaya", "figures": {"A": [{"2013-14": "2.6"}, {"2014-15": "2.7"}], "BE": [{"2014-15": "1.5"}, {"2015-16": "1.5"}, {"2016-17": "1.9"}], "RE": [{"2014-15": "1.5"}, {"2015-16": "1.5"}]}}, {"state": "Mizoram", "figures": {"A": [{"2013-14": "6.8"}, {"2014-15": "6.2"}], "BE": [{"2014-15": "5"}, {"2015-16": "4.6"}, {"2016-17": "3.9"}], "RE": [{"2014-15": "6.5"}, {"2015-16": "5.2"}]}}, {"state": "Odisha", "figures": {"A": [{"2013-14": "2.1"}, {"2014-15": "1.2"}], "BE": [{"2014-15": "1.7"}, {"2015-16": "1.5"}, {"2016-17": "3"}], "RE": [{"2014-15": "1.2"}, {"2015-16": "2"}]}}, {"state": "Punjab", "figures": {"A": [{"2013-14": "7.9"}, {"2014-15": "3.4"}], "BE": [{"2014-15": "1.1"}, {"2015-16": "3.8"}, {"2016-17": "0.8"}], "RE": [{"2014-15": "3.3"}, {"2015-16": "0.8"}]}}, {"state": "Rajasthan", "figures": {"A": [{"2013-14": "11.9"}, {"2014-15": "11.7"}], "BE": [{"2014-15": "11.3"}, {"2015-16": "12.2"}, {"2016-17": "8.6"}], "RE": [{"2014-15": "11.3"}, {"2015-16": "15"}]}}, {"state": "Sikkim", "figures": {"A": [{"2013-14": "4.2"}, {"2014-15": "3.5"}], "BE": [{"2014-15": "3"}, {"2015-16": "5.9"}, {"2016-17": "5.9"}], "RE": [{"2014-15": "3.1"}, {"2015-16": "5.8"}]}}, {"state": "Tamil Nadu", "figures": {"A": [{"2013-14": "3.9"}, {"2014-15": "6.6"}], "BE": [{"2014-15": "4.8"}, {"2015-16": "5.1"}, {"2016-17": "4.9"}], "RE": [{"2014-15": "4.8"}, {"2015-16": "4.9"}]}}, {"state": "Telangana", "figures": {"A": [{"2013-14": ""}, {"2014-15": "5.7"}], "BE": [{"2014-15": "5"}, {"2015-16": "6.4"}, {"2016-17": "4.1"}], "RE": [{"2014-15": "5"}, {"2015-16": "5.6"}]}}, {"state": "Tripura", "figures": {"A": [{"2013-14": "1.2"}, {"2014-15": "0.9"}], "BE": [{"2014-15": "0.6"}, {"2015-16": "1.1"}, {"2016-17": "0.7"}], "RE": [{"2014-15": "0.9"}, {"2015-16": "1"}]}}, {"state": "Uttar Pradesh", "figures": {"A": [{"2013-14": "6.4"}, {"2014-15": "11"}], "BE": [{"2014-15": "8.4"}, {"2015-16": "8.2"}, {"2016-17": "5.6"}], "RE": [{"2014-15": "10.5"}, {"2015-16": "7.6"}]}}, {"state": "Uttarakhand", "figures": {"A": [{"2013-14": "1.4"}, {"2014-15": "0.6"}], "BE": [{"2014-15": "1.7"}, {"2015-16": "0.6"}, {"2016-17": "1.2"}], "RE": [{"2014-15": "1.3"}, {"2015-16": "0.5"}]}}, {"state": "West Bengal", "figures": {"A": [{"2013-14": "1.9"}, {"2014-15": "1.3"}], "BE": [{"2014-15": "1.4"}, {"2015-16": "1.4"}, {"2016-17": "1.4"}], "RE": [{"2014-15": "1.9"}, {"2015-16": "1.6"}]}}], "indicator": "Total Sector Expenditure as % of State Budget", "slugIndicator": "total_sector_expenditure_as_of_state_budget", "unit": "Percentage"}, {"stateFigures": [{"state": "Andhra Pradesh", "figures": {"A": [{"2013-14": "876.4"}, {"2014-15": ""}], "BE": [{"2014-15": "823.9"}, {"2015-16": "520.2"}, {"2016-17": "455.7"}], "RE": [{"2014-15": "823.9"}, {"2015-16": "551.8"}]}}, {"state": "Assam", "figures": {"A": [{"2013-14": "283.1"}, {"2014-15": "291.1"}], "BE": [{"2014-15": "325.4"}, {"2015-16": "393.9"}, {"2016-17": "360.7"}], "RE": [{"2014-15": "406.6"}, {"2015-16": "395.8"}]}}, {"state": "Bihar", "figures": {"A": [{"2013-14": "587.1"}, {"2014-15": "807.9"}], "BE": [{"2014-15": "625.9"}, {"2015-16": "821.3"}, {"2016-17": "1382.7"}], "RE": [{"2014-15": "823"}, {"2015-16": "967.1"}]}}, {"state": "Chhattisgarh", "figures": {"A": [{"2013-14": "320.6"}, {"2014-15": "545.1"}], "BE": [{"2014-15": "391.6"}, {"2015-16": "1043.8"}, {"2016-17": "980.1"}], "RE": [{"2014-15": "674.4"}, {"2015-16": "1465.7"}]}}, {"state": "Delhi", "figures": {"A": [{"2013-14": "2416.8"}, {"2014-15": "617.1"}], "BE": [{"2014-15": "675.8"}, {"2015-16": "1018.5"}, {"2016-17": "1028.4"}], "RE": [{"2014-15": "676.3"}, {"2015-16": "1052.2"}]}}, {"state": "Gujarat", "figures": {"A": [{"2013-14": "974.5"}, {"2014-15": "1245.8"}], "BE": [{"2014-15": "1043.4"}, {"2015-16": "1161.5"}, {"2016-17": "1156.9"}], "RE": [{"2014-15": "1267.3"}, {"2015-16": "1365.8"}]}}, {"state": "Haryana", "figures": {"A": [{"2013-14": "2133.2"}, {"2014-15": "1991.2"}], "BE": [{"2014-15": "2009.4"}, {"2015-16": "2196.1"}, {"2016-17": "3187.3"}], "RE": [{"2014-15": "2241.4"}, {"2015-16": "2979.6"}]}}, {"state": "Himachal Pradesh", "figures": {"A": [{"2013-14": "695.4"}, {"2014-15": "1205.5"}], "BE": [{"2014-15": "1020.9"}, {"2015-16": "1178.7"}, {"2016-17": "1244.5"}], "RE": [{"2014-15": "1080.3"}, {"2015-16": "1783.9"}]}}, {"state": "Jammu and Kashmir", "figures": {"A": [{"2013-14": "3261.4"}, {"2014-15": "3976.4"}], "BE": [{"2014-15": "3918.6"}, {"2015-16": "4056.6"}, {"2016-17": "10663.2"}], "RE": [{"2014-15": "4357.8"}, {"2015-16": "6327.4"}]}}, {"state": "Jharkhand", "figures": {"A": [{"2013-14": "529.5"}, {"2014-15": "959.6"}], "BE": [{"2014-15": "570.3"}, {"2015-16": "756.5"}, {"2016-17": "676.6"}], "RE": [{"2014-15": "1029.9"}, {"2015-16": "1019.9"}]}}, {"state": "Karnataka", "figures": {"A": [{"2013-14": "1052.8"}, {"2014-15": "1152.1"}], "BE": [{"2014-15": "1248.3"}, {"2015-16": "1321.4"}, {"2016-17": "1271.7"}], "RE": [{"2014-15": "1165"}, {"2015-16": "1524.5"}]}}, {"state": "Kerala", "figures": {"A": [{"2013-14": "69.3"}, {"2014-15": "30"}], "BE": [{"2014-15": "46.7"}, {"2015-16": "50.7"}, {"2016-17": "56.3"}], "RE": [{"2014-15": "55"}, {"2015-16": "44.7"}]}}, {"state": "Madhya Pradesh", "figures": {"A": [{"2013-14": "933.5"}, {"2014-15": "2030.2"}], "BE": [{"2014-15": "924.1"}, {"2015-16": "1110.3"}, {"2016-17": "2278.8"}], "RE": [{"2014-15": "1272.2"}, {"2015-16": "1381.9"}]}}, {"state": "Maharashtra", "figures": {"A": [{"2013-14": "928.2"}, {"2014-15": "1320"}], "BE": [{"2014-15": "1247.1"}, {"2015-16": "954.5"}, {"2016-17": "819.5"}], "RE": [{"2014-15": "1353.2"}, {"2015-16": "1229"}]}}, {"state": "Meghalaya", "figures": {"A": [{"2013-14": "684.3"}, {"2014-15": "765.2"}], "BE": [{"2014-15": "654.4"}, {"2015-16": "511.8"}, {"2016-17": "710.5"}], "RE": [{"2014-15": "654.4"}, {"2015-16": "511.8"}]}}, {"state": "Mizoram", "figures": {"A": [{"2013-14": "3719.5"}, {"2014-15": "4621.3"}], "BE": [{"2014-15": "3233.3"}, {"2015-16": "3365.3"}, {"2016-17": "3024.1"}], "RE": [{"2014-15": "4693.9"}, {"2015-16": "4203.9"}]}}, {"state": "Odisha", "figures": {"A": [{"2013-14": "286.5"}, {"2014-15": "190.2"}], "BE": [{"2014-15": "322.2"}, {"2015-16": "294.2"}, {"2016-17": "673.8"}], "RE": [{"2014-15": "226.5"}, {"2015-16": "392.7"}]}}, {"state": "Punjab", "figures": {"A": [{"2013-14": "1702.7"}, {"2014-15": "876.8"}], "BE": [{"2014-15": "280"}, {"2015-16": "1037"}, {"2016-17": "228.3"}], "RE": [{"2014-15": "876.8"}, {"2015-16": "230.8"}]}}, {"state": "Rajasthan", "figures": {"A": [{"2013-14": "1597.4"}, {"2014-15": "1917.4"}], "BE": [{"2014-15": "2093"}, {"2015-16": "2341.6"}, {"2016-17": "1787.7"}], "RE": [{"2014-15": "2009.7"}, {"2015-16": "2863.2"}]}}, {"state": "Sikkim", "figures": {"A": [{"2013-14": "2967.7"}, {"2014-15": "2650.2"}], "BE": [{"2014-15": "3114.7"}, {"2015-16": "4887.9"}, {"2016-17": "5006.9"}], "RE": [{"2014-15": "3203.5"}, {"2015-16": "4922.6"}]}}, {"state": "Tamil Nadu", "figures": {"A": [{"2013-14": "737.5"}, {"2014-15": "1439.7"}], "BE": [{"2014-15": "1076.8"}, {"2015-16": "1299.4"}, {"2016-17": "1332.8"}], "RE": [{"2014-15": "1125.1"}, {"2015-16": "1221.6"}]}}, {"state": "Telangana", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Tripura", "figures": {"A": [{"2013-14": "247.5"}, {"2014-15": "267.3"}], "BE": [{"2014-15": "204.3"}, {"2015-16": "427.3"}, {"2016-17": "298.1"}], "RE": [{"2014-15": "300.2"}, {"2015-16": "359.1"}]}}, {"state": "Uttar Pradesh", "figures": {"A": [{"2013-14": "618.1"}, {"2014-15": "1228.6"}], "BE": [{"2014-15": "1090.8"}, {"2015-16": "1150.6"}, {"2016-17": "895.6"}], "RE": [{"2014-15": "1305"}, {"2015-16": "1168.6"}]}}, {"state": "Uttarakhand", "figures": {"A": [{"2013-14": "293.9"}, {"2014-15": "146.8"}], "BE": [{"2014-15": "501.4"}, {"2015-16": "193.4"}, {"2016-17": "466.8"}], "RE": [{"2014-15": "395.2"}, {"2015-16": "171"}]}}, {"state": "West Bengal", "figures": {"A": [{"2013-14": "225.4"}, {"2014-15": "180.7"}], "BE": [{"2014-15": "202.7"}, {"2015-16": "214"}, {"2016-17": "237"}], "RE": [{"2014-15": "267.9"}, {"2015-16": "244.2"}]}}], "indicator": "Per Capita Expenditure on Sector ", "slugIndicator": "per_capita_expenditure_on_sector", "unit": "INR Rs."}, {"stateFigures": [{"state": "Andhra Pradesh", "figures": {"A": [{"2013-14": "97.1"}, {"2014-15": ""}], "BE": [{"2014-15": "98.9"}, {"2015-16": "94.5"}, {"2016-17": "93.6"}], "RE": [{"2014-15": "98.9"}, {"2015-16": "93.5"}]}}, {"state": "Assam", "figures": {"A": [{"2013-14": "20.8"}, {"2014-15": "15.1"}], "BE": [{"2014-15": "2.7"}, {"2015-16": "11.7"}, {"2016-17": "19.7"}], "RE": [{"2014-15": "11.6"}, {"2015-16": "12.1"}]}}, {"state": "Bihar", "figures": {"A": [{"2013-14": "55.4"}, {"2014-15": "46.1"}], "BE": [{"2014-15": "48.8"}, {"2015-16": "50.9"}, {"2016-17": "37.2"}], "RE": [{"2014-15": "37.2"}, {"2015-16": "62.3"}]}}, {"state": "Chhattisgarh", "figures": {"A": [{"2013-14": "97.2"}, {"2014-15": "80.6"}], "BE": [{"2014-15": "77.4"}, {"2015-16": "89.3"}, {"2016-17": "58.4"}], "RE": [{"2014-15": "72.2"}, {"2015-16": "90.9"}]}}, {"state": "Delhi", "figures": {"A": [{"2013-14": "22.7"}, {"2014-15": "69.3"}], "BE": [{"2014-15": "65.4"}, {"2015-16": "80.9"}, {"2016-17": "86"}], "RE": [{"2014-15": "68.2"}, {"2015-16": "77.2"}]}}, {"state": "Gujarat", "figures": {"A": [{"2013-14": "61.3"}, {"2014-15": "70.3"}], "BE": [{"2014-15": "65.3"}, {"2015-16": "66.2"}, {"2016-17": "68.7"}], "RE": [{"2014-15": "69.2"}, {"2015-16": "70.1"}]}}, {"state": "Haryana", "figures": {"A": [{"2013-14": "93"}, {"2014-15": "98.7"}], "BE": [{"2014-15": "84.1"}, {"2015-16": "95"}, {"2016-17": "77.9"}], "RE": [{"2014-15": "89.5"}, {"2015-16": "80.2"}]}}, {"state": "Himachal Pradesh", "figures": {"A": [{"2013-14": "1.4"}, {"2014-15": "46.8"}], "BE": [{"2014-15": "47.3"}, {"2015-16": "53.6"}, {"2016-17": "53.9"}], "RE": [{"2014-15": "52.2"}, {"2015-16": "77.4"}]}}, {"state": "Jammu and Kashmir", "figures": {"A": [{"2013-14": "100"}, {"2014-15": "100"}], "BE": [{"2014-15": "91.9"}, {"2015-16": "92.3"}, {"2016-17": "78.3"}], "RE": [{"2014-15": "92.6"}, {"2015-16": "87.1"}]}}, {"state": "Jharkhand", "figures": {"A": [{"2013-14": "89.8"}, {"2014-15": "75.2"}], "BE": [{"2014-15": "68.2"}, {"2015-16": "56.3"}, {"2016-17": "32.2"}], "RE": [{"2014-15": "70.6"}, {"2015-16": "67"}]}}, {"state": "Karnataka", "figures": {"A": [{"2013-14": "93.9"}, {"2014-15": "95.6"}], "BE": [{"2014-15": "88.2"}, {"2015-16": "99.1"}, {"2016-17": "98.3"}], "RE": [{"2014-15": "94.6"}, {"2015-16": "90.5"}]}}, {"state": "Kerala", "figures": {"A": [{"2013-14": "98.6"}, {"2014-15": "99.2"}], "BE": [{"2014-15": "77.1"}, {"2015-16": "73.8"}, {"2016-17": "69.2"}], "RE": [{"2014-15": "86.2"}, {"2015-16": "69.5"}]}}, {"state": "Madhya Pradesh", "figures": {"A": [{"2013-14": "38.6"}, {"2014-15": "28.5"}], "BE": [{"2014-15": "49.2"}, {"2015-16": "59.2"}, {"2016-17": "34.7"}], "RE": [{"2014-15": "48.3"}, {"2015-16": "70.9"}]}}, {"state": "Maharashtra", "figures": {"A": [{"2013-14": "77.7"}, {"2014-15": "89.3"}], "BE": [{"2014-15": "87.1"}, {"2015-16": "91.7"}, {"2016-17": "88.8"}], "RE": [{"2014-15": "89.6"}, {"2015-16": "89"}]}}, {"state": "Meghalaya", "figures": {"A": [{"2013-14": "85.8"}, {"2014-15": "81.2"}], "BE": [{"2014-15": "73.2"}, {"2015-16": "93.2"}, {"2016-17": "93.9"}], "RE": [{"2014-15": "73.2"}, {"2015-16": "93.2"}]}}, {"state": "Mizoram", "figures": {"A": [{"2013-14": "82.9"}, {"2014-15": "70.5"}], "BE": [{"2014-15": "85.7"}, {"2015-16": "87.8"}, {"2016-17": "99.8"}], "RE": [{"2014-15": "70.8"}, {"2015-16": "84.8"}]}}, {"state": "Odisha", "figures": {"A": [{"2013-14": "4.6"}, {"2014-15": "8.6"}], "BE": [{"2014-15": "7.1"}, {"2015-16": "6.7"}, {"2016-17": "3.2"}], "RE": [{"2014-15": "10"}, {"2015-16": "4.5"}]}}, {"state": "Punjab", "figures": {"A": [{"2013-14": "100"}, {"2014-15": "100"}], "BE": [{"2014-15": "100"}, {"2015-16": "99.8"}, {"2016-17": "98.6"}], "RE": [{"2014-15": "100"}, {"2015-16": "98.4"}]}}, {"state": "Rajasthan", "figures": {"A": [{"2013-14": "64.6"}, {"2014-15": "67"}], "BE": [{"2014-15": "70.3"}, {"2015-16": "60.3"}, {"2016-17": "68.1"}], "RE": [{"2014-15": "64.7"}, {"2015-16": "54.1"}]}}, {"state": "Sikkim", "figures": {"A": [{"2013-14": "64.9"}, {"2014-15": "81.3"}], "BE": [{"2014-15": "68"}, {"2015-16": "71.4"}, {"2016-17": "69.5"}], "RE": [{"2014-15": "66.1"}, {"2015-16": "69"}]}}, {"state": "Tamil Nadu", "figures": {"A": [{"2013-14": "37.4"}, {"2014-15": "35.5"}], "BE": [{"2014-15": "58.5"}, {"2015-16": "61.3"}, {"2016-17": "77.9"}], "RE": [{"2014-15": "45.5"}, {"2015-16": "51.1"}]}}, {"state": "Telangana", "figures": {"A": [{"2013-14": ""}, {"2014-15": "90.2"}], "BE": [{"2014-15": "71.9"}, {"2015-16": "83.9"}, {"2016-17": "96.4"}], "RE": [{"2014-15": "72"}, {"2015-16": "86.3"}]}}, {"state": "Tripura", "figures": {"A": [{"2013-14": "45.5"}, {"2014-15": "72.9"}], "BE": [{"2014-15": "54.5"}, {"2015-16": "44.1"}, {"2016-17": "88.6"}], "RE": [{"2014-15": "65.8"}, {"2015-16": "62.8"}]}}, {"state": "Uttar Pradesh", "figures": {"A": [{"2013-14": "52.5"}, {"2014-15": "54.5"}], "BE": [{"2014-15": "51.7"}, {"2015-16": "45.6"}, {"2016-17": "60.4"}], "RE": [{"2014-15": "51.3"}, {"2015-16": "45.7"}]}}, {"state": "Uttarakhand", "figures": {"A": [{"2013-14": "2.1"}, {"2014-15": "3.4"}], "BE": [{"2014-15": "5.2"}, {"2015-16": "3"}, {"2016-17": "3.2"}], "RE": [{"2014-15": "6.5"}, {"2015-16": "13.1"}]}}, {"state": "West Bengal", "figures": {"A": [{"2013-14": "51.9"}, {"2014-15": "23.5"}], "BE": [{"2014-15": "38.7"}, {"2015-16": "38.1"}, {"2016-17": "35.7"}], "RE": [{"2014-15": "33.3"}, {"2015-16": "51.3"}]}}], "indicator": "Revenue Expenditure as % of Total Sector Expenditure", "slugIndicator": "revenue_expenditure_as_of_total_sector_expenditure", "unit": "Percentage"}, {"stateFigures": [{"state": "Andhra Pradesh", "figures": {"A": [{"2013-14": "2.9"}, {"2014-15": ""}], "BE": [{"2014-15": "1.1"}, {"2015-16": "5.5"}, {"2016-17": "6.4"}], "RE": [{"2014-15": "1.1"}, {"2015-16": "6.5"}]}}, {"state": "Assam", "figures": {"A": [{"2013-14": "79.2"}, {"2014-15": "84.9"}], "BE": [{"2014-15": "97.3"}, {"2015-16": "88.3"}, {"2016-17": "80.3"}], "RE": [{"2014-15": "88.4"}, {"2015-16": "87.9"}]}}, {"state": "Bihar", "figures": {"A": [{"2013-14": "44.6"}, {"2014-15": "53.9"}], "BE": [{"2014-15": "51.2"}, {"2015-16": "49.1"}, {"2016-17": "62.8"}], "RE": [{"2014-15": "62.8"}, {"2015-16": "37.7"}]}}, {"state": "Chhattisgarh", "figures": {"A": [{"2013-14": "2.8"}, {"2014-15": "19.4"}], "BE": [{"2014-15": "22.6"}, {"2015-16": "10.7"}, {"2016-17": "41.6"}], "RE": [{"2014-15": "27.8"}, {"2015-16": "9.1"}]}}, {"state": "Delhi", "figures": {"A": [{"2013-14": "77.3"}, {"2014-15": "30.7"}], "BE": [{"2014-15": "34.6"}, {"2015-16": "19.1"}, {"2016-17": "14"}], "RE": [{"2014-15": "31.8"}, {"2015-16": "22.8"}]}}, {"state": "Gujarat", "figures": {"A": [{"2013-14": "38.7"}, {"2014-15": "29.7"}], "BE": [{"2014-15": "34.7"}, {"2015-16": "33.8"}, {"2016-17": "31.3"}], "RE": [{"2014-15": "30.8"}, {"2015-16": "29.9"}]}}, {"state": "Haryana", "figures": {"A": [{"2013-14": "7"}, {"2014-15": "1.3"}], "BE": [{"2014-15": "15.9"}, {"2015-16": "5"}, {"2016-17": "22.1"}], "RE": [{"2014-15": "10.5"}, {"2015-16": "19.8"}]}}, {"state": "Himachal Pradesh", "figures": {"A": [{"2013-14": "98.6"}, {"2014-15": "53.2"}], "BE": [{"2014-15": "52.7"}, {"2015-16": "46.4"}, {"2016-17": "46.1"}], "RE": [{"2014-15": "47.8"}, {"2015-16": "22.6"}]}}, {"state": "Jammu and Kashmir", "figures": {"A": [{"2013-14": "0"}, {"2014-15": "0"}], "BE": [{"2014-15": "8.1"}, {"2015-16": "7.7"}, {"2016-17": "21.7"}], "RE": [{"2014-15": "7.4"}, {"2015-16": "12.9"}]}}, {"state": "Jharkhand", "figures": {"A": [{"2013-14": "10.2"}, {"2014-15": "24.8"}], "BE": [{"2014-15": "31.8"}, {"2015-16": "43.7"}, {"2016-17": "67.8"}], "RE": [{"2014-15": "29.4"}, {"2015-16": "33"}]}}, {"state": "Karnataka", "figures": {"A": [{"2013-14": "6.1"}, {"2014-15": "4.4"}], "BE": [{"2014-15": "11.8"}, {"2015-16": "0.9"}, {"2016-17": "1.7"}], "RE": [{"2014-15": "5.4"}, {"2015-16": "9.5"}]}}, {"state": "Kerala", "figures": {"A": [{"2013-14": "1.4"}, {"2014-15": "0.8"}], "BE": [{"2014-15": "22.9"}, {"2015-16": "26.2"}, {"2016-17": "30.8"}], "RE": [{"2014-15": "13.8"}, {"2015-16": "30.5"}]}}, {"state": "Madhya Pradesh", "figures": {"A": [{"2013-14": "61.4"}, {"2014-15": "71.5"}], "BE": [{"2014-15": "50.8"}, {"2015-16": "40.8"}, {"2016-17": "65.3"}], "RE": [{"2014-15": "51.7"}, {"2015-16": "29.1"}]}}, {"state": "Maharashtra", "figures": {"A": [{"2013-14": "22.3"}, {"2014-15": "10.7"}], "BE": [{"2014-15": "12.9"}, {"2015-16": "8.3"}, {"2016-17": "11.2"}], "RE": [{"2014-15": "10.4"}, {"2015-16": "11"}]}}, {"state": "Meghalaya", "figures": {"A": [{"2013-14": "14.2"}, {"2014-15": "18.8"}], "BE": [{"2014-15": "26.8"}, {"2015-16": "6.8"}, {"2016-17": "6.1"}], "RE": [{"2014-15": "26.8"}, {"2015-16": "6.8"}]}}, {"state": "Mizoram", "figures": {"A": [{"2013-14": "17.1"}, {"2014-15": "29.5"}], "BE": [{"2014-15": "14.3"}, {"2015-16": "12.2"}, {"2016-17": "0.2"}], "RE": [{"2014-15": "29.2"}, {"2015-16": "15.2"}]}}, {"state": "Odisha", "figures": {"A": [{"2013-14": "95.4"}, {"2014-15": "91.4"}], "BE": [{"2014-15": "92.9"}, {"2015-16": "93.3"}, {"2016-17": "96.8"}], "RE": [{"2014-15": "90"}, {"2015-16": "95.5"}]}}, {"state": "Punjab", "figures": {"A": [{"2013-14": "0"}, {"2014-15": "0"}], "BE": [{"2014-15": "0"}, {"2015-16": "0.2"}, {"2016-17": "1.4"}], "RE": [{"2014-15": "0"}, {"2015-16": "1.6"}]}}, {"state": "Rajasthan", "figures": {"A": [{"2013-14": "35.4"}, {"2014-15": "33"}], "BE": [{"2014-15": "29.7"}, {"2015-16": "39.7"}, {"2016-17": "31.9"}], "RE": [{"2014-15": "35.3"}, {"2015-16": "45.9"}]}}, {"state": "Sikkim", "figures": {"A": [{"2013-14": "35.1"}, {"2014-15": "18.7"}], "BE": [{"2014-15": "32"}, {"2015-16": "28.6"}, {"2016-17": "30.5"}], "RE": [{"2014-15": "33.9"}, {"2015-16": "31"}]}}, {"state": "Tamil Nadu", "figures": {"A": [{"2013-14": "62.6"}, {"2014-15": "64.5"}], "BE": [{"2014-15": "41.5"}, {"2015-16": "38.7"}, {"2016-17": "22.1"}], "RE": [{"2014-15": "54.5"}, {"2015-16": "48.9"}]}}, {"state": "Telangana", "figures": {"A": [{"2013-14": ""}, {"2014-15": "9.8"}], "BE": [{"2014-15": "28.1"}, {"2015-16": "16.1"}, {"2016-17": "3.6"}], "RE": [{"2014-15": "28"}, {"2015-16": "13.7"}]}}, {"state": "Tripura", "figures": {"A": [{"2013-14": "54.5"}, {"2014-15": "27.1"}], "BE": [{"2014-15": "45.5"}, {"2015-16": "55.9"}, {"2016-17": "11.4"}], "RE": [{"2014-15": "34.2"}, {"2015-16": "37.2"}]}}, {"state": "Uttar Pradesh", "figures": {"A": [{"2013-14": "47.5"}, {"2014-15": "45.5"}], "BE": [{"2014-15": "48.3"}, {"2015-16": "54.4"}, {"2016-17": "39.6"}], "RE": [{"2014-15": "48.7"}, {"2015-16": "54.3"}]}}, {"state": "Uttarakhand", "figures": {"A": [{"2013-14": "97.9"}, {"2014-15": "96.6"}], "BE": [{"2014-15": "94.8"}, {"2015-16": "97"}, {"2016-17": "96.8"}], "RE": [{"2014-15": "93.5"}, {"2015-16": "86.9"}]}}, {"state": "West Bengal", "figures": {"A": [{"2013-14": "48.1"}, {"2014-15": "76.5"}], "BE": [{"2014-15": "61.3"}, {"2015-16": "61.9"}, {"2016-17": "64.3"}], "RE": [{"2014-15": "66.7"}, {"2015-16": "48.7"}]}}], "indicator": "Capital Expenditure (including Loans & Advances ) as % of Total Sector Expenditure", "slugIndicator": "capital_expenditure_including_loans_advances_as_of_total_sector_expenditure", "unit": "Percentage"}], "slugSector": "power_energy"}, {"sector": " Public Works", "subIndicators": [{"stateFigures": [{"state": "Andhra Pradesh", "figures": {"A": [{"2013-14": "6221.4"}, {"2014-15": ""}], "BE": [{"2014-15": "2365.5"}, {"2015-16": "2674.3"}, {"2016-17": "3026.2"}], "RE": [{"2014-15": "2362.2"}, {"2015-16": "2883.7"}]}}, {"state": "Assam", "figures": {"A": [{"2013-14": "2266.4"}, {"2014-15": "2708.6"}], "BE": [{"2014-15": "3361.2"}, {"2015-16": "4001.2"}, {"2016-17": "10808"}], "RE": [{"2014-15": "4685"}, {"2015-16": "4540.4"}]}}, {"state": "Bihar", "figures": {"A": [{"2013-14": "6171.2"}, {"2014-15": "6583.3"}], "BE": [{"2014-15": "7221.3"}, {"2015-16": "8508.1"}, {"2016-17": "9670.8"}], "RE": [{"2014-15": "9501.8"}, {"2015-16": "8752.6"}]}}, {"state": "Chhattisgarh", "figures": {"A": [{"2013-14": "2822"}, {"2014-15": "2963.4"}], "BE": [{"2014-15": "3631.5"}, {"2015-16": "5183.3"}, {"2016-17": "6804.5"}], "RE": [{"2014-15": "3532.4"}, {"2015-16": "4495.1"}]}}, {"state": "Delhi", "figures": {"A": [{"2013-14": "3766.9"}, {"2014-15": "4000.7"}], "BE": [{"2014-15": "4163.4"}, {"2015-16": "5269.9"}, {"2016-17": "5398.6"}], "RE": [{"2014-15": "4145.8"}, {"2015-16": "4210.5"}]}}, {"state": "Gujarat", "figures": {"A": [{"2013-14": "8544.9"}, {"2014-15": "9122.1"}], "BE": [{"2014-15": "10481.9"}, {"2015-16": "10506.1"}, {"2016-17": "10672.3"}], "RE": [{"2014-15": "9853.2"}, {"2015-16": "9329.4"}]}}, {"state": "Haryana", "figures": {"A": [{"2013-14": "3134.3"}, {"2014-15": "2800.4"}], "BE": [{"2014-15": "3170.7"}, {"2015-16": "3430"}, {"2016-17": "4637.9"}], "RE": [{"2014-15": "3294.7"}, {"2015-16": "3708"}]}}, {"state": "Himachal Pradesh", "figures": {"A": [{"2013-14": "2799"}, {"2014-15": "3073.4"}], "BE": [{"2014-15": "2960.7"}, {"2015-16": "3337"}, {"2016-17": "3670.2"}], "RE": [{"2014-15": "2820.6"}, {"2015-16": "3212.3"}]}}, {"state": "Jammu and Kashmir", "figures": {"A": [{"2013-14": "692.3"}, {"2014-15": "612.4"}], "BE": [{"2014-15": "1816.6"}, {"2015-16": "2298.1"}, {"2016-17": "2539.1"}], "RE": [{"2014-15": "2191.7"}, {"2015-16": "2660.2"}]}}, {"state": "Jharkhand", "figures": {"A": [{"2013-14": "2104"}, {"2014-15": "2797.8"}], "BE": [{"2014-15": "2951.1"}, {"2015-16": "3401.4"}, {"2016-17": "4721"}], "RE": [{"2014-15": "2986.1"}, {"2015-16": "3809.5"}]}}, {"state": "Karnataka", "figures": {"A": [{"2013-14": "8221.3"}, {"2014-15": "7329.2"}], "BE": [{"2014-15": "7588"}, {"2015-16": "5962.8"}, {"2016-17": "6424.6"}], "RE": [{"2014-15": "8128.7"}, {"2015-16": "7692"}]}}, {"state": "Kerala", "figures": {"A": [{"2013-14": "3645.2"}, {"2014-15": "3786.5"}], "BE": [{"2014-15": "3653.6"}, {"2015-16": "4805.1"}, {"2016-17": "4795.7"}], "RE": [{"2014-15": "3932.6"}, {"2015-16": "5410.7"}]}}, {"state": "Madhya Pradesh", "figures": {"A": [{"2013-14": "4160"}, {"2014-15": "4537.7"}], "BE": [{"2014-15": "4278.6"}, {"2015-16": "5967.8"}, {"2016-17": "7218.7"}], "RE": [{"2014-15": "4886.7"}, {"2015-16": "6032.4"}]}}, {"state": "Maharashtra", "figures": {"A": [{"2013-14": "9453.4"}, {"2014-15": "9274.8"}], "BE": [{"2014-15": "8220.2"}, {"2015-16": "8699.3"}, {"2016-17": "10175.9"}], "RE": [{"2014-15": "10132.7"}, {"2015-16": "11077.6"}]}}, {"state": "Meghalaya", "figures": {"A": [{"2013-14": "631.9"}, {"2014-15": "624.4"}], "BE": [{"2014-15": "705.9"}, {"2015-16": "728.5"}, {"2016-17": "656"}], "RE": [{"2014-15": "705.9"}, {"2015-16": "728.5"}]}}, {"state": "Mizoram", "figures": {"A": [{"2013-14": "310.9"}, {"2014-15": "469.5"}], "BE": [{"2014-15": "461.2"}, {"2015-16": "467.4"}, {"2016-17": "486"}], "RE": [{"2014-15": "572.2"}, {"2015-16": "529.4"}]}}, {"state": "Odisha", "figures": {"A": [{"2013-14": "2718.6"}, {"2014-15": "3776.9"}], "BE": [{"2014-15": "3736.4"}, {"2015-16": "4145.1"}, {"2016-17": "4524.4"}], "RE": [{"2014-15": "3783.7"}, {"2015-16": "5218.9"}]}}, {"state": "Punjab", "figures": {"A": [{"2013-14": "1763.6"}, {"2014-15": "2306.5"}], "BE": [{"2014-15": "3110.1"}, {"2015-16": "2955.5"}, {"2016-17": "2558.3"}], "RE": [{"2014-15": "2606.3"}, {"2015-16": "2730.5"}]}}, {"state": "Rajasthan", "figures": {"A": [{"2013-14": "3898.2"}, {"2014-15": "4759.9"}], "BE": [{"2014-15": "5981.5"}, {"2015-16": "5378.2"}, {"2016-17": "6259.3"}], "RE": [{"2014-15": "5866.7"}, {"2015-16": "4981.7"}]}}, {"state": "Sikkim", "figures": {"A": [{"2013-14": "42.5"}, {"2014-15": "239.7"}], "BE": [{"2014-15": "57.7"}, {"2015-16": "297.1"}, {"2016-17": "233.7"}], "RE": [{"2014-15": "58"}, {"2015-16": "368"}]}}, {"state": "Tamil Nadu", "figures": {"A": [{"2013-14": "6676.8"}, {"2014-15": "7509.2"}], "BE": [{"2014-15": "9068.5"}, {"2015-16": "9305.1"}, {"2016-17": "9507"}], "RE": [{"2014-15": "8175.8"}, {"2015-16": "7852.3"}]}}, {"state": "Telangana", "figures": {"A": [{"2013-14": ""}, {"2014-15": "2514"}], "BE": [{"2014-15": "3806"}, {"2015-16": "5920.8"}, {"2016-17": "4371.7"}], "RE": [{"2014-15": "3806"}, {"2015-16": "3690.5"}]}}, {"state": "Tripura", "figures": {"A": [{"2013-14": "808.6"}, {"2014-15": "1017.6"}], "BE": [{"2014-15": "1211.9"}, {"2015-16": "1236"}, {"2016-17": "1250"}], "RE": [{"2014-15": "1212.7"}, {"2015-16": "1249.3"}]}}, {"state": "Uttar Pradesh", "figures": {"A": [{"2013-14": "14969.7"}, {"2014-15": "18478.1"}], "BE": [{"2014-15": "15143.7"}, {"2015-16": "15952"}, {"2016-17": "19139.8"}], "RE": [{"2014-15": "15672.5"}, {"2015-16": "16257.9"}]}}, {"state": "Uttarakhand", "figures": {"A": [{"2013-14": "1450.1"}, {"2014-15": "1948.3"}], "BE": [{"2014-15": "1410.1"}, {"2015-16": "1549.5"}, {"2016-17": "2313.6"}], "RE": [{"2014-15": "2123.1"}, {"2015-16": "1905.2"}]}}, {"state": "West Bengal", "figures": {"A": [{"2013-14": "3247.3"}, {"2014-15": "3752.2"}], "BE": [{"2014-15": "4439.9"}, {"2015-16": "4973.7"}, {"2016-17": "4981.7"}], "RE": [{"2014-15": "4608.9"}, {"2015-16": "6489"}]}}], "indicator": "Total Sector Expenditure", "slugIndicator": "total_sector_expenditure", "unit": "INR (in Crores)"}, {"stateFigures": [{"state": "Andhra Pradesh", "figures": {"A": [{"2013-14": "4.6"}, {"2014-15": ""}], "BE": [{"2014-15": "2.1"}, {"2015-16": "2.4"}, {"2016-17": "2.2"}], "RE": [{"2014-15": "2.1"}, {"2015-16": "2.6"}]}}, {"state": "Assam", "figures": {"A": [{"2013-14": "6.1"}, {"2014-15": "5.8"}], "BE": [{"2014-15": "5.8"}, {"2015-16": "6"}, {"2016-17": "13.8"}], "RE": [{"2014-15": "7.2"}, {"2015-16": "6.1"}]}}, {"state": "Bihar", "figures": {"A": [{"2013-14": "7.7"}, {"2014-15": "7"}], "BE": [{"2014-15": "6.2"}, {"2015-16": "7"}, {"2016-17": "6.7"}], "RE": [{"2014-15": "7.2"}, {"2015-16": "6.6"}]}}, {"state": "Chhattisgarh", "figures": {"A": [{"2013-14": "7.3"}, {"2014-15": "6.4"}], "BE": [{"2014-15": "6.6"}, {"2015-16": "8"}, {"2016-17": "9.7"}], "RE": [{"2014-15": "6.4"}, {"2015-16": "6.8"}]}}, {"state": "Delhi", "figures": {"A": [{"2013-14": "11.1"}, {"2014-15": ""}], "BE": [{"2014-15": "11.3"}, {"2015-16": "12.8"}, {"2016-17": "11.6"}], "RE": [{"2014-15": "11.9"}, {"2015-16": ""}]}}, {"state": "Gujarat", "figures": {"A": [{"2013-14": "8.2"}, {"2014-15": "7.8"}], "BE": [{"2014-15": "8"}, {"2015-16": "7.6"}, {"2016-17": "7.1"}], "RE": [{"2014-15": "7.9"}, {"2015-16": "7"}]}}, {"state": "Haryana", "figures": {"A": [{"2013-14": "6.7"}, {"2014-15": "5.2"}], "BE": [{"2014-15": "5.3"}, {"2015-16": "5"}, {"2016-17": "5.2"}], "RE": [{"2014-15": "5.4"}, {"2015-16": "4.4"}]}}, {"state": "Himachal Pradesh", "figures": {"A": [{"2013-14": "12.9"}, {"2014-15": "12.2"}], "BE": [{"2014-15": "12.3"}, {"2015-16": "11.6"}, {"2016-17": "11.3"}], "RE": [{"2014-15": "11.6"}, {"2015-16": "11.8"}]}}, {"state": "Jammu and Kashmir", "figures": {"A": [{"2013-14": "2.1"}, {"2014-15": "1.7"}], "BE": [{"2014-15": "4.2"}, {"2015-16": "4.9"}, {"2016-17": "4.5"}], "RE": [{"2014-15": "5.1"}, {"2015-16": "5.4"}]}}, {"state": "Jharkhand", "figures": {"A": [{"2013-14": "6.9"}, {"2014-15": "7"}], "BE": [{"2014-15": "5.9"}, {"2015-16": "6.1"}, {"2016-17": "7.4"}], "RE": [{"2014-15": "5.9"}, {"2015-16": "6.8"}]}}, {"state": "Karnataka", "figures": {"A": [{"2013-14": "7.7"}, {"2014-15": "5.9"}], "BE": [{"2014-15": "5.8"}, {"2015-16": "4.4"}, {"2016-17": "4.1"}], "RE": [{"2014-15": "6.3"}, {"2015-16": "5.5"}]}}, {"state": "Kerala", "figures": {"A": [{"2013-14": "5.5"}, {"2014-15": "4.9"}], "BE": [{"2014-15": "4.6"}, {"2015-16": "5"}, {"2016-17": "4.4"}], "RE": [{"2014-15": "4.9"}, {"2015-16": "6.1"}]}}, {"state": "Madhya Pradesh", "figures": {"A": [{"2013-14": "4.9"}, {"2014-15": "4.5"}], "BE": [{"2014-15": "3.7"}, {"2015-16": "4.5"}, {"2016-17": "4.8"}], "RE": [{"2014-15": "4.1"}, {"2015-16": "4.5"}]}}, {"state": "Maharashtra", "figures": {"A": [{"2013-14": "5.4"}, {"2014-15": "4.7"}], "BE": [{"2014-15": "3.9"}, {"2015-16": "3.8"}, {"2016-17": "4"}], "RE": [{"2014-15": "4.6"}, {"2015-16": "4.7"}]}}, {"state": "Meghalaya", "figures": {"A": [{"2013-14": "9.1"}, {"2014-15": "8.2"}], "BE": [{"2014-15": "5.9"}, {"2015-16": "7.6"}, {"2016-17": "6.2"}], "RE": [{"2014-15": "5.9"}, {"2015-16": "7.6"}]}}, {"state": "Mizoram", "figures": {"A": [{"2013-14": "5.5"}, {"2014-15": "6"}], "BE": [{"2014-15": "6.9"}, {"2015-16": "6"}, {"2016-17": "5.9"}], "RE": [{"2014-15": "7.6"}, {"2015-16": "6.3"}]}}, {"state": "Odisha", "figures": {"A": [{"2013-14": "4.8"}, {"2014-15": "5.7"}], "BE": [{"2014-15": "4.7"}, {"2015-16": "4.9"}, {"2016-17": "4.8"}], "RE": [{"2014-15": "4.9"}, {"2015-16": "6.2"}]}}, {"state": "Punjab", "figures": {"A": [{"2013-14": "2.9"}, {"2014-15": "3.2"}], "BE": [{"2014-15": "4.2"}, {"2015-16": "3.7"}, {"2016-17": "3"}], "RE": [{"2014-15": "3.5"}, {"2015-16": "3.5"}]}}, {"state": "Rajasthan", "figures": {"A": [{"2013-14": "4.1"}, {"2014-15": "4.1"}], "BE": [{"2014-15": "4.6"}, {"2015-16": "3.9"}, {"2016-17": "4.1"}], "RE": [{"2014-15": "4.7"}, {"2015-16": "3.6"}]}}, {"state": "Sikkim", "figures": {"A": [{"2013-14": "1"}, {"2014-15": "5.1"}], "BE": [{"2014-15": "0.9"}, {"2015-16": "5.6"}, {"2016-17": "4.3"}], "RE": [{"2014-15": "0.9"}, {"2015-16": "6.8"}]}}, {"state": "Tamil Nadu", "figures": {"A": [{"2013-14": "5.2"}, {"2014-15": "5"}], "BE": [{"2014-15": "5.9"}, {"2015-16": "5.3"}, {"2016-17": "5"}], "RE": [{"2014-15": "5.1"}, {"2015-16": "4.6"}]}}, {"state": "Telangana", "figures": {"A": [{"2013-14": ""}, {"2014-15": "4"}], "BE": [{"2014-15": "3.9"}, {"2015-16": "5.1"}, {"2016-17": "3.4"}], "RE": [{"2014-15": "3.9"}, {"2015-16": "3.7"}]}}, {"state": "Tripura", "figures": {"A": [{"2013-14": "10.3"}, {"2014-15": "9.6"}], "BE": [{"2014-15": "9.8"}, {"2015-16": "8.3"}, {"2016-17": "8.2"}], "RE": [{"2014-15": "9.8"}, {"2015-16": "9.6"}]}}, {"state": "Uttar Pradesh", "figures": {"A": [{"2013-14": "7.5"}, {"2014-15": "7.8"}], "BE": [{"2014-15": "5.5"}, {"2015-16": "5.3"}, {"2016-17": "5.5"}], "RE": [{"2014-15": "6"}, {"2015-16": "4.9"}]}}, {"state": "Uttarakhand", "figures": {"A": [{"2013-14": "6.6"}, {"2014-15": "7.2"}], "BE": [{"2014-15": "4.6"}, {"2015-16": "4.7"}, {"2016-17": "5.7"}], "RE": [{"2014-15": "6.6"}, {"2015-16": "5.7"}]}}, {"state": "West Bengal", "figures": {"A": [{"2013-14": "3"}, {"2014-15": "3"}], "BE": [{"2014-15": "3.4"}, {"2015-16": "3.6"}, {"2016-17": "3.1"}], "RE": [{"2014-15": "3.6"}, {"2015-16": "4.5"}]}}], "indicator": "Total Sector Expenditure as % of State Budget", "slugIndicator": "total_sector_expenditure_as_of_state_budget", "unit": "Percentage"}, {"stateFigures": [{"state": "Andhra Pradesh", "figures": {"A": [{"2013-14": "721.5"}, {"2014-15": ""}], "BE": [{"2014-15": "272"}, {"2015-16": "305.1"}, {"2016-17": "342.5"}], "RE": [{"2014-15": "271.7"}, {"2015-16": "329"}]}}, {"state": "Assam", "figures": {"A": [{"2013-14": "723.6"}, {"2014-15": "854.6"}], "BE": [{"2014-15": "1060.5"}, {"2015-16": "1247.7"}, {"2016-17": "3330.8"}], "RE": [{"2014-15": "1478.2"}, {"2015-16": "1415.8"}]}}, {"state": "Bihar", "figures": {"A": [{"2013-14": "615.3"}, {"2014-15": "648.4"}], "BE": [{"2014-15": "711.3"}, {"2015-16": "828.2"}, {"2016-17": "930.7"}], "RE": [{"2014-15": "935.9"}, {"2015-16": "852"}]}}, {"state": "Chhattisgarh", "figures": {"A": [{"2013-14": "1132.9"}, {"2014-15": "1174.5"}], "BE": [{"2014-15": "1439.2"}, {"2015-16": "2028.3"}, {"2016-17": "2629.4"}], "RE": [{"2014-15": "1400"}, {"2015-16": "1759"}]}}, {"state": "Delhi", "figures": {"A": [{"2013-14": "1928.9"}, {"2014-15": "1991.2"}], "BE": [{"2014-15": "2072.2"}, {"2015-16": "2548.8"}, {"2016-17": "2536.4"}], "RE": [{"2014-15": "2063.4"}, {"2015-16": "2036.4"}]}}, {"state": "Gujarat", "figures": {"A": [{"2013-14": "1410.8"}, {"2014-15": "1487.4"}], "BE": [{"2014-15": "1709.1"}, {"2015-16": "1692.3"}, {"2016-17": "1698.7"}], "RE": [{"2014-15": "1606.6"}, {"2015-16": "1502.8"}]}}, {"state": "Haryana", "figures": {"A": [{"2013-14": "1193.3"}, {"2014-15": "1049.8"}], "BE": [{"2014-15": "1188.6"}, {"2015-16": "1266.7"}, {"2016-17": "1687.9"}], "RE": [{"2014-15": "1235.1"}, {"2015-16": "1369.3"}]}}, {"state": "Himachal Pradesh", "figures": {"A": [{"2013-14": "4046"}, {"2014-15": "4404.4"}], "BE": [{"2014-15": "4242.9"}, {"2015-16": "4742"}, {"2016-17": "5172.9"}], "RE": [{"2014-15": "4042.1"}, {"2015-16": "4564.9"}]}}, {"state": "Jammu and Kashmir", "figures": {"A": [{"2013-14": "576.4"}, {"2014-15": "503.9"}], "BE": [{"2014-15": "1494.9"}, {"2015-16": "1870.1"}, {"2016-17": "2044.5"}], "RE": [{"2014-15": "1803.5"}, {"2015-16": "2164.7"}]}}, {"state": "Jharkhand", "figures": {"A": [{"2013-14": "650.7"}, {"2014-15": "853.9"}], "BE": [{"2014-15": "900.7"}, {"2015-16": "1024.4"}, {"2016-17": "1402.9"}], "RE": [{"2014-15": "911.3"}, {"2015-16": "1147.3"}]}}, {"state": "Karnataka", "figures": {"A": [{"2013-14": "1356.1"}, {"2014-15": "1197.3"}], "BE": [{"2014-15": "1239.6"}, {"2015-16": "964.9"}, {"2016-17": "1030"}], "RE": [{"2014-15": "1327.9"}, {"2015-16": "1244.7"}]}}, {"state": "Kerala", "figures": {"A": [{"2013-14": "1040.5"}, {"2014-15": "1073.9"}], "BE": [{"2014-15": "1036.2"}, {"2015-16": "1354.6"}, {"2016-17": "1344.2"}], "RE": [{"2014-15": "1115.4"}, {"2015-16": "1525.3"}]}}, {"state": "Madhya Pradesh", "figures": {"A": [{"2013-14": "482.4"}, {"2014-15": "521.9"}], "BE": [{"2014-15": "492.1"}, {"2015-16": "680.8"}, {"2016-17": "817"}], "RE": [{"2014-15": "562"}, {"2015-16": "688.1"}]}}, {"state": "Maharashtra", "figures": {"A": [{"2013-14": "817.1"}, {"2014-15": "791.4"}], "BE": [{"2014-15": "701.4"}, {"2015-16": "733.2"}, {"2016-17": "847.5"}], "RE": [{"2014-15": "864.6"}, {"2015-16": "933.6"}]}}, {"state": "Meghalaya", "figures": {"A": [{"2013-14": "2355.9"}, {"2014-15": "2302.3"}], "BE": [{"2014-15": "2603"}, {"2015-16": "2655.8"}, {"2016-17": "2365.6"}], "RE": [{"2014-15": "2603"}, {"2015-16": "2655.8"}]}}, {"state": "Mizoram", "figures": {"A": [{"2013-14": "3024.6"}, {"2014-15": "4518.9"}], "BE": [{"2014-15": "4438.8"}, {"2015-16": "4447.5"}, {"2016-17": "4572"}], "RE": [{"2014-15": "5506.7"}, {"2015-16": "5037.1"}]}}, {"state": "Odisha", "figures": {"A": [{"2013-14": "655.8"}, {"2014-15": "903.6"}], "BE": [{"2014-15": "893.9"}, {"2015-16": "983.7"}, {"2016-17": "1065.1"}], "RE": [{"2014-15": "905.3"}, {"2015-16": "1238.5"}]}}, {"state": "Punjab", "figures": {"A": [{"2013-14": "623.7"}, {"2014-15": "807.4"}], "BE": [{"2014-15": "1088.7"}, {"2015-16": "1024.6"}, {"2016-17": "878.8"}], "RE": [{"2014-15": "912.3"}, {"2015-16": "946.6"}]}}, {"state": "Rajasthan", "figures": {"A": [{"2013-14": "557.4"}, {"2014-15": "670.7"}], "BE": [{"2014-15": "842.8"}, {"2015-16": "747.2"}, {"2016-17": "858"}], "RE": [{"2014-15": "826.7"}, {"2015-16": "692.2"}]}}, {"state": "Sikkim", "figures": {"A": [{"2013-14": "678.1"}, {"2014-15": "3787.2"}], "BE": [{"2014-15": "911.3"}, {"2015-16": "4641.5"}, {"2016-17": "3611.4"}], "RE": [{"2014-15": "915.9"}, {"2015-16": "5750.3"}]}}, {"state": "Tamil Nadu", "figures": {"A": [{"2013-14": "978.1"}, {"2014-15": "1093.8"}], "BE": [{"2014-15": "1320.9"}, {"2015-16": "1348"}, {"2016-17": "1370"}], "RE": [{"2014-15": "1190.9"}, {"2015-16": "1137.5"}]}}, {"state": "Telangana", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Tripura", "figures": {"A": [{"2013-14": "2185.4"}, {"2014-15": "2719.4"}], "BE": [{"2014-15": "3238.7"}, {"2015-16": "3266.5"}, {"2016-17": "3267"}], "RE": [{"2014-15": "3240.9"}, {"2015-16": "3301.6"}]}}, {"state": "Uttar Pradesh", "figures": {"A": [{"2013-14": "720.6"}, {"2014-15": "874.8"}], "BE": [{"2014-15": "717"}, {"2015-16": "743.1"}, {"2016-17": "877.6"}], "RE": [{"2014-15": "742"}, {"2015-16": "757.3"}]}}, {"state": "Uttarakhand", "figures": {"A": [{"2013-14": "1418.3"}, {"2014-15": "1880.3"}], "BE": [{"2014-15": "1360.9"}, {"2015-16": "1475.9"}, {"2016-17": "2176"}], "RE": [{"2014-15": "2049"}, {"2015-16": "1814.7"}]}}, {"state": "West Bengal", "figures": {"A": [{"2013-14": "356.4"}, {"2014-15": "408.2"}], "BE": [{"2014-15": "483"}, {"2015-16": "536.4"}, {"2016-17": "532.5"}], "RE": [{"2014-15": "501.4"}, {"2015-16": "699.8"}]}}], "indicator": "Per Capita Expenditure on Sector ", "slugIndicator": "per_capita_expenditure_on_sector", "unit": "INR Rs."}, {"stateFigures": [{"state": "Andhra Pradesh", "figures": {"A": [{"2013-14": "51.1"}, {"2014-15": ""}], "BE": [{"2014-15": "35.5"}, {"2015-16": "33"}, {"2016-17": "33.4"}], "RE": [{"2014-15": "35.4"}, {"2015-16": "30.6"}]}}, {"state": "Assam", "figures": {"A": [{"2013-14": "57.7"}, {"2014-15": "63.6"}], "BE": [{"2014-15": "50.6"}, {"2015-16": "42.4"}, {"2016-17": "75.5"}], "RE": [{"2014-15": "41.6"}, {"2015-16": "39.7"}]}}, {"state": "Bihar", "figures": {"A": [{"2013-14": "19.6"}, {"2014-15": "19.6"}], "BE": [{"2014-15": "19.1"}, {"2015-16": "17.7"}, {"2016-17": "16.2"}], "RE": [{"2014-15": "18.3"}, {"2015-16": "18.3"}]}}, {"state": "Chhattisgarh", "figures": {"A": [{"2013-14": "46.3"}, {"2014-15": "30.2"}], "BE": [{"2014-15": "28.2"}, {"2015-16": "29.9"}, {"2016-17": "23.4"}], "RE": [{"2014-15": "32.7"}, {"2015-16": "32.7"}]}}, {"state": "Delhi", "figures": {"A": [{"2013-14": "21.5"}, {"2014-15": "23.8"}], "BE": [{"2014-15": "21.6"}, {"2015-16": "20.4"}, {"2016-17": "23.7"}], "RE": [{"2014-15": "23.5"}, {"2015-16": "25.2"}]}}, {"state": "Gujarat", "figures": {"A": [{"2013-14": "58"}, {"2014-15": "63"}], "BE": [{"2014-15": "59.6"}, {"2015-16": "60.6"}, {"2016-17": "61.2"}], "RE": [{"2014-15": "62.9"}, {"2015-16": "67.4"}]}}, {"state": "Haryana", "figures": {"A": [{"2013-14": "39.5"}, {"2014-15": "44.8"}], "BE": [{"2014-15": "44.2"}, {"2015-16": "43.2"}, {"2016-17": "35"}], "RE": [{"2014-15": "39.8"}, {"2015-16": "38"}]}}, {"state": "Himachal Pradesh", "figures": {"A": [{"2013-14": "82.7"}, {"2014-15": "79.4"}], "BE": [{"2014-15": "82.6"}, {"2015-16": "73.3"}, {"2016-17": "76.1"}], "RE": [{"2014-15": "77.5"}, {"2015-16": "66.9"}]}}, {"state": "Jammu and Kashmir", "figures": {"A": [{"2013-14": "100"}, {"2014-15": "100"}], "BE": [{"2014-15": "52.9"}, {"2015-16": "41.6"}, {"2016-17": "26.9"}], "RE": [{"2014-15": "40.8"}, {"2015-16": "36.6"}]}}, {"state": "Jharkhand", "figures": {"A": [{"2013-14": "14.6"}, {"2014-15": "13.4"}], "BE": [{"2014-15": "14.1"}, {"2015-16": "10.6"}, {"2016-17": "8.8"}], "RE": [{"2014-15": "14.9"}, {"2015-16": "11"}]}}, {"state": "Karnataka", "figures": {"A": [{"2013-14": "31.7"}, {"2014-15": "30.4"}], "BE": [{"2014-15": "44.5"}, {"2015-16": "33.3"}, {"2016-17": "30"}], "RE": [{"2014-15": "42"}, {"2015-16": "25.5"}]}}, {"state": "Kerala", "figures": {"A": [{"2013-14": "55.5"}, {"2014-15": "56.3"}], "BE": [{"2014-15": "63.6"}, {"2015-16": "48"}, {"2016-17": "51.1"}], "RE": [{"2014-15": "62.1"}, {"2015-16": "55.2"}]}}, {"state": "Madhya Pradesh", "figures": {"A": [{"2013-14": "40.5"}, {"2014-15": "34.8"}], "BE": [{"2014-15": "37.8"}, {"2015-16": "30.8"}, {"2016-17": "32.3"}], "RE": [{"2014-15": "37.4"}, {"2015-16": "34.1"}]}}, {"state": "Maharashtra", "figures": {"A": [{"2013-14": "53.9"}, {"2014-15": "64.2"}], "BE": [{"2014-15": "67.2"}, {"2015-16": "60.9"}, {"2016-17": "58"}], "RE": [{"2014-15": "62.8"}, {"2015-16": "53.7"}]}}, {"state": "Meghalaya", "figures": {"A": [{"2013-14": "23.2"}, {"2014-15": "19.5"}], "BE": [{"2014-15": "21.8"}, {"2015-16": "20.5"}, {"2016-17": "25"}], "RE": [{"2014-15": "21.8"}, {"2015-16": "20.5"}]}}, {"state": "Mizoram", "figures": {"A": [{"2013-14": "50.6"}, {"2014-15": "48.4"}], "BE": [{"2014-15": "47.7"}, {"2015-16": "51.7"}, {"2016-17": "48"}], "RE": [{"2014-15": "43.2"}, {"2015-16": "47.7"}]}}, {"state": "Odisha", "figures": {"A": [{"2013-14": "50.2"}, {"2014-15": "42"}], "BE": [{"2014-15": "44.3"}, {"2015-16": "43.5"}, {"2016-17": "47.6"}], "RE": [{"2014-15": "44.1"}, {"2015-16": "33.2"}]}}, {"state": "Punjab", "figures": {"A": [{"2013-14": "59.5"}, {"2014-15": "40.8"}], "BE": [{"2014-15": "48.5"}, {"2015-16": "35.5"}, {"2016-17": "36.3"}], "RE": [{"2014-15": "39.3"}, {"2015-16": "35.8"}]}}, {"state": "Rajasthan", "figures": {"A": [{"2013-14": "38.7"}, {"2014-15": "34.1"}], "BE": [{"2014-15": "28"}, {"2015-16": "34"}, {"2016-17": "21.8"}], "RE": [{"2014-15": "26.1"}, {"2015-16": "29.1"}]}}, {"state": "Sikkim", "figures": {"A": [{"2013-14": "45.3"}, {"2014-15": "37.3"}], "BE": [{"2014-15": "35.4"}, {"2015-16": "30.3"}, {"2016-17": "44"}], "RE": [{"2014-15": "35.7"}, {"2015-16": "24.5"}]}}, {"state": "Tamil Nadu", "figures": {"A": [{"2013-14": "28.9"}, {"2014-15": "26.5"}], "BE": [{"2014-15": "22.2"}, {"2015-16": "17"}, {"2016-17": "17"}], "RE": [{"2014-15": "24.8"}, {"2015-16": "19.8"}]}}, {"state": "Telangana", "figures": {"A": [{"2013-14": ""}, {"2014-15": "42"}], "BE": [{"2014-15": "25.1"}, {"2015-16": "15.3"}, {"2016-17": "12.7"}], "RE": [{"2014-15": "25.1"}, {"2015-16": "23.4"}]}}, {"state": "Tripura", "figures": {"A": [{"2013-14": "63.2"}, {"2014-15": "52.9"}], "BE": [{"2014-15": "47.8"}, {"2015-16": "49.2"}, {"2016-17": "57.2"}], "RE": [{"2014-15": "50.7"}, {"2015-16": "47.9"}]}}, {"state": "Uttar Pradesh", "figures": {"A": [{"2013-14": "26"}, {"2014-15": "28.6"}], "BE": [{"2014-15": "35.5"}, {"2015-16": "38.8"}, {"2016-17": "37.2"}], "RE": [{"2014-15": "38.2"}, {"2015-16": "36.9"}]}}, {"state": "Uttarakhand", "figures": {"A": [{"2013-14": "34"}, {"2014-15": "29.7"}], "BE": [{"2014-15": "51.7"}, {"2015-16": "41.4"}, {"2016-17": "30.2"}], "RE": [{"2014-15": "37.2"}, {"2015-16": "32.4"}]}}, {"state": "West Bengal", "figures": {"A": [{"2013-14": "43.2"}, {"2014-15": "40"}], "BE": [{"2014-15": "37.9"}, {"2015-16": "30.3"}, {"2016-17": "29.5"}], "RE": [{"2014-15": "31.7"}, {"2015-16": "21.2"}]}}], "indicator": "Revenue Expenditure as % of Total Sector Expenditure", "slugIndicator": "revenue_expenditure_as_of_total_sector_expenditure", "unit": "Percentage"}, {"stateFigures": [{"state": "Andhra Pradesh", "figures": {"A": [{"2013-14": "48.9"}, {"2014-15": ""}], "BE": [{"2014-15": "64.5"}, {"2015-16": "67"}, {"2016-17": "66.6"}], "RE": [{"2014-15": "64.6"}, {"2015-16": "69.4"}]}}, {"state": "Assam", "figures": {"A": [{"2013-14": "42.3"}, {"2014-15": "36.4"}], "BE": [{"2014-15": "49.4"}, {"2015-16": "57.6"}, {"2016-17": "24.5"}], "RE": [{"2014-15": "58.4"}, {"2015-16": "60.3"}]}}, {"state": "Bihar", "figures": {"A": [{"2013-14": "80.4"}, {"2014-15": "80.4"}], "BE": [{"2014-15": "80.9"}, {"2015-16": "82.3"}, {"2016-17": "83.8"}], "RE": [{"2014-15": "81.7"}, {"2015-16": "81.7"}]}}, {"state": "Chhattisgarh", "figures": {"A": [{"2013-14": "53.7"}, {"2014-15": "69.8"}], "BE": [{"2014-15": "71.8"}, {"2015-16": "70.1"}, {"2016-17": "76.6"}], "RE": [{"2014-15": "67.3"}, {"2015-16": "67.3"}]}}, {"state": "Delhi", "figures": {"A": [{"2013-14": "78.5"}, {"2014-15": "76.2"}], "BE": [{"2014-15": "78.4"}, {"2015-16": "79.6"}, {"2016-17": "76.3"}], "RE": [{"2014-15": "76.5"}, {"2015-16": "74.8"}]}}, {"state": "Gujarat", "figures": {"A": [{"2013-14": "42"}, {"2014-15": "37"}], "BE": [{"2014-15": "40.4"}, {"2015-16": "39.4"}, {"2016-17": "38.8"}], "RE": [{"2014-15": "37.1"}, {"2015-16": "32.6"}]}}, {"state": "Haryana", "figures": {"A": [{"2013-14": "60.5"}, {"2014-15": "55.2"}], "BE": [{"2014-15": "55.8"}, {"2015-16": "56.8"}, {"2016-17": "65"}], "RE": [{"2014-15": "60.2"}, {"2015-16": "62"}]}}, {"state": "Himachal Pradesh", "figures": {"A": [{"2013-14": "17.3"}, {"2014-15": "20.6"}], "BE": [{"2014-15": "17.4"}, {"2015-16": "26.7"}, {"2016-17": "23.9"}], "RE": [{"2014-15": "22.5"}, {"2015-16": "33.1"}]}}, {"state": "Jammu and Kashmir", "figures": {"A": [{"2013-14": "0"}, {"2014-15": "0"}], "BE": [{"2014-15": "47.1"}, {"2015-16": "58.4"}, {"2016-17": "73.1"}], "RE": [{"2014-15": "59.2"}, {"2015-16": "63.4"}]}}, {"state": "Jharkhand", "figures": {"A": [{"2013-14": "85.4"}, {"2014-15": "86.6"}], "BE": [{"2014-15": "85.9"}, {"2015-16": "89.4"}, {"2016-17": "91.2"}], "RE": [{"2014-15": "85.1"}, {"2015-16": "89"}]}}, {"state": "Karnataka", "figures": {"A": [{"2013-14": "68.3"}, {"2014-15": "69.6"}], "BE": [{"2014-15": "55.5"}, {"2015-16": "66.7"}, {"2016-17": "70"}], "RE": [{"2014-15": "58"}, {"2015-16": "74.5"}]}}, {"state": "Kerala", "figures": {"A": [{"2013-14": "44.5"}, {"2014-15": "43.7"}], "BE": [{"2014-15": "36.4"}, {"2015-16": "52"}, {"2016-17": "48.9"}], "RE": [{"2014-15": "37.9"}, {"2015-16": "44.8"}]}}, {"state": "Madhya Pradesh", "figures": {"A": [{"2013-14": "59.5"}, {"2014-15": "65.2"}], "BE": [{"2014-15": "62.2"}, {"2015-16": "69.2"}, {"2016-17": "67.7"}], "RE": [{"2014-15": "62.6"}, {"2015-16": "65.9"}]}}, {"state": "Maharashtra", "figures": {"A": [{"2013-14": "46.1"}, {"2014-15": "35.8"}], "BE": [{"2014-15": "32.8"}, {"2015-16": "39.1"}, {"2016-17": "42"}], "RE": [{"2014-15": "37.2"}, {"2015-16": "46.3"}]}}, {"state": "Meghalaya", "figures": {"A": [{"2013-14": "76.8"}, {"2014-15": "80.5"}], "BE": [{"2014-15": "78.2"}, {"2015-16": "79.5"}, {"2016-17": "75"}], "RE": [{"2014-15": "78.2"}, {"2015-16": "79.5"}]}}, {"state": "Mizoram", "figures": {"A": [{"2013-14": "49.4"}, {"2014-15": "51.6"}], "BE": [{"2014-15": "52.3"}, {"2015-16": "48.3"}, {"2016-17": "52"}], "RE": [{"2014-15": "56.8"}, {"2015-16": "52.3"}]}}, {"state": "Odisha", "figures": {"A": [{"2013-14": "49.8"}, {"2014-15": "58"}], "BE": [{"2014-15": "55.7"}, {"2015-16": "56.5"}, {"2016-17": "52.4"}], "RE": [{"2014-15": "55.9"}, {"2015-16": "66.8"}]}}, {"state": "Punjab", "figures": {"A": [{"2013-14": "40.5"}, {"2014-15": "59.2"}], "BE": [{"2014-15": "51.5"}, {"2015-16": "64.5"}, {"2016-17": "63.7"}], "RE": [{"2014-15": "60.7"}, {"2015-16": "64.2"}]}}, {"state": "Rajasthan", "figures": {"A": [{"2013-14": "61.3"}, {"2014-15": "65.9"}], "BE": [{"2014-15": "72"}, {"2015-16": "66"}, {"2016-17": "78.2"}], "RE": [{"2014-15": "73.9"}, {"2015-16": "70.9"}]}}, {"state": "Sikkim", "figures": {"A": [{"2013-14": "54.7"}, {"2014-15": "62.7"}], "BE": [{"2014-15": "64.6"}, {"2015-16": "69.7"}, {"2016-17": "56"}], "RE": [{"2014-15": "64.3"}, {"2015-16": "75.5"}]}}, {"state": "Tamil Nadu", "figures": {"A": [{"2013-14": "71.1"}, {"2014-15": "73.5"}], "BE": [{"2014-15": "77.8"}, {"2015-16": "83"}, {"2016-17": "83"}], "RE": [{"2014-15": "75.2"}, {"2015-16": "80.2"}]}}, {"state": "Telangana", "figures": {"A": [{"2013-14": ""}, {"2014-15": "58"}], "BE": [{"2014-15": "74.9"}, {"2015-16": "84.7"}, {"2016-17": "87.3"}], "RE": [{"2014-15": "74.9"}, {"2015-16": "76.6"}]}}, {"state": "Tripura", "figures": {"A": [{"2013-14": "36.8"}, {"2014-15": "47.1"}], "BE": [{"2014-15": "52.2"}, {"2015-16": "50.8"}, {"2016-17": "42.8"}], "RE": [{"2014-15": "49.3"}, {"2015-16": "52.1"}]}}, {"state": "Uttar Pradesh", "figures": {"A": [{"2013-14": "74"}, {"2014-15": "71.4"}], "BE": [{"2014-15": "64.5"}, {"2015-16": "61.2"}, {"2016-17": "62.8"}], "RE": [{"2014-15": "61.8"}, {"2015-16": "63.1"}]}}, {"state": "Uttarakhand", "figures": {"A": [{"2013-14": "66"}, {"2014-15": "70.3"}], "BE": [{"2014-15": "48.3"}, {"2015-16": "58.6"}, {"2016-17": "69.8"}], "RE": [{"2014-15": "62.8"}, {"2015-16": "67.6"}]}}, {"state": "West Bengal", "figures": {"A": [{"2013-14": "56.8"}, {"2014-15": "60"}], "BE": [{"2014-15": "62.1"}, {"2015-16": "69.7"}, {"2016-17": "70.5"}], "RE": [{"2014-15": "68.3"}, {"2015-16": "78.8"}]}}], "indicator": "Capital Expenditure (including Loans & Advances ) as % of Total Sector Expenditure", "slugIndicator": "capital_expenditure_including_loans_advances_as_of_total_sector_expenditure", "unit": "Percentage"}], "slugSector": "public_works"}, {"sector": " Irrigation & Water Resources", "subIndicators": [{"stateFigures": [{"state": "Andhra Pradesh", "figures": {"A": [{"2013-14": "18777.8"}, {"2014-15": ""}], "BE": [{"2014-15": "8486.1"}, {"2015-16": "5290.5"}, {"2016-17": "8014.5"}], "RE": [{"2014-15": "8477.2"}, {"2015-16": "8892"}]}}, {"state": "Assam", "figures": {"A": [{"2013-14": "1287.6"}, {"2014-15": "1979.1"}], "BE": [{"2014-15": "2260.8"}, {"2015-16": "3726.3"}, {"2016-17": "4517.3"}], "RE": [{"2014-15": "3866.3"}, {"2015-16": "4233.2"}]}}, {"state": "Bihar", "figures": {"A": [{"2013-14": "2853.8"}, {"2014-15": "2464"}], "BE": [{"2014-15": "3405.7"}, {"2015-16": "3196.8"}, {"2016-17": "2872"}], "RE": [{"2014-15": "4217.8"}, {"2015-16": "3499.2"}]}}, {"state": "Chhattisgarh", "figures": {"A": [{"2013-14": "2045.3"}, {"2014-15": "1943.8"}], "BE": [{"2014-15": "2443"}, {"2015-16": "2758"}, {"2016-17": "2924.1"}], "RE": [{"2014-15": "2214.9"}, {"2015-16": "2247.6"}]}}, {"state": "Delhi", "figures": {"A": [{"2013-14": "193.2"}, {"2014-15": "229.7"}], "BE": [{"2014-15": "230.2"}, {"2015-16": "229"}, {"2016-17": "266.2"}], "RE": [{"2014-15": "236.2"}, {"2015-16": "224.1"}]}}, {"state": "Gujarat", "figures": {"A": [{"2013-14": "8419.3"}, {"2014-15": "10267.3"}], "BE": [{"2014-15": "11316.5"}, {"2015-16": "11593.1"}, {"2016-17": "10706"}], "RE": [{"2014-15": "11679.1"}, {"2015-16": "10773.3"}]}}, {"state": "Haryana", "figures": {"A": [{"2013-14": "2070.1"}, {"2014-15": "2124.5"}], "BE": [{"2014-15": "2229.7"}, {"2015-16": "2371.7"}, {"2016-17": "2652.6"}], "RE": [{"2014-15": "2229.3"}, {"2015-16": "2186.5"}]}}, {"state": "Himachal Pradesh", "figures": {"A": [{"2013-14": "2000.8"}, {"2014-15": "2697"}], "BE": [{"2014-15": "1961.3"}, {"2015-16": "2452.3"}, {"2016-17": "2800.6"}], "RE": [{"2014-15": "2173.9"}, {"2015-16": "2069.8"}]}}, {"state": "Jammu and Kashmir", "figures": {"A": [{"2013-14": "399.8"}, {"2014-15": "412.9"}], "BE": [{"2014-15": "657.3"}, {"2015-16": "912.4"}, {"2016-17": "1335.8"}], "RE": [{"2014-15": "800.5"}, {"2015-16": "890.1"}]}}, {"state": "Jharkhand", "figures": {"A": [{"2013-14": "964.9"}, {"2014-15": "1040.2"}], "BE": [{"2014-15": "2344.8"}, {"2015-16": "2459"}, {"2016-17": "2325.2"}], "RE": [{"2014-15": "2327.8"}, {"2015-16": "1678.1"}]}}, {"state": "Karnataka", "figures": {"A": [{"2013-14": "7116.1"}, {"2014-15": "8644.4"}], "BE": [{"2014-15": "9367.3"}, {"2015-16": "10628.1"}, {"2016-17": "11389.3"}], "RE": [{"2014-15": "7826.5"}, {"2015-16": "8723.5"}]}}, {"state": "Kerala", "figures": {"A": [{"2013-14": "521.6"}, {"2014-15": "448.6"}], "BE": [{"2014-15": "1178.4"}, {"2015-16": "835.5"}, {"2016-17": "734.2"}], "RE": [{"2014-15": "932.7"}, {"2015-16": "663.9"}]}}, {"state": "Madhya Pradesh", "figures": {"A": [{"2013-14": "5364.9"}, {"2014-15": "4836.9"}], "BE": [{"2014-15": "5516.3"}, {"2015-16": "7107.9"}, {"2016-17": "8871"}], "RE": [{"2014-15": "5949.9"}, {"2015-16": "7277"}]}}, {"state": "Maharashtra", "figures": {"A": [{"2013-14": "8839.2"}, {"2014-15": "9824.1"}], "BE": [{"2014-15": "10061.5"}, {"2015-16": "8994.2"}, {"2016-17": "11720.4"}], "RE": [{"2014-15": "11281.8"}, {"2015-16": "11651.6"}]}}, {"state": "Meghalaya", "figures": {"A": [{"2013-14": "124.8"}, {"2014-15": "277"}], "BE": [{"2014-15": "343.8"}, {"2015-16": "344.1"}, {"2016-17": "258.2"}], "RE": [{"2014-15": "343.8"}, {"2015-16": "344.1"}]}}, {"state": "Mizoram", "figures": {"A": [{"2013-14": "10.2"}, {"2014-15": "11.4"}], "BE": [{"2014-15": "77.1"}, {"2015-16": "97.2"}, {"2016-17": "51.3"}], "RE": [{"2014-15": "77.4"}, {"2015-16": "96.8"}]}}, {"state": "Odisha", "figures": {"A": [{"2013-14": "3657.7"}, {"2014-15": "4278.7"}], "BE": [{"2014-15": "5087.7"}, {"2015-16": "6212.2"}, {"2016-17": "7241.7"}], "RE": [{"2014-15": "4401.2"}, {"2015-16": "6019.1"}]}}, {"state": "Punjab", "figures": {"A": [{"2013-14": "1694.7"}, {"2014-15": "1881.3"}], "BE": [{"2014-15": "2622.6"}, {"2015-16": "2388.8"}, {"2016-17": "2696.1"}], "RE": [{"2014-15": "2057.2"}, {"2015-16": "2521.4"}]}}, {"state": "Rajasthan", "figures": {"A": [{"2013-14": "2699.3"}, {"2014-15": "2989.9"}], "BE": [{"2014-15": "3379.7"}, {"2015-16": "3466.5"}, {"2016-17": "4131.2"}], "RE": [{"2014-15": "3184"}, {"2015-16": "3246.6"}]}}, {"state": "Sikkim", "figures": {"A": [{"2013-14": "44.4"}, {"2014-15": "22.4"}], "BE": [{"2014-15": "154.5"}, {"2015-16": "115.6"}, {"2016-17": "164.6"}], "RE": [{"2014-15": "154.5"}, {"2015-16": "116.1"}]}}, {"state": "Tamil Nadu", "figures": {"A": [{"2013-14": "2778.6"}, {"2014-15": "3036"}], "BE": [{"2014-15": "3669.8"}, {"2015-16": "3727.4"}, {"2016-17": "3406.7"}], "RE": [{"2014-15": "3262.5"}, {"2015-16": "2769.4"}]}}, {"state": "Telangana", "figures": {"A": [{"2013-14": ""}, {"2014-15": "8052.9"}], "BE": [{"2014-15": "9407.2"}, {"2015-16": "11733.9"}, {"2016-17": "26652.3"}], "RE": [{"2014-15": "9407.2"}, {"2015-16": "11281.2"}]}}, {"state": "Tripura", "figures": {"A": [{"2013-14": "102.6"}, {"2014-15": "73.4"}], "BE": [{"2014-15": "165.9"}, {"2015-16": "197.8"}, {"2016-17": "151.9"}], "RE": [{"2014-15": "149.4"}, {"2015-16": "155.2"}]}}, {"state": "Uttar Pradesh", "figures": {"A": [{"2013-14": "7684.8"}, {"2014-15": "9612.8"}], "BE": [{"2014-15": "10808.2"}, {"2015-16": "11118.9"}, {"2016-17": "12831.8"}], "RE": [{"2014-15": "10954"}, {"2015-16": "10820.5"}]}}, {"state": "Uttarakhand", "figures": {"A": [{"2013-14": "755"}, {"2014-15": "1094.3"}], "BE": [{"2014-15": "1229.2"}, {"2015-16": "1009.7"}, {"2016-17": "1231.5"}], "RE": [{"2014-15": "1322.3"}, {"2015-16": "1202.7"}]}}, {"state": "West Bengal", "figures": {"A": [{"2013-14": "1817.6"}, {"2014-15": "2482"}], "BE": [{"2014-15": "3705.8"}, {"2015-16": "3679.4"}, {"2016-17": "4115.6"}], "RE": [{"2014-15": "3018.9"}, {"2015-16": "3347.8"}]}}], "indicator": "Total Sector Expenditure", "slugIndicator": "total_sector_expenditure", "unit": "INR (in Crores)"}, {"stateFigures": [{"state": "Andhra Pradesh", "figures": {"A": [{"2013-14": "13.7"}, {"2014-15": ""}], "BE": [{"2014-15": "7.6"}, {"2015-16": "4.7"}, {"2016-17": "5.9"}], "RE": [{"2014-15": "7.6"}, {"2015-16": "7.9"}]}}, {"state": "Assam", "figures": {"A": [{"2013-14": "3.5"}, {"2014-15": "4.2"}], "BE": [{"2014-15": "3.9"}, {"2015-16": "5.6"}, {"2016-17": "5.8"}], "RE": [{"2014-15": "6"}, {"2015-16": "5.7"}]}}, {"state": "Bihar", "figures": {"A": [{"2013-14": "3.5"}, {"2014-15": "2.6"}], "BE": [{"2014-15": "2.9"}, {"2015-16": "2.6"}, {"2016-17": "2"}], "RE": [{"2014-15": "3.2"}, {"2015-16": "2.6"}]}}, {"state": "Chhattisgarh", "figures": {"A": [{"2013-14": "5.3"}, {"2014-15": "4.2"}], "BE": [{"2014-15": "4.5"}, {"2015-16": "4.2"}, {"2016-17": "4.2"}], "RE": [{"2014-15": "4"}, {"2015-16": "3.4"}]}}, {"state": "Delhi", "figures": {"A": [{"2013-14": "0.6"}, {"2014-15": ""}], "BE": [{"2014-15": "0.6"}, {"2015-16": "0.6"}, {"2016-17": "0.6"}], "RE": [{"2014-15": "0.7"}, {"2015-16": ""}]}}, {"state": "Gujarat", "figures": {"A": [{"2013-14": "8"}, {"2014-15": "8.8"}], "BE": [{"2014-15": "8.6"}, {"2015-16": "8.4"}, {"2016-17": "7.1"}], "RE": [{"2014-15": "9.3"}, {"2015-16": "8.1"}]}}, {"state": "Haryana", "figures": {"A": [{"2013-14": "4.4"}, {"2014-15": "4"}], "BE": [{"2014-15": "3.8"}, {"2015-16": "3.4"}, {"2016-17": "3"}], "RE": [{"2014-15": "3.6"}, {"2015-16": "2.6"}]}}, {"state": "Himachal Pradesh", "figures": {"A": [{"2013-14": "9.2"}, {"2014-15": "10.7"}], "BE": [{"2014-15": "8.2"}, {"2015-16": "8.5"}, {"2016-17": "8.6"}], "RE": [{"2014-15": "9"}, {"2015-16": "7.6"}]}}, {"state": "Jammu and Kashmir", "figures": {"A": [{"2013-14": "1.2"}, {"2014-15": "1.2"}], "BE": [{"2014-15": "1.5"}, {"2015-16": "2"}, {"2016-17": "2.3"}], "RE": [{"2014-15": "1.9"}, {"2015-16": "1.8"}]}}, {"state": "Jharkhand", "figures": {"A": [{"2013-14": "3.2"}, {"2014-15": "2.6"}], "BE": [{"2014-15": "4.7"}, {"2015-16": "4.4"}, {"2016-17": "3.7"}], "RE": [{"2014-15": "4.6"}, {"2015-16": "3"}]}}, {"state": "Karnataka", "figures": {"A": [{"2013-14": "6.7"}, {"2014-15": "7"}], "BE": [{"2014-15": "7.1"}, {"2015-16": "7.8"}, {"2016-17": "7.3"}], "RE": [{"2014-15": "6.1"}, {"2015-16": "6.3"}]}}, {"state": "Kerala", "figures": {"A": [{"2013-14": "0.8"}, {"2014-15": "0.6"}], "BE": [{"2014-15": "1.5"}, {"2015-16": "0.9"}, {"2016-17": "0.7"}], "RE": [{"2014-15": "1.2"}, {"2015-16": "0.7"}]}}, {"state": "Madhya Pradesh", "figures": {"A": [{"2013-14": "6.3"}, {"2014-15": "4.8"}], "BE": [{"2014-15": "4.7"}, {"2015-16": "5.4"}, {"2016-17": "5.9"}], "RE": [{"2014-15": "5"}, {"2015-16": "5.5"}]}}, {"state": "Maharashtra", "figures": {"A": [{"2013-14": "5"}, {"2014-15": "5"}], "BE": [{"2014-15": "4.7"}, {"2015-16": "3.9"}, {"2016-17": "4.6"}], "RE": [{"2014-15": "5.1"}, {"2015-16": "4.9"}]}}, {"state": "Meghalaya", "figures": {"A": [{"2013-14": "1.8"}, {"2014-15": "3.6"}], "BE": [{"2014-15": "2.9"}, {"2015-16": "3.6"}, {"2016-17": "2.5"}], "RE": [{"2014-15": "2.9"}, {"2015-16": "3.6"}]}}, {"state": "Mizoram", "figures": {"A": [{"2013-14": "0.2"}, {"2014-15": "0.1"}], "BE": [{"2014-15": "1.2"}, {"2015-16": "1.3"}, {"2016-17": "0.6"}], "RE": [{"2014-15": "1"}, {"2015-16": "1.1"}]}}, {"state": "Odisha", "figures": {"A": [{"2013-14": "6.5"}, {"2014-15": "6.4"}], "BE": [{"2014-15": "6.3"}, {"2015-16": "7.4"}, {"2016-17": "7.7"}], "RE": [{"2014-15": "5.7"}, {"2015-16": "7.1"}]}}, {"state": "Punjab", "figures": {"A": [{"2013-14": "2.8"}, {"2014-15": "2.6"}], "BE": [{"2014-15": "3.6"}, {"2015-16": "3"}, {"2016-17": "3.1"}], "RE": [{"2014-15": "2.7"}, {"2015-16": "3.2"}]}}, {"state": "Rajasthan", "figures": {"A": [{"2013-14": "2.9"}, {"2014-15": "2.6"}], "BE": [{"2014-15": "2.6"}, {"2015-16": "2.5"}, {"2016-17": "2.7"}], "RE": [{"2014-15": "2.5"}, {"2015-16": "2.4"}]}}, {"state": "Sikkim", "figures": {"A": [{"2013-14": "1"}, {"2014-15": "0.5"}], "BE": [{"2014-15": "2.4"}, {"2015-16": "2.2"}, {"2016-17": "3"}], "RE": [{"2014-15": "2.3"}, {"2015-16": "2.1"}]}}, {"state": "Tamil Nadu", "figures": {"A": [{"2013-14": "2.2"}, {"2014-15": "2"}], "BE": [{"2014-15": "2.4"}, {"2015-16": "2.1"}, {"2016-17": "1.8"}], "RE": [{"2014-15": "2"}, {"2015-16": "1.6"}]}}, {"state": "Telangana", "figures": {"A": [{"2013-14": ""}, {"2014-15": "12.9"}], "BE": [{"2014-15": "9.6"}, {"2015-16": "10.1"}, {"2016-17": "20.4"}], "RE": [{"2014-15": "9.6"}, {"2015-16": "11.3"}]}}, {"state": "Tripura", "figures": {"A": [{"2013-14": "1.3"}, {"2014-15": "0.7"}], "BE": [{"2014-15": "1.3"}, {"2015-16": "1.3"}, {"2016-17": "1"}], "RE": [{"2014-15": "1.2"}, {"2015-16": "1.2"}]}}, {"state": "Uttar Pradesh", "figures": {"A": [{"2013-14": "3.8"}, {"2014-15": "4.1"}], "BE": [{"2014-15": "3.9"}, {"2015-16": "3.7"}, {"2016-17": "3.7"}], "RE": [{"2014-15": "4.2"}, {"2015-16": "3.3"}]}}, {"state": "Uttarakhand", "figures": {"A": [{"2013-14": "3.4"}, {"2014-15": "4"}], "BE": [{"2014-15": "4"}, {"2015-16": "3.1"}, {"2016-17": "3"}], "RE": [{"2014-15": "4.1"}, {"2015-16": "3.6"}]}}, {"state": "West Bengal", "figures": {"A": [{"2013-14": "1.7"}, {"2014-15": "2"}], "BE": [{"2014-15": "2.9"}, {"2015-16": "2.7"}, {"2016-17": "2.6"}], "RE": [{"2014-15": "2.3"}, {"2015-16": "2.3"}]}}], "indicator": "Total Sector Expenditure as % of State Budget", "slugIndicator": "total_sector_expenditure_as_of_state_budget", "unit": "Percentage"}, {"stateFigures": [{"state": "Andhra Pradesh", "figures": {"A": [{"2013-14": "2177.7"}, {"2014-15": ""}], "BE": [{"2014-15": "976"}, {"2015-16": "603.5"}, {"2016-17": "907"}], "RE": [{"2014-15": "974.9"}, {"2015-16": "1014.4"}]}}, {"state": "Assam", "figures": {"A": [{"2013-14": "411.1"}, {"2014-15": "624.5"}], "BE": [{"2014-15": "713.4"}, {"2015-16": "1162"}, {"2016-17": "1392.1"}], "RE": [{"2014-15": "1219.9"}, {"2015-16": "1320"}]}}, {"state": "Bihar", "figures": {"A": [{"2013-14": "284.6"}, {"2014-15": "242.7"}], "BE": [{"2014-15": "335.5"}, {"2015-16": "311.2"}, {"2016-17": "276.4"}], "RE": [{"2014-15": "415.4"}, {"2015-16": "340.6"}]}}, {"state": "Chhattisgarh", "figures": {"A": [{"2013-14": "821.1"}, {"2014-15": "770.4"}], "BE": [{"2014-15": "968.2"}, {"2015-16": "1079.2"}, {"2016-17": "1129.9"}], "RE": [{"2014-15": "877.8"}, {"2015-16": "879.5"}]}}, {"state": "Delhi", "figures": {"A": [{"2013-14": "98.9"}, {"2014-15": "114.3"}], "BE": [{"2014-15": "114.6"}, {"2015-16": "110.8"}, {"2016-17": "125"}], "RE": [{"2014-15": "117.5"}, {"2015-16": "108.4"}]}}, {"state": "Gujarat", "figures": {"A": [{"2013-14": "1390"}, {"2014-15": "1674.1"}], "BE": [{"2014-15": "1845.2"}, {"2015-16": "1867.4"}, {"2016-17": "1704.1"}], "RE": [{"2014-15": "1904.3"}, {"2015-16": "1735.4"}]}}, {"state": "Haryana", "figures": {"A": [{"2013-14": "788.1"}, {"2014-15": "796.4"}], "BE": [{"2014-15": "835.9"}, {"2015-16": "875.9"}, {"2016-17": "965.4"}], "RE": [{"2014-15": "835.7"}, {"2015-16": "807.4"}]}}, {"state": "Himachal Pradesh", "figures": {"A": [{"2013-14": "2892.2"}, {"2014-15": "3865"}], "BE": [{"2014-15": "2810.7"}, {"2015-16": "3484.9"}, {"2016-17": "3947.3"}], "RE": [{"2014-15": "3115.4"}, {"2015-16": "2941.3"}]}}, {"state": "Jammu and Kashmir", "figures": {"A": [{"2013-14": "332.9"}, {"2014-15": "339.8"}], "BE": [{"2014-15": "540.9"}, {"2015-16": "742.5"}, {"2016-17": "1075.6"}], "RE": [{"2014-15": "658.7"}, {"2015-16": "724.3"}]}}, {"state": "Jharkhand", "figures": {"A": [{"2013-14": "298.4"}, {"2014-15": "317.5"}], "BE": [{"2014-15": "715.6"}, {"2015-16": "740.6"}, {"2016-17": "691"}], "RE": [{"2014-15": "710.4"}, {"2015-16": "505.4"}]}}, {"state": "Karnataka", "figures": {"A": [{"2013-14": "1173.8"}, {"2014-15": "1412.2"}], "BE": [{"2014-15": "1530.3"}, {"2015-16": "1719.8"}, {"2016-17": "1826"}], "RE": [{"2014-15": "1278.5"}, {"2015-16": "1411.6"}]}}, {"state": "Kerala", "figures": {"A": [{"2013-14": "148.9"}, {"2014-15": "127.2"}], "BE": [{"2014-15": "334.2"}, {"2015-16": "235.5"}, {"2016-17": "205.8"}], "RE": [{"2014-15": "264.5"}, {"2015-16": "187.2"}]}}, {"state": "Madhya Pradesh", "figures": {"A": [{"2013-14": "622.2"}, {"2014-15": "556.3"}], "BE": [{"2014-15": "634.4"}, {"2015-16": "810.8"}, {"2016-17": "1003.9"}], "RE": [{"2014-15": "684.3"}, {"2015-16": "830.1"}]}}, {"state": "Maharashtra", "figures": {"A": [{"2013-14": "764"}, {"2014-15": "838.3"}], "BE": [{"2014-15": "858.6"}, {"2015-16": "758"}, {"2016-17": "976.1"}], "RE": [{"2014-15": "962.7"}, {"2015-16": "982"}]}}, {"state": "Meghalaya", "figures": {"A": [{"2013-14": "465.3"}, {"2014-15": "1021.6"}], "BE": [{"2014-15": "1267.5"}, {"2015-16": "1254.4"}, {"2016-17": "931.2"}], "RE": [{"2014-15": "1267.5"}, {"2015-16": "1254.4"}]}}, {"state": "Mizoram", "figures": {"A": [{"2013-14": "99.7"}, {"2014-15": "110"}], "BE": [{"2014-15": "742.2"}, {"2015-16": "924.7"}, {"2016-17": "483"}], "RE": [{"2014-15": "745.3"}, {"2015-16": "921.2"}]}}, {"state": "Odisha", "figures": {"A": [{"2013-14": "882.4"}, {"2014-15": "1023.7"}], "BE": [{"2014-15": "1217.2"}, {"2015-16": "1474.2"}, {"2016-17": "1704.8"}], "RE": [{"2014-15": "1053"}, {"2015-16": "1428.4"}]}}, {"state": "Punjab", "figures": {"A": [{"2013-14": "599.3"}, {"2014-15": "658.5"}], "BE": [{"2014-15": "918"}, {"2015-16": "828.1"}, {"2016-17": "926.1"}], "RE": [{"2014-15": "720.1"}, {"2015-16": "874.1"}]}}, {"state": "Rajasthan", "figures": {"A": [{"2013-14": "385.9"}, {"2014-15": "421.3"}], "BE": [{"2014-15": "476.2"}, {"2015-16": "481.6"}, {"2016-17": "566.3"}], "RE": [{"2014-15": "448.6"}, {"2015-16": "451.1"}]}}, {"state": "Sikkim", "figures": {"A": [{"2013-14": "708.7"}, {"2014-15": "353.6"}], "BE": [{"2014-15": "2440.2"}, {"2015-16": "1806.4"}, {"2016-17": "2543.9"}], "RE": [{"2014-15": "2440.4"}, {"2015-16": "1814.2"}]}}, {"state": "Tamil Nadu", "figures": {"A": [{"2013-14": "407"}, {"2014-15": "442.2"}], "BE": [{"2014-15": "534.5"}, {"2015-16": "540"}, {"2016-17": "490.9"}], "RE": [{"2014-15": "475.2"}, {"2015-16": "401.2"}]}}, {"state": "Telangana", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Tripura", "figures": {"A": [{"2013-14": "277.3"}, {"2014-15": "196.3"}], "BE": [{"2014-15": "443.5"}, {"2015-16": "522.6"}, {"2016-17": "397.1"}], "RE": [{"2014-15": "399.3"}, {"2015-16": "410.3"}]}}, {"state": "Uttar Pradesh", "figures": {"A": [{"2013-14": "369.9"}, {"2014-15": "455.1"}], "BE": [{"2014-15": "511.7"}, {"2015-16": "517.9"}, {"2016-17": "588.4"}], "RE": [{"2014-15": "518.6"}, {"2015-16": "504.1"}]}}, {"state": "Uttarakhand", "figures": {"A": [{"2013-14": "738.5"}, {"2014-15": "1056.1"}], "BE": [{"2014-15": "1186.3"}, {"2015-16": "961.7"}, {"2016-17": "1158.3"}], "RE": [{"2014-15": "1276.1"}, {"2015-16": "1145.6"}]}}, {"state": "West Bengal", "figures": {"A": [{"2013-14": "199.5"}, {"2014-15": "270"}], "BE": [{"2014-15": "403.2"}, {"2015-16": "396.8"}, {"2016-17": "439.9"}], "RE": [{"2014-15": "328.4"}, {"2015-16": "361"}]}}], "indicator": "Per Capita Expenditure on Sector ", "slugIndicator": "per_capita_expenditure_on_sector", "unit": "INR Rs."}, {"stateFigures": [{"state": "Andhra Pradesh", "figures": {"A": [{"2013-14": "47.9"}, {"2014-15": ""}], "BE": [{"2014-15": "63.2"}, {"2015-16": "13.4"}, {"2016-17": "9"}], "RE": [{"2014-15": "62.2"}, {"2015-16": "7.1"}]}}, {"state": "Assam", "figures": {"A": [{"2013-14": "48.6"}, {"2014-15": "37"}], "BE": [{"2014-15": "38.7"}, {"2015-16": "26"}, {"2016-17": "29.4"}], "RE": [{"2014-15": "22.5"}, {"2015-16": "23"}]}}, {"state": "Bihar", "figures": {"A": [{"2013-14": "37"}, {"2014-15": "42.2"}], "BE": [{"2014-15": "43.4"}, {"2015-16": "48.5"}, {"2016-17": "41"}], "RE": [{"2014-15": "35.7"}, {"2015-16": "44.5"}]}}, {"state": "Chhattisgarh", "figures": {"A": [{"2013-14": "17.6"}, {"2014-15": "41"}], "BE": [{"2014-15": "18.4"}, {"2015-16": "40.2"}, {"2016-17": "42.2"}], "RE": [{"2014-15": "20.2"}, {"2015-16": "43"}]}}, {"state": "Delhi", "figures": {"A": [{"2013-14": "61.6"}, {"2014-15": "62.4"}], "BE": [{"2014-15": "61.5"}, {"2015-16": "69.4"}, {"2016-17": "74.3"}], "RE": [{"2014-15": "62.3"}, {"2015-16": "74.6"}]}}, {"state": "Gujarat", "figures": {"A": [{"2013-14": "14.1"}, {"2014-15": "11.9"}], "BE": [{"2014-15": "11.7"}, {"2015-16": "11.8"}, {"2016-17": "12.6"}], "RE": [{"2014-15": "10.9"}, {"2015-16": "10.9"}]}}, {"state": "Haryana", "figures": {"A": [{"2013-14": "56.1"}, {"2014-15": "54.6"}], "BE": [{"2014-15": "74.9"}, {"2015-16": "74.7"}, {"2016-17": "72.6"}], "RE": [{"2014-15": "75"}, {"2015-16": "75.4"}]}}, {"state": "Himachal Pradesh", "figures": {"A": [{"2013-14": "88.8"}, {"2014-15": "80.6"}], "BE": [{"2014-15": "86.7"}, {"2015-16": "77.1"}, {"2016-17": "80.7"}], "RE": [{"2014-15": "75.9"}, {"2015-16": "86.4"}]}}, {"state": "Jammu and Kashmir", "figures": {"A": [{"2013-14": "100"}, {"2014-15": "100"}], "BE": [{"2014-15": "79.2"}, {"2015-16": "58"}, {"2016-17": "41.2"}], "RE": [{"2014-15": "59.5"}, {"2015-16": "55.3"}]}}, {"state": "Jharkhand", "figures": {"A": [{"2013-14": "32.1"}, {"2014-15": "32.4"}], "BE": [{"2014-15": "18.8"}, {"2015-16": "18.5"}, {"2016-17": "21.2"}], "RE": [{"2014-15": "18.3"}, {"2015-16": "24.3"}]}}, {"state": "Karnataka", "figures": {"A": [{"2013-14": "10.3"}, {"2014-15": "10.7"}], "BE": [{"2014-15": "14.4"}, {"2015-16": "15"}, {"2016-17": "15"}], "RE": [{"2014-15": "15.4"}, {"2015-16": "15.5"}]}}, {"state": "Kerala", "figures": {"A": [{"2013-14": "58.9"}, {"2014-15": "60.1"}], "BE": [{"2014-15": "31.2"}, {"2015-16": "45.9"}, {"2016-17": "54.7"}], "RE": [{"2014-15": "39"}, {"2015-16": "54.3"}]}}, {"state": "Madhya Pradesh", "figures": {"A": [{"2013-14": "15"}, {"2014-15": "17.5"}], "BE": [{"2014-15": "19"}, {"2015-16": "13.8"}, {"2016-17": "12.2"}], "RE": [{"2014-15": "17.1"}, {"2015-16": "12.5"}]}}, {"state": "Maharashtra", "figures": {"A": [{"2013-14": "5.2"}, {"2014-15": "21.3"}], "BE": [{"2014-15": "21.3"}, {"2015-16": "25.7"}, {"2016-17": "21"}], "RE": [{"2014-15": "21"}, {"2015-16": "20.5"}]}}, {"state": "Meghalaya", "figures": {"A": [{"2013-14": "97.3"}, {"2014-15": "99.8"}], "BE": [{"2014-15": "98.7"}, {"2015-16": "98.7"}, {"2016-17": "98.9"}], "RE": [{"2014-15": "98.7"}, {"2015-16": "98.7"}]}}, {"state": "Mizoram", "figures": {"A": [{"2013-14": "100"}, {"2014-15": "98.7"}], "BE": [{"2014-15": "16.8"}, {"2015-16": "12.2"}, {"2016-17": "43.5"}], "RE": [{"2014-15": "17.1"}, {"2015-16": "12.8"}]}}, {"state": "Odisha", "figures": {"A": [{"2013-14": "39.5"}, {"2014-15": "33.4"}], "BE": [{"2014-15": "33.1"}, {"2015-16": "30.1"}, {"2016-17": "27.3"}], "RE": [{"2014-15": "32.2"}, {"2015-16": "32.6"}]}}, {"state": "Punjab", "figures": {"A": [{"2013-14": "78.7"}, {"2014-15": "65"}], "BE": [{"2014-15": "47.8"}, {"2015-16": "55.2"}, {"2016-17": "52"}], "RE": [{"2014-15": "62.5"}, {"2015-16": "54.1"}]}}, {"state": "Rajasthan", "figures": {"A": [{"2013-14": "61.8"}, {"2014-15": "57.5"}], "BE": [{"2014-15": "53.6"}, {"2015-16": "53.9"}, {"2016-17": "47.5"}], "RE": [{"2014-15": "55.9"}, {"2015-16": "57.3"}]}}, {"state": "Sikkim", "figures": {"A": [{"2013-14": "91.4"}, {"2014-15": "81"}], "BE": [{"2014-15": "96.3"}, {"2015-16": "90"}, {"2016-17": "93.9"}], "RE": [{"2014-15": "96.3"}, {"2015-16": "90"}]}}, {"state": "Tamil Nadu", "figures": {"A": [{"2013-14": "61.2"}, {"2014-15": "57.2"}], "BE": [{"2014-15": "39.8"}, {"2015-16": "48.3"}, {"2016-17": "50.7"}], "RE": [{"2014-15": "51.7"}, {"2015-16": "60.1"}]}}, {"state": "Telangana", "figures": {"A": [{"2013-14": ""}, {"2014-15": "35.5"}], "BE": [{"2014-15": "37.7"}, {"2015-16": "40.3"}, {"2016-17": "31"}], "RE": [{"2014-15": "37.7"}, {"2015-16": "25.9"}]}}, {"state": "Tripura", "figures": {"A": [{"2013-14": "78.1"}, {"2014-15": "77.6"}], "BE": [{"2014-15": "63.5"}, {"2015-16": "59"}, {"2016-17": "86.1"}], "RE": [{"2014-15": "70.2"}, {"2015-16": "79.8"}]}}, {"state": "Uttar Pradesh", "figures": {"A": [{"2013-14": "56"}, {"2014-15": "51"}], "BE": [{"2014-15": "53.1"}, {"2015-16": "55.7"}, {"2016-17": "48.5"}], "RE": [{"2014-15": "55.7"}, {"2015-16": "50.1"}]}}, {"state": "Uttarakhand", "figures": {"A": [{"2013-14": "42.3"}, {"2014-15": "32.6"}], "BE": [{"2014-15": "33.9"}, {"2015-16": "38.9"}, {"2016-17": "37.5"}], "RE": [{"2014-15": "30"}, {"2015-16": "32.5"}]}}, {"state": "West Bengal", "figures": {"A": [{"2013-14": "60.2"}, {"2014-15": "43.5"}], "BE": [{"2014-15": "41"}, {"2015-16": "32"}, {"2016-17": "30.6"}], "RE": [{"2014-15": "39.7"}, {"2015-16": "35"}]}}], "indicator": "Revenue Expenditure as % of Total Sector Expenditure", "slugIndicator": "revenue_expenditure_as_of_total_sector_expenditure", "unit": "Percentage"}, {"stateFigures": [{"state": "Andhra Pradesh", "figures": {"A": [{"2013-14": "52.1"}, {"2014-15": ""}], "BE": [{"2014-15": "36.8"}, {"2015-16": "86.6"}, {"2016-17": "91"}], "RE": [{"2014-15": "37.8"}, {"2015-16": "92.9"}]}}, {"state": "Assam", "figures": {"A": [{"2013-14": "51.4"}, {"2014-15": "63"}], "BE": [{"2014-15": "61.3"}, {"2015-16": "74"}, {"2016-17": "70.6"}], "RE": [{"2014-15": "77.5"}, {"2015-16": "77"}]}}, {"state": "Bihar", "figures": {"A": [{"2013-14": "63"}, {"2014-15": "57.8"}], "BE": [{"2014-15": "56.6"}, {"2015-16": "51.5"}, {"2016-17": "59"}], "RE": [{"2014-15": "64.3"}, {"2015-16": "55.5"}]}}, {"state": "Chhattisgarh", "figures": {"A": [{"2013-14": "82.4"}, {"2014-15": "59"}], "BE": [{"2014-15": "81.6"}, {"2015-16": "59.8"}, {"2016-17": "57.8"}], "RE": [{"2014-15": "79.8"}, {"2015-16": "57"}]}}, {"state": "Delhi", "figures": {"A": [{"2013-14": "38.4"}, {"2014-15": "37.6"}], "BE": [{"2014-15": "38.5"}, {"2015-16": "30.6"}, {"2016-17": "25.7"}], "RE": [{"2014-15": "37.7"}, {"2015-16": "25.4"}]}}, {"state": "Gujarat", "figures": {"A": [{"2013-14": "85.9"}, {"2014-15": "88.1"}], "BE": [{"2014-15": "88.3"}, {"2015-16": "88.2"}, {"2016-17": "87.4"}], "RE": [{"2014-15": "89.1"}, {"2015-16": "89.1"}]}}, {"state": "Haryana", "figures": {"A": [{"2013-14": "43.9"}, {"2014-15": "45.4"}], "BE": [{"2014-15": "25.1"}, {"2015-16": "25.3"}, {"2016-17": "27.4"}], "RE": [{"2014-15": "25"}, {"2015-16": "24.6"}]}}, {"state": "Himachal Pradesh", "figures": {"A": [{"2013-14": "11.2"}, {"2014-15": "19.4"}], "BE": [{"2014-15": "13.3"}, {"2015-16": "22.9"}, {"2016-17": "19.3"}], "RE": [{"2014-15": "24.1"}, {"2015-16": "13.6"}]}}, {"state": "Jammu and Kashmir", "figures": {"A": [{"2013-14": "0"}, {"2014-15": "0"}], "BE": [{"2014-15": "20.8"}, {"2015-16": "42"}, {"2016-17": "58.8"}], "RE": [{"2014-15": "40.5"}, {"2015-16": "44.7"}]}}, {"state": "Jharkhand", "figures": {"A": [{"2013-14": "67.9"}, {"2014-15": "67.6"}], "BE": [{"2014-15": "81.2"}, {"2015-16": "81.5"}, {"2016-17": "78.8"}], "RE": [{"2014-15": "81.7"}, {"2015-16": "75.7"}]}}, {"state": "Karnataka", "figures": {"A": [{"2013-14": "89.7"}, {"2014-15": "89.3"}], "BE": [{"2014-15": "85.6"}, {"2015-16": "85"}, {"2016-17": "85"}], "RE": [{"2014-15": "84.6"}, {"2015-16": "84.5"}]}}, {"state": "Kerala", "figures": {"A": [{"2013-14": "41.1"}, {"2014-15": "39.9"}], "BE": [{"2014-15": "68.8"}, {"2015-16": "54.1"}, {"2016-17": "45.3"}], "RE": [{"2014-15": "61"}, {"2015-16": "45.7"}]}}, {"state": "Madhya Pradesh", "figures": {"A": [{"2013-14": "85"}, {"2014-15": "82.5"}], "BE": [{"2014-15": "81"}, {"2015-16": "86.2"}, {"2016-17": "87.8"}], "RE": [{"2014-15": "82.9"}, {"2015-16": "87.5"}]}}, {"state": "Maharashtra", "figures": {"A": [{"2013-14": "94.8"}, {"2014-15": "78.7"}], "BE": [{"2014-15": "78.7"}, {"2015-16": "74.3"}, {"2016-17": "79"}], "RE": [{"2014-15": "79"}, {"2015-16": "79.5"}]}}, {"state": "Meghalaya", "figures": {"A": [{"2013-14": "2.7"}, {"2014-15": "0.2"}], "BE": [{"2014-15": "1.3"}, {"2015-16": "1.3"}, {"2016-17": "1.1"}], "RE": [{"2014-15": "1.3"}, {"2015-16": "1.3"}]}}, {"state": "Mizoram", "figures": {"A": [{"2013-14": "0"}, {"2014-15": "1.3"}], "BE": [{"2014-15": "83.2"}, {"2015-16": "87.8"}, {"2016-17": "56.5"}], "RE": [{"2014-15": "82.9"}, {"2015-16": "87.2"}]}}, {"state": "Odisha", "figures": {"A": [{"2013-14": "60.5"}, {"2014-15": "66.6"}], "BE": [{"2014-15": "66.9"}, {"2015-16": "69.9"}, {"2016-17": "72.7"}], "RE": [{"2014-15": "67.8"}, {"2015-16": "67.4"}]}}, {"state": "Punjab", "figures": {"A": [{"2013-14": "21.3"}, {"2014-15": "35"}], "BE": [{"2014-15": "52.2"}, {"2015-16": "44.8"}, {"2016-17": "48"}], "RE": [{"2014-15": "37.5"}, {"2015-16": "45.9"}]}}, {"state": "Rajasthan", "figures": {"A": [{"2013-14": "38.2"}, {"2014-15": "42.5"}], "BE": [{"2014-15": "46.4"}, {"2015-16": "46.1"}, {"2016-17": "52.5"}], "RE": [{"2014-15": "44.1"}, {"2015-16": "42.7"}]}}, {"state": "Sikkim", "figures": {"A": [{"2013-14": "8.6"}, {"2014-15": "19"}], "BE": [{"2014-15": "3.7"}, {"2015-16": "10"}, {"2016-17": "6.1"}], "RE": [{"2014-15": "3.7"}, {"2015-16": "10"}]}}, {"state": "Tamil Nadu", "figures": {"A": [{"2013-14": "38.8"}, {"2014-15": "42.8"}], "BE": [{"2014-15": "60.2"}, {"2015-16": "51.7"}, {"2016-17": "49.3"}], "RE": [{"2014-15": "48.3"}, {"2015-16": "39.9"}]}}, {"state": "Telangana", "figures": {"A": [{"2013-14": ""}, {"2014-15": "64.5"}], "BE": [{"2014-15": "62.3"}, {"2015-16": "59.7"}, {"2016-17": "69"}], "RE": [{"2014-15": "62.3"}, {"2015-16": "74.1"}]}}, {"state": "Tripura", "figures": {"A": [{"2013-14": "21.9"}, {"2014-15": "22.4"}], "BE": [{"2014-15": "36.5"}, {"2015-16": "41"}, {"2016-17": "13.9"}], "RE": [{"2014-15": "29.8"}, {"2015-16": "20.2"}]}}, {"state": "Uttar Pradesh", "figures": {"A": [{"2013-14": "44"}, {"2014-15": "49"}], "BE": [{"2014-15": "46.9"}, {"2015-16": "44.3"}, {"2016-17": "51.5"}], "RE": [{"2014-15": "44.3"}, {"2015-16": "49.9"}]}}, {"state": "Uttarakhand", "figures": {"A": [{"2013-14": "57.7"}, {"2014-15": "67.4"}], "BE": [{"2014-15": "66.1"}, {"2015-16": "61.1"}, {"2016-17": "62.5"}], "RE": [{"2014-15": "70"}, {"2015-16": "67.5"}]}}, {"state": "West Bengal", "figures": {"A": [{"2013-14": "39.8"}, {"2014-15": "56.5"}], "BE": [{"2014-15": "59"}, {"2015-16": "68"}, {"2016-17": "69.4"}], "RE": [{"2014-15": "60.3"}, {"2015-16": "65"}]}}], "indicator": "Capital Expenditure (including Loans & Advances ) as % of Total Sector Expenditure", "slugIndicator": "capital_expenditure_including_loans_advances_as_of_total_sector_expenditure", "unit": "Percentage"}], "slugSector": "irrigation_water_resources"}, {"sector": " Forests & Environment", "subIndicators": [{"stateFigures": [{"state": "Andhra Pradesh", "figures": {"A": [{"2013-14": "399.6"}, {"2014-15": ""}], "BE": [{"2014-15": "418.5"}, {"2015-16": "283.8"}, {"2016-17": "357.3"}], "RE": [{"2014-15": "383.3"}, {"2015-16": "286.2"}]}}, {"state": "Assam", "figures": {"A": [{"2013-14": "440.4"}, {"2014-15": "429.2"}], "BE": [{"2014-15": "564.2"}, {"2015-16": "712.9"}, {"2016-17": "918.1"}], "RE": [{"2014-15": "601.3"}, {"2015-16": "748.6"}]}}, {"state": "Bihar", "figures": {"A": [{"2013-14": "254.7"}, {"2014-15": "328.5"}], "BE": [{"2014-15": "214.2"}, {"2015-16": "232"}, {"2016-17": "242.3"}], "RE": [{"2014-15": "346.9"}, {"2015-16": "333.9"}]}}, {"state": "Chhattisgarh", "figures": {"A": [{"2013-14": "1039.1"}, {"2014-15": "1013.1"}], "BE": [{"2014-15": "1165.1"}, {"2015-16": "1273.2"}, {"2016-17": "1407"}], "RE": [{"2014-15": "1186.1"}, {"2015-16": "1332.4"}]}}, {"state": "Delhi", "figures": {"A": [{"2013-14": "70.5"}, {"2014-15": "71.5"}], "BE": [{"2014-15": "93"}, {"2015-16": "89.2"}, {"2016-17": "103.2"}], "RE": [{"2014-15": "80.3"}, {"2015-16": "80.1"}]}}, {"state": "Gujarat", "figures": {"A": [{"2013-14": "741"}, {"2014-15": "888.3"}], "BE": [{"2014-15": "714.4"}, {"2015-16": "824.3"}, {"2016-17": "938.2"}], "RE": [{"2014-15": "807.2"}, {"2015-16": "1369.9"}]}}, {"state": "Haryana", "figures": {"A": [{"2013-14": "251.9"}, {"2014-15": "306.3"}], "BE": [{"2014-15": "308.3"}, {"2015-16": "387.4"}, {"2016-17": "356.4"}], "RE": [{"2014-15": "337.9"}, {"2015-16": "349.3"}]}}, {"state": "Himachal Pradesh", "figures": {"A": [{"2013-14": "376.3"}, {"2014-15": "390.1"}], "BE": [{"2014-15": "384.4"}, {"2015-16": "410.9"}, {"2016-17": "462.9"}], "RE": [{"2014-15": "398.4"}, {"2015-16": "382.7"}]}}, {"state": "Jammu and Kashmir", "figures": {"A": [{"2013-14": "465.8"}, {"2014-15": "487.5"}], "BE": [{"2014-15": "657.3"}, {"2015-16": "717.6"}, {"2016-17": "787.2"}], "RE": [{"2014-15": "621.5"}, {"2015-16": "657.6"}]}}, {"state": "Jharkhand", "figures": {"A": [{"2013-14": "271.1"}, {"2014-15": "379.6"}], "BE": [{"2014-15": "451.7"}, {"2015-16": "492.5"}, {"2016-17": "598.3"}], "RE": [{"2014-15": "467.3"}, {"2015-16": "492.8"}]}}, {"state": "Karnataka", "figures": {"A": [{"2013-14": "1582.5"}, {"2014-15": "1418.6"}], "BE": [{"2014-15": "1299.5"}, {"2015-16": "1314"}, {"2016-17": "998.7"}], "RE": [{"2014-15": "1516.1"}, {"2015-16": "1324"}]}}, {"state": "Kerala", "figures": {"A": [{"2013-14": "428.7"}, {"2014-15": "489.8"}], "BE": [{"2014-15": "538.9"}, {"2015-16": "570.9"}, {"2016-17": "671.6"}], "RE": [{"2014-15": "477.2"}, {"2015-16": "508.9"}]}}, {"state": "Madhya Pradesh", "figures": {"A": [{"2013-14": "2026.1"}, {"2014-15": "2286"}], "BE": [{"2014-15": "2704.6"}, {"2015-16": "2675.2"}, {"2016-17": "2521.4"}], "RE": [{"2014-15": "2595.6"}, {"2015-16": "2331.8"}]}}, {"state": "Maharashtra", "figures": {"A": [{"2013-14": "1116.9"}, {"2014-15": "1265.5"}], "BE": [{"2014-15": "1357.6"}, {"2015-16": "1705.7"}, {"2016-17": "2216.2"}], "RE": [{"2014-15": "1347.7"}, {"2015-16": "2016.2"}]}}, {"state": "Meghalaya", "figures": {"A": [{"2013-14": "122.1"}, {"2014-15": "146.3"}], "BE": [{"2014-15": "219.9"}, {"2015-16": "160.2"}, {"2016-17": "131.9"}], "RE": [{"2014-15": "219.9"}, {"2015-16": "160.2"}]}}, {"state": "Mizoram", "figures": {"A": [{"2013-14": "25"}, {"2014-15": "149.6"}], "BE": [{"2014-15": "36.6"}, {"2015-16": "101.6"}, {"2016-17": "93.4"}], "RE": [{"2014-15": "51.9"}, {"2015-16": "106.5"}]}}, {"state": "Odisha", "figures": {"A": [{"2013-14": "601.5"}, {"2014-15": "645.9"}], "BE": [{"2014-15": "716"}, {"2015-16": "718.6"}, {"2016-17": "603.2"}], "RE": [{"2014-15": "738.6"}, {"2015-16": "642.3"}]}}, {"state": "Punjab", "figures": {"A": [{"2013-14": "110.6"}, {"2014-15": "111.3"}], "BE": [{"2014-15": "127.3"}, {"2015-16": "112.4"}, {"2016-17": "162.2"}], "RE": [{"2014-15": "130.5"}, {"2015-16": "146"}]}}, {"state": "Rajasthan", "figures": {"A": [{"2013-14": "854.7"}, {"2014-15": "973"}], "BE": [{"2014-15": "1253.2"}, {"2015-16": "1070.6"}, {"2016-17": "1058.9"}], "RE": [{"2014-15": "1108.8"}, {"2015-16": "1094.4"}]}}, {"state": "Sikkim", "figures": {"A": [{"2013-14": "126.2"}, {"2014-15": "198"}], "BE": [{"2014-15": "246.7"}, {"2015-16": "215"}, {"2016-17": "164.5"}], "RE": [{"2014-15": "286.2"}, {"2015-16": "215"}]}}, {"state": "Tamil Nadu", "figures": {"A": [{"2013-14": "686.8"}, {"2014-15": "635.7"}], "BE": [{"2014-15": "782.5"}, {"2015-16": "754.2"}, {"2016-17": "652.8"}], "RE": [{"2014-15": "775.7"}, {"2015-16": "653.5"}]}}, {"state": "Telangana", "figures": {"A": [{"2013-14": ""}, {"2014-15": "306.2"}], "BE": [{"2014-15": "584.3"}, {"2015-16": "553.7"}, {"2016-17": "272.3"}], "RE": [{"2014-15": "584.3"}, {"2015-16": "411.6"}]}}, {"state": "Tripura", "figures": {"A": [{"2013-14": "69.1"}, {"2014-15": "85.9"}], "BE": [{"2014-15": "89.4"}, {"2015-16": "95.2"}, {"2016-17": "102.2"}], "RE": [{"2014-15": "110.8"}, {"2015-16": "93.4"}]}}, {"state": "Uttar Pradesh", "figures": {"A": [{"2013-14": "4.2"}, {"2014-15": "9.6"}], "BE": [{"2014-15": "5.2"}, {"2015-16": "10.8"}, {"2016-17": "10.6"}], "RE": [{"2014-15": "10"}, {"2015-16": "10.5"}]}}, {"state": "Uttarakhand", "figures": {"A": [{"2013-14": "419.8"}, {"2014-15": "527.5"}], "BE": [{"2014-15": "526.3"}, {"2015-16": "626.6"}, {"2016-17": "801.5"}], "RE": [{"2014-15": "654.7"}, {"2015-16": "579.8"}]}}, {"state": "West Bengal", "figures": {"A": [{"2013-14": "470"}, {"2014-15": "454.6"}], "BE": [{"2014-15": "633.5"}, {"2015-16": "677.7"}, {"2016-17": "730.5"}], "RE": [{"2014-15": "579.4"}, {"2015-16": "672.6"}]}}], "indicator": "Total Sector Expenditure", "slugIndicator": "total_sector_expenditure", "unit": "INR (in Crores)"}, {"stateFigures": [{"state": "Andhra Pradesh", "figures": {"A": [{"2013-14": "0.3"}, {"2014-15": ""}], "BE": [{"2014-15": "0.4"}, {"2015-16": "0.3"}, {"2016-17": "0.3"}], "RE": [{"2014-15": "0.3"}, {"2015-16": "0.3"}]}}, {"state": "Assam", "figures": {"A": [{"2013-14": "1.2"}, {"2014-15": "0.9"}], "BE": [{"2014-15": "1"}, {"2015-16": "1.1"}, {"2016-17": "1.2"}], "RE": [{"2014-15": "0.9"}, {"2015-16": "1"}]}}, {"state": "Bihar", "figures": {"A": [{"2013-14": "0.3"}, {"2014-15": "0.3"}], "BE": [{"2014-15": "0.2"}, {"2015-16": "0.2"}, {"2016-17": "0.2"}], "RE": [{"2014-15": "0.3"}, {"2015-16": "0.3"}]}}, {"state": "Chhattisgarh", "figures": {"A": [{"2013-14": "2.7"}, {"2014-15": "2.2"}], "BE": [{"2014-15": "2.1"}, {"2015-16": "2"}, {"2016-17": "2"}], "RE": [{"2014-15": "2.2"}, {"2015-16": "2"}]}}, {"state": "Delhi", "figures": {"A": [{"2013-14": "0.2"}, {"2014-15": ""}], "BE": [{"2014-15": "0.3"}, {"2015-16": "0.2"}, {"2016-17": "0.2"}], "RE": [{"2014-15": "0.2"}, {"2015-16": ""}]}}, {"state": "Gujarat", "figures": {"A": [{"2013-14": "0.7"}, {"2014-15": "0.8"}], "BE": [{"2014-15": "0.5"}, {"2015-16": "0.6"}, {"2016-17": "0.6"}], "RE": [{"2014-15": "0.6"}, {"2015-16": "1"}]}}, {"state": "Haryana", "figures": {"A": [{"2013-14": "0.5"}, {"2014-15": "0.6"}], "BE": [{"2014-15": "0.5"}, {"2015-16": "0.6"}, {"2016-17": "0.4"}], "RE": [{"2014-15": "0.5"}, {"2015-16": "0.4"}]}}, {"state": "Himachal Pradesh", "figures": {"A": [{"2013-14": "1.7"}, {"2014-15": "1.6"}], "BE": [{"2014-15": "1.6"}, {"2015-16": "1.4"}, {"2016-17": "1.4"}], "RE": [{"2014-15": "1.6"}, {"2015-16": "1.4"}]}}, {"state": "Jammu and Kashmir", "figures": {"A": [{"2013-14": "1.4"}, {"2014-15": "1.4"}], "BE": [{"2014-15": "1.5"}, {"2015-16": "1.5"}, {"2016-17": "1.4"}], "RE": [{"2014-15": "1.4"}, {"2015-16": "1.3"}]}}, {"state": "Jharkhand", "figures": {"A": [{"2013-14": "0.9"}, {"2014-15": "0.9"}], "BE": [{"2014-15": "0.9"}, {"2015-16": "0.9"}, {"2016-17": "0.9"}], "RE": [{"2014-15": "0.9"}, {"2015-16": "0.9"}]}}, {"state": "Karnataka", "figures": {"A": [{"2013-14": "1.5"}, {"2014-15": "1.1"}], "BE": [{"2014-15": "1"}, {"2015-16": "1"}, {"2016-17": "0.6"}], "RE": [{"2014-15": "1.2"}, {"2015-16": "1"}]}}, {"state": "Kerala", "figures": {"A": [{"2013-14": "0.6"}, {"2014-15": "0.6"}], "BE": [{"2014-15": "0.7"}, {"2015-16": "0.6"}, {"2016-17": "0.6"}], "RE": [{"2014-15": "0.6"}, {"2015-16": "0.6"}]}}, {"state": "Madhya Pradesh", "figures": {"A": [{"2013-14": "2.4"}, {"2014-15": "2.3"}], "BE": [{"2014-15": "2.3"}, {"2015-16": "2"}, {"2016-17": "1.7"}], "RE": [{"2014-15": "2.2"}, {"2015-16": "1.8"}]}}, {"state": "Maharashtra", "figures": {"A": [{"2013-14": "0.6"}, {"2014-15": "0.6"}], "BE": [{"2014-15": "0.6"}, {"2015-16": "0.7"}, {"2016-17": "0.9"}], "RE": [{"2014-15": "0.6"}, {"2015-16": "0.8"}]}}, {"state": "Meghalaya", "figures": {"A": [{"2013-14": "1.8"}, {"2014-15": "1.9"}], "BE": [{"2014-15": "1.8"}, {"2015-16": "1.7"}, {"2016-17": "1.3"}], "RE": [{"2014-15": "1.8"}, {"2015-16": "1.7"}]}}, {"state": "Mizoram", "figures": {"A": [{"2013-14": "0.4"}, {"2014-15": "1.9"}], "BE": [{"2014-15": "0.5"}, {"2015-16": "1.3"}, {"2016-17": "1.1"}], "RE": [{"2014-15": "0.7"}, {"2015-16": "1.3"}]}}, {"state": "Odisha", "figures": {"A": [{"2013-14": "1.1"}, {"2014-15": "1"}], "BE": [{"2014-15": "0.9"}, {"2015-16": "0.9"}, {"2016-17": "0.6"}], "RE": [{"2014-15": "1"}, {"2015-16": "0.8"}]}}, {"state": "Punjab", "figures": {"A": [{"2013-14": "0.2"}, {"2014-15": "0.2"}], "BE": [{"2014-15": "0.2"}, {"2015-16": "0.1"}, {"2016-17": "0.2"}], "RE": [{"2014-15": "0.2"}, {"2015-16": "0.2"}]}}, {"state": "Rajasthan", "figures": {"A": [{"2013-14": "0.9"}, {"2014-15": "0.8"}], "BE": [{"2014-15": "1"}, {"2015-16": "0.8"}, {"2016-17": "0.7"}], "RE": [{"2014-15": "0.9"}, {"2015-16": "0.8"}]}}, {"state": "Sikkim", "figures": {"A": [{"2013-14": "2.9"}, {"2014-15": "4.2"}], "BE": [{"2014-15": "3.8"}, {"2015-16": "4"}, {"2016-17": "3"}], "RE": [{"2014-15": "4.3"}, {"2015-16": "4"}]}}, {"state": "Tamil Nadu", "figures": {"A": [{"2013-14": "0.5"}, {"2014-15": "0.4"}], "BE": [{"2014-15": "0.5"}, {"2015-16": "0.4"}, {"2016-17": "0.3"}], "RE": [{"2014-15": "0.5"}, {"2015-16": "0.4"}]}}, {"state": "Telangana", "figures": {"A": [{"2013-14": ""}, {"2014-15": "0.5"}], "BE": [{"2014-15": "0.6"}, {"2015-16": "0.5"}, {"2016-17": "0.2"}], "RE": [{"2014-15": "0.6"}, {"2015-16": "0.4"}]}}, {"state": "Tripura", "figures": {"A": [{"2013-14": "0.9"}, {"2014-15": "0.8"}], "BE": [{"2014-15": "0.7"}, {"2015-16": "0.6"}, {"2016-17": "0.7"}], "RE": [{"2014-15": "0.9"}, {"2015-16": "0.7"}]}}, {"state": "Uttar Pradesh", "figures": {"A": [{"2013-14": "0"}, {"2014-15": "0"}], "BE": [{"2014-15": "0"}, {"2015-16": "0"}, {"2016-17": "0"}], "RE": [{"2014-15": "0"}, {"2015-16": "0"}]}}, {"state": "Uttarakhand", "figures": {"A": [{"2013-14": "1.9"}, {"2014-15": "1.9"}], "BE": [{"2014-15": "1.7"}, {"2015-16": "1.9"}, {"2016-17": "2"}], "RE": [{"2014-15": "2"}, {"2015-16": "1.7"}]}}, {"state": "West Bengal", "figures": {"A": [{"2013-14": "0.4"}, {"2014-15": "0.4"}], "BE": [{"2014-15": "0.5"}, {"2015-16": "0.5"}, {"2016-17": "0.5"}], "RE": [{"2014-15": "0.4"}, {"2015-16": "0.5"}]}}], "indicator": "Total Sector Expenditure as % of State Budget", "slugIndicator": "total_sector_expenditure_as_of_state_budget", "unit": "Percentage"}, {"stateFigures": [{"state": "Andhra Pradesh", "figures": {"A": [{"2013-14": "46.3"}, {"2014-15": ""}], "BE": [{"2014-15": "48.1"}, {"2015-16": "32.4"}, {"2016-17": "40.4"}], "RE": [{"2014-15": "44.1"}, {"2015-16": "32.6"}]}}, {"state": "Assam", "figures": {"A": [{"2013-14": "140.6"}, {"2014-15": "135.4"}], "BE": [{"2014-15": "178"}, {"2015-16": "222.3"}, {"2016-17": "282.9"}], "RE": [{"2014-15": "189.7"}, {"2015-16": "233.4"}]}}, {"state": "Bihar", "figures": {"A": [{"2013-14": "25.4"}, {"2014-15": "32.4"}], "BE": [{"2014-15": "21.1"}, {"2015-16": "22.6"}, {"2016-17": "23.3"}], "RE": [{"2014-15": "34.2"}, {"2015-16": "32.5"}]}}, {"state": "Chhattisgarh", "figures": {"A": [{"2013-14": "417.1"}, {"2014-15": "401.5"}], "BE": [{"2014-15": "461.8"}, {"2015-16": "498.2"}, {"2016-17": "543.7"}], "RE": [{"2014-15": "470.1"}, {"2015-16": "521.4"}]}}, {"state": "Delhi", "figures": {"A": [{"2013-14": "36.1"}, {"2014-15": "35.6"}], "BE": [{"2014-15": "46.3"}, {"2015-16": "43.1"}, {"2016-17": "48.5"}], "RE": [{"2014-15": "40"}, {"2015-16": "38.7"}]}}, {"state": "Gujarat", "figures": {"A": [{"2013-14": "122.3"}, {"2014-15": "144.8"}], "BE": [{"2014-15": "116.5"}, {"2015-16": "132.8"}, {"2016-17": "149.3"}], "RE": [{"2014-15": "131.6"}, {"2015-16": "220.7"}]}}, {"state": "Haryana", "figures": {"A": [{"2013-14": "95.9"}, {"2014-15": "114.8"}], "BE": [{"2014-15": "115.6"}, {"2015-16": "143.1"}, {"2016-17": "129.7"}], "RE": [{"2014-15": "126.7"}, {"2015-16": "129"}]}}, {"state": "Himachal Pradesh", "figures": {"A": [{"2013-14": "543.9"}, {"2014-15": "559"}], "BE": [{"2014-15": "550.9"}, {"2015-16": "584"}, {"2016-17": "652.4"}], "RE": [{"2014-15": "570.9"}, {"2015-16": "543.8"}]}}, {"state": "Jammu and Kashmir", "figures": {"A": [{"2013-14": "387.9"}, {"2014-15": "401.1"}], "BE": [{"2014-15": "540.9"}, {"2015-16": "583.9"}, {"2016-17": "633.9"}], "RE": [{"2014-15": "511.5"}, {"2015-16": "535.1"}]}}, {"state": "Jharkhand", "figures": {"A": [{"2013-14": "83.8"}, {"2014-15": "115.8"}], "BE": [{"2014-15": "137.9"}, {"2015-16": "148.3"}, {"2016-17": "177.8"}], "RE": [{"2014-15": "142.6"}, {"2015-16": "148.4"}]}}, {"state": "Karnataka", "figures": {"A": [{"2013-14": "261"}, {"2014-15": "231.7"}], "BE": [{"2014-15": "212.3"}, {"2015-16": "212.6"}, {"2016-17": "160.1"}], "RE": [{"2014-15": "247.7"}, {"2015-16": "214.2"}]}}, {"state": "Kerala", "figures": {"A": [{"2013-14": "122.4"}, {"2014-15": "138.9"}], "BE": [{"2014-15": "152.9"}, {"2015-16": "160.9"}, {"2016-17": "188.3"}], "RE": [{"2014-15": "135.3"}, {"2015-16": "143.5"}]}}, {"state": "Madhya Pradesh", "figures": {"A": [{"2013-14": "235"}, {"2014-15": "262.9"}], "BE": [{"2014-15": "311"}, {"2015-16": "305.2"}, {"2016-17": "285.4"}], "RE": [{"2014-15": "298.5"}, {"2015-16": "266"}]}}, {"state": "Maharashtra", "figures": {"A": [{"2013-14": "96.5"}, {"2014-15": "108"}], "BE": [{"2014-15": "115.8"}, {"2015-16": "143.8"}, {"2016-17": "184.6"}], "RE": [{"2014-15": "115"}, {"2015-16": "169.9"}]}}, {"state": "Meghalaya", "figures": {"A": [{"2013-14": "455.4"}, {"2014-15": "539.4"}], "BE": [{"2014-15": "810.7"}, {"2015-16": "584.2"}, {"2016-17": "475.7"}], "RE": [{"2014-15": "810.7"}, {"2015-16": "584.2"}]}}, {"state": "Mizoram", "figures": {"A": [{"2013-14": "243.2"}, {"2014-15": "1439.7"}], "BE": [{"2014-15": "352.1"}, {"2015-16": "966.3"}, {"2016-17": "878.9"}], "RE": [{"2014-15": "499.9"}, {"2015-16": "1013.7"}]}}, {"state": "Odisha", "figures": {"A": [{"2013-14": "145.1"}, {"2014-15": "154.5"}], "BE": [{"2014-15": "171.3"}, {"2015-16": "170.5"}, {"2016-17": "142"}], "RE": [{"2014-15": "176.7"}, {"2015-16": "152.4"}]}}, {"state": "Punjab", "figures": {"A": [{"2013-14": "39.1"}, {"2014-15": "39"}], "BE": [{"2014-15": "44.6"}, {"2015-16": "39"}, {"2016-17": "55.7"}], "RE": [{"2014-15": "45.7"}, {"2015-16": "50.6"}]}}, {"state": "Rajasthan", "figures": {"A": [{"2013-14": "122.2"}, {"2014-15": "137.1"}], "BE": [{"2014-15": "176.6"}, {"2015-16": "148.8"}, {"2016-17": "145.2"}], "RE": [{"2014-15": "156.2"}, {"2015-16": "152.1"}]}}, {"state": "Sikkim", "figures": {"A": [{"2013-14": "2016.3"}, {"2014-15": "3128.3"}], "BE": [{"2014-15": "3897.3"}, {"2015-16": "3360.1"}, {"2016-17": "2542.3"}], "RE": [{"2014-15": "4521.9"}, {"2015-16": "3360.1"}]}}, {"state": "Tamil Nadu", "figures": {"A": [{"2013-14": "100.6"}, {"2014-15": "92.6"}], "BE": [{"2014-15": "114"}, {"2015-16": "109.3"}, {"2016-17": "94.1"}], "RE": [{"2014-15": "113"}, {"2015-16": "94.7"}]}}, {"state": "Telangana", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Tripura", "figures": {"A": [{"2013-14": "186.9"}, {"2014-15": "229.6"}], "BE": [{"2014-15": "238.8"}, {"2015-16": "251.5"}, {"2016-17": "267.1"}], "RE": [{"2014-15": "296"}, {"2015-16": "246.8"}]}}, {"state": "Uttar Pradesh", "figures": {"A": [{"2013-14": "0.2"}, {"2014-15": "0.5"}], "BE": [{"2014-15": "0.2"}, {"2015-16": "0.5"}, {"2016-17": "0.5"}], "RE": [{"2014-15": "0.5"}, {"2015-16": "0.5"}]}}, {"state": "Uttarakhand", "figures": {"A": [{"2013-14": "410.6"}, {"2014-15": "509"}], "BE": [{"2014-15": "507.9"}, {"2015-16": "596.8"}, {"2016-17": "753.9"}], "RE": [{"2014-15": "631.8"}, {"2015-16": "552.3"}]}}, {"state": "West Bengal", "figures": {"A": [{"2013-14": "51.6"}, {"2014-15": "49.5"}], "BE": [{"2014-15": "68.9"}, {"2015-16": "73.1"}, {"2016-17": "78.1"}], "RE": [{"2014-15": "63"}, {"2015-16": "72.5"}]}}], "indicator": "Per Capita Expenditure on Sector ", "slugIndicator": "per_capita_expenditure_on_sector", "unit": "INR Rs."}, {"stateFigures": [{"state": "Andhra Pradesh", "figures": {"A": [{"2013-14": "99.7"}, {"2014-15": ""}], "BE": [{"2014-15": "100"}, {"2015-16": "99.8"}, {"2016-17": "99.8"}], "RE": [{"2014-15": "100"}, {"2015-16": "93.3"}]}}, {"state": "Assam", "figures": {"A": [{"2013-14": "99.8"}, {"2014-15": "99.8"}], "BE": [{"2014-15": "100"}, {"2015-16": "100"}, {"2016-17": "100"}], "RE": [{"2014-15": "100"}, {"2015-16": "100"}]}}, {"state": "Bihar", "figures": {"A": [{"2013-14": "91.3"}, {"2014-15": "93"}], "BE": [{"2014-15": "95.8"}, {"2015-16": "99.1"}, {"2016-17": "99"}], "RE": [{"2014-15": "92.9"}, {"2015-16": "93.4"}]}}, {"state": "Chhattisgarh", "figures": {"A": [{"2013-14": "96.7"}, {"2014-15": "97.9"}], "BE": [{"2014-15": "96.5"}, {"2015-16": "97.4"}, {"2016-17": "97.1"}], "RE": [{"2014-15": "96.4"}, {"2015-16": "97.5"}]}}, {"state": "Delhi", "figures": {"A": [{"2013-14": "80.4"}, {"2014-15": "78.5"}], "BE": [{"2014-15": "77.6"}, {"2015-16": "80.8"}, {"2016-17": "80.1"}], "RE": [{"2014-15": "79.5"}, {"2015-16": "77.1"}]}}, {"state": "Gujarat", "figures": {"A": [{"2013-14": "45.6"}, {"2014-15": "52.1"}], "BE": [{"2014-15": "52.3"}, {"2015-16": "52.9"}, {"2016-17": "55.5"}], "RE": [{"2014-15": "59.6"}, {"2015-16": "28"}]}}, {"state": "Haryana", "figures": {"A": [{"2013-14": "100"}, {"2014-15": "100"}], "BE": [{"2014-15": "100"}, {"2015-16": "100"}, {"2016-17": "100"}], "RE": [{"2014-15": "100"}, {"2015-16": "100"}]}}, {"state": "Himachal Pradesh", "figures": {"A": [{"2013-14": "99.3"}, {"2014-15": "99.4"}], "BE": [{"2014-15": "99.4"}, {"2015-16": "99.5"}, {"2016-17": "98.2"}], "RE": [{"2014-15": "99.4"}, {"2015-16": "98.1"}]}}, {"state": "Jammu and Kashmir", "figures": {"A": [{"2013-14": "100"}, {"2014-15": "100"}], "BE": [{"2014-15": "94.4"}, {"2015-16": "95.3"}, {"2016-17": "91.2"}], "RE": [{"2014-15": "93.9"}, {"2015-16": "94.7"}]}}, {"state": "Jharkhand", "figures": {"A": [{"2013-14": "100"}, {"2014-15": "99.2"}], "BE": [{"2014-15": "98.9"}, {"2015-16": "100"}, {"2016-17": "100"}], "RE": [{"2014-15": "98.9"}, {"2015-16": "100"}]}}, {"state": "Karnataka", "figures": {"A": [{"2013-14": "99.2"}, {"2014-15": "99.4"}], "BE": [{"2014-15": "99"}, {"2015-16": "99.1"}, {"2016-17": "97.3"}], "RE": [{"2014-15": "99.2"}, {"2015-16": "99.1"}]}}, {"state": "Kerala", "figures": {"A": [{"2013-14": "91.8"}, {"2014-15": "91.3"}], "BE": [{"2014-15": "87.9"}, {"2015-16": "85.6"}, {"2016-17": "83.7"}], "RE": [{"2014-15": "94.2"}, {"2015-16": "87.7"}]}}, {"state": "Madhya Pradesh", "figures": {"A": [{"2013-14": "95.4"}, {"2014-15": "97.6"}], "BE": [{"2014-15": "97"}, {"2015-16": "97.8"}, {"2016-17": "72.9"}], "RE": [{"2014-15": "96.9"}, {"2015-16": "97.6"}]}}, {"state": "Maharashtra", "figures": {"A": [{"2013-14": "98.7"}, {"2014-15": "96"}], "BE": [{"2014-15": "97.8"}, {"2015-16": "95"}, {"2016-17": "85.6"}], "RE": [{"2014-15": "96.2"}, {"2015-16": "93.7"}]}}, {"state": "Meghalaya", "figures": {"A": [{"2013-14": "99.5"}, {"2014-15": "99.8"}], "BE": [{"2014-15": "98.6"}, {"2015-16": "93.6"}, {"2016-17": "99.5"}], "RE": [{"2014-15": "98.6"}, {"2015-16": "93.6"}]}}, {"state": "Mizoram", "figures": {"A": [{"2013-14": "100"}, {"2014-15": "100"}], "BE": [{"2014-15": "100"}, {"2015-16": "100"}, {"2016-17": "100"}], "RE": [{"2014-15": "100"}, {"2015-16": "100"}]}}, {"state": "Odisha", "figures": {"A": [{"2013-14": "99.6"}, {"2014-15": "99.5"}], "BE": [{"2014-15": "99.5"}, {"2015-16": "99.5"}, {"2016-17": "99.3"}], "RE": [{"2014-15": "99.5"}, {"2015-16": "99.4"}]}}, {"state": "Punjab", "figures": {"A": [{"2013-14": "100"}, {"2014-15": "100"}], "BE": [{"2014-15": "98.4"}, {"2015-16": "100"}, {"2016-17": "96.4"}], "RE": [{"2014-15": "98.5"}, {"2015-16": "98.3"}]}}, {"state": "Rajasthan", "figures": {"A": [{"2013-14": "71.6"}, {"2014-15": "77.7"}], "BE": [{"2014-15": "72.9"}, {"2015-16": "84.7"}, {"2016-17": "88.8"}], "RE": [{"2014-15": "77.6"}, {"2015-16": "79.7"}]}}, {"state": "Sikkim", "figures": {"A": [{"2013-14": "98.1"}, {"2014-15": "99.6"}], "BE": [{"2014-15": "99.3"}, {"2015-16": "97"}, {"2016-17": "96.7"}], "RE": [{"2014-15": "99.4"}, {"2015-16": "97"}]}}, {"state": "Tamil Nadu", "figures": {"A": [{"2013-14": "48.4"}, {"2014-15": "54.7"}], "BE": [{"2014-15": "51.2"}, {"2015-16": "67.1"}, {"2016-17": "76.2"}], "RE": [{"2014-15": "57.5"}, {"2015-16": "69.7"}]}}, {"state": "Telangana", "figures": {"A": [{"2013-14": ""}, {"2014-15": "100"}], "BE": [{"2014-15": "100"}, {"2015-16": "100"}, {"2016-17": "100"}], "RE": [{"2014-15": "100"}, {"2015-16": "100"}]}}, {"state": "Tripura", "figures": {"A": [{"2013-14": "81.3"}, {"2014-15": "82.3"}], "BE": [{"2014-15": "82.1"}, {"2015-16": "75.1"}, {"2016-17": "74.7"}], "RE": [{"2014-15": "77.6"}, {"2015-16": "82.9"}]}}, {"state": "Uttar Pradesh", "figures": {"A": [{"2013-14": "100"}, {"2014-15": "100"}], "BE": [{"2014-15": "100"}, {"2015-16": "100"}, {"2016-17": "100"}], "RE": [{"2014-15": "100"}, {"2015-16": "100"}]}}, {"state": "Uttarakhand", "figures": {"A": [{"2013-14": "88.3"}, {"2014-15": "90.4"}], "BE": [{"2014-15": "93.8"}, {"2015-16": "79.8"}, {"2016-17": "80.6"}], "RE": [{"2014-15": "91"}, {"2015-16": "79.7"}]}}, {"state": "West Bengal", "figures": {"A": [{"2013-14": "97.9"}, {"2014-15": "97.2"}], "BE": [{"2014-15": "97.5"}, {"2015-16": "96.3"}, {"2016-17": "96.6"}], "RE": [{"2014-15": "97.3"}, {"2015-16": "96.3"}]}}], "indicator": "Revenue Expenditure as % of Total Sector Expenditure", "slugIndicator": "revenue_expenditure_as_of_total_sector_expenditure", "unit": "Percentage"}, {"stateFigures": [{"state": "Andhra Pradesh", "figures": {"A": [{"2013-14": "0.3"}, {"2014-15": ""}], "BE": [{"2014-15": "0"}, {"2015-16": "0.2"}, {"2016-17": "0.2"}], "RE": [{"2014-15": "0"}, {"2015-16": "6.7"}]}}, {"state": "Assam", "figures": {"A": [{"2013-14": "0.2"}, {"2014-15": "0.2"}], "BE": [{"2014-15": "0"}, {"2015-16": "0"}, {"2016-17": "0"}], "RE": [{"2014-15": "0"}, {"2015-16": "0"}]}}, {"state": "Bihar", "figures": {"A": [{"2013-14": "8.7"}, {"2014-15": "7"}], "BE": [{"2014-15": "4.2"}, {"2015-16": "0.9"}, {"2016-17": "1"}], "RE": [{"2014-15": "7.1"}, {"2015-16": "6.6"}]}}, {"state": "Chhattisgarh", "figures": {"A": [{"2013-14": "3.3"}, {"2014-15": "2.1"}], "BE": [{"2014-15": "3.5"}, {"2015-16": "2.6"}, {"2016-17": "2.9"}], "RE": [{"2014-15": "3.6"}, {"2015-16": "2.5"}]}}, {"state": "Delhi", "figures": {"A": [{"2013-14": "19.6"}, {"2014-15": "21.5"}], "BE": [{"2014-15": "22.4"}, {"2015-16": "19.2"}, {"2016-17": "19.9"}], "RE": [{"2014-15": "20.5"}, {"2015-16": "22.9"}]}}, {"state": "Gujarat", "figures": {"A": [{"2013-14": "54.4"}, {"2014-15": "47.9"}], "BE": [{"2014-15": "47.7"}, {"2015-16": "47.1"}, {"2016-17": "44.5"}], "RE": [{"2014-15": "40.4"}, {"2015-16": "28.2"}]}}, {"state": "Haryana", "figures": {"A": [{"2013-14": "0"}, {"2014-15": "0"}], "BE": [{"2014-15": "0"}, {"2015-16": "0"}, {"2016-17": "0"}], "RE": [{"2014-15": "0"}, {"2015-16": "0"}]}}, {"state": "Himachal Pradesh", "figures": {"A": [{"2013-14": "0.7"}, {"2014-15": "0.6"}], "BE": [{"2014-15": "0.6"}, {"2015-16": "0.5"}, {"2016-17": "1.8"}], "RE": [{"2014-15": "0.6"}, {"2015-16": "1.9"}]}}, {"state": "Jammu and Kashmir", "figures": {"A": [{"2013-14": "0"}, {"2014-15": "0"}], "BE": [{"2014-15": "5.6"}, {"2015-16": "4.7"}, {"2016-17": "8.8"}], "RE": [{"2014-15": "6.1"}, {"2015-16": "5.3"}]}}, {"state": "Jharkhand", "figures": {"A": [{"2013-14": "0"}, {"2014-15": "0.8"}], "BE": [{"2014-15": "1.1"}, {"2015-16": "0"}, {"2016-17": "0"}], "RE": [{"2014-15": "1.1"}, {"2015-16": "0"}]}}, {"state": "Karnataka", "figures": {"A": [{"2013-14": "0.8"}, {"2014-15": "0.6"}], "BE": [{"2014-15": "1"}, {"2015-16": "0.9"}, {"2016-17": "2.7"}], "RE": [{"2014-15": "0.8"}, {"2015-16": "0.9"}]}}, {"state": "Kerala", "figures": {"A": [{"2013-14": "8.2"}, {"2014-15": "8.7"}], "BE": [{"2014-15": "12.1"}, {"2015-16": "14.4"}, {"2016-17": "16.3"}], "RE": [{"2014-15": "5.8"}, {"2015-16": "12.3"}]}}, {"state": "Madhya Pradesh", "figures": {"A": [{"2013-14": "4.6"}, {"2014-15": "2.4"}], "BE": [{"2014-15": "3"}, {"2015-16": "2.2"}, {"2016-17": "27.1"}], "RE": [{"2014-15": "3.1"}, {"2015-16": "2.4"}]}}, {"state": "Maharashtra", "figures": {"A": [{"2013-14": "1.3"}, {"2014-15": "4"}], "BE": [{"2014-15": "2.2"}, {"2015-16": "5"}, {"2016-17": "14.4"}], "RE": [{"2014-15": "3.8"}, {"2015-16": "6.3"}]}}, {"state": "Meghalaya", "figures": {"A": [{"2013-14": "0.5"}, {"2014-15": "0.2"}], "BE": [{"2014-15": "1.4"}, {"2015-16": "6.4"}, {"2016-17": "0.5"}], "RE": [{"2014-15": "1.4"}, {"2015-16": "6.4"}]}}, {"state": "Mizoram", "figures": {"A": [{"2013-14": "0"}, {"2014-15": "0"}], "BE": [{"2014-15": "0"}, {"2015-16": "0"}, {"2016-17": "0"}], "RE": [{"2014-15": "0"}, {"2015-16": "0"}]}}, {"state": "Odisha", "figures": {"A": [{"2013-14": "0.4"}, {"2014-15": "0.5"}], "BE": [{"2014-15": "0.5"}, {"2015-16": "0.5"}, {"2016-17": "0.7"}], "RE": [{"2014-15": "0.5"}, {"2015-16": "0.6"}]}}, {"state": "Punjab", "figures": {"A": [{"2013-14": "0"}, {"2014-15": "0"}], "BE": [{"2014-15": "1.6"}, {"2015-16": "0"}, {"2016-17": "3.6"}], "RE": [{"2014-15": "1.5"}, {"2015-16": "1.7"}]}}, {"state": "Rajasthan", "figures": {"A": [{"2013-14": "28.4"}, {"2014-15": "22.3"}], "BE": [{"2014-15": "27.1"}, {"2015-16": "15.3"}, {"2016-17": "11.2"}], "RE": [{"2014-15": "22.4"}, {"2015-16": "20.3"}]}}, {"state": "Sikkim", "figures": {"A": [{"2013-14": "1.9"}, {"2014-15": "0.4"}], "BE": [{"2014-15": "0.7"}, {"2015-16": "3"}, {"2016-17": "3.3"}], "RE": [{"2014-15": "0.6"}, {"2015-16": "3"}]}}, {"state": "Tamil Nadu", "figures": {"A": [{"2013-14": "51.6"}, {"2014-15": "45.3"}], "BE": [{"2014-15": "48.8"}, {"2015-16": "32.9"}, {"2016-17": "23.8"}], "RE": [{"2014-15": "42.5"}, {"2015-16": "30.3"}]}}, {"state": "Telangana", "figures": {"A": [{"2013-14": ""}, {"2014-15": "0"}], "BE": [{"2014-15": "0"}, {"2015-16": "0"}, {"2016-17": "0"}], "RE": [{"2014-15": "0"}, {"2015-16": "0"}]}}, {"state": "Tripura", "figures": {"A": [{"2013-14": "18.7"}, {"2014-15": "17.7"}], "BE": [{"2014-15": "17.9"}, {"2015-16": "24.9"}, {"2016-17": "25.3"}], "RE": [{"2014-15": "22.4"}, {"2015-16": "17.1"}]}}, {"state": "Uttar Pradesh", "figures": {"A": [{"2013-14": "0"}, {"2014-15": "0"}], "BE": [{"2014-15": "0"}, {"2015-16": "0"}, {"2016-17": "0"}], "RE": [{"2014-15": "0"}, {"2015-16": "0"}]}}, {"state": "Uttarakhand", "figures": {"A": [{"2013-14": "11.7"}, {"2014-15": "9.6"}], "BE": [{"2014-15": "6.2"}, {"2015-16": "20.2"}, {"2016-17": "19.4"}], "RE": [{"2014-15": "9"}, {"2015-16": "20.3"}]}}, {"state": "West Bengal", "figures": {"A": [{"2013-14": "2.1"}, {"2014-15": "2.8"}], "BE": [{"2014-15": "2.5"}, {"2015-16": "3.7"}, {"2016-17": "3.4"}], "RE": [{"2014-15": "2.7"}, {"2015-16": "3.7"}]}}], "indicator": "Capital Expenditure (including Loans & Advances ) as % of Total Sector Expenditure", "slugIndicator": "capital_expenditure_including_loans_advances_as_of_total_sector_expenditure", "unit": "Percentage"}], "slugSector": "forests_environment"}, {"sector": " Urban Development & Housing", "subIndicators": [{"stateFigures": [{"state": "Andhra Pradesh", "figures": {"A": [{"2013-14": "5121"}, {"2014-15": ""}], "BE": [{"2014-15": "3942.7"}, {"2015-16": "4066.3"}, {"2016-17": "5861.8"}], "RE": [{"2014-15": "3905.2"}, {"2015-16": "2757.6"}]}}, {"state": "Assam", "figures": {"A": [{"2013-14": "424.1"}, {"2014-15": "396.5"}], "BE": [{"2014-15": "1004.3"}, {"2015-16": "893.9"}, {"2016-17": "1590.8"}], "RE": [{"2014-15": "1158.5"}, {"2015-16": "1150"}]}}, {"state": "Bihar", "figures": {"A": [{"2013-14": "1718"}, {"2014-15": "1745.9"}], "BE": [{"2014-15": "2420.9"}, {"2015-16": "2169.9"}, {"2016-17": "3409.4"}], "RE": [{"2014-15": "3301.6"}, {"2015-16": "2662.4"}]}}, {"state": "Chhattisgarh", "figures": {"A": [{"2013-14": "1867.1"}, {"2014-15": "1946.7"}], "BE": [{"2014-15": "2772.2"}, {"2015-16": "2991.8"}, {"2016-17": "3819.8"}], "RE": [{"2014-15": "2449.5"}, {"2015-16": "3196.2"}]}}, {"state": "Delhi", "figures": {"A": [{"2013-14": "6333.1"}, {"2014-15": "5884.6"}], "BE": [{"2014-15": "7536.1"}, {"2015-16": "6639.2"}, {"2016-17": "7900.6"}], "RE": [{"2014-15": "6474.8"}, {"2015-16": "6997"}]}}, {"state": "Gujarat", "figures": {"A": [{"2013-14": "7308.8"}, {"2014-15": "7557.9"}], "BE": [{"2014-15": "8662.2"}, {"2015-16": "9361.1"}, {"2016-17": "10018.4"}], "RE": [{"2014-15": "8516.2"}, {"2015-16": "9239.2"}]}}, {"state": "Haryana", "figures": {"A": [{"2013-14": "2053.7"}, {"2014-15": "2120.2"}], "BE": [{"2014-15": "3059.8"}, {"2015-16": "3564.3"}, {"2016-17": "3805.1"}], "RE": [{"2014-15": "2588.2"}, {"2015-16": "3339.2"}]}}, {"state": "Himachal Pradesh", "figures": {"A": [{"2013-14": "286.5"}, {"2014-15": "201"}], "BE": [{"2014-15": "196.3"}, {"2015-16": "230.4"}, {"2016-17": "285.3"}], "RE": [{"2014-15": "205"}, {"2015-16": "315.8"}]}}, {"state": "Jammu and Kashmir", "figures": {"A": [{"2013-14": "366.7"}, {"2014-15": "592.1"}], "BE": [{"2014-15": "1198.4"}, {"2015-16": "1142.5"}, {"2016-17": "1399"}], "RE": [{"2014-15": "898.3"}, {"2015-16": "964.2"}]}}, {"state": "Jharkhand", "figures": {"A": [{"2013-14": "515.7"}, {"2014-15": "1068.6"}], "BE": [{"2014-15": "1869.3"}, {"2015-16": "1726.2"}, {"2016-17": "2414.2"}], "RE": [{"2014-15": "1237.7"}, {"2015-16": "1605.3"}]}}, {"state": "Karnataka", "figures": {"A": [{"2013-14": "2581"}, {"2014-15": "9338.1"}], "BE": [{"2014-15": "3871.4"}, {"2015-16": "11968.4"}, {"2016-17": "14918.8"}], "RE": [{"2014-15": "5013.1"}, {"2015-16": "11664.3"}]}}, {"state": "Kerala", "figures": {"A": [{"2013-14": "656.2"}, {"2014-15": "468.3"}], "BE": [{"2014-15": "1502.6"}, {"2015-16": "1079.7"}, {"2016-17": "1482.5"}], "RE": [{"2014-15": "949.5"}, {"2015-16": "728.3"}]}}, {"state": "Madhya Pradesh", "figures": {"A": [{"2013-14": "5829.4"}, {"2014-15": "5817.5"}], "BE": [{"2014-15": "7032.5"}, {"2015-16": "7463.3"}, {"2016-17": "11735.8"}], "RE": [{"2014-15": "7083.3"}, {"2015-16": "10479.5"}]}}, {"state": "Maharashtra", "figures": {"A": [{"2013-14": "6477.2"}, {"2014-15": "6691.6"}], "BE": [{"2014-15": "7476"}, {"2015-16": "7505.7"}, {"2016-17": "18131.4"}], "RE": [{"2014-15": "9291.2"}, {"2015-16": "12227.7"}]}}, {"state": "Meghalaya", "figures": {"A": [{"2013-14": "156.2"}, {"2014-15": "86.9"}], "BE": [{"2014-15": "351.6"}, {"2015-16": "100.7"}, {"2016-17": "157.7"}], "RE": [{"2014-15": "351.6"}, {"2015-16": "100.7"}]}}, {"state": "Mizoram", "figures": {"A": [{"2013-14": "185"}, {"2014-15": "267.4"}], "BE": [{"2014-15": "318.8"}, {"2015-16": "239.5"}, {"2016-17": "193.8"}], "RE": [{"2014-15": "376.4"}, {"2015-16": "286.7"}]}}, {"state": "Odisha", "figures": {"A": [{"2013-14": "2493.2"}, {"2014-15": "2339.8"}], "BE": [{"2014-15": "3031.6"}, {"2015-16": "2925.3"}, {"2016-17": "3357.1"}], "RE": [{"2014-15": "2794.3"}, {"2015-16": "2414.3"}]}}, {"state": "Punjab", "figures": {"A": [{"2013-14": "662.8"}, {"2014-15": "1094.2"}], "BE": [{"2014-15": "2030.9"}, {"2015-16": "958.3"}, {"2016-17": "2268.2"}], "RE": [{"2014-15": "1364.5"}, {"2015-16": "1298.8"}]}}, {"state": "Rajasthan", "figures": {"A": [{"2013-14": "3776"}, {"2014-15": "3401.3"}], "BE": [{"2014-15": "4843.5"}, {"2015-16": "4296"}, {"2016-17": "6658.1"}], "RE": [{"2014-15": "3982.5"}, {"2015-16": "4978.3"}]}}, {"state": "Sikkim", "figures": {"A": [{"2013-14": "106.4"}, {"2014-15": "111.6"}], "BE": [{"2014-15": "270.1"}, {"2015-16": "123.6"}, {"2016-17": "173.1"}], "RE": [{"2014-15": "280.9"}, {"2015-16": "131"}]}}, {"state": "Tamil Nadu", "figures": {"A": [{"2013-14": "10169.3"}, {"2014-15": "10058"}], "BE": [{"2014-15": "11677"}, {"2015-16": "12926.6"}, {"2016-17": "14009.6"}], "RE": [{"2014-15": "12248.5"}, {"2015-16": "11834.9"}]}}, {"state": "Telangana", "figures": {"A": [{"2013-14": ""}, {"2014-15": "2557.6"}], "BE": [{"2014-15": "6478"}, {"2015-16": "4897.5"}, {"2016-17": "5675.8"}], "RE": [{"2014-15": "6478"}, {"2015-16": "3557.6"}]}}, {"state": "Tripura", "figures": {"A": [{"2013-14": "143.5"}, {"2014-15": "212.5"}], "BE": [{"2014-15": "238.2"}, {"2015-16": "322.4"}, {"2016-17": "240.8"}], "RE": [{"2014-15": "340.7"}, {"2015-16": "204.3"}]}}, {"state": "Uttar Pradesh", "figures": {"A": [{"2013-14": "3236.4"}, {"2014-15": "5689.6"}], "BE": [{"2014-15": "7824.6"}, {"2015-16": "8125.3"}, {"2016-17": "11276.6"}], "RE": [{"2014-15": "8261.6"}, {"2015-16": "9001.3"}]}}, {"state": "Uttarakhand", "figures": {"A": [{"2013-14": "180.3"}, {"2014-15": "189.4"}], "BE": [{"2014-15": "787.5"}, {"2015-16": "496.7"}, {"2016-17": "868.9"}], "RE": [{"2014-15": "382"}, {"2015-16": "742.5"}]}}, {"state": "West Bengal", "figures": {"A": [{"2013-14": "2610.9"}, {"2014-15": "2492.1"}], "BE": [{"2014-15": "3018"}, {"2015-16": "3457.7"}, {"2016-17": "3640.4"}], "RE": [{"2014-15": "3114.2"}, {"2015-16": "3182.7"}]}}], "indicator": "Total Sector Expenditure", "slugIndicator": "total_sector_expenditure", "unit": "INR (in Crores)"}, {"stateFigures": [{"state": "Andhra Pradesh", "figures": {"A": [{"2013-14": "3.7"}, {"2014-15": ""}], "BE": [{"2014-15": "3.5"}, {"2015-16": "3.6"}, {"2016-17": "4.3"}], "RE": [{"2014-15": "3.5"}, {"2015-16": "2.5"}]}}, {"state": "Assam", "figures": {"A": [{"2013-14": "1.1"}, {"2014-15": "0.8"}], "BE": [{"2014-15": "1.7"}, {"2015-16": "1.4"}, {"2016-17": "2"}], "RE": [{"2014-15": "1.8"}, {"2015-16": "1.5"}]}}, {"state": "Bihar", "figures": {"A": [{"2013-14": "2.1"}, {"2014-15": "1.8"}], "BE": [{"2014-15": "2.1"}, {"2015-16": "1.8"}, {"2016-17": "2.4"}], "RE": [{"2014-15": "2.5"}, {"2015-16": "2"}]}}, {"state": "Chhattisgarh", "figures": {"A": [{"2013-14": "4.8"}, {"2014-15": "4.2"}], "BE": [{"2014-15": "5.1"}, {"2015-16": "4.6"}, {"2016-17": "5.5"}], "RE": [{"2014-15": "4.5"}, {"2015-16": "4.9"}]}}, {"state": "Delhi", "figures": {"A": [{"2013-14": "18.6"}, {"2014-15": ""}], "BE": [{"2014-15": "20.5"}, {"2015-16": "16.1"}, {"2016-17": "17"}], "RE": [{"2014-15": "18.6"}, {"2015-16": ""}]}}, {"state": "Gujarat", "figures": {"A": [{"2013-14": "7"}, {"2014-15": "6.5"}], "BE": [{"2014-15": "6.6"}, {"2015-16": "6.8"}, {"2016-17": "6.7"}], "RE": [{"2014-15": "6.8"}, {"2015-16": "6.9"}]}}, {"state": "Haryana", "figures": {"A": [{"2013-14": "4.4"}, {"2014-15": "3.9"}], "BE": [{"2014-15": "5.1"}, {"2015-16": "5.2"}, {"2016-17": "4.3"}], "RE": [{"2014-15": "4.2"}, {"2015-16": "3.9"}]}}, {"state": "Himachal Pradesh", "figures": {"A": [{"2013-14": "1.3"}, {"2014-15": "0.8"}], "BE": [{"2014-15": "0.8"}, {"2015-16": "0.8"}, {"2016-17": "0.9"}], "RE": [{"2014-15": "0.8"}, {"2015-16": "1.2"}]}}, {"state": "Jammu and Kashmir", "figures": {"A": [{"2013-14": "1.1"}, {"2014-15": "1.7"}], "BE": [{"2014-15": "2.8"}, {"2015-16": "2.5"}, {"2016-17": "2.5"}], "RE": [{"2014-15": "2.1"}, {"2015-16": "1.9"}]}}, {"state": "Jharkhand", "figures": {"A": [{"2013-14": "1.7"}, {"2014-15": "2.7"}], "BE": [{"2014-15": "3.7"}, {"2015-16": "3.1"}, {"2016-17": "3.8"}], "RE": [{"2014-15": "2.4"}, {"2015-16": "2.9"}]}}, {"state": "Karnataka", "figures": {"A": [{"2013-14": "2.4"}, {"2014-15": "7.5"}], "BE": [{"2014-15": "2.9"}, {"2015-16": "8.8"}, {"2016-17": "9.5"}], "RE": [{"2014-15": "3.9"}, {"2015-16": "8.4"}]}}, {"state": "Kerala", "figures": {"A": [{"2013-14": "1"}, {"2014-15": "0.6"}], "BE": [{"2014-15": "1.9"}, {"2015-16": "1.1"}, {"2016-17": "1.4"}], "RE": [{"2014-15": "1.2"}, {"2015-16": "0.8"}]}}, {"state": "Madhya Pradesh", "figures": {"A": [{"2013-14": "6.8"}, {"2014-15": "5.8"}], "BE": [{"2014-15": "6"}, {"2015-16": "5.7"}, {"2016-17": "7.8"}], "RE": [{"2014-15": "6"}, {"2015-16": "7.9"}]}}, {"state": "Maharashtra", "figures": {"A": [{"2013-14": "3.7"}, {"2014-15": "3.4"}], "BE": [{"2014-15": "3.5"}, {"2015-16": "3.3"}, {"2016-17": "7.1"}], "RE": [{"2014-15": "4.2"}, {"2015-16": "5.2"}]}}, {"state": "Meghalaya", "figures": {"A": [{"2013-14": "2.2"}, {"2014-15": "1.1"}], "BE": [{"2014-15": "3"}, {"2015-16": "1.1"}, {"2016-17": "1.5"}], "RE": [{"2014-15": "3"}, {"2015-16": "1.1"}]}}, {"state": "Mizoram", "figures": {"A": [{"2013-14": "3.3"}, {"2014-15": "3.4"}], "BE": [{"2014-15": "4.8"}, {"2015-16": "3.1"}, {"2016-17": "2.4"}], "RE": [{"2014-15": "5"}, {"2015-16": "3.4"}]}}, {"state": "Odisha", "figures": {"A": [{"2013-14": "4.4"}, {"2014-15": "3.5"}], "BE": [{"2014-15": "3.8"}, {"2015-16": "3.5"}, {"2016-17": "3.6"}], "RE": [{"2014-15": "3.6"}, {"2015-16": "2.9"}]}}, {"state": "Punjab", "figures": {"A": [{"2013-14": "1.1"}, {"2014-15": "1.5"}], "BE": [{"2014-15": "2.8"}, {"2015-16": "1.2"}, {"2016-17": "2.6"}], "RE": [{"2014-15": "1.8"}, {"2015-16": "1.7"}]}}, {"state": "Rajasthan", "figures": {"A": [{"2013-14": "4"}, {"2014-15": "2.9"}], "BE": [{"2014-15": "3.7"}, {"2015-16": "3.1"}, {"2016-17": "4.4"}], "RE": [{"2014-15": "3.2"}, {"2015-16": "3.6"}]}}, {"state": "Sikkim", "figures": {"A": [{"2013-14": "2.4"}, {"2014-15": "2.4"}], "BE": [{"2014-15": "4.2"}, {"2015-16": "2.3"}, {"2016-17": "3.2"}], "RE": [{"2014-15": "4.2"}, {"2015-16": "2.4"}]}}, {"state": "Tamil Nadu", "figures": {"A": [{"2013-14": "7.9"}, {"2014-15": "6.7"}], "BE": [{"2014-15": "7.6"}, {"2015-16": "7.4"}, {"2016-17": "7.4"}], "RE": [{"2014-15": "7.6"}, {"2015-16": "6.9"}]}}, {"state": "Telangana", "figures": {"A": [{"2013-14": ""}, {"2014-15": "4.1"}], "BE": [{"2014-15": "6.6"}, {"2015-16": "4.2"}, {"2016-17": "4.4"}], "RE": [{"2014-15": "6.6"}, {"2015-16": "3.6"}]}}, {"state": "Tripura", "figures": {"A": [{"2013-14": "1.8"}, {"2014-15": "2"}], "BE": [{"2014-15": "1.9"}, {"2015-16": "2.2"}, {"2016-17": "1.6"}], "RE": [{"2014-15": "2.7"}, {"2015-16": "1.6"}]}}, {"state": "Uttar Pradesh", "figures": {"A": [{"2013-14": "1.6"}, {"2014-15": "2.4"}], "BE": [{"2014-15": "2.8"}, {"2015-16": "2.7"}, {"2016-17": "3.3"}], "RE": [{"2014-15": "3.1"}, {"2015-16": "2.7"}]}}, {"state": "Uttarakhand", "figures": {"A": [{"2013-14": "0.8"}, {"2014-15": "0.7"}], "BE": [{"2014-15": "2.6"}, {"2015-16": "1.5"}, {"2016-17": "2.1"}], "RE": [{"2014-15": "1.2"}, {"2015-16": "2.2"}]}}, {"state": "West Bengal", "figures": {"A": [{"2013-14": "2.4"}, {"2014-15": "2"}], "BE": [{"2014-15": "2.3"}, {"2015-16": "2.5"}, {"2016-17": "2.3"}], "RE": [{"2014-15": "2.4"}, {"2015-16": "2.2"}]}}], "indicator": "Total Sector Expenditure as % of State Budget", "slugIndicator": "total_sector_expenditure_as_of_state_budget", "unit": "Percentage"}, {"stateFigures": [{"state": "Andhra Pradesh", "figures": {"A": [{"2013-14": "593.9"}, {"2014-15": ""}], "BE": [{"2014-15": "453.4"}, {"2015-16": "463.9"}, {"2016-17": "663.4"}], "RE": [{"2014-15": "449.1"}, {"2015-16": "314.6"}]}}, {"state": "Assam", "figures": {"A": [{"2013-14": "135.4"}, {"2014-15": "125.1"}], "BE": [{"2014-15": "316.9"}, {"2015-16": "278.7"}, {"2016-17": "490.3"}], "RE": [{"2014-15": "365.5"}, {"2015-16": "358.6"}]}}, {"state": "Bihar", "figures": {"A": [{"2013-14": "171.3"}, {"2014-15": "172"}], "BE": [{"2014-15": "238.5"}, {"2015-16": "211.2"}, {"2016-17": "328.1"}], "RE": [{"2014-15": "325.2"}, {"2015-16": "259.2"}]}}, {"state": "Chhattisgarh", "figures": {"A": [{"2013-14": "749.6"}, {"2014-15": "771.5"}], "BE": [{"2014-15": "1098.7"}, {"2015-16": "1170.7"}, {"2016-17": "1476"}], "RE": [{"2014-15": "970.8"}, {"2015-16": "1250.7"}]}}, {"state": "Delhi", "figures": {"A": [{"2013-14": "3242.9"}, {"2014-15": "2928.8"}], "BE": [{"2014-15": "3750.8"}, {"2015-16": "3211"}, {"2016-17": "3711.8"}], "RE": [{"2014-15": "3222.6"}, {"2015-16": "3384.1"}]}}, {"state": "Gujarat", "figures": {"A": [{"2013-14": "1206.7"}, {"2014-15": "1232.4"}], "BE": [{"2014-15": "1412.4"}, {"2015-16": "1507.9"}, {"2016-17": "1594.6"}], "RE": [{"2014-15": "1388.6"}, {"2015-16": "1488.3"}]}}, {"state": "Haryana", "figures": {"A": [{"2013-14": "781.9"}, {"2014-15": "794.8"}], "BE": [{"2014-15": "1147"}, {"2015-16": "1316.2"}, {"2016-17": "1384.8"}], "RE": [{"2014-15": "970.3"}, {"2015-16": "1233.1"}]}}, {"state": "Himachal Pradesh", "figures": {"A": [{"2013-14": "414.1"}, {"2014-15": "288"}], "BE": [{"2014-15": "281.3"}, {"2015-16": "327.5"}, {"2016-17": "402"}], "RE": [{"2014-15": "293.7"}, {"2015-16": "448.7"}]}}, {"state": "Jammu and Kashmir", "figures": {"A": [{"2013-14": "305.3"}, {"2014-15": "487.3"}], "BE": [{"2014-15": "986.2"}, {"2015-16": "929.7"}, {"2016-17": "1126.5"}], "RE": [{"2014-15": "739.2"}, {"2015-16": "784.6"}]}}, {"state": "Jharkhand", "figures": {"A": [{"2013-14": "159.5"}, {"2014-15": "326.1"}], "BE": [{"2014-15": "570.5"}, {"2015-16": "519.9"}, {"2016-17": "717.4"}], "RE": [{"2014-15": "377.7"}, {"2015-16": "483.5"}]}}, {"state": "Karnataka", "figures": {"A": [{"2013-14": "425.7"}, {"2014-15": "1525.5"}], "BE": [{"2014-15": "632.4"}, {"2015-16": "1936.7"}, {"2016-17": "2391.8"}], "RE": [{"2014-15": "818.9"}, {"2015-16": "1887.5"}]}}, {"state": "Kerala", "figures": {"A": [{"2013-14": "187.3"}, {"2014-15": "132.8"}], "BE": [{"2014-15": "426.2"}, {"2015-16": "304.4"}, {"2016-17": "415.5"}], "RE": [{"2014-15": "269.3"}, {"2015-16": "205.3"}]}}, {"state": "Madhya Pradesh", "figures": {"A": [{"2013-14": "676"}, {"2014-15": "669.1"}], "BE": [{"2014-15": "808.8"}, {"2015-16": "851.4"}, {"2016-17": "1328.2"}], "RE": [{"2014-15": "814.6"}, {"2015-16": "1195.4"}]}}, {"state": "Maharashtra", "figures": {"A": [{"2013-14": "559.8"}, {"2014-15": "571"}], "BE": [{"2014-15": "637.9"}, {"2015-16": "632.6"}, {"2016-17": "1510"}], "RE": [{"2014-15": "792.8"}, {"2015-16": "1030.5"}]}}, {"state": "Meghalaya", "figures": {"A": [{"2013-14": "582.5"}, {"2014-15": "320.4"}], "BE": [{"2014-15": "1296.4"}, {"2015-16": "367.2"}, {"2016-17": "568.6"}], "RE": [{"2014-15": "1296.4"}, {"2015-16": "367.2"}]}}, {"state": "Mizoram", "figures": {"A": [{"2013-14": "1799.4"}, {"2014-15": "2573.7"}], "BE": [{"2014-15": "3068.3"}, {"2015-16": "2279.1"}, {"2016-17": "1823.4"}], "RE": [{"2014-15": "3622.4"}, {"2015-16": "2728.3"}]}}, {"state": "Odisha", "figures": {"A": [{"2013-14": "601.4"}, {"2014-15": "559.8"}], "BE": [{"2014-15": "725.3"}, {"2015-16": "694.2"}, {"2016-17": "790.3"}], "RE": [{"2014-15": "668.5"}, {"2015-16": "572.9"}]}}, {"state": "Punjab", "figures": {"A": [{"2013-14": "234.4"}, {"2014-15": "383"}], "BE": [{"2014-15": "710.9"}, {"2015-16": "332.2"}, {"2016-17": "779.1"}], "RE": [{"2014-15": "477.6"}, {"2015-16": "450.2"}]}}, {"state": "Rajasthan", "figures": {"A": [{"2013-14": "539.9"}, {"2014-15": "479.3"}], "BE": [{"2014-15": "682.5"}, {"2015-16": "596.9"}, {"2016-17": "912.7"}], "RE": [{"2014-15": "561.2"}, {"2015-16": "691.7"}]}}, {"state": "Sikkim", "figures": {"A": [{"2013-14": "1699.8"}, {"2014-15": "1762.4"}], "BE": [{"2014-15": "4267.1"}, {"2015-16": "1931.1"}, {"2016-17": "2676"}], "RE": [{"2014-15": "4437"}, {"2015-16": "2046.8"}]}}, {"state": "Tamil Nadu", "figures": {"A": [{"2013-14": "1489.7"}, {"2014-15": "1465"}], "BE": [{"2014-15": "1700.9"}, {"2015-16": "1872.6"}, {"2016-17": "2018.8"}], "RE": [{"2014-15": "1784.1"}, {"2015-16": "1714.5"}]}}, {"state": "Telangana", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Tripura", "figures": {"A": [{"2013-14": "387.8"}, {"2014-15": "567.8"}], "BE": [{"2014-15": "636.5"}, {"2015-16": "852"}, {"2016-17": "629.4"}], "RE": [{"2014-15": "910.5"}, {"2015-16": "540"}]}}, {"state": "Uttar Pradesh", "figures": {"A": [{"2013-14": "155.8"}, {"2014-15": "269.4"}], "BE": [{"2014-15": "370.5"}, {"2015-16": "378.5"}, {"2016-17": "517.1"}], "RE": [{"2014-15": "391.1"}, {"2015-16": "419.3"}]}}, {"state": "Uttarakhand", "figures": {"A": [{"2013-14": "176.3"}, {"2014-15": "182.7"}], "BE": [{"2014-15": "760"}, {"2015-16": "473"}, {"2016-17": "817.3"}], "RE": [{"2014-15": "368.6"}, {"2015-16": "707.2"}]}}, {"state": "West Bengal", "figures": {"A": [{"2013-14": "286.5"}, {"2014-15": "271.1"}], "BE": [{"2014-15": "328.3"}, {"2015-16": "372.9"}, {"2016-17": "389.1"}], "RE": [{"2014-15": "338.8"}, {"2015-16": "343.2"}]}}], "indicator": "Per Capita Expenditure on Sector ", "slugIndicator": "per_capita_expenditure_on_sector", "unit": "INR Rs."}, {"stateFigures": [{"state": "Andhra Pradesh", "figures": {"A": [{"2013-14": "49.6"}, {"2014-15": ""}], "BE": [{"2014-15": "86.3"}, {"2015-16": "76.5"}, {"2016-17": "66.5"}], "RE": [{"2014-15": "86.2"}, {"2015-16": "85.5"}]}}, {"state": "Assam", "figures": {"A": [{"2013-14": "93.1"}, {"2014-15": "95.3"}], "BE": [{"2014-15": "96.1"}, {"2015-16": "49.7"}, {"2016-17": "57"}], "RE": [{"2014-15": "94.4"}, {"2015-16": "56.3"}]}}, {"state": "Bihar", "figures": {"A": [{"2013-14": "99.9"}, {"2014-15": "100"}], "BE": [{"2014-15": "100"}, {"2015-16": "100"}, {"2016-17": "100"}], "RE": [{"2014-15": "100"}, {"2015-16": "98.6"}]}}, {"state": "Chhattisgarh", "figures": {"A": [{"2013-14": "97.1"}, {"2014-15": "70.4"}], "BE": [{"2014-15": "75.5"}, {"2015-16": "70"}, {"2016-17": "73.6"}], "RE": [{"2014-15": "78.2"}, {"2015-16": "58.8"}]}}, {"state": "Delhi", "figures": {"A": [{"2013-14": "65.9"}, {"2014-15": "73.6"}], "BE": [{"2014-15": "78.9"}, {"2015-16": "79.8"}, {"2016-17": "83.5"}], "RE": [{"2014-15": "75.1"}, {"2015-16": "75.6"}]}}, {"state": "Gujarat", "figures": {"A": [{"2013-14": "86.1"}, {"2014-15": "98"}], "BE": [{"2014-15": "97.1"}, {"2015-16": "91.5"}, {"2016-17": "92.7"}], "RE": [{"2014-15": "97.1"}, {"2015-16": "96.3"}]}}, {"state": "Haryana", "figures": {"A": [{"2013-14": "79.4"}, {"2014-15": "78.4"}], "BE": [{"2014-15": "72.9"}, {"2015-16": "67.6"}, {"2016-17": "96.5"}], "RE": [{"2014-15": "78.1"}, {"2015-16": "90.5"}]}}, {"state": "Himachal Pradesh", "figures": {"A": [{"2013-14": "93.4"}, {"2014-15": "93.5"}], "BE": [{"2014-15": "93.1"}, {"2015-16": "91.7"}, {"2016-17": "91.6"}], "RE": [{"2014-15": "93.7"}, {"2015-16": "94.1"}]}}, {"state": "Jammu and Kashmir", "figures": {"A": [{"2013-14": "100"}, {"2014-15": "100"}], "BE": [{"2014-15": "38.7"}, {"2015-16": "53.7"}, {"2016-17": "44.4"}], "RE": [{"2014-15": "67.6"}, {"2015-16": "63.8"}]}}, {"state": "Jharkhand", "figures": {"A": [{"2013-14": "96"}, {"2014-15": "98.1"}], "BE": [{"2014-15": "98.5"}, {"2015-16": "97.5"}, {"2016-17": "97.7"}], "RE": [{"2014-15": "97.8"}, {"2015-16": "97.3"}]}}, {"state": "Karnataka", "figures": {"A": [{"2013-14": "83.1"}, {"2014-15": "92.7"}], "BE": [{"2014-15": "87.3"}, {"2015-16": "92.1"}, {"2016-17": "83.3"}], "RE": [{"2014-15": "92.5"}, {"2015-16": "92.1"}]}}, {"state": "Kerala", "figures": {"A": [{"2013-14": "50.4"}, {"2014-15": "80.7"}], "BE": [{"2014-15": "92.3"}, {"2015-16": "89.1"}, {"2016-17": "96.1"}], "RE": [{"2014-15": "89"}, {"2015-16": "87.2"}]}}, {"state": "Madhya Pradesh", "figures": {"A": [{"2013-14": "97.7"}, {"2014-15": "98.5"}], "BE": [{"2014-15": "98.7"}, {"2015-16": "93.3"}, {"2016-17": "92.3"}], "RE": [{"2014-15": "98.6"}, {"2015-16": "92.5"}]}}, {"state": "Maharashtra", "figures": {"A": [{"2013-14": "90.6"}, {"2014-15": "95.9"}], "BE": [{"2014-15": "99.6"}, {"2015-16": "99.8"}, {"2016-17": "98.4"}], "RE": [{"2014-15": "96.9"}, {"2015-16": "95.8"}]}}, {"state": "Meghalaya", "figures": {"A": [{"2013-14": "27.7"}, {"2014-15": "33.3"}], "BE": [{"2014-15": "41.1"}, {"2015-16": "80"}, {"2016-17": "68"}], "RE": [{"2014-15": "41.1"}, {"2015-16": "80"}]}}, {"state": "Mizoram", "figures": {"A": [{"2013-14": "54"}, {"2014-15": "46.3"}], "BE": [{"2014-15": "46.6"}, {"2015-16": "37.4"}, {"2016-17": "41.6"}], "RE": [{"2014-15": "47.3"}, {"2015-16": "43.9"}]}}, {"state": "Odisha", "figures": {"A": [{"2013-14": "75.4"}, {"2014-15": "76"}], "BE": [{"2014-15": "71.4"}, {"2015-16": "91.4"}, {"2016-17": "86.2"}], "RE": [{"2014-15": "72.9"}, {"2015-16": "87.3"}]}}, {"state": "Punjab", "figures": {"A": [{"2013-14": "58.4"}, {"2014-15": "75.4"}], "BE": [{"2014-15": "41.4"}, {"2015-16": "92.7"}, {"2016-17": "76.4"}], "RE": [{"2014-15": "76.4"}, {"2015-16": "74.2"}]}}, {"state": "Rajasthan", "figures": {"A": [{"2013-14": "65.6"}, {"2014-15": "76.7"}], "BE": [{"2014-15": "68.4"}, {"2015-16": "74.4"}, {"2016-17": "69.2"}], "RE": [{"2014-15": "75.6"}, {"2015-16": "78.6"}]}}, {"state": "Sikkim", "figures": {"A": [{"2013-14": "43"}, {"2014-15": "36.8"}], "BE": [{"2014-15": "18.8"}, {"2015-16": "42.4"}, {"2016-17": "65.8"}], "RE": [{"2014-15": "18.1"}, {"2015-16": "40"}]}}, {"state": "Tamil Nadu", "figures": {"A": [{"2013-14": "62.9"}, {"2014-15": "62.4"}], "BE": [{"2014-15": "66.6"}, {"2015-16": "56.7"}, {"2016-17": "57.2"}], "RE": [{"2014-15": "65.1"}, {"2015-16": "61.2"}]}}, {"state": "Telangana", "figures": {"A": [{"2013-14": ""}, {"2014-15": "56.7"}], "BE": [{"2014-15": "71.2"}, {"2015-16": "64.9"}, {"2016-17": "95.9"}], "RE": [{"2014-15": "71.2"}, {"2015-16": "82"}]}}, {"state": "Tripura", "figures": {"A": [{"2013-14": "82.2"}, {"2014-15": "69"}], "BE": [{"2014-15": "87.8"}, {"2015-16": "51.2"}, {"2016-17": "49.5"}], "RE": [{"2014-15": "56.1"}, {"2015-16": "59.7"}]}}, {"state": "Uttar Pradesh", "figures": {"A": [{"2013-14": "45.7"}, {"2014-15": "57.8"}], "BE": [{"2014-15": "70.2"}, {"2015-16": "65.8"}, {"2016-17": "69.8"}], "RE": [{"2014-15": "73.1"}, {"2015-16": "66.1"}]}}, {"state": "Uttarakhand", "figures": {"A": [{"2013-14": "29"}, {"2014-15": "26.3"}], "BE": [{"2014-15": "20.4"}, {"2015-16": "29.4"}, {"2016-17": "71.4"}], "RE": [{"2014-15": "25"}, {"2015-16": "55.4"}]}}, {"state": "West Bengal", "figures": {"A": [{"2013-14": "77.4"}, {"2014-15": "24.6"}], "BE": [{"2014-15": "25.2"}, {"2015-16": "31.2"}, {"2016-17": "22"}], "RE": [{"2014-15": "31.5"}, {"2015-16": "38.5"}]}}], "indicator": "Revenue Expenditure as % of Total Sector Expenditure", "slugIndicator": "revenue_expenditure_as_of_total_sector_expenditure", "unit": "Percentage"}, {"stateFigures": [{"state": "Andhra Pradesh", "figures": {"A": [{"2013-14": "50.4"}, {"2014-15": ""}], "BE": [{"2014-15": "13.7"}, {"2015-16": "23.5"}, {"2016-17": "33.5"}], "RE": [{"2014-15": "13.8"}, {"2015-16": "14.5"}]}}, {"state": "Assam", "figures": {"A": [{"2013-14": "6.9"}, {"2014-15": "4.7"}], "BE": [{"2014-15": "3.9"}, {"2015-16": "50.3"}, {"2016-17": "43"}], "RE": [{"2014-15": "5.6"}, {"2015-16": "43.7"}]}}, {"state": "Bihar", "figures": {"A": [{"2013-14": "0.1"}, {"2014-15": "0"}], "BE": [{"2014-15": "0"}, {"2015-16": "0"}, {"2016-17": "0"}], "RE": [{"2014-15": "0"}, {"2015-16": "1.4"}]}}, {"state": "Chhattisgarh", "figures": {"A": [{"2013-14": "2.9"}, {"2014-15": "29.6"}], "BE": [{"2014-15": "24.5"}, {"2015-16": "30"}, {"2016-17": "26.4"}], "RE": [{"2014-15": "21.8"}, {"2015-16": "41.2"}]}}, {"state": "Delhi", "figures": {"A": [{"2013-14": "34.1"}, {"2014-15": "26.4"}], "BE": [{"2014-15": "21.1"}, {"2015-16": "20.2"}, {"2016-17": "16.5"}], "RE": [{"2014-15": "24.9"}, {"2015-16": "24.4"}]}}, {"state": "Gujarat", "figures": {"A": [{"2013-14": "13.9"}, {"2014-15": "2"}], "BE": [{"2014-15": "2.9"}, {"2015-16": "8.5"}, {"2016-17": "7.3"}], "RE": [{"2014-15": "2.9"}, {"2015-16": "3.7"}]}}, {"state": "Haryana", "figures": {"A": [{"2013-14": "20.6"}, {"2014-15": "21.6"}], "BE": [{"2014-15": "27.1"}, {"2015-16": "32.4"}, {"2016-17": "3.5"}], "RE": [{"2014-15": "21.9"}, {"2015-16": "9.5"}]}}, {"state": "Himachal Pradesh", "figures": {"A": [{"2013-14": "6.6"}, {"2014-15": "6.5"}], "BE": [{"2014-15": "6.9"}, {"2015-16": "8.3"}, {"2016-17": "8.4"}], "RE": [{"2014-15": "6.3"}, {"2015-16": "5.9"}]}}, {"state": "Jammu and Kashmir", "figures": {"A": [{"2013-14": "0"}, {"2014-15": "0"}], "BE": [{"2014-15": "61.3"}, {"2015-16": "46.3"}, {"2016-17": "55.6"}], "RE": [{"2014-15": "32.4"}, {"2015-16": "36.2"}]}}, {"state": "Jharkhand", "figures": {"A": [{"2013-14": "4"}, {"2014-15": "1.9"}], "BE": [{"2014-15": "1.5"}, {"2015-16": "2.5"}, {"2016-17": "2.3"}], "RE": [{"2014-15": "2.2"}, {"2015-16": "2.7"}]}}, {"state": "Karnataka", "figures": {"A": [{"2013-14": "16.9"}, {"2014-15": "7.3"}], "BE": [{"2014-15": "12.7"}, {"2015-16": "7.9"}, {"2016-17": "16.7"}], "RE": [{"2014-15": "7.5"}, {"2015-16": "7.9"}]}}, {"state": "Kerala", "figures": {"A": [{"2013-14": "49.6"}, {"2014-15": "19.3"}], "BE": [{"2014-15": "7.7"}, {"2015-16": "10.9"}, {"2016-17": "3.9"}], "RE": [{"2014-15": "11"}, {"2015-16": "12.8"}]}}, {"state": "Madhya Pradesh", "figures": {"A": [{"2013-14": "2.3"}, {"2014-15": "1.5"}], "BE": [{"2014-15": "1.3"}, {"2015-16": "6.7"}, {"2016-17": "7.7"}], "RE": [{"2014-15": "1.4"}, {"2015-16": "7.5"}]}}, {"state": "Maharashtra", "figures": {"A": [{"2013-14": "9.4"}, {"2014-15": "4.1"}], "BE": [{"2014-15": "0.4"}, {"2015-16": "0.2"}, {"2016-17": "1.6"}], "RE": [{"2014-15": "3.1"}, {"2015-16": "4.2"}]}}, {"state": "Meghalaya", "figures": {"A": [{"2013-14": "72.3"}, {"2014-15": "66.7"}], "BE": [{"2014-15": "58.9"}, {"2015-16": "20"}, {"2016-17": "32"}], "RE": [{"2014-15": "58.9"}, {"2015-16": "20"}]}}, {"state": "Mizoram", "figures": {"A": [{"2013-14": "46"}, {"2014-15": "53.7"}], "BE": [{"2014-15": "53.4"}, {"2015-16": "62.6"}, {"2016-17": "58.4"}], "RE": [{"2014-15": "52.7"}, {"2015-16": "56.1"}]}}, {"state": "Odisha", "figures": {"A": [{"2013-14": "24.6"}, {"2014-15": "24"}], "BE": [{"2014-15": "28.6"}, {"2015-16": "8.6"}, {"2016-17": "13.8"}], "RE": [{"2014-15": "27.1"}, {"2015-16": "12.7"}]}}, {"state": "Punjab", "figures": {"A": [{"2013-14": "41.6"}, {"2014-15": "24.6"}], "BE": [{"2014-15": "58.6"}, {"2015-16": "7.3"}, {"2016-17": "23.6"}], "RE": [{"2014-15": "23.6"}, {"2015-16": "25.8"}]}}, {"state": "Rajasthan", "figures": {"A": [{"2013-14": "34.4"}, {"2014-15": "23.3"}], "BE": [{"2014-15": "31.6"}, {"2015-16": "25.6"}, {"2016-17": "30.8"}], "RE": [{"2014-15": "24.4"}, {"2015-16": "21.4"}]}}, {"state": "Sikkim", "figures": {"A": [{"2013-14": "57"}, {"2014-15": "63.2"}], "BE": [{"2014-15": "81.2"}, {"2015-16": "57.6"}, {"2016-17": "34.2"}], "RE": [{"2014-15": "81.9"}, {"2015-16": "60"}]}}, {"state": "Tamil Nadu", "figures": {"A": [{"2013-14": "37.1"}, {"2014-15": "37.6"}], "BE": [{"2014-15": "33.4"}, {"2015-16": "43.3"}, {"2016-17": "42.8"}], "RE": [{"2014-15": "34.9"}, {"2015-16": "38.8"}]}}, {"state": "Telangana", "figures": {"A": [{"2013-14": ""}, {"2014-15": "43.3"}], "BE": [{"2014-15": "28.8"}, {"2015-16": "35.1"}, {"2016-17": "4.1"}], "RE": [{"2014-15": "28.8"}, {"2015-16": "18"}]}}, {"state": "Tripura", "figures": {"A": [{"2013-14": "17.8"}, {"2014-15": "31"}], "BE": [{"2014-15": "12.2"}, {"2015-16": "48.8"}, {"2016-17": "50.5"}], "RE": [{"2014-15": "43.9"}, {"2015-16": "40.3"}]}}, {"state": "Uttar Pradesh", "figures": {"A": [{"2013-14": "54.3"}, {"2014-15": "42.2"}], "BE": [{"2014-15": "29.8"}, {"2015-16": "34.2"}, {"2016-17": "30.2"}], "RE": [{"2014-15": "26.9"}, {"2015-16": "33.9"}]}}, {"state": "Uttarakhand", "figures": {"A": [{"2013-14": "71"}, {"2014-15": "73.7"}], "BE": [{"2014-15": "79.6"}, {"2015-16": "70.6"}, {"2016-17": "28.6"}], "RE": [{"2014-15": "75"}, {"2015-16": "44.6"}]}}, {"state": "West Bengal", "figures": {"A": [{"2013-14": "22.6"}, {"2014-15": "75.4"}], "BE": [{"2014-15": "74.8"}, {"2015-16": "68.8"}, {"2016-17": "78"}], "RE": [{"2014-15": "68.5"}, {"2015-16": "61.5"}]}}], "indicator": "Capital Expenditure (including Loans & Advances ) as % of Total Sector Expenditure", "slugIndicator": "capital_expenditure_including_loans_advances_as_of_total_sector_expenditure", "unit": "Percentage"}], "slugSector": "urban_development_housing"}, {"sector": " Social Welfare", "subIndicators": [{"stateFigures": [{"state": "Andhra Pradesh", "figures": {"A": [{"2013-14": "9814.5"}, {"2014-15": ""}], "BE": [{"2014-15": "8440.1"}, {"2015-16": "8555.7"}, {"2016-17": "11271.8"}], "RE": [{"2014-15": "8384.9"}, {"2015-16": "6612.3"}]}}, {"state": "Assam", "figures": {"A": [{"2013-14": "2382"}, {"2014-15": "2881.1"}], "BE": [{"2014-15": "2622.5"}, {"2015-16": "4057.9"}, {"2016-17": "5437.8"}], "RE": [{"2014-15": "4017.7"}, {"2015-16": "6177.2"}]}}, {"state": "Bihar", "figures": {"A": [{"2013-14": "6788.7"}, {"2014-15": "7913.2"}], "BE": [{"2014-15": "8071.8"}, {"2015-16": "8508.8"}, {"2016-17": "9513.6"}], "RE": [{"2014-15": "11077.6"}, {"2015-16": "10775.3"}]}}, {"state": "Chhattisgarh", "figures": {"A": [{"2013-14": "4718.9"}, {"2014-15": "5049.4"}], "BE": [{"2014-15": "6002.5"}, {"2015-16": "7101.8"}, {"2016-17": "4700.7"}], "RE": [{"2014-15": "6827.8"}, {"2015-16": "6011.8"}]}}, {"state": "Delhi", "figures": {"A": [{"2013-14": "1724.9"}, {"2014-15": "1699.5"}], "BE": [{"2014-15": "2053.2"}, {"2015-16": "2066.9"}, {"2016-17": "2152.2"}], "RE": [{"2014-15": "1929.7"}, {"2015-16": "2045.4"}]}}, {"state": "Gujarat", "figures": {"A": [{"2013-14": "13345"}, {"2014-15": "13922.6"}], "BE": [{"2014-15": "17396.9"}, {"2015-16": "18647.2"}, {"2016-17": "20586.2"}], "RE": [{"2014-15": "16531.8"}, {"2015-16": "18535.8"}]}}, {"state": "Haryana", "figures": {"A": [{"2013-14": "3239.5"}, {"2014-15": "4687.8"}], "BE": [{"2014-15": "5011.5"}, {"2015-16": "5961.4"}, {"2016-17": "6877.1"}], "RE": [{"2014-15": "5293.2"}, {"2015-16": "6443.1"}]}}, {"state": "Himachal Pradesh", "figures": {"A": [{"2013-14": "2418.3"}, {"2014-15": "2949.5"}], "BE": [{"2014-15": "2640.4"}, {"2015-16": "3050"}, {"2016-17": "4183.5"}], "RE": [{"2014-15": "2934.6"}, {"2015-16": "3193.4"}]}}, {"state": "Jammu and Kashmir", "figures": {"A": [{"2013-14": "279.9"}, {"2014-15": "623.5"}], "BE": [{"2014-15": "1052.8"}, {"2015-16": "904.9"}, {"2016-17": "1776.7"}], "RE": [{"2014-15": "921.1"}, {"2015-16": "1038.6"}]}}, {"state": "Jharkhand", "figures": {"A": [{"2013-14": "2101.8"}, {"2014-15": "2381.4"}], "BE": [{"2014-15": "3107.3"}, {"2015-16": "3692.2"}, {"2016-17": "5872.3"}], "RE": [{"2014-15": "3228.8"}, {"2015-16": "4677"}]}}, {"state": "Karnataka", "figures": {"A": [{"2013-14": "10339.2"}, {"2014-15": "13103.2"}], "BE": [{"2014-15": "12892"}, {"2015-16": "14968.4"}, {"2016-17": "17467.5"}], "RE": [{"2014-15": "13714.4"}, {"2015-16": "15474.6"}]}}, {"state": "Kerala", "figures": {"A": [{"2013-14": "4501.7"}, {"2014-15": "5317.1"}], "BE": [{"2014-15": "5572.1"}, {"2015-16": "6795.2"}, {"2016-17": "6930.6"}], "RE": [{"2014-15": "5888.4"}, {"2015-16": "6675.5"}]}}, {"state": "Madhya Pradesh", "figures": {"A": [{"2013-14": "8124.3"}, {"2014-15": "6809.7"}], "BE": [{"2014-15": "10492.6"}, {"2015-16": "11803.9"}, {"2016-17": "11927.3"}], "RE": [{"2014-15": "9983.2"}, {"2015-16": "10919.6"}]}}, {"state": "Maharashtra", "figures": {"A": [{"2013-14": "16327.6"}, {"2014-15": "17260.6"}], "BE": [{"2014-15": "20376.3"}, {"2015-16": "22211.7"}, {"2016-17": "21603.5"}], "RE": [{"2014-15": "19780.6"}, {"2015-16": "22190.3"}]}}, {"state": "Meghalaya", "figures": {"A": [{"2013-14": "227.1"}, {"2014-15": "305.4"}], "BE": [{"2014-15": "858"}, {"2015-16": "176.2"}, {"2016-17": "394.7"}], "RE": [{"2014-15": "858"}, {"2015-16": "176.2"}]}}, {"state": "Mizoram", "figures": {"A": [{"2013-14": "145"}, {"2014-15": "116.2"}], "BE": [{"2014-15": "126.8"}, {"2015-16": "128.1"}, {"2016-17": "131.4"}], "RE": [{"2014-15": "149.3"}, {"2015-16": "175.6"}]}}, {"state": "Odisha", "figures": {"A": [{"2013-14": "7379.6"}, {"2014-15": "7253.7"}], "BE": [{"2014-15": "8860.6"}, {"2015-16": "8049.1"}, {"2016-17": "9884.7"}], "RE": [{"2014-15": "7253.4"}, {"2015-16": "9954.3"}]}}, {"state": "Punjab", "figures": {"A": [{"2013-14": "2123.1"}, {"2014-15": "2504.9"}], "BE": [{"2014-15": "3287.9"}, {"2015-16": "3502.4"}, {"2016-17": "3603.9"}], "RE": [{"2014-15": "3146.7"}, {"2015-16": "3243.2"}]}}, {"state": "Rajasthan", "figures": {"A": [{"2013-14": "5411.6"}, {"2014-15": "6670.9"}], "BE": [{"2014-15": "7370.7"}, {"2015-16": "7816.9"}, {"2016-17": "7653.6"}], "RE": [{"2014-15": "7090.1"}, {"2015-16": "7372.2"}]}}, {"state": "Sikkim", "figures": {"A": [{"2013-14": "740.2"}, {"2014-15": "396"}], "BE": [{"2014-15": "601.5"}, {"2015-16": "478"}, {"2016-17": "410.9"}], "RE": [{"2014-15": "612.2"}, {"2015-16": "482.6"}]}}, {"state": "Tamil Nadu", "figures": {"A": [{"2013-14": "8867.8"}, {"2014-15": "7870.7"}], "BE": [{"2014-15": "7606.3"}, {"2015-16": "8361.3"}, {"2016-17": "10132.7"}], "RE": [{"2014-15": "8280"}, {"2015-16": "12858.7"}]}}, {"state": "Telangana", "figures": {"A": [{"2013-14": ""}, {"2014-15": "5158.7"}], "BE": [{"2014-15": "9583.4"}, {"2015-16": "14582.8"}, {"2016-17": "16466"}], "RE": [{"2014-15": "9583.4"}, {"2015-16": "11673.8"}]}}, {"state": "Tripura", "figures": {"A": [{"2013-14": "1983.4"}, {"2014-15": "3055.7"}], "BE": [{"2014-15": "3875.7"}, {"2015-16": "5412"}, {"2016-17": "4548.8"}], "RE": [{"2014-15": "3985.2"}, {"2015-16": "3931"}]}}, {"state": "Uttar Pradesh", "figures": {"A": [{"2013-14": "12996.4"}, {"2014-15": "11108.9"}], "BE": [{"2014-15": "15274.3"}, {"2015-16": "15848.4"}, {"2016-17": "22101.5"}], "RE": [{"2014-15": "15220.6"}, {"2015-16": "22576.6"}]}}, {"state": "Uttarakhand", "figures": {"A": [{"2013-14": "2178"}, {"2014-15": "2628.7"}], "BE": [{"2014-15": "4597.7"}, {"2015-16": "4604.7"}, {"2016-17": "5636.1"}], "RE": [{"2014-15": "4349.3"}, {"2015-16": "4479.8"}]}}, {"state": "West Bengal", "figures": {"A": [{"2013-14": "5532.2"}, {"2014-15": "6424.5"}], "BE": [{"2014-15": "7103.6"}, {"2015-16": "8249.8"}, {"2016-17": "9193.2"}], "RE": [{"2014-15": "7092.7"}, {"2015-16": "6965"}]}}], "indicator": "Total Sector Expenditure", "slugIndicator": "total_sector_expenditure", "unit": "INR (in Crores)"}, {"stateFigures": [{"state": "Andhra Pradesh", "figures": {"A": [{"2013-14": "7.2"}, {"2014-15": ""}], "BE": [{"2014-15": "7.5"}, {"2015-16": "7.6"}, {"2016-17": "8.3"}], "RE": [{"2014-15": "7.5"}, {"2015-16": "5.9"}]}}, {"state": "Assam", "figures": {"A": [{"2013-14": "6.4"}, {"2014-15": "6.2"}], "BE": [{"2014-15": "4.5"}, {"2015-16": "6.1"}, {"2016-17": "6.9"}], "RE": [{"2014-15": "6.2"}, {"2015-16": "8.3"}]}}, {"state": "Bihar", "figures": {"A": [{"2013-14": "8.4"}, {"2014-15": "8.4"}], "BE": [{"2014-15": "6.9"}, {"2015-16": "7.1"}, {"2016-17": "6.6"}], "RE": [{"2014-15": "8.4"}, {"2015-16": "8.1"}]}}, {"state": "Chhattisgarh", "figures": {"A": [{"2013-14": "12.2"}, {"2014-15": "10.9"}], "BE": [{"2014-15": "11"}, {"2015-16": "10.9"}, {"2016-17": "6.7"}], "RE": [{"2014-15": "12.4"}, {"2015-16": "9.1"}]}}, {"state": "Delhi", "figures": {"A": [{"2013-14": "5.1"}, {"2014-15": ""}], "BE": [{"2014-15": "5.6"}, {"2015-16": "5"}, {"2016-17": "4.6"}], "RE": [{"2014-15": "5.5"}, {"2015-16": ""}]}}, {"state": "Gujarat", "figures": {"A": [{"2013-14": "12.7"}, {"2014-15": "11.9"}], "BE": [{"2014-15": "13.2"}, {"2015-16": "13.6"}, {"2016-17": "13.7"}], "RE": [{"2014-15": "13.2"}, {"2015-16": "13.9"}]}}, {"state": "Haryana", "figures": {"A": [{"2013-14": "7"}, {"2014-15": "8.7"}], "BE": [{"2014-15": "8.4"}, {"2015-16": "8.6"}, {"2016-17": "7.7"}], "RE": [{"2014-15": "8.6"}, {"2015-16": "7.6"}]}}, {"state": "Himachal Pradesh", "figures": {"A": [{"2013-14": "11.1"}, {"2014-15": "11.7"}], "BE": [{"2014-15": "11"}, {"2015-16": "10.6"}, {"2016-17": "12.9"}], "RE": [{"2014-15": "12.1"}, {"2015-16": "11.7"}]}}, {"state": "Jammu and Kashmir", "figures": {"A": [{"2013-14": "0.9"}, {"2014-15": "1.7"}], "BE": [{"2014-15": "2.4"}, {"2015-16": "1.9"}, {"2016-17": "3.1"}], "RE": [{"2014-15": "2.1"}, {"2015-16": "2.1"}]}}, {"state": "Jharkhand", "figures": {"A": [{"2013-14": "6.9"}, {"2014-15": "5.9"}], "BE": [{"2014-15": "6.2"}, {"2015-16": "6.7"}, {"2016-17": "9.2"}], "RE": [{"2014-15": "6.4"}, {"2015-16": "8.3"}]}}, {"state": "Karnataka", "figures": {"A": [{"2013-14": "9.7"}, {"2014-15": "10.6"}], "BE": [{"2014-15": "9.8"}, {"2015-16": "10.9"}, {"2016-17": "11.2"}], "RE": [{"2014-15": "10.7"}, {"2015-16": "11.2"}]}}, {"state": "Kerala", "figures": {"A": [{"2013-14": "6.8"}, {"2014-15": "6.9"}], "BE": [{"2014-15": "7"}, {"2015-16": "7.1"}, {"2016-17": "6.4"}], "RE": [{"2014-15": "7.4"}, {"2015-16": "7.5"}]}}, {"state": "Madhya Pradesh", "figures": {"A": [{"2013-14": "9.5"}, {"2014-15": "6.8"}], "BE": [{"2014-15": "9"}, {"2015-16": "9"}, {"2016-17": "7.9"}], "RE": [{"2014-15": "8.4"}, {"2015-16": "8.2"}]}}, {"state": "Maharashtra", "figures": {"A": [{"2013-14": "9.2"}, {"2014-15": "8.7"}], "BE": [{"2014-15": "9.6"}, {"2015-16": "9.7"}, {"2016-17": "8.4"}], "RE": [{"2014-15": "9"}, {"2015-16": "9.4"}]}}, {"state": "Meghalaya", "figures": {"A": [{"2013-14": "3.3"}, {"2014-15": "4"}], "BE": [{"2014-15": "7.2"}, {"2015-16": "1.8"}, {"2016-17": "3.8"}], "RE": [{"2014-15": "7.2"}, {"2015-16": "1.8"}]}}, {"state": "Mizoram", "figures": {"A": [{"2013-14": "2.6"}, {"2014-15": "1.5"}], "BE": [{"2014-15": "1.9"}, {"2015-16": "1.7"}, {"2016-17": "1.6"}], "RE": [{"2014-15": "2"}, {"2015-16": "2.1"}]}}, {"state": "Odisha", "figures": {"A": [{"2013-14": "13.1"}, {"2014-15": "10.9"}], "BE": [{"2014-15": "11.1"}, {"2015-16": "9.5"}, {"2016-17": "10.5"}], "RE": [{"2014-15": "9.4"}, {"2015-16": "11.8"}]}}, {"state": "Punjab", "figures": {"A": [{"2013-14": "3.5"}, {"2014-15": "3.4"}], "BE": [{"2014-15": "4.5"}, {"2015-16": "4.4"}, {"2016-17": "4.2"}], "RE": [{"2014-15": "4.2"}, {"2015-16": "4.1"}]}}, {"state": "Rajasthan", "figures": {"A": [{"2013-14": "5.8"}, {"2014-15": "5.7"}], "BE": [{"2014-15": "5.6"}, {"2015-16": "5.7"}, {"2016-17": "5.1"}], "RE": [{"2014-15": "5.6"}, {"2015-16": "5.4"}]}}, {"state": "Sikkim", "figures": {"A": [{"2013-14": "16.9"}, {"2014-15": "8.4"}], "BE": [{"2014-15": "9.3"}, {"2015-16": "9"}, {"2016-17": "7.5"}], "RE": [{"2014-15": "9.2"}, {"2015-16": "8.9"}]}}, {"state": "Tamil Nadu", "figures": {"A": [{"2013-14": "6.9"}, {"2014-15": "5.3"}], "BE": [{"2014-15": "5"}, {"2015-16": "4.8"}, {"2016-17": "5.4"}], "RE": [{"2014-15": "5.2"}, {"2015-16": "7.5"}]}}, {"state": "Telangana", "figures": {"A": [{"2013-14": ""}, {"2014-15": "8.3"}], "BE": [{"2014-15": "9.8"}, {"2015-16": "12.6"}, {"2016-17": "12.6"}], "RE": [{"2014-15": "9.8"}, {"2015-16": "11.7"}]}}, {"state": "Tripura", "figures": {"A": [{"2013-14": "25.3"}, {"2014-15": "28.9"}], "BE": [{"2014-15": "31.2"}, {"2015-16": "36.2"}, {"2016-17": "29.8"}], "RE": [{"2014-15": "32.1"}, {"2015-16": "30.3"}]}}, {"state": "Uttar Pradesh", "figures": {"A": [{"2013-14": "6.5"}, {"2014-15": "4.7"}], "BE": [{"2014-15": "5.6"}, {"2015-16": "5.2"}, {"2016-17": "6.4"}], "RE": [{"2014-15": "5.8"}, {"2015-16": "6.8"}]}}, {"state": "Uttarakhand", "figures": {"A": [{"2013-14": "9.9"}, {"2014-15": "9.7"}], "BE": [{"2014-15": "15.1"}, {"2015-16": "14.1"}, {"2016-17": "13.9"}], "RE": [{"2014-15": "13.4"}, {"2015-16": "13.4"}]}}, {"state": "West Bengal", "figures": {"A": [{"2013-14": "5.1"}, {"2014-15": "5.2"}], "BE": [{"2014-15": "5.5"}, {"2015-16": "6"}, {"2016-17": "5.8"}], "RE": [{"2014-15": "5.5"}, {"2015-16": "4.8"}]}}], "indicator": "Total Sector Expenditure as % of State Budget", "slugIndicator": "total_sector_expenditure_as_of_state_budget", "unit": "Percentage"}, {"stateFigures": [{"state": "Andhra Pradesh", "figures": {"A": [{"2013-14": "1138.2"}, {"2014-15": ""}], "BE": [{"2014-15": "970.7"}, {"2015-16": "976"}, {"2016-17": "1275.7"}], "RE": [{"2014-15": "964.3"}, {"2015-16": "754.3"}]}}, {"state": "Assam", "figures": {"A": [{"2013-14": "760.6"}, {"2014-15": "909.1"}], "BE": [{"2014-15": "827.5"}, {"2015-16": "1265.4"}, {"2016-17": "1675.8"}], "RE": [{"2014-15": "1267.7"}, {"2015-16": "1926.2"}]}}, {"state": "Bihar", "figures": {"A": [{"2013-14": "676.9"}, {"2014-15": "779.4"}], "BE": [{"2014-15": "795"}, {"2015-16": "828.3"}, {"2016-17": "915.6"}], "RE": [{"2014-15": "1091.1"}, {"2015-16": "1048.9"}]}}, {"state": "Chhattisgarh", "figures": {"A": [{"2013-14": "1894.5"}, {"2014-15": "2001.2"}], "BE": [{"2014-15": "2378.9"}, {"2015-16": "2779"}, {"2016-17": "1816.4"}], "RE": [{"2014-15": "2706"}, {"2015-16": "2352.5"}]}}, {"state": "Delhi", "figures": {"A": [{"2013-14": "883.3"}, {"2014-15": "845.9"}], "BE": [{"2014-15": "1021.9"}, {"2015-16": "999.7"}, {"2016-17": "1011.1"}], "RE": [{"2014-15": "960.4"}, {"2015-16": "989.3"}]}}, {"state": "Gujarat", "figures": {"A": [{"2013-14": "2203.3"}, {"2014-15": "2270.2"}], "BE": [{"2014-15": "2836.7"}, {"2015-16": "3003.7"}, {"2016-17": "3276.7"}], "RE": [{"2014-15": "2695.6"}, {"2015-16": "2985.7"}]}}, {"state": "Haryana", "figures": {"A": [{"2013-14": "1233.3"}, {"2014-15": "1757.4"}], "BE": [{"2014-15": "1878.7"}, {"2015-16": "2201.5"}, {"2016-17": "2502.9"}], "RE": [{"2014-15": "1984.3"}, {"2015-16": "2379.4"}]}}, {"state": "Himachal Pradesh", "figures": {"A": [{"2013-14": "3495.7"}, {"2014-15": "4226.9"}], "BE": [{"2014-15": "3783.9"}, {"2015-16": "4334.2"}, {"2016-17": "5896.4"}], "RE": [{"2014-15": "4205.5"}, {"2015-16": "4538"}]}}, {"state": "Jammu and Kashmir", "figures": {"A": [{"2013-14": "233.1"}, {"2014-15": "513.1"}], "BE": [{"2014-15": "866.4"}, {"2015-16": "736.3"}, {"2016-17": "1430.6"}], "RE": [{"2014-15": "757.9"}, {"2015-16": "845.1"}]}}, {"state": "Jharkhand", "figures": {"A": [{"2013-14": "650"}, {"2014-15": "726.8"}], "BE": [{"2014-15": "948.3"}, {"2015-16": "1112"}, {"2016-17": "1745"}], "RE": [{"2014-15": "985.4"}, {"2015-16": "1408.6"}]}}, {"state": "Karnataka", "figures": {"A": [{"2013-14": "1705.5"}, {"2014-15": "2140.6"}], "BE": [{"2014-15": "2106"}, {"2015-16": "2422.2"}, {"2016-17": "2800.5"}], "RE": [{"2014-15": "2240.4"}, {"2015-16": "2504.1"}]}}, {"state": "Kerala", "figures": {"A": [{"2013-14": "1285"}, {"2014-15": "1508"}], "BE": [{"2014-15": "1580.4"}, {"2015-16": "1915.6"}, {"2016-17": "1942.6"}], "RE": [{"2014-15": "1670.1"}, {"2015-16": "1881.8"}]}}, {"state": "Madhya Pradesh", "figures": {"A": [{"2013-14": "942.2"}, {"2014-15": "783.2"}], "BE": [{"2014-15": "1206.7"}, {"2015-16": "1346.5"}, {"2016-17": "1349.8"}], "RE": [{"2014-15": "1148.1"}, {"2015-16": "1245.6"}]}}, {"state": "Maharashtra", "figures": {"A": [{"2013-14": "1411.2"}, {"2014-15": "1472.9"}], "BE": [{"2014-15": "1738.8"}, {"2015-16": "1872"}, {"2016-17": "1799.2"}], "RE": [{"2014-15": "1687.9"}, {"2015-16": "1870.2"}]}}, {"state": "Meghalaya", "figures": {"A": [{"2013-14": "846.8"}, {"2014-15": "1126.3"}], "BE": [{"2014-15": "3163.6"}, {"2015-16": "642.3"}, {"2016-17": "1423.3"}], "RE": [{"2014-15": "3163.6"}, {"2015-16": "642.3"}]}}, {"state": "Mizoram", "figures": {"A": [{"2013-14": "1410.8"}, {"2014-15": "1118.5"}], "BE": [{"2014-15": "1220.7"}, {"2015-16": "1218.5"}, {"2016-17": "1236.2"}], "RE": [{"2014-15": "1436.5"}, {"2015-16": "1670.9"}]}}, {"state": "Odisha", "figures": {"A": [{"2013-14": "1780.2"}, {"2014-15": "1735.5"}], "BE": [{"2014-15": "2119.9"}, {"2015-16": "1910.2"}, {"2016-17": "2327"}], "RE": [{"2014-15": "1735.4"}, {"2015-16": "2362.3"}]}}, {"state": "Punjab", "figures": {"A": [{"2013-14": "750.8"}, {"2014-15": "876.8"}], "BE": [{"2014-15": "1150.9"}, {"2015-16": "1214.2"}, {"2016-17": "1237.9"}], "RE": [{"2014-15": "1101.5"}, {"2015-16": "1124.3"}]}}, {"state": "Rajasthan", "figures": {"A": [{"2013-14": "773.7"}, {"2014-15": "940"}], "BE": [{"2014-15": "1038.6"}, {"2015-16": "1086.1"}, {"2016-17": "1049.2"}], "RE": [{"2014-15": "999"}, {"2015-16": "1024.3"}]}}, {"state": "Sikkim", "figures": {"A": [{"2013-14": "11823.9"}, {"2014-15": "6255.4"}], "BE": [{"2014-15": "9503.1"}, {"2015-16": "7469.4"}, {"2016-17": "6350.4"}], "RE": [{"2014-15": "9672.1"}, {"2015-16": "7540.8"}]}}, {"state": "Tamil Nadu", "figures": {"A": [{"2013-14": "1299"}, {"2014-15": "1146.4"}], "BE": [{"2014-15": "1107.9"}, {"2015-16": "1211.3"}, {"2016-17": "1460.1"}], "RE": [{"2014-15": "1206"}, {"2015-16": "1862.8"}]}}, {"state": "Telangana", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Tripura", "figures": {"A": [{"2013-14": "5360.6"}, {"2014-15": "8166"}], "BE": [{"2014-15": "10357.4"}, {"2015-16": "14302.3"}, {"2016-17": "11889.1"}], "RE": [{"2014-15": "10649.9"}, {"2015-16": "10388.6"}]}}, {"state": "Uttar Pradesh", "figures": {"A": [{"2013-14": "625.6"}, {"2014-15": "525.9"}], "BE": [{"2014-15": "723.2"}, {"2015-16": "738.3"}, {"2016-17": "1013.4"}], "RE": [{"2014-15": "720.6"}, {"2015-16": "1051.7"}]}}, {"state": "Uttarakhand", "figures": {"A": [{"2013-14": "2130.3"}, {"2014-15": "2536.8"}], "BE": [{"2014-15": "4437.1"}, {"2015-16": "4385.9"}, {"2016-17": "5301.1"}], "RE": [{"2014-15": "4197.3"}, {"2015-16": "4266.9"}]}}, {"state": "West Bengal", "figures": {"A": [{"2013-14": "607.1"}, {"2014-15": "698.9"}], "BE": [{"2014-15": "772.8"}, {"2015-16": "889.7"}, {"2016-17": "982.7"}], "RE": [{"2014-15": "771.6"}, {"2015-16": "751.1"}]}}], "indicator": "Per Capita Expenditure on Sector ", "slugIndicator": "per_capita_expenditure_on_sector", "unit": "INR Rs."}, {"stateFigures": [{"state": "Andhra Pradesh", "figures": {"A": [{"2013-14": "89.9"}, {"2014-15": ""}], "BE": [{"2014-15": "82.5"}, {"2015-16": "90.2"}, {"2016-17": "89.4"}], "RE": [{"2014-15": "82.4"}, {"2015-16": "92.2"}]}}, {"state": "Assam", "figures": {"A": [{"2013-14": "100"}, {"2014-15": "100"}], "BE": [{"2014-15": "100"}, {"2015-16": "100"}, {"2016-17": "100"}], "RE": [{"2014-15": "100"}, {"2015-16": "100"}]}}, {"state": "Bihar", "figures": {"A": [{"2013-14": "98.8"}, {"2014-15": "97.3"}], "BE": [{"2014-15": "97.2"}, {"2015-16": "98.4"}, {"2016-17": "96.1"}], "RE": [{"2014-15": "98.4"}, {"2015-16": "97.9"}]}}, {"state": "Chhattisgarh", "figures": {"A": [{"2013-14": "94.4"}, {"2014-15": "93.1"}], "BE": [{"2014-15": "92.3"}, {"2015-16": "92.9"}, {"2016-17": "88.2"}], "RE": [{"2014-15": "92.6"}, {"2015-16": "89.4"}]}}, {"state": "Delhi", "figures": {"A": [{"2013-14": "96.6"}, {"2014-15": "96.8"}], "BE": [{"2014-15": "95.1"}, {"2015-16": "96.1"}, {"2016-17": "96.6"}], "RE": [{"2014-15": "95.6"}, {"2015-16": "97.2"}]}}, {"state": "Gujarat", "figures": {"A": [{"2013-14": "72.6"}, {"2014-15": "69.7"}], "BE": [{"2014-15": "73.2"}, {"2015-16": "71.7"}, {"2016-17": "75.8"}], "RE": [{"2014-15": "72.1"}, {"2015-16": "75"}]}}, {"state": "Haryana", "figures": {"A": [{"2013-14": "96.5"}, {"2014-15": "95.1"}], "BE": [{"2014-15": "94"}, {"2015-16": "93.8"}, {"2016-17": "96"}], "RE": [{"2014-15": "92.4"}, {"2015-16": "95.9"}]}}, {"state": "Himachal Pradesh", "figures": {"A": [{"2013-14": "72.5"}, {"2014-15": "71"}], "BE": [{"2014-15": "70.8"}, {"2015-16": "71.3"}, {"2016-17": "73.5"}], "RE": [{"2014-15": "70"}, {"2015-16": "75.3"}]}}, {"state": "Jammu and Kashmir", "figures": {"A": [{"2013-14": "100"}, {"2014-15": "100"}], "BE": [{"2014-15": "72.3"}, {"2015-16": "87.4"}, {"2016-17": "74.2"}], "RE": [{"2014-15": "92.9"}, {"2015-16": "88.7"}]}}, {"state": "Jharkhand", "figures": {"A": [{"2013-14": "84.8"}, {"2014-15": "86"}], "BE": [{"2014-15": "87.9"}, {"2015-16": "84.6"}, {"2016-17": "92.3"}], "RE": [{"2014-15": "87.5"}, {"2015-16": "90.1"}]}}, {"state": "Karnataka", "figures": {"A": [{"2013-14": "90.3"}, {"2014-15": "89.3"}], "BE": [{"2014-15": "86.8"}, {"2015-16": "86.8"}, {"2016-17": "85.1"}], "RE": [{"2014-15": "87.3"}, {"2015-16": "86.4"}]}}, {"state": "Kerala", "figures": {"A": [{"2013-14": "98.4"}, {"2014-15": "98.3"}], "BE": [{"2014-15": "93.8"}, {"2015-16": "94.6"}, {"2016-17": "96.7"}], "RE": [{"2014-15": "96.5"}, {"2015-16": "96.7"}]}}, {"state": "Madhya Pradesh", "figures": {"A": [{"2013-14": "84.4"}, {"2014-15": "84"}], "BE": [{"2014-15": "84.4"}, {"2015-16": "86.1"}, {"2016-17": "82.9"}], "RE": [{"2014-15": "83.3"}, {"2015-16": "87.8"}]}}, {"state": "Maharashtra", "figures": {"A": [{"2013-14": "89.6"}, {"2014-15": "90.4"}], "BE": [{"2014-15": "84.6"}, {"2015-16": "86.2"}, {"2016-17": "89.4"}], "RE": [{"2014-15": "89"}, {"2015-16": "89.5"}]}}, {"state": "Meghalaya", "figures": {"A": [{"2013-14": "98.3"}, {"2014-15": "94.7"}], "BE": [{"2014-15": "96.3"}, {"2015-16": "95.4"}, {"2016-17": "97.4"}], "RE": [{"2014-15": "96.3"}, {"2015-16": "95.4"}]}}, {"state": "Mizoram", "figures": {"A": [{"2013-14": "94.8"}, {"2014-15": "100"}], "BE": [{"2014-15": "100"}, {"2015-16": "100"}, {"2016-17": "100"}], "RE": [{"2014-15": "86.6"}, {"2015-16": "100"}]}}, {"state": "Odisha", "figures": {"A": [{"2013-14": "91.7"}, {"2014-15": "92"}], "BE": [{"2014-15": "91.6"}, {"2015-16": "89.1"}, {"2016-17": "94.8"}], "RE": [{"2014-15": "91.1"}, {"2015-16": "93.5"}]}}, {"state": "Punjab", "figures": {"A": [{"2013-14": "99.6"}, {"2014-15": "97.1"}], "BE": [{"2014-15": "93.1"}, {"2015-16": "94.2"}, {"2016-17": "94.3"}], "RE": [{"2014-15": "96.6"}, {"2015-16": "97.2"}]}}, {"state": "Rajasthan", "figures": {"A": [{"2013-14": "96"}, {"2014-15": "96.7"}], "BE": [{"2014-15": "90.3"}, {"2015-16": "92.8"}, {"2016-17": "93.5"}], "RE": [{"2014-15": "96.2"}, {"2015-16": "93.6"}]}}, {"state": "Sikkim", "figures": {"A": [{"2013-14": "64.9"}, {"2014-15": "78.2"}], "BE": [{"2014-15": "66.2"}, {"2015-16": "69.7"}, {"2016-17": "81.2"}], "RE": [{"2014-15": "66.7"}, {"2015-16": "69.9"}]}}, {"state": "Tamil Nadu", "figures": {"A": [{"2013-14": "94.2"}, {"2014-15": "96.8"}], "BE": [{"2014-15": "95.2"}, {"2015-16": "96.6"}, {"2016-17": "96.4"}], "RE": [{"2014-15": "95.5"}, {"2015-16": "98.2"}]}}, {"state": "Telangana", "figures": {"A": [{"2013-14": ""}, {"2014-15": "91.4"}], "BE": [{"2014-15": "90.7"}, {"2015-16": "93.5"}, {"2016-17": "83.4"}], "RE": [{"2014-15": "90.8"}, {"2015-16": "90.4"}]}}, {"state": "Tripura", "figures": {"A": [{"2013-14": "54.6"}, {"2014-15": "47"}], "BE": [{"2014-15": "49.1"}, {"2015-16": "42.5"}, {"2016-17": "40.8"}], "RE": [{"2014-15": "47.2"}, {"2015-16": "41.4"}]}}, {"state": "Uttar Pradesh", "figures": {"A": [{"2013-14": "92.4"}, {"2014-15": "95.3"}], "BE": [{"2014-15": "91.2"}, {"2015-16": "91.2"}, {"2016-17": "93.8"}], "RE": [{"2014-15": "92"}, {"2015-16": "93.7"}]}}, {"state": "Uttarakhand", "figures": {"A": [{"2013-14": "85.2"}, {"2014-15": "84.4"}], "BE": [{"2014-15": "83.2"}, {"2015-16": "90.9"}, {"2016-17": "91.6"}], "RE": [{"2014-15": "84.9"}, {"2015-16": "92.2"}]}}, {"state": "West Bengal", "figures": {"A": [{"2013-14": "93.3"}, {"2014-15": "87.7"}], "BE": [{"2014-15": "84.2"}, {"2015-16": "79.9"}, {"2016-17": "79.5"}], "RE": [{"2014-15": "85.3"}, {"2015-16": "88.8"}]}}], "indicator": "Revenue Expenditure as % of Total Sector Expenditure", "slugIndicator": "revenue_expenditure_as_of_total_sector_expenditure", "unit": "Percentage"}, {"stateFigures": [{"state": "Andhra Pradesh", "figures": {"A": [{"2013-14": "10.1"}, {"2014-15": ""}], "BE": [{"2014-15": "17.5"}, {"2015-16": "9.8"}, {"2016-17": "10.6"}], "RE": [{"2014-15": "17.6"}, {"2015-16": "7.8"}]}}, {"state": "Assam", "figures": {"A": [{"2013-14": "0"}, {"2014-15": "0"}], "BE": [{"2014-15": "0"}, {"2015-16": "0"}, {"2016-17": "0"}], "RE": [{"2014-15": "0"}, {"2015-16": "0"}]}}, {"state": "Bihar", "figures": {"A": [{"2013-14": "1.2"}, {"2014-15": "2.7"}], "BE": [{"2014-15": "2.8"}, {"2015-16": "1.6"}, {"2016-17": "3.9"}], "RE": [{"2014-15": "2"}, {"2015-16": "2.1"}]}}, {"state": "Chhattisgarh", "figures": {"A": [{"2013-14": "5.6"}, {"2014-15": "6.9"}], "BE": [{"2014-15": "7.7"}, {"2015-16": "7.1"}, {"2016-17": "11.8"}], "RE": [{"2014-15": "7.4"}, {"2015-16": "10.6"}]}}, {"state": "Delhi", "figures": {"A": [{"2013-14": "3.4"}, {"2014-15": "3.2"}], "BE": [{"2014-15": "4.9"}, {"2015-16": "3.9"}, {"2016-17": "3.4"}], "RE": [{"2014-15": "4.4"}, {"2015-16": "2.8"}]}}, {"state": "Gujarat", "figures": {"A": [{"2013-14": "27.4"}, {"2014-15": "30.3"}], "BE": [{"2014-15": "26.8"}, {"2015-16": "28.3"}, {"2016-17": "24.2"}], "RE": [{"2014-15": "27.9"}, {"2015-16": "25"}]}}, {"state": "Haryana", "figures": {"A": [{"2013-14": "3.5"}, {"2014-15": "4.9"}], "BE": [{"2014-15": "6"}, {"2015-16": "6.2"}, {"2016-17": "4"}], "RE": [{"2014-15": "7.6"}, {"2015-16": "4.1"}]}}, {"state": "Himachal Pradesh", "figures": {"A": [{"2013-14": "27.5"}, {"2014-15": "29"}], "BE": [{"2014-15": "29.2"}, {"2015-16": "28.7"}, {"2016-17": "26.5"}], "RE": [{"2014-15": "30"}, {"2015-16": "24.7"}]}}, {"state": "Jammu and Kashmir", "figures": {"A": [{"2013-14": "0"}, {"2014-15": "0"}], "BE": [{"2014-15": "27.7"}, {"2015-16": "12.6"}, {"2016-17": "25.8"}], "RE": [{"2014-15": "7.1"}, {"2015-16": "11.3"}]}}, {"state": "Jharkhand", "figures": {"A": [{"2013-14": "15.2"}, {"2014-15": "14"}], "BE": [{"2014-15": "12.1"}, {"2015-16": "15.4"}, {"2016-17": "7.7"}], "RE": [{"2014-15": "12.5"}, {"2015-16": "9.9"}]}}, {"state": "Karnataka", "figures": {"A": [{"2013-14": "9.7"}, {"2014-15": "10.7"}], "BE": [{"2014-15": "13.2"}, {"2015-16": "13.2"}, {"2016-17": "14.9"}], "RE": [{"2014-15": "12.7"}, {"2015-16": "13.6"}]}}, {"state": "Kerala", "figures": {"A": [{"2013-14": "1.6"}, {"2014-15": "1.7"}], "BE": [{"2014-15": "6.2"}, {"2015-16": "5.4"}, {"2016-17": "3.3"}], "RE": [{"2014-15": "3.5"}, {"2015-16": "3.3"}]}}, {"state": "Madhya Pradesh", "figures": {"A": [{"2013-14": "15.6"}, {"2014-15": "16"}], "BE": [{"2014-15": "15.6"}, {"2015-16": "13.9"}, {"2016-17": "17.1"}], "RE": [{"2014-15": "16.7"}, {"2015-16": "12.2"}]}}, {"state": "Maharashtra", "figures": {"A": [{"2013-14": "10.4"}, {"2014-15": "9.6"}], "BE": [{"2014-15": "15.4"}, {"2015-16": "13.8"}, {"2016-17": "10.6"}], "RE": [{"2014-15": "11"}, {"2015-16": "10.5"}]}}, {"state": "Meghalaya", "figures": {"A": [{"2013-14": "1.7"}, {"2014-15": "5.3"}], "BE": [{"2014-15": "3.7"}, {"2015-16": "4.6"}, {"2016-17": "2.6"}], "RE": [{"2014-15": "3.7"}, {"2015-16": "4.6"}]}}, {"state": "Mizoram", "figures": {"A": [{"2013-14": "5.2"}, {"2014-15": "0"}], "BE": [{"2014-15": "0"}, {"2015-16": "0"}, {"2016-17": "0"}], "RE": [{"2014-15": "13.4"}, {"2015-16": "0"}]}}, {"state": "Odisha", "figures": {"A": [{"2013-14": "8.3"}, {"2014-15": "8"}], "BE": [{"2014-15": "8.4"}, {"2015-16": "10.9"}, {"2016-17": "5.2"}], "RE": [{"2014-15": "8.9"}, {"2015-16": "6.5"}]}}, {"state": "Punjab", "figures": {"A": [{"2013-14": "0.4"}, {"2014-15": "2.9"}], "BE": [{"2014-15": "6.9"}, {"2015-16": "5.8"}, {"2016-17": "5.7"}], "RE": [{"2014-15": "3.4"}, {"2015-16": "2.8"}]}}, {"state": "Rajasthan", "figures": {"A": [{"2013-14": "4"}, {"2014-15": "3.3"}], "BE": [{"2014-15": "9.7"}, {"2015-16": "7.2"}, {"2016-17": "6.5"}], "RE": [{"2014-15": "3.8"}, {"2015-16": "6.4"}]}}, {"state": "Sikkim", "figures": {"A": [{"2013-14": "35.1"}, {"2014-15": "21.8"}], "BE": [{"2014-15": "33.8"}, {"2015-16": "30.3"}, {"2016-17": "18.8"}], "RE": [{"2014-15": "33.3"}, {"2015-16": "30.1"}]}}, {"state": "Tamil Nadu", "figures": {"A": [{"2013-14": "5.8"}, {"2014-15": "3.2"}], "BE": [{"2014-15": "4.8"}, {"2015-16": "3.4"}, {"2016-17": "3.6"}], "RE": [{"2014-15": "4.5"}, {"2015-16": "1.8"}]}}, {"state": "Telangana", "figures": {"A": [{"2013-14": ""}, {"2014-15": "8.6"}], "BE": [{"2014-15": "9.3"}, {"2015-16": "6.5"}, {"2016-17": "16.6"}], "RE": [{"2014-15": "9.2"}, {"2015-16": "9.6"}]}}, {"state": "Tripura", "figures": {"A": [{"2013-14": "45.4"}, {"2014-15": "53"}], "BE": [{"2014-15": "50.9"}, {"2015-16": "57.5"}, {"2016-17": "59.2"}], "RE": [{"2014-15": "52.8"}, {"2015-16": "58.6"}]}}, {"state": "Uttar Pradesh", "figures": {"A": [{"2013-14": "7.6"}, {"2014-15": "4.7"}], "BE": [{"2014-15": "8.8"}, {"2015-16": "8.8"}, {"2016-17": "6.2"}], "RE": [{"2014-15": "8"}, {"2015-16": "6.3"}]}}, {"state": "Uttarakhand", "figures": {"A": [{"2013-14": "14.8"}, {"2014-15": "15.6"}], "BE": [{"2014-15": "16.8"}, {"2015-16": "9.1"}, {"2016-17": "8.4"}], "RE": [{"2014-15": "15.1"}, {"2015-16": "7.8"}]}}, {"state": "West Bengal", "figures": {"A": [{"2013-14": "6.7"}, {"2014-15": "12.3"}], "BE": [{"2014-15": "15.8"}, {"2015-16": "20.1"}, {"2016-17": "20.5"}], "RE": [{"2014-15": "14.7"}, {"2015-16": "11.2"}]}}], "indicator": "Capital Expenditure (including Loans & Advances ) as % of Total Sector Expenditure", "slugIndicator": "capital_expenditure_including_loans_advances_as_of_total_sector_expenditure", "unit": "Percentage"}], "slugSector": "social_welfare"}, {"sector": " Health", "subIndicators": [{"stateFigures": [{"state": "Andhra Pradesh", "figures": {"A": [{"2013-14": "5737.4"}, {"2014-15": ""}], "BE": [{"2014-15": "4387.9"}, {"2015-16": "5728.2"}, {"2016-17": "6103.8"}], "RE": [{"2014-15": "4362.9"}, {"2015-16": "4697.6"}]}}, {"state": "Assam", "figures": {"A": [{"2013-14": "269.5"}, {"2014-15": "1917.5"}], "BE": [{"2014-15": "3011.2"}, {"2015-16": "3252.2"}, {"2016-17": "3984.1"}], "RE": [{"2014-15": "3090.1"}, {"2015-16": "4399"}]}}, {"state": "Bihar", "figures": {"A": [{"2013-14": "2592"}, {"2014-15": "3609.6"}], "BE": [{"2014-15": "4805.7"}, {"2015-16": "4971.7"}, {"2016-17": "8234.7"}], "RE": [{"2014-15": "5263.4"}, {"2015-16": "4984.9"}]}}, {"state": "Chhattisgarh", "figures": {"A": [{"2013-14": "1544.5"}, {"2014-15": "2322.6"}], "BE": [{"2014-15": "2900.1"}, {"2015-16": "3208.5"}, {"2016-17": "4016.2"}], "RE": [{"2014-15": "2870.3"}, {"2015-16": "3398.3"}]}}, {"state": "Delhi", "figures": {"A": [{"2013-14": "2603.9"}, {"2014-15": "3115.8"}], "BE": [{"2014-15": "3713.9"}, {"2015-16": "3933.9"}, {"2016-17": "4613.2"}], "RE": [{"2014-15": "3584.3"}, {"2015-16": "3625.5"}]}}, {"state": "Gujarat", "figures": {"A": [{"2013-14": "4235.9"}, {"2014-15": "5189.3"}], "BE": [{"2014-15": "5611.9"}, {"2015-16": "6153.5"}, {"2016-17": "6821.2"}], "RE": [{"2014-15": "5629"}, {"2015-16": "6066.7"}]}}, {"state": "Haryana", "figures": {"A": [{"2013-14": "1752.5"}, {"2014-15": "2238.7"}], "BE": [{"2014-15": "2804.4"}, {"2015-16": "3028.6"}, {"2016-17": "3916.9"}], "RE": [{"2014-15": "2646.2"}, {"2015-16": "2857.3"}]}}, {"state": "Himachal Pradesh", "figures": {"A": [{"2013-14": "968.5"}, {"2014-15": "1140.4"}], "BE": [{"2014-15": "1165.2"}, {"2015-16": "1558.9"}, {"2016-17": "1671.7"}], "RE": [{"2014-15": "1141.1"}, {"2015-16": "1248.7"}]}}, {"state": "Jammu and Kashmir", "figures": {"A": [{"2013-14": "1341.7"}, {"2014-15": "1434.7"}], "BE": [{"2014-15": "2199.4"}, {"2015-16": "2649.1"}, {"2016-17": "3036.6"}], "RE": [{"2014-15": "2311.3"}, {"2015-16": "2887.9"}]}}, {"state": "Jharkhand", "figures": {"A": [{"2013-14": "1132.8"}, {"2014-15": "1565.9"}], "BE": [{"2014-15": "2619.1"}, {"2015-16": "2919.5"}, {"2016-17": "3049.7"}], "RE": [{"2014-15": "2442.9"}, {"2015-16": "2947.4"}]}}, {"state": "Karnataka", "figures": {"A": [{"2013-14": "4533.5"}, {"2014-15": "5699.9"}], "BE": [{"2014-15": "5900.8"}, {"2015-16": "5825.6"}, {"2016-17": "6303.1"}], "RE": [{"2014-15": "6276.4"}, {"2015-16": "6448"}]}}, {"state": "Kerala", "figures": {"A": [{"2013-14": "3652"}, {"2014-15": "4239.6"}], "BE": [{"2014-15": "4530.6"}, {"2015-16": "5600.8"}, {"2016-17": "5696"}], "RE": [{"2014-15": "5043.7"}, {"2015-16": "5165.2"}]}}, {"state": "Madhya Pradesh", "figures": {"A": [{"2013-14": "3486.9"}, {"2014-15": "4717.1"}], "BE": [{"2014-15": "6153"}, {"2015-16": "6076.5"}, {"2016-17": "7953.9"}], "RE": [{"2014-15": "5493.4"}, {"2015-16": "5522.2"}]}}, {"state": "Maharashtra", "figures": {"A": [{"2013-14": "6537"}, {"2014-15": "7995.6"}], "BE": [{"2014-15": "9269.5"}, {"2015-16": "8712.7"}, {"2016-17": "9320"}], "RE": [{"2014-15": "9687.2"}, {"2015-16": "10370.5"}]}}, {"state": "Meghalaya", "figures": {"A": [{"2013-14": "449.7"}, {"2014-15": "571.3"}], "BE": [{"2014-15": "600.9"}, {"2015-16": "582.8"}, {"2016-17": "719.5"}], "RE": [{"2014-15": "600.9"}, {"2015-16": "582.8"}]}}, {"state": "Mizoram", "figures": {"A": [{"2013-14": "262.5"}, {"2014-15": "345.9"}], "BE": [{"2014-15": "338.8"}, {"2015-16": "406.2"}, {"2016-17": "414.3"}], "RE": [{"2014-15": "454.4"}, {"2015-16": "544.9"}]}}, {"state": "Odisha", "figures": {"A": [{"2013-14": "1973.1"}, {"2014-15": "3203.5"}], "BE": [{"2014-15": "3897.7"}, {"2015-16": "3855.9"}, {"2016-17": "4771.9"}], "RE": [{"2014-15": "3786.5"}, {"2015-16": "3882.3"}]}}, {"state": "Punjab", "figures": {"A": [{"2013-14": "2037.3"}, {"2014-15": "2481.4"}], "BE": [{"2014-15": "2790.2"}, {"2015-16": "3134.7"}, {"2016-17": "3325.4"}], "RE": [{"2014-15": "2779.6"}, {"2015-16": "3286.2"}]}}, {"state": "Rajasthan", "figures": {"A": [{"2013-14": "4337.1"}, {"2014-15": "6462.7"}], "BE": [{"2014-15": "8708.4"}, {"2015-16": "9416.3"}, {"2016-17": "9537.4"}], "RE": [{"2014-15": "7449.4"}, {"2015-16": "8241.4"}]}}, {"state": "Sikkim", "figures": {"A": [{"2013-14": "256.4"}, {"2014-15": "261.5"}], "BE": [{"2014-15": "354"}, {"2015-16": "343.4"}, {"2016-17": "285"}], "RE": [{"2014-15": "361.2"}, {"2015-16": "307.8"}]}}, {"state": "Tamil Nadu", "figures": {"A": [{"2013-14": "6320.8"}, {"2014-15": "7670.3"}], "BE": [{"2014-15": "7005"}, {"2015-16": "8245.4"}, {"2016-17": "9072.7"}], "RE": [{"2014-15": "8027.5"}, {"2015-16": "8610.8"}]}}, {"state": "Telangana", "figures": {"A": [{"2013-14": ""}, {"2014-15": "2431.7"}], "BE": [{"2014-15": "4062.9"}, {"2015-16": "4931.5"}, {"2016-17": "5966.9"}], "RE": [{"2014-15": "4062.9"}, {"2015-16": "4148.8"}]}}, {"state": "Tripura", "figures": {"A": [{"2013-14": "304.4"}, {"2014-15": "496.8"}], "BE": [{"2014-15": "417.3"}, {"2015-16": "517.7"}, {"2016-17": "474.8"}], "RE": [{"2014-15": "648.1"}, {"2015-16": "668.2"}]}}, {"state": "Uttar Pradesh", "figures": {"A": [{"2013-14": "8974.1"}, {"2014-15": "11117.1"}], "BE": [{"2014-15": "13090.1"}, {"2015-16": "14657.8"}, {"2016-17": "17828.5"}], "RE": [{"2014-15": "12809.7"}, {"2015-16": "14393.3"}]}}, {"state": "Uttarakhand", "figures": {"A": [{"2013-14": "996.3"}, {"2014-15": "1454.1"}], "BE": [{"2014-15": "1422.9"}, {"2015-16": "1669.6"}, {"2016-17": "1872.4"}], "RE": [{"2014-15": "1757.4"}, {"2015-16": "1752.9"}]}}, {"state": "West Bengal", "figures": {"A": [{"2013-14": "4731.1"}, {"2014-15": "6259.4"}], "BE": [{"2014-15": "5641.3"}, {"2015-16": "6124.9"}, {"2016-17": "6936.2"}], "RE": [{"2014-15": "5931"}, {"2015-16": "6967.4"}]}}], "indicator": "Total Sector Expenditure", "slugIndicator": "total_sector_expenditure", "unit": "INR (in Crores)"}, {"stateFigures": [{"state": "Andhra Pradesh", "figures": {"A": [{"2013-14": "4.2"}, {"2014-15": ""}], "BE": [{"2014-15": "3.9"}, {"2015-16": "5.1"}, {"2016-17": "4.5"}], "RE": [{"2014-15": "3.9"}, {"2015-16": "4.2"}]}}, {"state": "Assam", "figures": {"A": [{"2013-14": "0.7"}, {"2014-15": "4.1"}], "BE": [{"2014-15": "5.2"}, {"2015-16": "4.9"}, {"2016-17": "5.1"}], "RE": [{"2014-15": "4.8"}, {"2015-16": "5.9"}]}}, {"state": "Bihar", "figures": {"A": [{"2013-14": "3.2"}, {"2014-15": "3.8"}], "BE": [{"2014-15": "4.1"}, {"2015-16": "4.1"}, {"2016-17": "5.7"}], "RE": [{"2014-15": "4"}, {"2015-16": "3.8"}]}}, {"state": "Chhattisgarh", "figures": {"A": [{"2013-14": "4"}, {"2014-15": "5"}], "BE": [{"2014-15": "5.3"}, {"2015-16": "4.9"}, {"2016-17": "5.7"}], "RE": [{"2014-15": "5.2"}, {"2015-16": "5.2"}]}}, {"state": "Delhi", "figures": {"A": [{"2013-14": "7.6"}, {"2014-15": ""}], "BE": [{"2014-15": "10.1"}, {"2015-16": "9.6"}, {"2016-17": "9.9"}], "RE": [{"2014-15": "10.3"}, {"2015-16": ""}]}}, {"state": "Gujarat", "figures": {"A": [{"2013-14": "4"}, {"2014-15": "4.4"}], "BE": [{"2014-15": "4.3"}, {"2015-16": "4.5"}, {"2016-17": "4.6"}], "RE": [{"2014-15": "4.5"}, {"2015-16": "4.6"}]}}, {"state": "Haryana", "figures": {"A": [{"2013-14": "3.8"}, {"2014-15": "4.2"}], "BE": [{"2014-15": "4.7"}, {"2015-16": "4.4"}, {"2016-17": "4.4"}], "RE": [{"2014-15": "4.3"}, {"2015-16": "3.4"}]}}, {"state": "Himachal Pradesh", "figures": {"A": [{"2013-14": "4.5"}, {"2014-15": "4.5"}], "BE": [{"2014-15": "4.8"}, {"2015-16": "5.4"}, {"2016-17": "5.1"}], "RE": [{"2014-15": "4.7"}, {"2015-16": "4.6"}]}}, {"state": "Jammu and Kashmir", "figures": {"A": [{"2013-14": "4.1"}, {"2014-15": "4"}], "BE": [{"2014-15": "5.1"}, {"2015-16": "5.7"}, {"2016-17": "5.3"}], "RE": [{"2014-15": "5.4"}, {"2015-16": "5.8"}]}}, {"state": "Jharkhand", "figures": {"A": [{"2013-14": "3.7"}, {"2014-15": "3.9"}], "BE": [{"2014-15": "5.2"}, {"2015-16": "5.3"}, {"2016-17": "4.8"}], "RE": [{"2014-15": "4.8"}, {"2015-16": "5.3"}]}}, {"state": "Karnataka", "figures": {"A": [{"2013-14": "4.2"}, {"2014-15": "4.6"}], "BE": [{"2014-15": "4.5"}, {"2015-16": "4.3"}, {"2016-17": "4"}], "RE": [{"2014-15": "4.9"}, {"2015-16": "4.6"}]}}, {"state": "Kerala", "figures": {"A": [{"2013-14": "5.5"}, {"2014-15": "5.5"}], "BE": [{"2014-15": "5.7"}, {"2015-16": "5.9"}, {"2016-17": "5.3"}], "RE": [{"2014-15": "6.3"}, {"2015-16": "5.8"}]}}, {"state": "Madhya Pradesh", "figures": {"A": [{"2013-14": "4.1"}, {"2014-15": "4.7"}], "BE": [{"2014-15": "5.3"}, {"2015-16": "4.6"}, {"2016-17": "5.3"}], "RE": [{"2014-15": "4.6"}, {"2015-16": "4.2"}]}}, {"state": "Maharashtra", "figures": {"A": [{"2013-14": "3.7"}, {"2014-15": "4"}], "BE": [{"2014-15": "4.4"}, {"2015-16": "3.8"}, {"2016-17": "3.6"}], "RE": [{"2014-15": "4.4"}, {"2015-16": "4.4"}]}}, {"state": "Meghalaya", "figures": {"A": [{"2013-14": "6.5"}, {"2014-15": "7.5"}], "BE": [{"2014-15": "5.1"}, {"2015-16": "6.1"}, {"2016-17": "6.8"}], "RE": [{"2014-15": "5.1"}, {"2015-16": "6.1"}]}}, {"state": "Mizoram", "figures": {"A": [{"2013-14": "4.7"}, {"2014-15": "4.5"}], "BE": [{"2014-15": "5.1"}, {"2015-16": "5.2"}, {"2016-17": "5"}], "RE": [{"2014-15": "6"}, {"2015-16": "6.5"}]}}, {"state": "Odisha", "figures": {"A": [{"2013-14": "3.5"}, {"2014-15": "4.8"}], "BE": [{"2014-15": "4.9"}, {"2015-16": "4.6"}, {"2016-17": "5.1"}], "RE": [{"2014-15": "4.9"}, {"2015-16": "4.6"}]}}, {"state": "Punjab", "figures": {"A": [{"2013-14": "3.4"}, {"2014-15": "3.4"}], "BE": [{"2014-15": "3.8"}, {"2015-16": "4"}, {"2016-17": "3.8"}], "RE": [{"2014-15": "3.7"}, {"2015-16": "4.2"}]}}, {"state": "Rajasthan", "figures": {"A": [{"2013-14": "4.6"}, {"2014-15": "5.5"}], "BE": [{"2014-15": "6.6"}, {"2015-16": "6.8"}, {"2016-17": "6.3"}], "RE": [{"2014-15": "5.9"}, {"2015-16": "6"}]}}, {"state": "Sikkim", "figures": {"A": [{"2013-14": "5.9"}, {"2014-15": "5.5"}], "BE": [{"2014-15": "5.5"}, {"2015-16": "6.4"}, {"2016-17": "5.2"}], "RE": [{"2014-15": "5.4"}, {"2015-16": "5.7"}]}}, {"state": "Tamil Nadu", "figures": {"A": [{"2013-14": "4.9"}, {"2014-15": "5.1"}], "BE": [{"2014-15": "4.6"}, {"2015-16": "4.7"}, {"2016-17": "4.8"}], "RE": [{"2014-15": "5"}, {"2015-16": "5"}]}}, {"state": "Telangana", "figures": {"A": [{"2013-14": ""}, {"2014-15": "3.9"}], "BE": [{"2014-15": "4.2"}, {"2015-16": "4.3"}, {"2016-17": "4.6"}], "RE": [{"2014-15": "4.2"}, {"2015-16": "4.1"}]}}, {"state": "Tripura", "figures": {"A": [{"2013-14": "3.9"}, {"2014-15": "4.7"}], "BE": [{"2014-15": "3.4"}, {"2015-16": "3.5"}, {"2016-17": "3.1"}], "RE": [{"2014-15": "5.2"}, {"2015-16": "5.1"}]}}, {"state": "Uttar Pradesh", "figures": {"A": [{"2013-14": "4.5"}, {"2014-15": "4.7"}], "BE": [{"2014-15": "4.8"}, {"2015-16": "4.8"}, {"2016-17": "5.1"}], "RE": [{"2014-15": "4.9"}, {"2015-16": "4.4"}]}}, {"state": "Uttarakhand", "figures": {"A": [{"2013-14": "4.5"}, {"2014-15": "5.3"}], "BE": [{"2014-15": "4.7"}, {"2015-16": "5.1"}, {"2016-17": "4.6"}], "RE": [{"2014-15": "5.4"}, {"2015-16": "5.2"}]}}, {"state": "West Bengal", "figures": {"A": [{"2013-14": "4.4"}, {"2014-15": "5.1"}], "BE": [{"2014-15": "4.3"}, {"2015-16": "4.4"}, {"2016-17": "4.3"}], "RE": [{"2014-15": "4.6"}, {"2015-16": "4.8"}]}}], "indicator": "Total Sector Expenditure as % of State Budget", "slugIndicator": "total_sector_expenditure_as_of_state_budget", "unit": "Percentage"}, {"stateFigures": [{"state": "Andhra Pradesh", "figures": {"A": [{"2013-14": "665.4"}, {"2014-15": ""}], "BE": [{"2014-15": "504.6"}, {"2015-16": "653.4"}, {"2016-17": "690.8"}], "RE": [{"2014-15": "501.8"}, {"2015-16": "535.9"}]}}, {"state": "Assam", "figures": {"A": [{"2013-14": "86.1"}, {"2014-15": "605"}], "BE": [{"2014-15": "950.1"}, {"2015-16": "1014.1"}, {"2016-17": "1227.8"}], "RE": [{"2014-15": "975"}, {"2015-16": "1371.7"}]}}, {"state": "Bihar", "figures": {"A": [{"2013-14": "258.5"}, {"2014-15": "355.5"}], "BE": [{"2014-15": "473.3"}, {"2015-16": "483.9"}, {"2016-17": "792.5"}], "RE": [{"2014-15": "518.4"}, {"2015-16": "485.2"}]}}, {"state": "Chhattisgarh", "figures": {"A": [{"2013-14": "620"}, {"2014-15": "920.5"}], "BE": [{"2014-15": "1149.4"}, {"2015-16": "1255.5"}, {"2016-17": "1551.9"}], "RE": [{"2014-15": "1137.6"}, {"2015-16": "1329.8"}]}}, {"state": "Delhi", "figures": {"A": [{"2013-14": "1333.3"}, {"2014-15": "1550.7"}], "BE": [{"2014-15": "1848.4"}, {"2015-16": "1902.6"}, {"2016-17": "2167.4"}], "RE": [{"2014-15": "1783.9"}, {"2015-16": "1753.5"}]}}, {"state": "Gujarat", "figures": {"A": [{"2013-14": "699.4"}, {"2014-15": "846.1"}], "BE": [{"2014-15": "915"}, {"2015-16": "991.2"}, {"2016-17": "1085.7"}], "RE": [{"2014-15": "917.8"}, {"2015-16": "977.2"}]}}, {"state": "Haryana", "figures": {"A": [{"2013-14": "667.2"}, {"2014-15": "839.3"}], "BE": [{"2014-15": "1051.3"}, {"2015-16": "1118.4"}, {"2016-17": "1425.5"}], "RE": [{"2014-15": "992"}, {"2015-16": "1055.2"}]}}, {"state": "Himachal Pradesh", "figures": {"A": [{"2013-14": "1400"}, {"2014-15": "1634.3"}], "BE": [{"2014-15": "1669.7"}, {"2015-16": "2215.2"}, {"2016-17": "2356.1"}], "RE": [{"2014-15": "1635.3"}, {"2015-16": "1774.5"}]}}, {"state": "Jammu and Kashmir", "figures": {"A": [{"2013-14": "1117.2"}, {"2014-15": "1180.6"}], "BE": [{"2014-15": "1809.9"}, {"2015-16": "2155.7"}, {"2016-17": "2445.1"}], "RE": [{"2014-15": "1902"}, {"2015-16": "2350"}]}}, {"state": "Jharkhand", "figures": {"A": [{"2013-14": "350.3"}, {"2014-15": "477.9"}], "BE": [{"2014-15": "799.3"}, {"2015-16": "879.3"}, {"2016-17": "906.2"}], "RE": [{"2014-15": "745.5"}, {"2015-16": "887.7"}]}}, {"state": "Karnataka", "figures": {"A": [{"2013-14": "747.8"}, {"2014-15": "931.1"}], "BE": [{"2014-15": "964"}, {"2015-16": "942.7"}, {"2016-17": "1010.5"}], "RE": [{"2014-15": "1025.3"}, {"2015-16": "1043.4"}]}}, {"state": "Kerala", "figures": {"A": [{"2013-14": "1042.4"}, {"2014-15": "1202.4"}], "BE": [{"2014-15": "1285"}, {"2015-16": "1578.9"}, {"2016-17": "1596.5"}], "RE": [{"2014-15": "1430.5"}, {"2015-16": "1456.1"}]}}, {"state": "Madhya Pradesh", "figures": {"A": [{"2013-14": "404.4"}, {"2014-15": "542.5"}], "BE": [{"2014-15": "707.6"}, {"2015-16": "693.2"}, {"2016-17": "900.2"}], "RE": [{"2014-15": "631.8"}, {"2015-16": "629.9"}]}}, {"state": "Maharashtra", "figures": {"A": [{"2013-14": "565"}, {"2014-15": "682.3"}], "BE": [{"2014-15": "791"}, {"2015-16": "734.3"}, {"2016-17": "776.2"}], "RE": [{"2014-15": "826.6"}, {"2015-16": "874"}]}}, {"state": "Meghalaya", "figures": {"A": [{"2013-14": "1676.7"}, {"2014-15": "2106.4"}], "BE": [{"2014-15": "2215.8"}, {"2015-16": "2124.8"}, {"2016-17": "2594.8"}], "RE": [{"2014-15": "2215.8"}, {"2015-16": "2124.8"}]}}, {"state": "Mizoram", "figures": {"A": [{"2013-14": "2554"}, {"2014-15": "3328.8"}], "BE": [{"2014-15": "3260.8"}, {"2015-16": "3864.9"}, {"2016-17": "3897.3"}], "RE": [{"2014-15": "4373"}, {"2015-16": "5184.5"}]}}, {"state": "Odisha", "figures": {"A": [{"2013-14": "476"}, {"2014-15": "766.5"}], "BE": [{"2014-15": "932.5"}, {"2015-16": "915.1"}, {"2016-17": "1123.3"}], "RE": [{"2014-15": "905.9"}, {"2015-16": "921.3"}]}}, {"state": "Punjab", "figures": {"A": [{"2013-14": "720.4"}, {"2014-15": "868.6"}], "BE": [{"2014-15": "976.7"}, {"2015-16": "1086.7"}, {"2016-17": "1142.3"}], "RE": [{"2014-15": "973"}, {"2015-16": "1139.2"}]}}, {"state": "Rajasthan", "figures": {"A": [{"2013-14": "620.1"}, {"2014-15": "910.6"}], "BE": [{"2014-15": "1227.1"}, {"2015-16": "1308.3"}, {"2016-17": "1307.4"}], "RE": [{"2014-15": "1049.7"}, {"2015-16": "1145.1"}]}}, {"state": "Sikkim", "figures": {"A": [{"2013-14": "4096.2"}, {"2014-15": "4131"}], "BE": [{"2014-15": "5592.4"}, {"2015-16": "5365.8"}, {"2016-17": "4404.5"}], "RE": [{"2014-15": "5705.6"}, {"2015-16": "4809.9"}]}}, {"state": "Tamil Nadu", "figures": {"A": [{"2013-14": "925.9"}, {"2014-15": "1117.2"}], "BE": [{"2014-15": "1020.3"}, {"2015-16": "1194.5"}, {"2016-17": "1307.4"}], "RE": [{"2014-15": "1169.3"}, {"2015-16": "1247.4"}]}}, {"state": "Telangana", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Tripura", "figures": {"A": [{"2013-14": "822.8"}, {"2014-15": "1327.7"}], "BE": [{"2014-15": "1115.3"}, {"2015-16": "1368.1"}, {"2016-17": "1241"}], "RE": [{"2014-15": "1732"}, {"2015-16": "1765.8"}]}}, {"state": "Uttar Pradesh", "figures": {"A": [{"2013-14": "432"}, {"2014-15": "526.3"}], "BE": [{"2014-15": "619.7"}, {"2015-16": "682.8"}, {"2016-17": "817.5"}], "RE": [{"2014-15": "606.5"}, {"2015-16": "670.5"}]}}, {"state": "Uttarakhand", "figures": {"A": [{"2013-14": "974.5"}, {"2014-15": "1403.3"}], "BE": [{"2014-15": "1373.2"}, {"2015-16": "1590.3"}, {"2016-17": "1761.1"}], "RE": [{"2014-15": "1696"}, {"2015-16": "1669.6"}]}}, {"state": "West Bengal", "figures": {"A": [{"2013-14": "519.2"}, {"2014-15": "681"}], "BE": [{"2014-15": "613.7"}, {"2015-16": "660.5"}, {"2016-17": "741.4"}], "RE": [{"2014-15": "645.2"}, {"2015-16": "751.4"}]}}], "indicator": "Per Capita Expenditure on Sector ", "slugIndicator": "per_capita_expenditure_on_sector", "unit": "INR Rs."}, {"stateFigures": [{"state": "Andhra Pradesh", "figures": {"A": [{"2013-14": "95.9"}, {"2014-15": ""}], "BE": [{"2014-15": "93.9"}, {"2015-16": "91.6"}, {"2016-17": "92.1"}], "RE": [{"2014-15": "94"}, {"2015-16": "94.8"}]}}, {"state": "Assam", "figures": {"A": [{"2013-14": "100"}, {"2014-15": "99.3"}], "BE": [{"2014-15": "100"}, {"2015-16": "95.9"}, {"2016-17": "97.1"}], "RE": [{"2014-15": "99.6"}, {"2015-16": "96.7"}]}}, {"state": "Bihar", "figures": {"A": [{"2013-14": "82.2"}, {"2014-15": "91.6"}], "BE": [{"2014-15": "85.3"}, {"2015-16": "70.6"}, {"2016-17": "88.9"}], "RE": [{"2014-15": "79.4"}, {"2015-16": "80.8"}]}}, {"state": "Chhattisgarh", "figures": {"A": [{"2013-14": "92"}, {"2014-15": "90.2"}], "BE": [{"2014-15": "90"}, {"2015-16": "90.5"}, {"2016-17": "89.6"}], "RE": [{"2014-15": "91.2"}, {"2015-16": "86.9"}]}}, {"state": "Delhi", "figures": {"A": [{"2013-14": "100"}, {"2014-15": "100"}], "BE": [{"2014-15": "100"}, {"2015-16": "95.8"}, {"2016-17": "95"}], "RE": [{"2014-15": "99.7"}, {"2015-16": "96.3"}]}}, {"state": "Gujarat", "figures": {"A": [{"2013-14": "69.8"}, {"2014-15": "71.4"}], "BE": [{"2014-15": "71.9"}, {"2015-16": "72.7"}, {"2016-17": "77.4"}], "RE": [{"2014-15": "72"}, {"2015-16": "76.6"}]}}, {"state": "Haryana", "figures": {"A": [{"2013-14": "97.2"}, {"2014-15": "97.1"}], "BE": [{"2014-15": "96.3"}, {"2015-16": "98.7"}, {"2016-17": "85.2"}], "RE": [{"2014-15": "96.4"}, {"2015-16": "98.7"}]}}, {"state": "Himachal Pradesh", "figures": {"A": [{"2013-14": "94"}, {"2014-15": "96.1"}], "BE": [{"2014-15": "96.1"}, {"2015-16": "96.7"}, {"2016-17": "96.8"}], "RE": [{"2014-15": "96"}, {"2015-16": "92.4"}]}}, {"state": "Jammu and Kashmir", "figures": {"A": [{"2013-14": "100"}, {"2014-15": "100"}], "BE": [{"2014-15": "84.7"}, {"2015-16": "72.2"}, {"2016-17": "80.1"}], "RE": [{"2014-15": "73.8"}, {"2015-16": "74.9"}]}}, {"state": "Jharkhand", "figures": {"A": [{"2013-14": "85.3"}, {"2014-15": "83.3"}], "BE": [{"2014-15": "85"}, {"2015-16": "85.3"}, {"2016-17": "78.8"}], "RE": [{"2014-15": "86.4"}, {"2015-16": "83.9"}]}}, {"state": "Karnataka", "figures": {"A": [{"2013-14": "90.3"}, {"2014-15": "86.1"}], "BE": [{"2014-15": "91.2"}, {"2015-16": "90"}, {"2016-17": "90"}], "RE": [{"2014-15": "90.1"}, {"2015-16": "89.1"}]}}, {"state": "Kerala", "figures": {"A": [{"2013-14": "96.4"}, {"2014-15": "95.4"}], "BE": [{"2014-15": "94.7"}, {"2015-16": "95.3"}, {"2016-17": "93.6"}], "RE": [{"2014-15": "93.7"}, {"2015-16": "94.1"}]}}, {"state": "Madhya Pradesh", "figures": {"A": [{"2013-14": "95.4"}, {"2014-15": "95.1"}], "BE": [{"2014-15": "95.9"}, {"2015-16": "95.1"}, {"2016-17": "92.7"}], "RE": [{"2014-15": "96.2"}, {"2015-16": "96.3"}]}}, {"state": "Maharashtra", "figures": {"A": [{"2013-14": "99.1"}, {"2014-15": "99.6"}], "BE": [{"2014-15": "99.1"}, {"2015-16": "98.8"}, {"2016-17": "98.7"}], "RE": [{"2014-15": "99"}, {"2015-16": "98.7"}]}}, {"state": "Meghalaya", "figures": {"A": [{"2013-14": "78.6"}, {"2014-15": "84.6"}], "BE": [{"2014-15": "83.5"}, {"2015-16": "83.1"}, {"2016-17": "88.3"}], "RE": [{"2014-15": "83.5"}, {"2015-16": "83.1"}]}}, {"state": "Mizoram", "figures": {"A": [{"2013-14": "94.5"}, {"2014-15": "94.9"}], "BE": [{"2014-15": "96.4"}, {"2015-16": "97.1"}, {"2016-17": "100"}], "RE": [{"2014-15": "95.8"}, {"2015-16": "95.7"}]}}, {"state": "Odisha", "figures": {"A": [{"2013-14": "91"}, {"2014-15": "86.1"}], "BE": [{"2014-15": "86.4"}, {"2015-16": "83.3"}, {"2016-17": "84.5"}], "RE": [{"2014-15": "86"}, {"2015-16": "85.9"}]}}, {"state": "Punjab", "figures": {"A": [{"2013-14": "95.9"}, {"2014-15": "100"}], "BE": [{"2014-15": "95.2"}, {"2015-16": "99.9"}, {"2016-17": "99.8"}], "RE": [{"2014-15": "99.9"}, {"2015-16": "99.8"}]}}, {"state": "Rajasthan", "figures": {"A": [{"2013-14": "92.1"}, {"2014-15": "92.4"}], "BE": [{"2014-15": "87.6"}, {"2015-16": "88.7"}, {"2016-17": "86.8"}], "RE": [{"2014-15": "91.6"}, {"2015-16": "91.1"}]}}, {"state": "Sikkim", "figures": {"A": [{"2013-14": "63.5"}, {"2014-15": "76.5"}], "BE": [{"2014-15": "78.2"}, {"2015-16": "64.8"}, {"2016-17": "78.3"}], "RE": [{"2014-15": "76.8"}, {"2015-16": "74"}]}}, {"state": "Tamil Nadu", "figures": {"A": [{"2013-14": "94.5"}, {"2014-15": "96.4"}], "BE": [{"2014-15": "96.5"}, {"2015-16": "98.5"}, {"2016-17": "98.7"}], "RE": [{"2014-15": "96.9"}, {"2015-16": "97.3"}]}}, {"state": "Telangana", "figures": {"A": [{"2013-14": ""}, {"2014-15": "96.1"}], "BE": [{"2014-15": "84.8"}, {"2015-16": "85.7"}, {"2016-17": "94.2"}], "RE": [{"2014-15": "84.8"}, {"2015-16": "90.2"}]}}, {"state": "Tripura", "figures": {"A": [{"2013-14": "85"}, {"2014-15": "89.9"}], "BE": [{"2014-15": "94"}, {"2015-16": "80.3"}, {"2016-17": "94.6"}], "RE": [{"2014-15": "79.7"}, {"2015-16": "65.3"}]}}, {"state": "Uttar Pradesh", "figures": {"A": [{"2013-14": "85.6"}, {"2014-15": "84.3"}], "BE": [{"2014-15": "79"}, {"2015-16": "87"}, {"2016-17": "80.9"}], "RE": [{"2014-15": "78.2"}, {"2015-16": "84.4"}]}}, {"state": "Uttarakhand", "figures": {"A": [{"2013-14": "85.6"}, {"2014-15": "82.7"}], "BE": [{"2014-15": "83.8"}, {"2015-16": "98.2"}, {"2016-17": "94.2"}], "RE": [{"2014-15": "84.8"}, {"2015-16": "91.1"}]}}, {"state": "West Bengal", "figures": {"A": [{"2013-14": "87.9"}, {"2014-15": "83"}], "BE": [{"2014-15": "76.1"}, {"2015-16": "80"}, {"2016-17": "79.5"}], "RE": [{"2014-15": "86.3"}, {"2015-16": "74.1"}]}}], "indicator": "Revenue Expenditure as % of Total Sector Expenditure", "slugIndicator": "revenue_expenditure_as_of_total_sector_expenditure", "unit": "Percentage"}, {"stateFigures": [{"state": "Andhra Pradesh", "figures": {"A": [{"2013-14": "4.1"}, {"2014-15": ""}], "BE": [{"2014-15": "6.1"}, {"2015-16": "8.4"}, {"2016-17": "7.9"}], "RE": [{"2014-15": "6"}, {"2015-16": "5.2"}]}}, {"state": "Assam", "figures": {"A": [{"2013-14": "0"}, {"2014-15": "0.7"}], "BE": [{"2014-15": "0"}, {"2015-16": "4.1"}, {"2016-17": "2.9"}], "RE": [{"2014-15": "0.4"}, {"2015-16": "3.3"}]}}, {"state": "Bihar", "figures": {"A": [{"2013-14": "17.8"}, {"2014-15": "8.4"}], "BE": [{"2014-15": "14.7"}, {"2015-16": "29.4"}, {"2016-17": "11.1"}], "RE": [{"2014-15": "20.6"}, {"2015-16": "19.2"}]}}, {"state": "Chhattisgarh", "figures": {"A": [{"2013-14": "8"}, {"2014-15": "9.8"}], "BE": [{"2014-15": "10"}, {"2015-16": "9.5"}, {"2016-17": "10.4"}], "RE": [{"2014-15": "8.8"}, {"2015-16": "13.1"}]}}, {"state": "Delhi", "figures": {"A": [{"2013-14": "0"}, {"2014-15": "0"}], "BE": [{"2014-15": "0"}, {"2015-16": "4.2"}, {"2016-17": "5"}], "RE": [{"2014-15": "0.3"}, {"2015-16": "3.7"}]}}, {"state": "Gujarat", "figures": {"A": [{"2013-14": "30.2"}, {"2014-15": "28.6"}], "BE": [{"2014-15": "28.1"}, {"2015-16": "27.3"}, {"2016-17": "22.6"}], "RE": [{"2014-15": "28"}, {"2015-16": "23.4"}]}}, {"state": "Haryana", "figures": {"A": [{"2013-14": "2.8"}, {"2014-15": "2.9"}], "BE": [{"2014-15": "3.7"}, {"2015-16": "1.3"}, {"2016-17": "14.8"}], "RE": [{"2014-15": "3.6"}, {"2015-16": "1.3"}]}}, {"state": "Himachal Pradesh", "figures": {"A": [{"2013-14": "6"}, {"2014-15": "3.9"}], "BE": [{"2014-15": "3.9"}, {"2015-16": "3.3"}, {"2016-17": "3.2"}], "RE": [{"2014-15": "4"}, {"2015-16": "7.6"}]}}, {"state": "Jammu and Kashmir", "figures": {"A": [{"2013-14": "0"}, {"2014-15": "0"}], "BE": [{"2014-15": "15.3"}, {"2015-16": "27.8"}, {"2016-17": "19.9"}], "RE": [{"2014-15": "26.2"}, {"2015-16": "25.1"}]}}, {"state": "Jharkhand", "figures": {"A": [{"2013-14": "14.7"}, {"2014-15": "16.7"}], "BE": [{"2014-15": "15"}, {"2015-16": "14.7"}, {"2016-17": "21.2"}], "RE": [{"2014-15": "13.6"}, {"2015-16": "16.1"}]}}, {"state": "Karnataka", "figures": {"A": [{"2013-14": "9.7"}, {"2014-15": "13.9"}], "BE": [{"2014-15": "8.8"}, {"2015-16": "10"}, {"2016-17": "10"}], "RE": [{"2014-15": "9.9"}, {"2015-16": "10.9"}]}}, {"state": "Kerala", "figures": {"A": [{"2013-14": "3.6"}, {"2014-15": "4.6"}], "BE": [{"2014-15": "5.3"}, {"2015-16": "4.7"}, {"2016-17": "6.4"}], "RE": [{"2014-15": "6.3"}, {"2015-16": "5.9"}]}}, {"state": "Madhya Pradesh", "figures": {"A": [{"2013-14": "4.6"}, {"2014-15": "4.9"}], "BE": [{"2014-15": "4.1"}, {"2015-16": "4.9"}, {"2016-17": "7.3"}], "RE": [{"2014-15": "3.8"}, {"2015-16": "3.7"}]}}, {"state": "Maharashtra", "figures": {"A": [{"2013-14": "0.9"}, {"2014-15": "0.4"}], "BE": [{"2014-15": "0.9"}, {"2015-16": "1.2"}, {"2016-17": "1.3"}], "RE": [{"2014-15": "1"}, {"2015-16": "1.3"}]}}, {"state": "Meghalaya", "figures": {"A": [{"2013-14": "21.4"}, {"2014-15": "15.4"}], "BE": [{"2014-15": "16.5"}, {"2015-16": "16.9"}, {"2016-17": "11.7"}], "RE": [{"2014-15": "16.5"}, {"2015-16": "16.9"}]}}, {"state": "Mizoram", "figures": {"A": [{"2013-14": "5.5"}, {"2014-15": "5.1"}], "BE": [{"2014-15": "3.6"}, {"2015-16": "2.9"}, {"2016-17": "0"}], "RE": [{"2014-15": "4.2"}, {"2015-16": "4.3"}]}}, {"state": "Odisha", "figures": {"A": [{"2013-14": "9"}, {"2014-15": "13.9"}], "BE": [{"2014-15": "13.6"}, {"2015-16": "16.7"}, {"2016-17": "15.5"}], "RE": [{"2014-15": "14"}, {"2015-16": "14.1"}]}}, {"state": "Punjab", "figures": {"A": [{"2013-14": "4.1"}, {"2014-15": "0"}], "BE": [{"2014-15": "4.8"}, {"2015-16": "0.1"}, {"2016-17": "0.2"}], "RE": [{"2014-15": "0.1"}, {"2015-16": "0.2"}]}}, {"state": "Rajasthan", "figures": {"A": [{"2013-14": "7.9"}, {"2014-15": "7.6"}], "BE": [{"2014-15": "12.4"}, {"2015-16": "11.3"}, {"2016-17": "13.2"}], "RE": [{"2014-15": "8.4"}, {"2015-16": "8.9"}]}}, {"state": "Sikkim", "figures": {"A": [{"2013-14": "36.5"}, {"2014-15": "23.5"}], "BE": [{"2014-15": "21.8"}, {"2015-16": "35.2"}, {"2016-17": "21.7"}], "RE": [{"2014-15": "23.2"}, {"2015-16": "26"}]}}, {"state": "Tamil Nadu", "figures": {"A": [{"2013-14": "5.5"}, {"2014-15": "3.6"}], "BE": [{"2014-15": "3.5"}, {"2015-16": "1.5"}, {"2016-17": "1.3"}], "RE": [{"2014-15": "3.1"}, {"2015-16": "2.7"}]}}, {"state": "Telangana", "figures": {"A": [{"2013-14": ""}, {"2014-15": "3.9"}], "BE": [{"2014-15": "15.2"}, {"2015-16": "14.3"}, {"2016-17": "5.8"}], "RE": [{"2014-15": "15.2"}, {"2015-16": "9.8"}]}}, {"state": "Tripura", "figures": {"A": [{"2013-14": "15"}, {"2014-15": "10.1"}], "BE": [{"2014-15": "6"}, {"2015-16": "19.7"}, {"2016-17": "5.4"}], "RE": [{"2014-15": "20.3"}, {"2015-16": "34.7"}]}}, {"state": "Uttar Pradesh", "figures": {"A": [{"2013-14": "14.4"}, {"2014-15": "15.7"}], "BE": [{"2014-15": "21"}, {"2015-16": "13"}, {"2016-17": "19.1"}], "RE": [{"2014-15": "21.8"}, {"2015-16": "15.6"}]}}, {"state": "Uttarakhand", "figures": {"A": [{"2013-14": "14.4"}, {"2014-15": "17.3"}], "BE": [{"2014-15": "16.2"}, {"2015-16": "1.8"}, {"2016-17": "5.8"}], "RE": [{"2014-15": "15.2"}, {"2015-16": "8.9"}]}}, {"state": "West Bengal", "figures": {"A": [{"2013-14": "12.1"}, {"2014-15": "17"}], "BE": [{"2014-15": "23.9"}, {"2015-16": "20"}, {"2016-17": "20.5"}], "RE": [{"2014-15": "13.7"}, {"2015-16": "25.9"}]}}], "indicator": "Capital Expenditure (including Loans & Advances ) as % of Total Sector Expenditure", "slugIndicator": "capital_expenditure_including_loans_advances_as_of_total_sector_expenditure", "unit": "Percentage"}], "slugSector": "health"}, {"sector": " Education", "subIndicators": [{"stateFigures": [{"state": "Andhra Pradesh", "figures": {"A": [{"2013-14": "18731.4"}, {"2014-15": ""}], "BE": [{"2014-15": "15884.5"}, {"2015-16": "18560.1"}, {"2016-17": "21099.1"}], "RE": [{"2014-15": "15285.4"}, {"2015-16": "17159.9"}]}}, {"state": "Assam", "figures": {"A": [{"2013-14": "8659.9"}, {"2014-15": "11343.9"}], "BE": [{"2014-15": "12924.2"}, {"2015-16": "14572.4"}, {"2016-17": "15875"}], "RE": [{"2014-15": "13634.5"}, {"2015-16": "17420.9"}]}}, {"state": "Bihar", "figures": {"A": [{"2013-14": "14955.8"}, {"2014-15": "16459.4"}], "BE": [{"2014-15": "24922.7"}, {"2015-16": "22279.3"}, {"2016-17": "22250.3"}], "RE": [{"2014-15": "26083.6"}, {"2015-16": "24880.8"}]}}, {"state": "Chhattisgarh", "figures": {"A": [{"2013-14": "5631.7"}, {"2014-15": "5701.6"}], "BE": [{"2014-15": "7600.4"}, {"2015-16": "8388"}, {"2016-17": "11940.4"}], "RE": [{"2014-15": "7666.5"}, {"2015-16": "8974.7"}]}}, {"state": "Delhi", "figures": {"A": [{"2013-14": "4783.6"}, {"2014-15": "5196.9"}], "BE": [{"2014-15": "5955.2"}, {"2015-16": "7526.1"}, {"2016-17": "8641.8"}], "RE": [{"2014-15": "5533.4"}, {"2015-16": "6509.1"}]}}, {"state": "Gujarat", "figures": {"A": [{"2013-14": "17947.5"}, {"2014-15": "20388.5"}], "BE": [{"2014-15": "21461.4"}, {"2015-16": "20883.8"}, {"2016-17": "22069.3"}], "RE": [{"2014-15": "20695.6"}, {"2015-16": "22333.7"}]}}, {"state": "Haryana", "figures": {"A": [{"2013-14": "7532.5"}, {"2014-15": "9479.2"}], "BE": [{"2014-15": "10380.9"}, {"2015-16": "12451.8"}, {"2016-17": "13891.5"}], "RE": [{"2014-15": "10991.8"}, {"2015-16": "11518.3"}]}}, {"state": "Himachal Pradesh", "figures": {"A": [{"2013-14": "3295.6"}, {"2014-15": "3749.5"}], "BE": [{"2014-15": "3952.8"}, {"2015-16": "4695.9"}, {"2016-17": "5345.1"}], "RE": [{"2014-15": "3749.5"}, {"2015-16": "3756.4"}]}}, {"state": "Jammu and Kashmir", "figures": {"A": [{"2013-14": "3215.1"}, {"2014-15": "3075.1"}], "BE": [{"2014-15": "6285.6"}, {"2015-16": "6031.1"}, {"2016-17": "9198"}], "RE": [{"2014-15": "5563.8"}, {"2015-16": "7293.3"}]}}, {"state": "Jharkhand", "figures": {"A": [{"2013-14": "3951"}, {"2014-15": "5747.8"}], "BE": [{"2014-15": "8554.8"}, {"2015-16": "8655.3"}, {"2016-17": "9541.4"}], "RE": [{"2014-15": "7194"}, {"2015-16": "8428.6"}]}}, {"state": "Karnataka", "figures": {"A": [{"2013-14": "16731.9"}, {"2014-15": "18613.9"}], "BE": [{"2014-15": "21155.6"}, {"2015-16": "20546.8"}, {"2016-17": "20825.4"}], "RE": [{"2014-15": "21249.6"}, {"2015-16": "20658.1"}]}}, {"state": "Kerala", "figures": {"A": [{"2013-14": "12046.2"}, {"2014-15": "13230"}], "BE": [{"2014-15": "14213.9"}, {"2015-16": "16657.4"}, {"2016-17": "17351.2"}], "RE": [{"2014-15": "13627.6"}, {"2015-16": "14387.6"}]}}, {"state": "Madhya Pradesh", "figures": {"A": [{"2013-14": "8421.2"}, {"2014-15": "10420.9"}], "BE": [{"2014-15": "12966.5"}, {"2015-16": "14443.5"}, {"2016-17": "15465.4"}], "RE": [{"2014-15": "12374.3"}, {"2015-16": "12065.7"}]}}, {"state": "Maharashtra", "figures": {"A": [{"2013-14": "40259.9"}, {"2014-15": "41789.5"}], "BE": [{"2014-15": "43678.2"}, {"2015-16": "47913.7"}, {"2016-17": "49948.2"}], "RE": [{"2014-15": "43892.8"}, {"2015-16": "48218.3"}]}}, {"state": "Meghalaya", "figures": {"A": [{"2013-14": "1109.7"}, {"2014-15": "1298.4"}], "BE": [{"2014-15": "3292.3"}, {"2015-16": "1453.6"}, {"2016-17": "1586.9"}], "RE": [{"2014-15": "3292.3"}, {"2015-16": "1453.6"}]}}, {"state": "Mizoram", "figures": {"A": [{"2013-14": "965.2"}, {"2014-15": "1163.7"}], "BE": [{"2014-15": "1068.1"}, {"2015-16": "1169.2"}, {"2016-17": "1173"}], "RE": [{"2014-15": "1233.2"}, {"2015-16": "1309.9"}]}}, {"state": "Odisha", "figures": {"A": [{"2013-14": "8500.4"}, {"2014-15": "10261"}], "BE": [{"2014-15": "12039"}, {"2015-16": "12680.1"}, {"2016-17": "14026"}], "RE": [{"2014-15": "11506.6"}, {"2015-16": "12104.4"}]}}, {"state": "Punjab", "figures": {"A": [{"2013-14": "7144.9"}, {"2014-15": "8002.4"}], "BE": [{"2014-15": "8559.1"}, {"2015-16": "9684.7"}, {"2016-17": "10384.4"}], "RE": [{"2014-15": "8686.8"}, {"2015-16": "9587.5"}]}}, {"state": "Rajasthan", "figures": {"A": [{"2013-14": "15138.3"}, {"2014-15": "19419.3"}], "BE": [{"2014-15": "22873.4"}, {"2015-16": "23824.6"}, {"2016-17": "25461.8"}], "RE": [{"2014-15": "20573"}, {"2015-16": "22391.3"}]}}, {"state": "Sikkim", "figures": {"A": [{"2013-14": "439.3"}, {"2014-15": "505.5"}], "BE": [{"2014-15": "587.9"}, {"2015-16": "576.4"}, {"2016-17": "645.1"}], "RE": [{"2014-15": "590"}, {"2015-16": "596.7"}]}}, {"state": "Tamil Nadu", "figures": {"A": [{"2013-14": "20101.4"}, {"2014-15": "23760.8"}], "BE": [{"2014-15": "21723.8"}, {"2015-16": "25080.3"}, {"2016-17": "28130.5"}], "RE": [{"2014-15": "23710.2"}, {"2015-16": "26418.6"}]}}, {"state": "Telangana", "figures": {"A": [{"2013-14": ""}, {"2014-15": "7192.9"}], "BE": [{"2014-15": "11250.5"}, {"2015-16": "11506.5"}, {"2016-17": "10916.8"}], "RE": [{"2014-15": "11250.5"}, {"2015-16": "10418.2"}]}}, {"state": "Tripura", "figures": {"A": [{"2013-14": "1425.5"}, {"2014-15": "1755.5"}], "BE": [{"2014-15": "1846.4"}, {"2015-16": "2107.1"}, {"2016-17": "1432.9"}], "RE": [{"2014-15": "1842.3"}, {"2015-16": "2061"}]}}, {"state": "Uttar Pradesh", "figures": {"A": [{"2013-14": "29424.8"}, {"2014-15": "32166"}], "BE": [{"2014-15": "38198.8"}, {"2015-16": "44092.5"}, {"2016-17": "50411.7"}], "RE": [{"2014-15": "34558.8"}, {"2015-16": "41336.2"}]}}, {"state": "Uttarakhand", "figures": {"A": [{"2013-14": "4270.5"}, {"2014-15": "5104.5"}], "BE": [{"2014-15": "5308.8"}, {"2015-16": "5675.5"}, {"2016-17": "6919.8"}], "RE": [{"2014-15": "5503.1"}, {"2015-16": "5840.5"}]}}, {"state": "West Bengal", "figures": {"A": [{"2013-14": "18457.8"}, {"2014-15": "20318.8"}], "BE": [{"2014-15": "23269.8"}, {"2015-16": "24930.2"}, {"2016-17": "26777.2"}], "RE": [{"2014-15": "20006.4"}, {"2015-16": "21424.7"}]}}], "indicator": "Total Sector Expenditure", "slugIndicator": "total_sector_expenditure", "unit": "INR (in Crores)"}, {"stateFigures": [{"state": "Andhra Pradesh", "figures": {"A": [{"2013-14": "13.7"}, {"2014-15": ""}], "BE": [{"2014-15": "14.2"}, {"2015-16": "16.4"}, {"2016-17": "15.5"}], "RE": [{"2014-15": "13.6"}, {"2015-16": "15.3"}]}}, {"state": "Assam", "figures": {"A": [{"2013-14": "23.3"}, {"2014-15": "24.2"}], "BE": [{"2014-15": "22.3"}, {"2015-16": "22"}, {"2016-17": "20.3"}], "RE": [{"2014-15": "21"}, {"2015-16": "23.3"}]}}, {"state": "Bihar", "figures": {"A": [{"2013-14": "18.6"}, {"2014-15": "17.4"}], "BE": [{"2014-15": "21.3"}, {"2015-16": "18.5"}, {"2016-17": "15.4"}], "RE": [{"2014-15": "19.7"}, {"2015-16": "18.7"}]}}, {"state": "Chhattisgarh", "figures": {"A": [{"2013-14": "14.5"}, {"2014-15": "12.3"}], "BE": [{"2014-15": "13.9"}, {"2015-16": "12.9"}, {"2016-17": "17"}], "RE": [{"2014-15": "13.9"}, {"2015-16": "13.6"}]}}, {"state": "Delhi", "figures": {"A": [{"2013-14": "14"}, {"2014-15": ""}], "BE": [{"2014-15": "16.2"}, {"2015-16": "18.3"}, {"2016-17": "18.5"}], "RE": [{"2014-15": "15.9"}, {"2015-16": ""}]}}, {"state": "Gujarat", "figures": {"A": [{"2013-14": "17.1"}, {"2014-15": "17.5"}], "BE": [{"2014-15": "16.3"}, {"2015-16": "15.2"}, {"2016-17": "14.7"}], "RE": [{"2014-15": "16.5"}, {"2015-16": "16.8"}]}}, {"state": "Haryana", "figures": {"A": [{"2013-14": "16.2"}, {"2014-15": "17.7"}], "BE": [{"2014-15": "17.5"}, {"2015-16": "18"}, {"2016-17": "15.6"}], "RE": [{"2014-15": "17.9"}, {"2015-16": "13.5"}]}}, {"state": "Himachal Pradesh", "figures": {"A": [{"2013-14": "15.2"}, {"2014-15": "14.9"}], "BE": [{"2014-15": "16.4"}, {"2015-16": "16.4"}, {"2016-17": "16.4"}], "RE": [{"2014-15": "15.5"}, {"2015-16": "13.8"}]}}, {"state": "Jammu and Kashmir", "figures": {"A": [{"2013-14": "9.8"}, {"2014-15": "8.6"}], "BE": [{"2014-15": "14.4"}, {"2015-16": "13"}, {"2016-17": "16.2"}], "RE": [{"2014-15": "12.9"}, {"2015-16": "14.7"}]}}, {"state": "Jharkhand", "figures": {"A": [{"2013-14": "13"}, {"2014-15": "14.4"}], "BE": [{"2014-15": "17"}, {"2015-16": "15.6"}, {"2016-17": "15"}], "RE": [{"2014-15": "14.2"}, {"2015-16": "15"}]}}, {"state": "Karnataka", "figures": {"A": [{"2013-14": "15.7"}, {"2014-15": "15"}], "BE": [{"2014-15": "16.1"}, {"2015-16": "15"}, {"2016-17": "13.3"}], "RE": [{"2014-15": "16.6"}, {"2015-16": "14.9"}]}}, {"state": "Kerala", "figures": {"A": [{"2013-14": "18.2"}, {"2014-15": "17.2"}], "BE": [{"2014-15": "17.9"}, {"2015-16": "17.5"}, {"2016-17": "16.1"}], "RE": [{"2014-15": "17.1"}, {"2015-16": "16.2"}]}}, {"state": "Madhya Pradesh", "figures": {"A": [{"2013-14": "9.8"}, {"2014-15": "10.4"}], "BE": [{"2014-15": "11.1"}, {"2015-16": "11"}, {"2016-17": "10.2"}], "RE": [{"2014-15": "10.4"}, {"2015-16": "9.1"}]}}, {"state": "Maharashtra", "figures": {"A": [{"2013-14": "22.8"}, {"2014-15": "21.1"}], "BE": [{"2014-15": "20.6"}, {"2015-16": "20.8"}, {"2016-17": "19.4"}], "RE": [{"2014-15": "20"}, {"2015-16": "20.3"}]}}, {"state": "Meghalaya", "figures": {"A": [{"2013-14": "15.9"}, {"2014-15": "17"}], "BE": [{"2014-15": "27.7"}, {"2015-16": "15.2"}, {"2016-17": "15.1"}], "RE": [{"2014-15": "27.7"}, {"2015-16": "15.2"}]}}, {"state": "Mizoram", "figures": {"A": [{"2013-14": "17.1"}, {"2014-15": "15"}], "BE": [{"2014-15": "16"}, {"2015-16": "15.1"}, {"2016-17": "14.3"}], "RE": [{"2014-15": "16.4"}, {"2015-16": "15.5"}]}}, {"state": "Odisha", "figures": {"A": [{"2013-14": "15.1"}, {"2014-15": "15.4"}], "BE": [{"2014-15": "15"}, {"2015-16": "15"}, {"2016-17": "14.9"}], "RE": [{"2014-15": "14.8"}, {"2015-16": "14.3"}]}}, {"state": "Punjab", "figures": {"A": [{"2013-14": "11.8"}, {"2014-15": "11"}], "BE": [{"2014-15": "11.6"}, {"2015-16": "12.2"}, {"2016-17": "12"}], "RE": [{"2014-15": "11.6"}, {"2015-16": "12.2"}]}}, {"state": "Rajasthan", "figures": {"A": [{"2013-14": "16.1"}, {"2014-15": "16.7"}], "BE": [{"2014-15": "17.4"}, {"2015-16": "17.3"}, {"2016-17": "16.8"}], "RE": [{"2014-15": "16.3"}, {"2015-16": "16.3"}]}}, {"state": "Sikkim", "figures": {"A": [{"2013-14": "10"}, {"2014-15": "10.7"}], "BE": [{"2014-15": "9.1"}, {"2015-16": "10.8"}, {"2016-17": "11.8"}], "RE": [{"2014-15": "8.9"}, {"2015-16": "11"}]}}, {"state": "Tamil Nadu", "figures": {"A": [{"2013-14": "15.6"}, {"2014-15": "15.9"}], "BE": [{"2014-15": "14.2"}, {"2015-16": "14.4"}, {"2016-17": "14.9"}], "RE": [{"2014-15": "14.8"}, {"2015-16": "15.5"}]}}, {"state": "Telangana", "figures": {"A": [{"2013-14": ""}, {"2014-15": "11.5"}], "BE": [{"2014-15": "11.5"}, {"2015-16": "9.9"}, {"2016-17": "8.4"}], "RE": [{"2014-15": "11.5"}, {"2015-16": "10.4"}]}}, {"state": "Tripura", "figures": {"A": [{"2013-14": "18.2"}, {"2014-15": "16.6"}], "BE": [{"2014-15": "14.9"}, {"2015-16": "14.1"}, {"2016-17": "9.4"}], "RE": [{"2014-15": "14.9"}, {"2015-16": "15.9"}]}}, {"state": "Uttar Pradesh", "figures": {"A": [{"2013-14": "14.7"}, {"2014-15": "13.7"}], "BE": [{"2014-15": "13.9"}, {"2015-16": "14.6"}, {"2016-17": "14.5"}], "RE": [{"2014-15": "13.1"}, {"2015-16": "12.5"}]}}, {"state": "Uttarakhand", "figures": {"A": [{"2013-14": "19.3"}, {"2014-15": "18.8"}], "BE": [{"2014-15": "17.5"}, {"2015-16": "17.4"}, {"2016-17": "17.1"}], "RE": [{"2014-15": "17"}, {"2015-16": "17.4"}]}}, {"state": "West Bengal", "figures": {"A": [{"2013-14": "17"}, {"2014-15": "16.5"}], "BE": [{"2014-15": "17.9"}, {"2015-16": "18"}, {"2016-17": "16.8"}], "RE": [{"2014-15": "15.4"}, {"2015-16": "14.8"}]}}], "indicator": "Total Sector Expenditure as % of State Budget", "slugIndicator": "total_sector_expenditure_as_of_state_budget", "unit": "Percentage"}, {"stateFigures": [{"state": "Andhra Pradesh", "figures": {"A": [{"2013-14": "2172.3"}, {"2014-15": ""}], "BE": [{"2014-15": "1826.8"}, {"2015-16": "2117.2"}, {"2016-17": "2387.8"}], "RE": [{"2014-15": "1757.9"}, {"2015-16": "1957.5"}]}}, {"state": "Assam", "figures": {"A": [{"2013-14": "2765.1"}, {"2014-15": "3579.3"}], "BE": [{"2014-15": "4077.9"}, {"2015-16": "4544.1"}, {"2016-17": "4892.3"}], "RE": [{"2014-15": "4302.1"}, {"2015-16": "5432.3"}]}}, {"state": "Bihar", "figures": {"A": [{"2013-14": "1491.3"}, {"2014-15": "1621.2"}], "BE": [{"2014-15": "2454.8"}, {"2015-16": "2168.7"}, {"2016-17": "2141.3"}], "RE": [{"2014-15": "2569.2"}, {"2015-16": "2421.9"}]}}, {"state": "Chhattisgarh", "figures": {"A": [{"2013-14": "2260.9"}, {"2014-15": "2259.7"}], "BE": [{"2014-15": "3012.2"}, {"2015-16": "3282.3"}, {"2016-17": "4613.9"}], "RE": [{"2014-15": "3038.4"}, {"2015-16": "3511.9"}]}}, {"state": "Delhi", "figures": {"A": [{"2013-14": "2449.5"}, {"2014-15": "2586.6"}], "BE": [{"2014-15": "2964"}, {"2015-16": "3640"}, {"2016-17": "4060"}], "RE": [{"2014-15": "2754"}, {"2015-16": "3148.1"}]}}, {"state": "Gujarat", "figures": {"A": [{"2013-14": "2963.2"}, {"2014-15": "3324.4"}], "BE": [{"2014-15": "3499.4"}, {"2015-16": "3364"}, {"2016-17": "3512.8"}], "RE": [{"2014-15": "3374.5"}, {"2015-16": "3597.5"}]}}, {"state": "Haryana", "figures": {"A": [{"2013-14": "2867.8"}, {"2014-15": "3553.6"}], "BE": [{"2014-15": "3891.6"}, {"2015-16": "4598.3"}, {"2016-17": "5055.7"}], "RE": [{"2014-15": "4120.6"}, {"2015-16": "4253.6"}]}}, {"state": "Himachal Pradesh", "figures": {"A": [{"2013-14": "4763.8"}, {"2014-15": "5373.3"}], "BE": [{"2014-15": "5664.6"}, {"2015-16": "6673.2"}, {"2016-17": "7533.6"}], "RE": [{"2014-15": "5373.3"}, {"2015-16": "5338.1"}]}}, {"state": "Jammu and Kashmir", "figures": {"A": [{"2013-14": "2677"}, {"2014-15": "2530.5"}], "BE": [{"2014-15": "5172.4"}, {"2015-16": "4907.7"}, {"2016-17": "7406.4"}], "RE": [{"2014-15": "4578.5"}, {"2015-16": "5934.8"}]}}, {"state": "Jharkhand", "figures": {"A": [{"2013-14": "1221.9"}, {"2014-15": "1754.2"}], "BE": [{"2014-15": "2610.9"}, {"2015-16": "2606.8"}, {"2016-17": "2835.3"}], "RE": [{"2014-15": "2195.6"}, {"2015-16": "2538.5"}]}}, {"state": "Karnataka", "figures": {"A": [{"2013-14": "2759.9"}, {"2014-15": "3040.8"}], "BE": [{"2014-15": "3456"}, {"2015-16": "3324.9"}, {"2016-17": "3338.8"}], "RE": [{"2014-15": "3471.4"}, {"2015-16": "3342.9"}]}}, {"state": "Kerala", "figures": {"A": [{"2013-14": "3438.4"}, {"2014-15": "3752.3"}], "BE": [{"2014-15": "4031.4"}, {"2015-16": "4695.8"}, {"2016-17": "4863.4"}], "RE": [{"2014-15": "3865.1"}, {"2015-16": "4055.9"}]}}, {"state": "Madhya Pradesh", "figures": {"A": [{"2013-14": "976.6"}, {"2014-15": "1198.5"}], "BE": [{"2014-15": "1491.2"}, {"2015-16": "1647.6"}, {"2016-17": "1750.3"}], "RE": [{"2014-15": "1423.1"}, {"2015-16": "1376.4"}]}}, {"state": "Maharashtra", "figures": {"A": [{"2013-14": "3479.8"}, {"2014-15": "3566"}], "BE": [{"2014-15": "3727.2"}, {"2015-16": "4038.2"}, {"2016-17": "4159.7"}], "RE": [{"2014-15": "3745.5"}, {"2015-16": "4063.8"}]}}, {"state": "Meghalaya", "figures": {"A": [{"2013-14": "4137.8"}, {"2014-15": "4787.7"}], "BE": [{"2014-15": "12139.6"}, {"2015-16": "5299.4"}, {"2016-17": "5722.8"}], "RE": [{"2014-15": "12139.6"}, {"2015-16": "5299.4"}]}}, {"state": "Mizoram", "figures": {"A": [{"2013-14": "9389.4"}, {"2014-15": "11200.3"}], "BE": [{"2014-15": "10280.1"}, {"2015-16": "11125"}, {"2016-17": "11035.1"}], "RE": [{"2014-15": "11868.8"}, {"2015-16": "12463.3"}]}}, {"state": "Odisha", "figures": {"A": [{"2013-14": "2050.6"}, {"2014-15": "2455"}], "BE": [{"2014-15": "2880.4"}, {"2015-16": "3009.2"}, {"2016-17": "3301.9"}], "RE": [{"2014-15": "2753"}, {"2015-16": "2872.6"}]}}, {"state": "Punjab", "figures": {"A": [{"2013-14": "2526.6"}, {"2014-15": "2801.2"}], "BE": [{"2014-15": "2996"}, {"2015-16": "3357.4"}, {"2016-17": "3567"}], "RE": [{"2014-15": "3040.7"}, {"2015-16": "3323.7"}]}}, {"state": "Rajasthan", "figures": {"A": [{"2013-14": "2164.5"}, {"2014-15": "2736.3"}], "BE": [{"2014-15": "3223"}, {"2015-16": "3310.2"}, {"2016-17": "3490.4"}], "RE": [{"2014-15": "2898.9"}, {"2015-16": "3111.1"}]}}, {"state": "Sikkim", "figures": {"A": [{"2013-14": "7018.2"}, {"2014-15": "7985.3"}], "BE": [{"2014-15": "9287.1"}, {"2015-16": "9006"}, {"2016-17": "9970.5"}], "RE": [{"2014-15": "9320.9"}, {"2015-16": "9323"}]}}, {"state": "Tamil Nadu", "figures": {"A": [{"2013-14": "2944.6"}, {"2014-15": "3460.9"}], "BE": [{"2014-15": "3164.2"}, {"2015-16": "3633.2"}, {"2016-17": "4053.6"}], "RE": [{"2014-15": "3453.6"}, {"2015-16": "3827.1"}]}}, {"state": "Telangana", "figures": {"A": [{"2013-14": ""}, {"2014-15": ""}], "BE": [{"2014-15": ""}, {"2015-16": ""}, {"2016-17": ""}], "RE": [{"2014-15": ""}, {"2015-16": ""}]}}, {"state": "Tripura", "figures": {"A": [{"2013-14": "3852.8"}, {"2014-15": "4691.4"}], "BE": [{"2014-15": "4934.4"}, {"2015-16": "5568.4"}, {"2016-17": "3745.2"}], "RE": [{"2014-15": "4923.4"}, {"2015-16": "5446.6"}]}}, {"state": "Uttar Pradesh", "figures": {"A": [{"2013-14": "1416.4"}, {"2014-15": "1522.9"}], "BE": [{"2014-15": "1808.5"}, {"2015-16": "2054"}, {"2016-17": "2311.5"}], "RE": [{"2014-15": "1636.2"}, {"2015-16": "1925.6"}]}}, {"state": "Uttarakhand", "figures": {"A": [{"2013-14": "4176.9"}, {"2014-15": "4926.1"}], "BE": [{"2014-15": "5123.4"}, {"2015-16": "5405.8"}, {"2016-17": "6508.5"}], "RE": [{"2014-15": "5310.9"}, {"2015-16": "5562.9"}]}}, {"state": "West Bengal", "figures": {"A": [{"2013-14": "2025.6"}, {"2014-15": "2210.5"}], "BE": [{"2014-15": "2531.5"}, {"2015-16": "2688.6"}, {"2016-17": "2862.3"}], "RE": [{"2014-15": "2176.5"}, {"2015-16": "2310.6"}]}}], "indicator": "Per Capita Expenditure on Sector ", "slugIndicator": "per_capita_expenditure_on_sector", "unit": "INR Rs."}, {"stateFigures": [{"state": "Andhra Pradesh", "figures": {"A": [{"2013-14": "98.7"}, {"2014-15": ""}], "BE": [{"2014-15": "98"}, {"2015-16": "98.8"}, {"2016-17": "97.2"}], "RE": [{"2014-15": "98"}, {"2015-16": "99"}]}}, {"state": "Assam", "figures": {"A": [{"2013-14": "100"}, {"2014-15": "100"}], "BE": [{"2014-15": "100"}, {"2015-16": "100"}, {"2016-17": "100"}], "RE": [{"2014-15": "100"}, {"2015-16": "100"}]}}, {"state": "Bihar", "figures": {"A": [{"2013-14": "95.5"}, {"2014-15": "98.4"}], "BE": [{"2014-15": "95.6"}, {"2015-16": "94.2"}, {"2016-17": "97.5"}], "RE": [{"2014-15": "95.5"}, {"2015-16": "96"}]}}, {"state": "Chhattisgarh", "figures": {"A": [{"2013-14": "96"}, {"2014-15": "94.9"}], "BE": [{"2014-15": "93.8"}, {"2015-16": "91.9"}, {"2016-17": "93.9"}], "RE": [{"2014-15": "93.8"}, {"2015-16": "91.6"}]}}, {"state": "Delhi", "figures": {"A": [{"2013-14": "98.9"}, {"2014-15": "99.3"}], "BE": [{"2014-15": "96.4"}, {"2015-16": "90.4"}, {"2016-17": "91.7"}], "RE": [{"2014-15": "98.7"}, {"2015-16": "91.5"}]}}, {"state": "Gujarat", "figures": {"A": [{"2013-14": "95.8"}, {"2014-15": "95.5"}], "BE": [{"2014-15": "88.4"}, {"2015-16": "94.2"}, {"2016-17": "95.4"}], "RE": [{"2014-15": "94.5"}, {"2015-16": "95.7"}]}}, {"state": "Haryana", "figures": {"A": [{"2013-14": "97.9"}, {"2014-15": "98"}], "BE": [{"2014-15": "97.9"}, {"2015-16": "98"}, {"2016-17": "98.2"}], "RE": [{"2014-15": "98"}, {"2015-16": "98.2"}]}}, {"state": "Himachal Pradesh", "figures": {"A": [{"2013-14": "97.1"}, {"2014-15": "98.7"}], "BE": [{"2014-15": "98.9"}, {"2015-16": "98.9"}, {"2016-17": "98.5"}], "RE": [{"2014-15": "98.7"}, {"2015-16": "96.7"}]}}, {"state": "Jammu and Kashmir", "figures": {"A": [{"2013-14": "100"}, {"2014-15": "99.8"}], "BE": [{"2014-15": "86.1"}, {"2015-16": "89.7"}, {"2016-17": "81"}], "RE": [{"2014-15": "89.1"}, {"2015-16": "90.8"}]}}, {"state": "Jharkhand", "figures": {"A": [{"2013-14": "96.4"}, {"2014-15": "99"}], "BE": [{"2014-15": "98"}, {"2015-16": "98.1"}, {"2016-17": "98"}], "RE": [{"2014-15": "97.6"}, {"2015-16": "98"}]}}, {"state": "Karnataka", "figures": {"A": [{"2013-14": "97.7"}, {"2014-15": "98.3"}], "BE": [{"2014-15": "96.7"}, {"2015-16": "96.6"}, {"2016-17": "96"}], "RE": [{"2014-15": "96.5"}, {"2015-16": "96.4"}]}}, {"state": "Kerala", "figures": {"A": [{"2013-14": "98.3"}, {"2014-15": "97.7"}], "BE": [{"2014-15": "97.7"}, {"2015-16": "97.9"}, {"2016-17": "97.9"}], "RE": [{"2014-15": "97.4"}, {"2015-16": "96.8"}]}}, {"state": "Madhya Pradesh", "figures": {"A": [{"2013-14": "99.1"}, {"2014-15": "97.8"}], "BE": [{"2014-15": "98"}, {"2015-16": "95.6"}, {"2016-17": "93.4"}], "RE": [{"2014-15": "97.5"}, {"2015-16": "92.3"}]}}, {"state": "Maharashtra", "figures": {"A": [{"2013-14": "99.9"}, {"2014-15": "99.9"}], "BE": [{"2014-15": "99.6"}, {"2015-16": "99.6"}, {"2016-17": "99.8"}], "RE": [{"2014-15": "99.6"}, {"2015-16": "99.6"}]}}, {"state": "Meghalaya", "figures": {"A": [{"2013-14": "100"}, {"2014-15": "100"}], "BE": [{"2014-15": "99.1"}, {"2015-16": "97.9"}, {"2016-17": "100"}], "RE": [{"2014-15": "99.1"}, {"2015-16": "97.9"}]}}, {"state": "Mizoram", "figures": {"A": [{"2013-14": "97"}, {"2014-15": "98.1"}], "BE": [{"2014-15": "98.6"}, {"2015-16": "98.8"}, {"2016-17": "100"}], "RE": [{"2014-15": "98"}, {"2015-16": "98.2"}]}}, {"state": "Odisha", "figures": {"A": [{"2013-14": "97.7"}, {"2014-15": "95.8"}], "BE": [{"2014-15": "96"}, {"2015-16": "94.9"}, {"2016-17": "96.4"}], "RE": [{"2014-15": "95.1"}, {"2015-16": "94.5"}]}}, {"state": "Punjab", "figures": {"A": [{"2013-14": "94.9"}, {"2014-15": "98.1"}], "BE": [{"2014-15": "93.1"}, {"2015-16": "95.9"}, {"2016-17": "96.3"}], "RE": [{"2014-15": "96.4"}, {"2015-16": "96.5"}]}}, {"state": "Rajasthan", "figures": {"A": [{"2013-14": "99.7"}, {"2014-15": "99.7"}], "BE": [{"2014-15": "99.4"}, {"2015-16": "99.5"}, {"2016-17": "99.1"}], "RE": [{"2014-15": "99.6"}, {"2015-16": "99.2"}]}}, {"state": "Sikkim", "figures": {"A": [{"2013-14": "89"}, {"2014-15": "93.1"}], "BE": [{"2014-15": "87.7"}, {"2015-16": "90.4"}, {"2016-17": "92.4"}], "RE": [{"2014-15": "87.6"}, {"2015-16": "91.6"}]}}, {"state": "Tamil Nadu", "figures": {"A": [{"2013-14": "98.5"}, {"2014-15": "97.9"}], "BE": [{"2014-15": "97.2"}, {"2015-16": "96.9"}, {"2016-17": "96.2"}], "RE": [{"2014-15": "97.8"}, {"2015-16": "95.5"}]}}, {"state": "Telangana", "figures": {"A": [{"2013-14": ""}, {"2014-15": "97.3"}], "BE": [{"2014-15": "96.5"}, {"2015-16": "97.2"}, {"2016-17": "97.7"}], "RE": [{"2014-15": "96.5"}, {"2015-16": "98.2"}]}}, {"state": "Tripura", "figures": {"A": [{"2013-14": "93.2"}, {"2014-15": "94.9"}], "BE": [{"2014-15": "95"}, {"2015-16": "95.4"}, {"2016-17": "93.2"}], "RE": [{"2014-15": "93"}, {"2015-16": "95"}]}}, {"state": "Uttar Pradesh", "figures": {"A": [{"2013-14": "98.6"}, {"2014-15": "97.3"}], "BE": [{"2014-15": "96.6"}, {"2015-16": "95.8"}, {"2016-17": "95.2"}], "RE": [{"2014-15": "96.7"}, {"2015-16": "95.3"}]}}, {"state": "Uttarakhand", "figures": {"A": [{"2013-14": "93.2"}, {"2014-15": "91.9"}], "BE": [{"2014-15": "93.2"}, {"2015-16": "92.3"}, {"2016-17": "92.8"}], "RE": [{"2014-15": "89.4"}, {"2015-16": "90.6"}]}}, {"state": "West Bengal", "figures": {"A": [{"2013-14": "96.6"}, {"2014-15": "97.6"}], "BE": [{"2014-15": "90.1"}, {"2015-16": "97.1"}, {"2016-17": "95.7"}], "RE": [{"2014-15": "97.3"}, {"2015-16": "96.8"}]}}], "indicator": "Revenue Expenditure as % of Total Sector Expenditure", "slugIndicator": "revenue_expenditure_as_of_total_sector_expenditure", "unit": "Percentage"}, {"stateFigures": [{"state": "Andhra Pradesh", "figures": {"A": [{"2013-14": "1.3"}, {"2014-15": ""}], "BE": [{"2014-15": "2"}, {"2015-16": "1.2"}, {"2016-17": "2.8"}], "RE": [{"2014-15": "2"}, {"2015-16": "1"}]}}, {"state": "Assam", "figures": {"A": [{"2013-14": "0"}, {"2014-15": "0"}], "BE": [{"2014-15": "0"}, {"2015-16": "0"}, {"2016-17": "0"}], "RE": [{"2014-15": "0"}, {"2015-16": "0"}]}}, {"state": "Bihar", "figures": {"A": [{"2013-14": "4.5"}, {"2014-15": "1.6"}], "BE": [{"2014-15": "4.2"}, {"2015-16": "5.8"}, {"2016-17": "2.5"}], "RE": [{"2014-15": "4.2"}, {"2015-16": "4"}]}}, {"state": "Chhattisgarh", "figures": {"A": [{"2013-14": "4"}, {"2014-15": "5.1"}], "BE": [{"2014-15": "6.2"}, {"2015-16": "8.1"}, {"2016-17": "6.1"}], "RE": [{"2014-15": "6.2"}, {"2015-16": "8.4"}]}}, {"state": "Delhi", "figures": {"A": [{"2013-14": "1.1"}, {"2014-15": "0.7"}], "BE": [{"2014-15": "3.6"}, {"2015-16": "9.6"}, {"2016-17": "8.3"}], "RE": [{"2014-15": "1.3"}, {"2015-16": "8.5"}]}}, {"state": "Gujarat", "figures": {"A": [{"2013-14": "4.2"}, {"2014-15": "4.5"}], "BE": [{"2014-15": "11.6"}, {"2015-16": "5.8"}, {"2016-17": "4.6"}], "RE": [{"2014-15": "5.5"}, {"2015-16": "4.3"}]}}, {"state": "Haryana", "figures": {"A": [{"2013-14": "2.1"}, {"2014-15": "2"}], "BE": [{"2014-15": "2.1"}, {"2015-16": "2"}, {"2016-17": "1.8"}], "RE": [{"2014-15": "2"}, {"2015-16": "1.8"}]}}, {"state": "Himachal Pradesh", "figures": {"A": [{"2013-14": "2.9"}, {"2014-15": "1.3"}], "BE": [{"2014-15": "1.1"}, {"2015-16": "1.1"}, {"2016-17": "1.5"}], "RE": [{"2014-15": "1.3"}, {"2015-16": "3.3"}]}}, {"state": "Jammu and Kashmir", "figures": {"A": [{"2013-14": "0"}, {"2014-15": "0.2"}], "BE": [{"2014-15": "13.9"}, {"2015-16": "10.3"}, {"2016-17": "19"}], "RE": [{"2014-15": "10.9"}, {"2015-16": "9.2"}]}}, {"state": "Jharkhand", "figures": {"A": [{"2013-14": "3.6"}, {"2014-15": "1"}], "BE": [{"2014-15": "2"}, {"2015-16": "1.9"}, {"2016-17": "2"}], "RE": [{"2014-15": "2.4"}, {"2015-16": "2"}]}}, {"state": "Karnataka", "figures": {"A": [{"2013-14": "2.3"}, {"2014-15": "1.7"}], "BE": [{"2014-15": "3.3"}, {"2015-16": "3.4"}, {"2016-17": "4"}], "RE": [{"2014-15": "3.5"}, {"2015-16": "3.6"}]}}, {"state": "Kerala", "figures": {"A": [{"2013-14": "1.7"}, {"2014-15": "2.3"}], "BE": [{"2014-15": "2.3"}, {"2015-16": "2.1"}, {"2016-17": "2.1"}], "RE": [{"2014-15": "2.6"}, {"2015-16": "3.2"}]}}, {"state": "Madhya Pradesh", "figures": {"A": [{"2013-14": "0.9"}, {"2014-15": "2.2"}], "BE": [{"2014-15": "2"}, {"2015-16": "4.4"}, {"2016-17": "6.6"}], "RE": [{"2014-15": "2.5"}, {"2015-16": "7.7"}]}}, {"state": "Maharashtra", "figures": {"A": [{"2013-14": "0.1"}, {"2014-15": "0.1"}], "BE": [{"2014-15": "0.4"}, {"2015-16": "0.4"}, {"2016-17": "0.2"}], "RE": [{"2014-15": "0.4"}, {"2015-16": "0.4"}]}}, {"state": "Meghalaya", "figures": {"A": [{"2013-14": "0"}, {"2014-15": "0"}], "BE": [{"2014-15": "0.9"}, {"2015-16": "2.1"}, {"2016-17": "0"}], "RE": [{"2014-15": "0.9"}, {"2015-16": "2.1"}]}}, {"state": "Mizoram", "figures": {"A": [{"2013-14": "3"}, {"2014-15": "1.9"}], "BE": [{"2014-15": "1.4"}, {"2015-16": "1.2"}, {"2016-17": "0"}], "RE": [{"2014-15": "2"}, {"2015-16": "1.8"}]}}, {"state": "Odisha", "figures": {"A": [{"2013-14": "2.3"}, {"2014-15": "4.2"}], "BE": [{"2014-15": "4"}, {"2015-16": "5.1"}, {"2016-17": "3.6"}], "RE": [{"2014-15": "4.9"}, {"2015-16": "5.5"}]}}, {"state": "Punjab", "figures": {"A": [{"2013-14": "5.1"}, {"2014-15": "1.9"}], "BE": [{"2014-15": "6.9"}, {"2015-16": "4.1"}, {"2016-17": "3.7"}], "RE": [{"2014-15": "3.6"}, {"2015-16": "3.5"}]}}, {"state": "Rajasthan", "figures": {"A": [{"2013-14": "0.3"}, {"2014-15": "0.3"}], "BE": [{"2014-15": "0.6"}, {"2015-16": "0.5"}, {"2016-17": "0.9"}], "RE": [{"2014-15": "0.4"}, {"2015-16": "0.8"}]}}, {"state": "Sikkim", "figures": {"A": [{"2013-14": "11"}, {"2014-15": "6.9"}], "BE": [{"2014-15": "12.3"}, {"2015-16": "9.6"}, {"2016-17": "7.6"}], "RE": [{"2014-15": "12.4"}, {"2015-16": "8.4"}]}}, {"state": "Tamil Nadu", "figures": {"A": [{"2013-14": "1.5"}, {"2014-15": "2.1"}], "BE": [{"2014-15": "2.8"}, {"2015-16": "3.1"}, {"2016-17": "3.8"}], "RE": [{"2014-15": "2.2"}, {"2015-16": "4.5"}]}}, {"state": "Telangana", "figures": {"A": [{"2013-14": ""}, {"2014-15": "2.7"}], "BE": [{"2014-15": "3.5"}, {"2015-16": "2.8"}, {"2016-17": "2.3"}], "RE": [{"2014-15": "3.5"}, {"2015-16": "1.8"}]}}, {"state": "Tripura", "figures": {"A": [{"2013-14": "6.8"}, {"2014-15": "5.1"}], "BE": [{"2014-15": "5"}, {"2015-16": "4.6"}, {"2016-17": "6.8"}], "RE": [{"2014-15": "7"}, {"2015-16": "5"}]}}, {"state": "Uttar Pradesh", "figures": {"A": [{"2013-14": "1.4"}, {"2014-15": "2.7"}], "BE": [{"2014-15": "3.4"}, {"2015-16": "4.2"}, {"2016-17": "4.8"}], "RE": [{"2014-15": "3.3"}, {"2015-16": "4.7"}]}}, {"state": "Uttarakhand", "figures": {"A": [{"2013-14": "6.8"}, {"2014-15": "8.1"}], "BE": [{"2014-15": "6.8"}, {"2015-16": "7.7"}, {"2016-17": "7.2"}], "RE": [{"2014-15": "10.6"}, {"2015-16": "9.4"}]}}, {"state": "West Bengal", "figures": {"A": [{"2013-14": "3.4"}, {"2014-15": "2.4"}], "BE": [{"2014-15": "9.9"}, {"2015-16": "2.9"}, {"2016-17": "4.3"}], "RE": [{"2014-15": "2.7"}, {"2015-16": "3.2"}]}}], "indicator": "Capital Expenditure (including Loans & Advances ) as % of Total Sector Expenditure", "slugIndicator": "capital_expenditure_including_loans_advances_as_of_total_sector_expenditure", "unit": "Percentage"}], "slugSector": "education"}]; \ No newline at end of file diff --git a/src/data/expenditure_data_metadata.js b/src/data/expenditure_data_metadata.js new file mode 100644 index 0000000..fb67835 --- /dev/null +++ b/src/data/expenditure_data_metadata.js @@ -0,0 +1 @@ +export let expenditure_metadata = [{"sector": "Agriculture & Allied Activities", "indicator": "Total Sector Expenditure", "notes": "The data are compiled and aggregated from data of demand for grants documents. Thus, data compiled pertain to expenditure made through Dpartments/ Ministries of the respective States. These data may not, and usually should not match precisely with those of compiled as per Major Head ( major functions of the government).", "slugSector": "agriculture_allied_activities", "slugIndicator": "total_sector_expenditure", "source": "Expenditure Data for the Sector have been compiled from from Detailed Demand for Grants documents of the respective departments of the State Budgets of concerned States", "unit": "INR (in Crores)"}, {"sector": "Agriculture & Allied Activities", "indicator": "Total Sector Expenditure as % of State Budget", "notes": "", "slugSector": "agriculture_allied_activities", "slugIndicator": "total_sector_expenditure_as_of_state_budget", "source": "Total State Budget data have been compiled from Annual Financial Statement/ Budget-in-Brief/ Budget at a Glance documents for the respective States.", "unit": "Percentage"}, {"sector": "Agriculture & Allied Activities", "indicator": "Per Capita Expenditure on Sector", "notes": "Population figures are projections, not the actual numbers based on 2011 Census data.", "slugSector": "agriculture_allied_activities", "slugIndicator": "per_capita_expenditure_on_sector", "source": "Population data have been compiled from Census of India, 2011 from the document - Population Projections for India & States 2011-2016; OFFICE OF THE REGISTRAR GENERAL & CENSUS COMMISSIONER, INDIA.", "unit": "INR (in Crores)"}, {"sector": "Agriculture & Allied Activities", "indicator": "Revenue Expenditure as % of Total Sector Expenditure", "notes": "", "slugSector": "agriculture_allied_activities", "slugIndicator": "revenue_expenditure_as_of_total_sector_expenditure", "source": "State Budgets; Detailed Demand for Grants ( Plan and Non Plan Documents) ; Various Years. Revenue Expenditure and Total Sector I expenditure data have been collected from Detailed Demand for Grants of the relevant Departments/ Demand Nos for the concerned States.", "unit": "Percentage"}, {"sector": "Agriculture & Allied Activities", "indicator": "Capital Expenditure (including Loans & Advances ) as % of Total Sector Expenditure", "notes": "", "slugSector": "agriculture_allied_activities", "slugIndicator": "capital_expenditure_including_loans_advances_as_of_total_sector_expenditure", "source": "Capital Expenditure (including loans & advances) and Total Sector- I expenditure data have been compiled from Detailed Demand for Grants of the relevant Departments/ Demand Nos for the concerned States.", "unit": "Percentage"}, {"sector": "Cooperation & Food, Civil Supplies", "indicator": "Total Sector Expenditure", "notes": "The data are compiled and aggregated from data of demand for grants documents. Thus, data compiled pertain to expenditure made through Dpartments/ Ministries of the respective States. These data may not, and usually should not match precisely with those of compiled as per Major Head ( major functions of the government).", "slugSector": "cooperation_food_civil_supplies", "slugIndicator": "total_sector_expenditure", "source": "State Budgets; Detailed Demand for Grants ( Plan and Non Plan Documents) ; Various Years. Expenditure Data for the Sector have been taken from from Detailed Demand for Grants documents of the respective departments of Food & Civil Supplies and Department of Cooperation of the State.", "unit": "INR (in Crores)"}, {"sector": "Cooperation & Food, Civil Supplies", "indicator": "Total Sector Expenditure as % of State Budget", "notes": "", "slugSector": "cooperation_food_civil_supplies", "slugIndicator": "total_sector_expenditure_as_of_state_budget", "source": "Total State Budget data have been compiled from Annual Financial Statement/ Budget-in-Brief/ Budget at a Glance documents for the respective States.", "unit": "Percentage"}, {"sector": "Cooperation & Food, Civil Supplies", "indicator": "Per Capita Expenditure on Sector", "notes": "Population figures are projections, not the actual numbers based on 2011 Census data.", "slugSector": "cooperation_food_civil_supplies", "slugIndicator": "per_capita_expenditure_on_sector", "source": "Population data have been collected from Census of India, 2011 from the document - Population Projections for India & States 2011-2016; OFFICE OF THE REGISTRAR GENERAL & CENSUS COMMISSIONER, INDIA.", "unit": "INR (in Crores)"}, {"sector": "Cooperation & Food, Civil Supplies", "indicator": "Revenue Expenditure as % of Total Sector Expenditure", "notes": "", "slugSector": "cooperation_food_civil_supplies", "slugIndicator": "revenue_expenditure_as_of_total_sector_expenditure", "source": "State Budgets; Detailed Demand for Grants ( Plan and Non Plan Documents) ; Various Years. Revenue Expenditure and Total Sector II expenditure data have been noted from Detailed Demand for Grants of the relevant Departments/ Demand Nos for the concerned States.", "unit": "Percentage"}, {"sector": "Cooperation & Food, Civil Supplies", "indicator": "Capital Expenditure (including Loans & Advances ) as % of Total Sector Expenditure", "notes": "", "slugSector": "cooperation_food_civil_supplies", "slugIndicator": "capital_expenditure_including_loans_advances_as_of_total_sector_expenditure", "source": "Capital Expenditure (including loans & advances) and Total Sector- II expenditure data have been compiled from Detailed Demand for Grants of the relevant Departments/ Demand Nos for the concerned States.", "unit": "Percentage"}, {"sector": "Rural Development", "indicator": "Total Sector Expenditure", "notes": "The data are compiled and aggregated from data of demand for grants documents. Thus, data compiled pertain to expenditure made through Dpartments/ Ministries of the respective States. These data may not, and usually should not match precisely with those of compiled as per Major Head ( major functions of the government).", "slugSector": "rural_development", "slugIndicator": "total_sector_expenditure", "source": "State Budgets; Detailed Demand for Grants ( Plan and Non Plan Documents) ; Various Years. Expenditure Data for the Sector have been compiled from from Detailed Demand for Grants documents of the Ministry/ Department of Panchayati Raj Institutions (PRIs) of the State.", "unit": "INR (in Crores)"}, {"sector": "Rural Development", "indicator": "Total Sector Expenditure as % of State Budget", "notes": "", "slugSector": "rural_development", "slugIndicator": "total_sector_expenditure_as_of_state_budget", "source": "State Budgets; Detailed Demand for Grants ( Plan and Non Plan Documents) ; Various Years.Total State Budget data have been compiled from Annual Financial Statement/ Budget-in-Brief/ Budget at a Glance documents for the respective States.", "unit": "Percentage"}, {"sector": "Rural Development", "indicator": "Per Capita Expenditure on Sector", "notes": "Population figures are projections, not the actual numbers based on 2011 Census data.", "slugSector": "rural_development", "slugIndicator": "per_capita_expenditure_on_sector", "source": "Population data have been compiled from Census of India, 2011 from the document - Population Projections for India & States 2011-2016; OFFICE OF THE REGISTRAR GENERAL & CENSUS COMMISSIONER, INDIA.", "unit": "INR (in Crores)"}, {"sector": "Rural Development", "indicator": "Revenue Expenditure as % of Total Sector Expenditure", "notes": "", "slugSector": "rural_development", "slugIndicator": "revenue_expenditure_as_of_total_sector_expenditure", "source": "State Budgets; Detailed Demand for Grants ( Plan and Non Plan Documents) ; Various Years. Revenue Expenditure and Total Sector III expenditure data have been compiled from Detailed Demand for Grants of the relevant Departments/ Demand Nos for the concerned States.", "unit": "Percentage"}, {"sector": "Rural Development", "indicator": "Capital Expenditure (including Loans & Advances ) as % of Total Sector Expenditure", "notes": "", "slugSector": "rural_development", "slugIndicator": "capital_expenditure_including_loans_advances_as_of_total_sector_expenditure", "source": "Capital Expenditure (including loans & advances) and Total Sector- III expenditure data have been taken from Detailed Demand for Grants of the relevant Departments/ Demand Nos for the concerned States.", "unit": "Percentage"}, {"sector": "Panchayat", "indicator": "Total Sector Expenditure", "notes": "The data are compiled and aggregated from data of demand for grants documents. Thus, data compiled pertain to expenditure made through Dpartments/ Ministries of the respective States. These data may not, and usually should not match precisely with those of compiled as per Major Head ( major functions of the government).", "slugSector": "panchayat", "slugIndicator": "total_sector_expenditure", "source": "State Budgets; Detailed Demand for Grants ( Plan and Non Plan Documents) ; Various Years. Expenditure Data for the Sector have been compiled from from Detailed Demand for Grants documents of the respective Ministry/ Department of Rural Development of the concerned State.", "unit": "INR (in Crores)"}, {"sector": "Panchayat", "indicator": "Total Sector Expenditure as % of State Budget", "notes": "", "slugSector": "panchayat", "slugIndicator": "total_sector_expenditure_as_of_state_budget", "source": "Total State Budget data have been compiled from Annual Financial Statement/ Budget-in-Brief/ Budget at a Glance documents for the respective States.", "unit": "Percentage"}, {"sector": "Panchayat", "indicator": "Per Capita Expenditure on Sector", "notes": "Population figures are projections, not the actual numbers based on 2011 Census data.", "slugSector": "panchayat", "slugIndicator": "per_capita_expenditure_on_sector", "source": "Population data have been compiled from Census of India, 2011 from the document - Population Projections for India & States 2011-2016; OFFICE OF THE REGISTRAR GENERAL & CENSUS COMMISSIONER, INDIA.", "unit": "INR (in Crores)"}, {"sector": "Panchayat", "indicator": "Revenue Expenditure as % of Total Sector Expenditure", "notes": "", "slugSector": "panchayat", "slugIndicator": "revenue_expenditure_as_of_total_sector_expenditure", "source": "State Budgets; Detailed Demand for Grants ( Plan and Non Plan Documents) ; Various Years. Revenue Expenditure and Total Sector- IV expenditure data have been compiled from Detailed Demand for Grants of the relevant Departments/ Demand Nos for the concerned States.", "unit": "Percentage"}, {"sector": "Panchayat", "indicator": "Capital Expenditure (including Loans & Advances ) as % of Total Sector Expenditure", "notes": "", "slugSector": "panchayat", "slugIndicator": "capital_expenditure_including_loans_advances_as_of_total_sector_expenditure", "source": "Capital Expenditure (including loans & advances) and Total Sector- IV expenditure data have been compiled from Detailed Demand for Grants of the relevant Departments/ Demand Nos for the concerned States.", "unit": "Percentage"}, {"sector": "Power & Energy", "indicator": "Total Sector Expenditure", "notes": "The data are compiled and aggregated from data of demand for grants documents. Thus, data compiled pertain to expenditure made through Dpartments/ Ministries of the respective States. These data may not, and usually should not match precisely with those of compiled as per Major Head ( major functions of the government).", "slugSector": "power_energy", "slugIndicator": "total_sector_expenditure", "source": "State Budgets; Detailed Demand for Grants ( Plan and Non Plan Documents) ; Various Years. Expenditure Data for the Sector have been compiled from from Detailed Demand for Grants documents of the respective Ministry/ Department of Power & Energy of the concerned State.", "unit": "INR (in Crores)"}, {"sector": "Power & Energy", "indicator": "Total Sector Expenditure as % of State Budget", "notes": "", "slugSector": "power_energy", "slugIndicator": "total_sector_expenditure_as_of_state_budget", "source": "Total State Budget data have been compiled from Annual Financial Statement/ Budget-in-Brief/ Budget at a Glance documents for the respective States.", "unit": "Percentage"}, {"sector": "Power & Energy", "indicator": "Per Capita Expenditure on Sector", "notes": "Population figures are projections, not the actual numbers based on 2011 Census data.", "slugSector": "power_energy", "slugIndicator": "per_capita_expenditure_on_sector", "source": "Population data have been compiled from Census of India, 2011 from the document - Population Projections for India & States 2011-2016; OFFICE OF THE REGISTRAR GENERAL & CENSUS COMMISSIONER, INDIA.", "unit": "INR (in Crores)"}, {"sector": "Power & Energy", "indicator": "Revenue Expenditure as % of Total Sector Expenditure", "notes": "", "slugSector": "power_energy", "slugIndicator": "revenue_expenditure_as_of_total_sector_expenditure", "source": "State Budgets; Detailed Demand for Grants ( Plan and Non Plan Documents) ; Various Years. Revenue Expenditure and Total Sector V expenditure data have been compiled from Detailed Demand for Grants of the relevant Departments/ Demand Nos for the concerned States.", "unit": "Percentage"}, {"sector": "Power & Energy", "indicator": "Capital Expenditure (including Loans & Advances ) as % of Total Sector Expenditure", "notes": "", "slugSector": "power_energy", "slugIndicator": "capital_expenditure_including_loans_advances_as_of_total_sector_expenditure", "source": "Capital Expenditure (including loans & advances) and Total Sector- V expenditure data have been compiled from Detailed Demand for Grants of the relevant Departments/ Demand Nos for the concerned States.", "unit": "Percentage"}, {"sector": "Public Works", "indicator": "Total Sector Expenditure", "notes": "The data are compiled and aggregated from data of demand for grants documents. Thus, data compiled pertain to expenditure made through Dpartments/ Ministries of the respective States. These data may not, and usually should not match precisely with those of compiled as per Major Head ( major functions of the government).", "slugSector": "public_works", "slugIndicator": "total_sector_expenditure", "source": "State Budgets; Detailed Demand for Grants ( Plan and Non Plan Documents) ; Various Years. Expenditure Data for the Sector have been compiled from from Detailed Demand for Grants documents of the respective departments of Construction of the State.", "unit": "INR (in Crores)"}, {"sector": "Public Works", "indicator": "Total Sector Expenditure as % of State Budget", "notes": "", "slugSector": "public_works", "slugIndicator": "total_sector_expenditure_as_of_state_budget", "source": "Total State Budget data have been compiled from Annual Financial Statement/ Budget-in-Brief/ Budget at a Glance documents for the respective States.", "unit": "Percentage"}, {"sector": "Public Works", "indicator": "Per Capita Expenditure on Sector", "notes": "Population figures are projections, not the actual numbers based on 2011 Census data.", "slugSector": "public_works", "slugIndicator": "per_capita_expenditure_on_sector", "source": "Population data have been compiled from Census of India, 2011 from the document - Population Projections for India & States 2011-2016; OFFICE OF THE REGISTRAR GENERAL & CENSUS COMMISSIONER, INDIA.", "unit": "INR (in Crores)"}, {"sector": "Public Works", "indicator": "Revenue Expenditure as % of Total Sector Expenditure", "notes": "", "slugSector": "public_works", "slugIndicator": "revenue_expenditure_as_of_total_sector_expenditure", "source": "State Budgets; Detailed Demand for Grants ( Plan and Non Plan Documents) ; Various Years. Revenue Expenditure and Total Sector VI expenditure data have been compiled from Detailed Demand for Grants of the relevant Departments/ Demand Nos for the concerned States.", "unit": "Percentage"}, {"sector": "Public Works", "indicator": "Capital Expenditure (including Loans & Advances ) as % of Total Sector Expenditure", "notes": "", "slugSector": "public_works", "slugIndicator": "capital_expenditure_including_loans_advances_as_of_total_sector_expenditure", "source": "Capital Expenditure (including loans & advances) and Total Sector- VI expenditure data have been compiled from Detailed Demand for Grants of the relevant Departments/ Demand Nos for the concerned States.", "unit": "Percentage"}, {"sector": "Irrigation & Water Resources", "indicator": "Total Sector Expenditure", "notes": "The data are compiled and aggregated from data of demand for grants documents. Thus, data compiled pertain to expenditure made through Dpartments/ Ministries of the respective States. These data may not, and usually should not match precisely with those of compiled as per Major Head ( major functions of the government).", "slugSector": "irrigation_water_resources", "slugIndicator": "total_sector_expenditure", "source": "State Budgets; Detailed Demand for Grants ( Plan and Non Plan Documents) ; Various Years. Expenditure Data for the Sector have been compiled from from Detailed Demand for Grants documents of the respective departments of Irrigation & Water Resources of the State.", "unit": "INR (in Crores)"}, {"sector": "Irrigation & Water Resources", "indicator": "Total Sector Expenditure as % of State Budget", "notes": "", "slugSector": "irrigation_water_resources", "slugIndicator": "total_sector_expenditure_as_of_state_budget", "source": "Total State Budget data have been compiled from Annual Financial Statement/ Budget-in-Brief/ Budget at a Glance documents for the respective States.", "unit": "Percentage"}, {"sector": "Irrigation & Water Resources", "indicator": "Per Capita Expenditure on Sector", "notes": "Population figures are projections, not the actual numbers based on 2011 Census data.", "slugSector": "irrigation_water_resources", "slugIndicator": "per_capita_expenditure_on_sector", "source": "Population data have been compiled from Census of India, 2011 from the document - Population Projections for India & States 2011-2016; OFFICE OF THE REGISTRAR GENERAL & CENSUS COMMISSIONER, INDIA.", "unit": "INR (in Crores)"}, {"sector": "Irrigation & Water Resources", "indicator": "Revenue Expenditure as % of Total Sector Expenditure", "notes": "", "slugSector": "irrigation_water_resources", "slugIndicator": "revenue_expenditure_as_of_total_sector_expenditure", "source": "State Budgets; Detailed Demand for Grants ( Plan and Non Plan Documents) ; Various Years. Revenue Expenditure and Total Sector VII expenditure data have been compiled from Detailed Demand for Grants of the relevant Departments/ Demand Nos for the concerned States.", "unit": "Percentage"}, {"sector": "Irrigation & Water Resources", "indicator": "Capital Expenditure (including Loans & Advances ) as % of Total Sector Expenditure", "notes": "", "slugSector": "irrigation_water_resources", "slugIndicator": "capital_expenditure_including_loans_advances_as_of_total_sector_expenditure", "source": "Capital Expenditure (including loans & advances) and Total Sector- VII expenditure data have been compiled from Detailed Demand for Grants of the relevant Departments/ Demand Nos for the concerned States.", "unit": "Percentage"}, {"sector": "Forests & Environment", "indicator": "Total Sector Expenditure", "notes": "The data are compiled and aggregated from data of demand for grants documents. Thus, data compiled pertain to expenditure made through Dpartments/ Ministries of the respective States. These data may not, and usually should not match precisely with those of compiled as per Major Head ( major functions of the government).", "slugSector": "forests_environment", "slugIndicator": "total_sector_expenditure", "source": "State Budgets; Detailed Demand for Grants ( Plan and Non Plan Documents) ; Various Years. Expenditure Data for the Sector have been compiled from from Detailed Demand for Grants documents of the respective departments of Forests and Department of Environment of the State.", "unit": "INR (in Crores)"}, {"sector": "Forests & Environment", "indicator": "Total Sector Expenditure as % of State Budget", "notes": "", "slugSector": "forests_environment", "slugIndicator": "total_sector_expenditure_as_of_state_budget", "source": "Total State Budget data have been compiled from Annual Financial Statement/ Budget-in-Brief/ Budget at a Glance documents for the respective States.", "unit": "Percentage"}, {"sector": "Forests & Environment", "indicator": "Per Capita Expenditure on Sector", "notes": "Population figures are projections, not the actual numbers based on 2011 Census data.", "slugSector": "forests_environment", "slugIndicator": "per_capita_expenditure_on_sector", "source": "Population data have been compiled from Census of India, 2011 from the document - Population Projections for India & States 2011-2016; OFFICE OF THE REGISTRAR GENERAL & CENSUS COMMISSIONER, INDIA.", "unit": "INR (in Crores)"}, {"sector": "Forests & Environment", "indicator": "Revenue Expenditure as % of Total Sector Expenditure", "notes": "", "slugSector": "forests_environment", "slugIndicator": "revenue_expenditure_as_of_total_sector_expenditure", "source": "State Budgets; Detailed Demand for Grants ( Plan and Non Plan Documents) ; Various Years. Revenue Expenditure and Total Sector VIII expenditure data have been compiled from Detailed Demand for Grants of the relevant Departments/ Demand Nos for the concerned States.", "unit": "Percentage"}, {"sector": "Forests & Environment", "indicator": "Capital Expenditure (including Loans & Advances ) as % of Total Sector Expenditure", "notes": "", "slugSector": "forests_environment", "slugIndicator": "capital_expenditure_including_loans_advances_as_of_total_sector_expenditure", "source": "Capital Expenditure (including loans & advances) and Total Sector- VIII expenditure data have been compiled from Detailed Demand for Grants of the relevant Departments/ Demand Nos for the concerned States.", "unit": "Percentage"}, {"sector": "Urban Development & Housing", "indicator": "Total Sector Expenditure", "notes": "The data are compiled and aggregated from data of demand for grants documents. Thus, data compiled pertain to expenditure made through Dpartments/ Ministries of the respective States. These data may not, and usually should not match precisely with those of compiled as per Major Head ( major functions of the government).", "slugSector": "urban_development_housing", "slugIndicator": "total_sector_expenditure", "source": "State Budgets; Detailed Demand for Grants ( Plan and Non Plan Documents) ; Various Years. Expenditure Data for the Sector have been compiled from from Detailed Demand for Grants documents of the respective departments of Urban Development and Department of Housing of the State.", "unit": "INR (in Crores)"}, {"sector": "Urban Development & Housing", "indicator": "Total Sector Expenditure as % of State Budget", "notes": "", "slugSector": "urban_development_housing", "slugIndicator": "total_sector_expenditure_as_of_state_budget", "source": "Total State Budget data have been compiled from Annual Financial Statement/ Budget-in-Brief/ Budget at a Glance documents for the respective States.", "unit": "Percentage"}, {"sector": "Urban Development & Housing", "indicator": "Per Capita Expenditure on Sector", "notes": "Population figures are projections, not the actual numbers based on 2011 Census data.", "slugSector": "urban_development_housing", "slugIndicator": "per_capita_expenditure_on_sector", "source": "Population data have been compiled from Census of India, 2011 from the document - Population Projections for India & States 2011-2016; OFFICE OF THE REGISTRAR GENERAL & CENSUS COMMISSIONER, INDIA.", "unit": "INR (in Crores)"}, {"sector": "Urban Development & Housing", "indicator": "Revenue Expenditure as % of Total Sector Expenditure", "notes": "", "slugSector": "urban_development_housing", "slugIndicator": "revenue_expenditure_as_of_total_sector_expenditure", "source": "State Budgets; Detailed Demand for Grants ( Plan and Non Plan Documents) ; Various Years. Revenue Expenditure and Total Sector. IX expenditure data have been compiled from Detailed Demand for Grants of the relevant Departments/ Demand Nos for the concerned States.", "unit": "Percentage"}, {"sector": "Urban Development & Housing", "indicator": "Capital Expenditure (including Loans & Advances ) as % of Total Sector Expenditure", "notes": "", "slugSector": "urban_development_housing", "slugIndicator": "capital_expenditure_including_loans_advances_as_of_total_sector_expenditure", "source": "Capital Expenditure (including loans & advances) and Total Sector- IX expenditure data have been compiled from Detailed Demand for Grants of the departments of Urban Development and Department of Housing/ Demand Nos for the concerned States.", "unit": "Percentage"}, {"sector": "Social Welfare", "indicator": "Total Sector Expenditure", "notes": "The data are compiled and aggregated from data of demand for grants documents. Thus, data compiled pertain to expenditure made through Dpartments/ Ministries of the respective States. These data may not, and usually should not match precisely with those of compiled as per Major Head ( major functions of the government).", "slugSector": "social_welfare", "slugIndicator": "total_sector_expenditure", "source": "State Budgets; Detailed Demand for Grants ( Plan and Non Plan Documents) ; Various Years. Expenditure Data for the Sector have been compiled from from Detailed Demand for Grants documents of the respective departments of concerned Departments of Welfare of SCs, STs, OBCs & Minorities, Women and Child Development, and Social Security of the State. ", "unit": "INR (in Crores)"}, {"sector": "Social Welfare", "indicator": "Total Sector Expenditure as % of State Budget", "notes": "", "slugSector": "social_welfare", "slugIndicator": "total_sector_expenditure_as_of_state_budget", "source": "Total State Budget data have been compiled from Annual Financial Statement/ Budget-in-Brief/ Budget at a Glance documents for the respective States.", "unit": "Percentage"}, {"sector": "Social Welfare", "indicator": "Per Capita Expenditure on Sector", "notes": "Population figures are projections, not the actual numbers based on 2011 Census data.", "slugSector": "social_welfare", "slugIndicator": "per_capita_expenditure_on_sector", "source": "Population data have been compiled from Census of India, 2011 from the document - Population Projections for India & States 2011-2016; OFFICE OF THE REGISTRAR GENERAL & CENSUS COMMISSIONER, INDIA.", "unit": "INR (in Crores)"}, {"sector": "Social Welfare", "indicator": "Revenue Expenditure as % of Total Sector Expenditure", "notes": "", "slugSector": "social_welfare", "slugIndicator": "revenue_expenditure_as_of_total_sector_expenditure", "source": "State Budgets; Detailed Demand for Grants ( Plan and Non Plan Documents) ; Various Years. Revenue Expenditure and Total Sector X expenditure data have been compiled from Detailed Demand for Grants of the relevant concerned Departments of Welfare of SCs, STs, OBCs & Minorities, Women and Child Development, and Social Security/ Demand Nos for the concerned States.", "unit": "Percentage"}, {"sector": "Social Welfare", "indicator": "Capital Expenditure (including Loans & Advances ) as % of Total Sector Expenditure", "notes": "", "slugSector": "social_welfare", "slugIndicator": "capital_expenditure_including_loans_advances_as_of_total_sector_expenditure", "source": "Capital Expenditure (including loans & advances) and Total Sector- X expenditure data have been compiled from Detailed Demand for Grants of the relevant Departments/ Demand Nos for the concerned States.", "unit": "Percentage"}, {"sector": "Health", "indicator": "Total Sector Expenditure", "notes": "The data are compiled and aggregated from data of demand for grants documents. Thus, data compiled pertain to expenditure made through Dpartments/ Ministries of the respective States. These data may not, and usually should not match precisely with those of compiled as per Major Head ( major functions of the government).", "slugSector": "health", "slugIndicator": "total_sector_expenditure", "source": "State Budgets; Detailed Demand for Grants ( Plan and Non Plan Documents) ; Various Years. Expenditure Data for the Sector have been compiled from Detailed Demand for Grants documents of the departments of Health, Department of Family Welfare, Department of Medical Education, and other relevant departments of the State. ", "unit": "INR (in Crores)"}, {"sector": "Health", "indicator": "Total Sector Expenditure as % of State Budget", "notes": "", "slugSector": "health", "slugIndicator": "total_sector_expenditure_as_of_state_budget", "source": "Total State Budget data have been compiled from Annual Financial Statement/ Budget-in-Brief/ Budget at a Glance documents for the respective States.", "unit": "Percentage"}, {"sector": "Health", "indicator": "Per Capita Expenditure on Sector", "notes": "Population figures are projections, not the actual numbers based on 2011 Census data.", "slugSector": "health", "slugIndicator": "per_capita_expenditure_on_sector", "source": "Population data have been compiled from Census of India, 2011 from the document - Population Projections for India & States 2011-2016; OFFICE OF THE REGISTRAR GENERAL & CENSUS COMMISSIONER, INDIA.", "unit": "INR (in Crores)"}, {"sector": "Health", "indicator": "Revenue Expenditure as % of Total Sector Expenditure", "notes": "", "slugSector": "health", "slugIndicator": "revenue_expenditure_as_of_total_sector_expenditure", "source": "State Budgets; Detailed Demand for Grants ( Plan and Non Plan Documents) ; Various Years. Revenue Expenditure and Total Sector XI expenditure data have been compiled from Detailed Demand for Grants of the relevant Departments/ Demand Nos for the concerned States.", "unit": "Percentage"}, {"sector": "Health", "indicator": "Capital Expenditure (including Loans & Advances ) as % of Total Sector Expenditure", "notes": "", "slugSector": "health", "slugIndicator": "capital_expenditure_including_loans_advances_as_of_total_sector_expenditure", "source": "Capital Expenditure (including loans & advances) and Total Sector- XI expenditure data have been compiled from Detailed Demand for Grants of the departments of Health, Department of Family Welfare, Department of Medical Education, Department of Ayush and other relevant departments / Demand Nos for the concerned States.", "unit": "Percentage"}, {"sector": "Education", "indicator": "Total Sector Expenditure", "notes": "The data are compiled and aggregated from data of demand for grants documents. Thus, data compiled pertain to expenditure made through Dpartments/ Ministries of the respective States. These data may not, and usually should not match precisely with those of compiled as per Major Head ( major functions of the government).", "slugSector": "education", "slugIndicator": "total_sector_expenditure", "source": "State Budgets; Detailed Demand for Grants ( Plan and Non Plan Documents) ; Various Years. Expenditure Data for the Sector have been compiled from from Detailed Demand for Grants documents of the respective by the Department of School & Secondary Education, the Department of Higher Education, the Department of Technical Education, the Department of Arts & Culture, The Department of Sports & Youth Services, the Department of Literacy & Adult Education of the State. ", "unit": "INR (in Crores)"}, {"sector": "Education", "indicator": "Total Sector Expenditure as % of State Budget", "notes": "", "slugSector": "education", "slugIndicator": "total_sector_expenditure_as_of_state_budget", "source": "Total State Budget data have been compiled from Annual Financial Statement/ Budget-in-Brief/ Budget at a Glance documents for the respective States.", "unit": "Percentage"}, {"sector": "Education", "indicator": "Per Capita Expenditure on Sector", "notes": "Population figures are projections, not the actual numbers based on 2011 Census data.", "slugSector": "education", "slugIndicator": "per_capita_expenditure_on_sector", "source": "Population data have been compiled from Census of India, 2011 from the document - Population Projections for India & States 2011-2016; OFFICE OF THE REGISTRAR GENERAL & CENSUS COMMISSIONER, INDIA.", "unit": "INR (in Crores)"}, {"sector": "Education", "indicator": "Revenue Expenditure as % of Total Sector Expenditure", "notes": "", "slugSector": "education", "slugIndicator": "revenue_expenditure_as_of_total_sector_expenditure", "source": "State Budgets; Detailed Demand for Grants ( Plan and Non Plan Documents) ; Various Years. Revenue Expenditure and Total Sector- XII expenditure data have been compiled from Detailed Demand for Grants of the relevant Departments/ Demand Nos for the concerned States.", "unit": "Percentage"}, {"sector": "Education", "indicator": "Capital Expenditure (including Loans & Advances ) as % of Total Sector Expenditure", "notes": "", "slugSector": "education", "slugIndicator": "capital_expenditure_including_loans_advances_as_of_total_sector_expenditure", "source": "Capital Expenditure (including loans & advances) and Total Sector- XII expenditure data have been compiled from Detailed Demand for Grants of the relevant Departments/ Demand Nos for the concerned States.", "unit": "Percentage"}]; \ No newline at end of file diff --git a/src/index.html b/src/index.html new file mode 100644 index 0000000..307e9f6 --- /dev/null +++ b/src/index.html @@ -0,0 +1,34 @@ + + + + Story Generator + + + + + + + + + + + + + + + + + + + + + + + +
    + + + \ No newline at end of file diff --git a/src/index.js b/src/index.js new file mode 100644 index 0000000..8525ead --- /dev/null +++ b/src/index.js @@ -0,0 +1,11 @@ +import 'babel-polyfill'; +import React from 'react'; +import { render } from 'react-dom'; +import {Router, hashHistory} from "react-router" ; +import routes from './routes' ; +import "./styles/styles.css"; + +render ( + , + document.getElementById("app") +); diff --git a/src/index.test.js b/src/index.test.js new file mode 100644 index 0000000..a80cd17 --- /dev/null +++ b/src/index.test.js @@ -0,0 +1,7 @@ +import expect from 'expect'; + +describe('Our first test', () => { + it('should pass', () => { + expect(true).toEqual(true); + }); +}); \ No newline at end of file diff --git a/src/routes.js b/src/routes.js new file mode 100644 index 0000000..7a8e4a6 --- /dev/null +++ b/src/routes.js @@ -0,0 +1,13 @@ +import React from "react"; +import {Route, IndexRoute} from "react-router"; +import App from "./components/App" ; +import MainViewComponent from "./components/home/MainViewComponent"; +//import {expenditure_data} from "./data/expenditure_data"; +import IndexComponent from "./components/indexcomponent/IndexComponent"; + +export default( + + + + +); \ No newline at end of file diff --git a/src/styles/bg.png b/src/styles/bg.png new file mode 100644 index 0000000..3925896 Binary files /dev/null and b/src/styles/bg.png differ diff --git a/src/styles/draft_final.png b/src/styles/draft_final.png new file mode 100644 index 0000000..30d6673 Binary files /dev/null and b/src/styles/draft_final.png differ diff --git a/src/styles/styles.css b/src/styles/styles.css new file mode 100644 index 0000000..2ad0317 --- /dev/null +++ b/src/styles/styles.css @@ -0,0 +1,429 @@ + html, + body { + height: 100%; + margin: 0px; + font-family: 'PT Sans', sans-serif; + } + + #app, + .app-wrapper, + .leftsidebar {} + + .nav-tabs.nav-justified>.active>a { + border: 1px solid rgba(0, 0, 0, 0.19); + } + + .leftsidebar { + padding: 0px 25px !important; + min-height: 700px; + background: #F5F6F8 url(bg.png); + } + + .full-height { + height: 100%; + } + + .input-group-lg>.form-control { + font-size: 14px !important; + border-radius: 3px !important; + } + + .search-wrapper { + width: 100%; + padding-bottom: 15px; + } + + .icons-wrapper i.fa { + padding: 0px 0px 15px 12px; + } + + .share-icon-span, + .icons-wrapper { + float: left; + } + + .share-icon-span { + margin-left: 25px; + font-size: 18px; + padding-top: 2px; + } + + .nav-stacked>li { + border: 1px solid #ddd; + } + + .vis-selector-wrapper, + .estimates-fig-wrapper { + padding: 0px 10px 20px 0px; + } + + .estimates-fig-wrapper label.btn.btn-default { + width: 150px; + } + + nav.navbar.top-bar.navbar-inverse { + margin-bottom: 0px; + border-radius: 0px; + } + + .view-container { + /* background: rgba(220, 221, 219, 0.1) url(bg.png); + background:rgba(42, 87, 105, 0.9) url("bg.png");*/ + padding: 25px 0px 0px 0px; + min-height: 700px; + background: rgba(17, 51, 77, 0.01); + border-left: 1px solid rgba(128, 128, 128, 0.34); + } + + .vis-container { + padding: 0px 20px 20px 0px; + width: 100%; + min-height: 650px; + } + + .leaflet-container { + height: inherit; + width: inherit; + margin: 0 auto; + } + + .select-panel { + overflow: hidden; + margin-bottom: 0px; + } + + .timeline { + margin: 20px 0; + padding: 0; + border-top: 2px solid #428bca; + list-style: none; + } + + .tcontainer { + position: absolute; + top: 25px; + right: 25px; + height: 10em; + z-index: 1600; + color: black; + font-size: .5em; + display: block; + height: 67px; + text-align: center; + line-height: 30px; + } + + a, + a:hover, + a:focus, + a:active, + a:link, + a:visited { + text-decoration: none!important; + outline: none; + } + + a, + a:hover, + a:focus { + color: black; + text-decoration: none; + outline: none; + } + + #accordion .panel { + border: none; + box-shadow: none; + border-radius: 0; + } + + #accordion .panel-heading { + padding: 0; + } + + #accordion .panel-title a { + display: block; + font-weight: bold; + line-height: 23px; + color: #000; + background: #fff; + border: none; + border-left: 3px solid #fbc02d; + border-bottom: 2px solid #06cde7; + padding: 15px 15px 15px 15px; + font-size: 14px; + position: relative; + border-bottom-color: #fbc02d; + transition: all 0.5s ease 0s; + } + + #accordion .panel-title a.collapsed { + border-bottom: 1px solid rgba(128, 128, 128, 0.34); + color: rgba(51, 51, 51, 0.95); + font-weight: normal; + } + + #accordion .panel-title a:before { + content: "\f106"; + font-family: FontAwesome; + font-size: 14px; + color: #333; + line-height: 24px; + position: absolute; + top: 10px; + right: 15px; + } + + #accordion .panel-title a.collapsed:before { + content: "\f107"; + } + + #accordion .panel-body { + font-size: 15px; + color: #8c8c8c; + line-height: 25px; + background: #f6f6f6; + border: none; + padding: 14px 20px; + } + + #accordion .panel { + margin-bottom: 2px; + } + + .panel-group .panel+.panel { + margin-top: 2px; + } + + section.panel { + height: 450px; + overflow-y: scroll; + } + + section.panel::-webkit-scrollbar { + width: 10px; + background-color: #F5F5F5; + } + + section.panel::-webkit-scrollbar-track { + -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); + background-color: #F5F5F5; + } + + section.panel::-webkit-scrollbar-thumb { + background-color: #D3CEAA; + border: 2px solid #D3CEAA; + } + + .leaflet-container { + height: 430px; + } + + .selected-params { + /* margin-left: 100px!important;*/ + padding: 0px 0px 0px 20px; + border-bottom: 1px solid rgba(0, 0, 0, 0.19); + } + + .card-container { + border-radius: 5px; + /* padding: 10px 50px 50px 50px; */ + position: relative; + /* padding: 0px 30px 30px 30px; + box-shadow: 0 4px 10px rgba(0,0,0,0.19), 0 2px 6px rgba(0,0,0,0.23);*/ + border: 2px solid #cccccc; + background: white; + /*box-shadow: 0 2px 5px rgba(0, 0, 0, 0.19), 0 1px 3px rgba(0, 0, 0, 0.23);*/ + } + + .card-box-shadow { + box-shadow: 0 2px 5px rgba(0, 0, 0, 0.19), 0 1px 3px rgba(0, 0, 0, 0.23); + } + + .title-hr { + width: 90%; + border-color: black; + border: 0; + height: 1px; + background: #333; + background-image: linear-gradient(to right, #ccc, #333, #ccc); + } + + .indicator-title { + font-weight: bold; + margin-bottom: 0px; + } + + .indicator-description { + padding: 20px; + border-top: 1px solid rgba(0, 0, 0, 0.19); + } + + h5.figures-unit { + float: right; + font-weight: bold; + } + + .sub-text { + padding-left: 0px; + font-weight: bold; + margin-bottom: 10px; + } + + .sub-text h5 { + font-weight: bold; + } + + .app-title { + text-align: center; + font-weight: bold; + } + + .rightsidebar { + padding: 0px + } + + .rightsidebar-titles { + color: black; + } + + .button-grps { + margin-top: 10px; + margin-bottom: 20px; + } + + .statetoolPanelHeading { + height: 30px; + background-color: rgba(204, 204, 204, 0.7); + } + + .statetooltip { + position: absolute; + top: 80%; + right: 3em; + z-index: 10006; + color: black; + padding: .5em .75em; + font-size: .85em; + display: block; + width: 200px; + height: 67px; + background-color: rgba(233, 234, 229, 0.9); + text-align: center; + line-height: 30px; + display: block; + } + /*Graph Styles */ + + .graph-container { + min-height: 430px; + padding: 15px 0px; + padding-bottom: 0px; + } + + .add-state-text { + padding-left: 50px; + } + + .state-select { + padding-top: 3px; + } + + .rv-xy-plot { + margin: 0px auto; + } + + .rv-discrete-color-legend.horizontal { + text-align: center; + } + + .row.legend-row { + margin-top: 20px; + } + + .rv-discrete-color-legend-item__color { + height: 14px; + } + + .select-placeholder { + padding-top: 25px + } + + .row { + margin-left: 15px; + margin-right: 15px; + } + /* Legend */ + + .legend-scale ul { + margin: 0; + padding: 0; + float: left; + list-style: none; + } + + .legend-scale ul li { + display: block; + width: 150px; + border: 1px solid rgba(128, 128, 128, 0.66); + margin-bottom: 3px; + text-align: center; + list-style: none; + padding: 0 0 0px 0; + } + + .legendspan { + display: block; + float: left; + height: 20px; + width: 40px; + } + + .legendspanside { + background-color: white; + display: block; + height: 20px; + } + + .legendcontainer { + position: absolute; + bottom: 2em; + left: 4em; + display: block; + z-index: 180000; + } + + .legend { + display: block; + width: 100%; + font-size: 1.5em; + line-height: inherit; + color: black; + border: 0; + border-bottom: 1px solid black; + } + + .legend-labels { + font-size: 0.95em + } + + sub.alpha { + font-size: 0.4em; + } + + img.openbudgets-logo { + width: 95%; + margin-left: 5px; + } + + .row.row-sub-text { + margin-left: 0px; + } + + h2.openbudgets-logo-header { + margin-top: 5px; + } + + h5.budgetattr-year { + font-weight: bold; + } diff --git a/test/bat.test.js b/test/bat.test.js deleted file mode 100644 index cfd187b..0000000 --- a/test/bat.test.js +++ /dev/null @@ -1,12 +0,0 @@ -"use strict"; - -var should = require("should"); - -var BAT = require("../lib/bat"); - -describe("BAT", function () { - it("should exist and not be empty", function () { - should.exist(BAT); - BAT.should.not.be.empty(); - }); -}); diff --git a/test/bat/parser/indicator_amounts_row.test.js b/test/bat/parser/indicator_amounts_row.test.js deleted file mode 100644 index b28b706..0000000 --- a/test/bat/parser/indicator_amounts_row.test.js +++ /dev/null @@ -1,153 +0,0 @@ -"use strict"; - -var should = require("should"); - -var statesHeaderParser = require("../../../lib/bat").parser.stateHeaderParser, - yearsHeaderParser = require("../../../lib/bat").parser.yearsHeaderParser, - indicatorAmountsRowParser = require("../../../lib/bat").parser.indicatorAmountsRowParser; - -describe("BAT", function () { - describe("parser", function () { - describe("indicatorAmountsRowParser", function () { - it("should be able to parse indicators and allocate amount", function () { - var statesHeader = `,States,Madhya Pradesh,Madhya Pradesh,Madhya Pradesh,Madhya Pradesh, - Madhya Pradesh,Madhya Pradesh,Madhya Pradesh,Bihar` - .replace(/\s+/g, " "), - yearsHeader = `Indicators,Unit,2012-13 Actuals,2013-14 BE,2013-14 RE, - 2013-14 Actuals,2014-15 BE,2014-15 RE,2015-16 BE,2012-13 Actuals,` - .replace(/\s+/g, " "), - indicatorAmountsRow = `Total Expenditure from State Budget,INR (in Crores),79921,91947, - 92234,85762,117041,118518,131199,69206.56` - .replace(/\s+/g, " "), - expectedIndicatorAmounts = [{ - name : "Madhya Pradesh", - slug : "madhya-pradesh", - subColumnsCount: 7, - subColumns : [{ - allocations: [{ - type: "Actuals" - }], - years : { - to : "2013", - from: "2012" - } - }, { - years : { - to : "2014", - from: "2013" - }, - allocations: [{ - type: "BE" - }, { - type: "RE" - }, { - type: "Actuals" - }] - }, { - years : { - from: "2014", - to : "2015" - }, - allocations: [{ - type: "BE" - }, { - type: "RE" - }] - }, { - years : { - from: "2015", - to : "2016" - }, - allocations: [{ - type: "BE" - }] - }], - indicator : { - budgets: [{ - years : { - from: "2012", - to : "2013" - }, - allocations: [{ - amount: "79921", - type : "Actuals" - }] - }, { - years : { - from: "2013", - to : "2014" - }, - allocations: [{ - amount: "91947", - type : "BE" - }, { - type : "RE", - amount: "92234" - }, { - type : "Actuals", - amount: "85762" - }] - }, { - years : { - to : "2015", - from: "2014" - }, - allocations: [{ - amount: "117041", - type : "BE" - }, { - amount: "118518", - type : "RE" - }] - }, { - years : { - from: "2015", - to : "2016" - }, - allocations: [{ - amount: "131199", - type : "BE" - }] - }], - unit : "INR (in Crores)", - name : "Total Expenditure from State Budget", - slug : "total-expenditure-from-state-budget" - } - }, { - name : "Bihar", - slug : "bihar", - subColumnsCount: 1, - subColumns : [{ - allocations: [{ - type: "Actuals" - }], - years : { - from: "2012", - to : "2013" - } - }], - indicator : { - slug : "total-expenditure-from-state-budget", - name : "Total Expenditure from State Budget", - unit : "INR (in Crores)", - budgets: [{ - years : { - from: "2012", - to : "2013" - }, - allocations: [{ - type : "Actuals", - amount: "69206.56" - }] - }] - } - }], - parsedStates = statesHeaderParser.parse(statesHeader), - parsedYears = yearsHeaderParser.parse(parsedStates, yearsHeader), - parsedIndicatorAmounts = indicatorAmountsRowParser.parse(parsedYears, indicatorAmountsRow); - should.exist(parsedIndicatorAmounts); - expectedIndicatorAmounts.should.be.deepEqual(parsedIndicatorAmounts); - }); - }); - }); -}); diff --git a/test/bat/parser/states_header.test.js b/test/bat/parser/states_header.test.js deleted file mode 100644 index de762bb..0000000 --- a/test/bat/parser/states_header.test.js +++ /dev/null @@ -1,67 +0,0 @@ -"use strict"; - -var should = require("should"); - -var statesHeaderParser = require("../../../lib/bat").parser.stateHeaderParser; - -describe("BAT", function () { - describe("parser", function () { - describe("stateHeaderParser", function () { - it("should be able to parse states header with their counts", function () { - var statesHeader = `,States,Madhya Pradesh,Madhya Pradesh,Madhya Pradesh,Madhya Pradesh, - Madhya Pradesh,Madhya Pradesh,Madhya Pradesh,Bihar,Bihar,Bihar,Bihar, - Bihar,Bihar,Bihar,UP,UP,UP,UP,UP,UP,UP,Chattisgarh,Chattisgarh,Chattisgarh, - Chattisgarh,Chattisgarh,Chattisgarh,Chattisgarh,Karnataka,Karnataka,Karnataka, - Karnataka,Karnataka,Karnataka,Karnataka,Kerala,Kerala,Kerala,Kerala,Kerala,Kerala, - Kerala,Punjab,Punjab,Punjab,Punjab,Punjab,Punjab,Punjab,Odisha,Odisha,Odisha,Odisha, - Odisha,Odisha,Odisha,Gujarat,Gujarat,Gujarat,Gujarat,Gujarat,Gujarat,Gujarat, - West Bengal,West Bengal,West Bengal,West Bengal,West Bengal,West Bengal,West Bengal` - .replace(/\s+/g, " "), - expectedStates = [{ - name : "Madhya Pradesh", - slug : "madhya-pradesh", - subColumnsCount: 7 - }, { - name : "Bihar", - slug : "bihar", - subColumnsCount: 7 - }, { - name : "UP", - slug : "up", - subColumnsCount: 7 - }, { - name : "Chattisgarh", - slug : "chattisgarh", - subColumnsCount: 7 - }, { - name : "Karnataka", - slug : "karnataka", - subColumnsCount: 7 - }, { - name : "Kerala", - slug : "kerala", - subColumnsCount: 7 - }, { - name : "Punjab", - slug : "punjab", - subColumnsCount: 7 - }, { - name : "Odisha", - slug : "odisha", - subColumnsCount: 7 - }, { - name : "Gujarat", - slug : "gujarat", - subColumnsCount: 7 - }, { - name : "West Bengal", - slug : "west-bengal", - subColumnsCount: 7 - }], - parsedStates = statesHeaderParser.parse(statesHeader); - should.exist(parsedStates); - expectedStates.should.be.deepEqual(parsedStates); - }); - }); - }); -}); diff --git a/test/bat/parser/years_header.test.js b/test/bat/parser/years_header.test.js deleted file mode 100644 index 21d201f..0000000 --- a/test/bat/parser/years_header.test.js +++ /dev/null @@ -1,83 +0,0 @@ -"use strict"; - -var should = require("should"); - -var statesHeaderParser = require("../../../lib/bat").parser.stateHeaderParser, - yearsHeaderParser = require("../../../lib/bat").parser.yearsHeaderParser; - -describe("BAT", function () { - describe("parser", function () { - describe("yearsHeaderParser", function () { - it("should be able to parse years header with their allocation types", function () { - var statesHeader = `,States,Madhya Pradesh,Madhya Pradesh,Madhya Pradesh,Madhya Pradesh, - Madhya Pradesh,Madhya Pradesh,Madhya Pradesh,Bihar` - .replace(/\s+/g, " "), - yearsHeader = `Indicators,Unit,2012-13 Actuals,2013-14 BE,2013-14 RE, - 2013-14 Actuals,2014-15 BE,2014-15 RE,2015-16 BE,2012-13 Actuals,` - .replace(/\s+/g, " "), - expectedYears = [{ - name : "Madhya Pradesh", - slug : "madhya-pradesh", - subColumnsCount: 7, - subColumns : [{ - years : { - from: "2012", - to : "2013" - }, - allocations: [{ - type: "Actuals" - }] - - }, { - years : { - from: "2013", - to : "2014" - }, - allocations: [{ - type: "BE" - }, { - type: "RE" - }, { - type: "Actuals" - }] - }, { - years : { - from: "2014", - to : "2015" - }, - allocations: [{ - type: "BE" - }, { - type: "RE" - }] - }, { - years : { - from: "2015", - to : "2016" - }, - allocations: [{ - type: "BE" - }] - }] - }, { - name : "Bihar", - slug : "bihar", - subColumnsCount: 1, - subColumns : [{ - years : { - from: "2012", - to : "2013" - }, - allocations: [{ - type: "Actuals" - }] - }] - }], - parsedStates = statesHeaderParser.parse(statesHeader), - parsedYears = yearsHeaderParser.parse(parsedStates, yearsHeader); - should.exist(parsedYears); - expectedYears.should.be.deepEqual(parsedYears); - }); - }); - }); -}); diff --git a/test/fixtures/.keep b/test/fixtures/.keep deleted file mode 100644 index e69de29..0000000 diff --git a/test/mocha.opts b/test/mocha.opts deleted file mode 100644 index ac29328..0000000 --- a/test/mocha.opts +++ /dev/null @@ -1,6 +0,0 @@ ---require should ---reporter spec ---recursive ---ui bdd ---timeout 2000 - diff --git a/tools/build.js b/tools/build.js new file mode 100644 index 0000000..305b324 --- /dev/null +++ b/tools/build.js @@ -0,0 +1,35 @@ +// More info on Webpack's Node API here: https://webpack.github.io/docs/node.js-api.html +// Allowing console calls below since this is a build file. +/*eslint-disable no-console */ +import webpack from 'webpack'; +import webpackConfig from '../webpack.config.prod'; +import colors from 'colors'; + +process.env.NODE_ENV = 'production'; // this assures the Babel dev config (for hot reloading) doesn't apply. + +console.log('Generating minified bundle for production via Webpack. This will take a moment...'.blue); + +webpack(webpackConfig).run((err, stats) => { + if (err) { // so a fatal error occurred. Stop here. + console.log(err.bold.red); + return 1; + } + + const jsonStats = stats.toJson(); + + if (jsonStats.hasErrors) { + return jsonStats.errors.map(error => console.log(error.red)); + } + + if (jsonStats.hasWarnings) { + console.log('Webpack generated the following warnings: '.bold.yellow); + jsonStats.warnings.map(warning => console.log(warning.yellow)); + } + + console.log(`Webpack stats: ${stats}`); + + // if we got this far, the build succeeded. + console.log('Your app has been compiled in production mode and written to /dist. It\'s ready to roll!'.green); + + return 0; +}); diff --git a/tools/buildHtml.js b/tools/buildHtml.js new file mode 100644 index 0000000..452b066 --- /dev/null +++ b/tools/buildHtml.js @@ -0,0 +1,26 @@ +// This script copies src/index.html into /dist/index.html +// This is a good example of using Node and cheerio to do a simple file transformation. +// In this case, the transformation is useful since we only use a separate css file in prod. +import fs from 'fs'; +import cheerio from 'cheerio'; +import colors from 'colors'; + +/*eslint-disable no-console */ + +fs.readFile('src/index.html', 'utf8', (err, markup) => { + if (err) { + return console.log(err); + } + + const $ = cheerio.load(markup); + + // since a separate spreadsheet is only utilized for the production build, need to dynamically add this here. + $('head').prepend(''); + + fs.writeFile('dist/index.html', $.html(), 'utf8', function (err) { + if (err) { + return console.log(err); + } + console.log('index.html written to /dist'.green); + }); +}); diff --git a/tools/distServer.js b/tools/distServer.js new file mode 100644 index 0000000..aef202a --- /dev/null +++ b/tools/distServer.js @@ -0,0 +1,24 @@ +import express from 'express'; +import path from 'path'; +import open from 'open'; +import compression from 'compression'; + +/*eslint-disable no-console */ + +const port = 3000; +const app = express(); + +app.use(compression()); +app.use(express.static('dist')); + +app.get('*', function(req, res) { + res.sendFile(path.join(__dirname, '../dist/index.html')); +}); + +app.listen(port, function(err) { + if (err) { + console.log(err); + } else { + open(`http://localhost:${port}`); + } +}); diff --git a/tools/srcServer.js b/tools/srcServer.js new file mode 100644 index 0000000..a0b0b3a --- /dev/null +++ b/tools/srcServer.js @@ -0,0 +1,30 @@ +import express from 'express'; +import webpack from 'webpack'; +import path from 'path'; +import config from '../webpack.config.dev'; +import open from 'open'; + +/* eslint-disable no-console */ + +const port = 3000; +const app = express(); +const compiler = webpack(config); + +app.use(require('webpack-dev-middleware')(compiler, { + noInfo: true, + publicPath: config.output.publicPath +})); + +app.use(require('webpack-hot-middleware')(compiler)); + +app.get('*', function(req, res) { + res.sendFile(path.join( __dirname, '../src/index.html')); +}); + +app.listen(port, function(err) { + if (err) { + console.log(err); + } else { + open(`http://localhost:${port}`); + } +}); \ No newline at end of file diff --git a/tools/startMessage.js b/tools/startMessage.js new file mode 100644 index 0000000..446aa64 --- /dev/null +++ b/tools/startMessage.js @@ -0,0 +1,5 @@ +import colors from 'colors'; + +/* eslint-disable no-console */ + +console.log('Starting app in dev mode...'.green); diff --git a/tools/testSetup.js b/tools/testSetup.js new file mode 100644 index 0000000..86a2807 --- /dev/null +++ b/tools/testSetup.js @@ -0,0 +1,51 @@ +// This file is written in ES5 since it's not transpiled by Babel. +// This file does the following: +// 1. Sets Node environment variable +// 2. Registers babel for transpiling our code for testing +// 3. Disables Webpack-specific features that Mocha doesn't understand. +// 4. Requires jsdom so we can test via an in-memory DOM in Node +// 5. Sets up global vars that mimic a browser. + +/* eslint-disable no-var*/ + +/* This setting assures the .babelrc dev config (which includes + hot module reloading code) doesn't apply for tests. + But also, we don't want to set it to production here for + two reasons: + 1. You won't see any PropType validation warnings when + code is running in prod mode. + 2. Tests will not display detailed error messages + when running against production version code + */ +process.env.NODE_ENV = 'test'; + +// Register babel so that it will transpile ES6 to ES5 +// before our tests run. +require('babel-register')(); + +// Disable webpack-specific features for tests since +// Mocha doesn't know what to do with them. +require.extensions['.css'] = function () {return null;}; +require.extensions['.png'] = function () {return null;}; +require.extensions['.jpg'] = function () {return null;}; + +// Configure JSDOM and set global variables +// to simulate a browser environment for tests. +var jsdom = require('jsdom').jsdom; + +var exposedProperties = ['window', 'navigator', 'document']; + +global.document = jsdom(''); +global.window = document.defaultView; +Object.keys(document.defaultView).forEach((property) => { + if (typeof global[property] === 'undefined') { + exposedProperties.push(property); + global[property] = document.defaultView[property]; + } +}); + +global.navigator = { + userAgent: 'node.js' +}; + +documentRef = document; //eslint-disable-line no-undef \ No newline at end of file diff --git a/webpack.config.dev.js b/webpack.config.dev.js new file mode 100644 index 0000000..e1b39f3 --- /dev/null +++ b/webpack.config.dev.js @@ -0,0 +1,38 @@ +import webpack from 'webpack'; +import path from 'path'; + +export default { + debug: true, + devtool: 'cheap-module-eval-source-map', + noInfo: false, + entry: [ + 'eventsource-polyfill', // necessary for hot reloading with IE + 'webpack-hot-middleware/client?reload=true', //note that it reloads the page if hot module reloading fails. + './src/index' + ], + target: 'web', + output: { + path: __dirname + '/dist', // Note: Physical files are only output by the production build task `npm run build`. + publicPath: '/', + filename: 'bundle.js' + }, + devServer: { + contentBase: './src' + }, + plugins: [ + new webpack.HotModuleReplacementPlugin(), + new webpack.NoErrorsPlugin() + ], + module: { + loaders: [ + {test: /\.js$/, include: path.join(__dirname, 'src'), loaders: ['babel']}, + {test: /(\.css)$/, loaders: ['style', 'css']}, + {test: /\.eot(\?v=\d+\.\d+\.\d+)?$/, loader: "file"}, + { test: /\.woff(2)?(\?v=[0-9]\.[0-9]\.[0-9])?$/, loader: "url-loader?limit=10000&mimetype=application/font-woff" }, + { test: /\.(ttf|eot|svg|png)(\?v=[0-9]\.[0-9]\.[0-9])?$/, loader: "file-loader" }, + {test: /\.(woff|woff2)$/, loader: "url?prefix=font/&limit=5000"}, + {test: /\.ttf(\?v=\d+\.\d+\.\d+)?$/, loader: "url?limit=10000&mimetype=application/octet-stream"}, + {test: /\.svg(\?v=\d+\.\d+\.\d+)?$/, loader: "url?limit=10000&mimetype=image/svg+xml"} + ] + } +}; diff --git a/webpack.config.prod.js b/webpack.config.prod.js new file mode 100644 index 0000000..c47aa8b --- /dev/null +++ b/webpack.config.prod.js @@ -0,0 +1,41 @@ +import webpack from 'webpack'; +import path from 'path'; +import ExtractTextPlugin from 'extract-text-webpack-plugin'; + +const GLOBALS = { + 'process.env.NODE_ENV': JSON.stringify('production') +}; + +export default { + debug: true, + devtool: 'source-map', + noInfo: false, + entry: './src/index', + target: 'web', + output: { + path: __dirname + '/dist', // Note: Physical files are only output by the production build task `npm run build`. + publicPath: '/', + filename: 'bundle.js' + }, + devServer: { + contentBase: './dist' + }, + plugins: [ + new webpack.optimize.OccurenceOrderPlugin(), + new webpack.DefinePlugin(GLOBALS), + new ExtractTextPlugin('styles.css'), + new webpack.optimize.DedupePlugin(), + new webpack.optimize.UglifyJsPlugin() + ], + module: { + loaders: [ + {test: /\.js$/, include: path.join(__dirname, 'src'), loaders: ['babel']}, + {test: /(\.css)$/, loader: ExtractTextPlugin.extract("css?sourceMap")}, + {test: /\.eot(\?v=\d+\.\d+\.\d+)?$/, loader: "file"}, + { test: /\.woff(2)?(\?v=[0-9]\.[0-9]\.[0-9])?$/, loader: "url-loader?limit=10000&mimetype=application/font-woff" }, + { test: /\.(ttf|eot|svg|png)(\?v=[0-9]\.[0-9]\.[0-9])?$/, loader: "file-loader" }, + {test: /\.ttf(\?v=\d+\.\d+\.\d+)?$/, loader: "url?limit=10000&mimetype=application/octet-stream"}, + {test: /\.svg(\?v=\d+\.\d+\.\d+)?$/, loader: "url?limit=10000&mimetype=image/svg+xml"} + ] + } +};