{"_id":"mdi-react","_rev":"66-a5ebeede0bf5ae5a8a9542e109ca80d3","name":"mdi-react","time":{"modified":"2023-12-27T13:18:32.733Z","created":"2016-07-10T12:19:06.718Z","1.6.50":"2016-07-10T12:19:06.718Z","1.6.51":"2016-07-10T12:23:37.043Z","1.6.50-1":"2016-07-10T12:31:14.990Z","1.6.50-2":"2016-07-11T17:12:35.234Z","1.6.50-3":"2016-07-11T17:18:57.233Z","1.6.50-4":"2016-08-25T17:34:29.861Z","1.7.12":"2016-08-25T18:33:12.808Z","1.7.22":"2016-10-27T21:57:16.258Z","1.8.36":"2017-01-22T18:54:28.773Z","1.9.32":"2017-04-26T19:57:34.874Z","2.0.46":"2017-07-29T18:48:07.556Z","2.0.46-hotfix.0":"2017-11-07T19:43:02.914Z","2.1.19":"2017-12-15T19:46:33.811Z","3.0.0-beta.3":"2018-03-16T23:10:31.042Z","3.0.0":"2018-03-16T23:34:10.971Z","3.1.0":"2018-04-17T16:34:37.007Z","3.2.0":"2018-04-19T16:29:04.038Z","3.3.0":"2018-04-21T14:38:51.079Z","3.4.0":"2018-05-23T20:52:31.595Z","4.0.0":"2018-06-23T11:21:17.324Z","4.1.0":"2018-08-09T14:56:32.910Z","4.2.0":"2018-08-25T08:27:01.109Z","4.3.0":"2018-09-02T09:13:12.739Z","4.4.0":"2018-09-29T07:57:43.538Z","5.0.0":"2018-11-07T18:40:42.151Z","5.1.0":"2018-12-03T17:10:00.349Z","5.2.0":"2019-01-15T09:23:58.112Z","5.3.0":"2019-03-06T09:49:08.961Z","5.4.0":"2019-05-14T08:17:27.320Z","5.5.0":"2019-07-14T14:49:45.633Z","5.6.0":"2019-09-07T20:42:01.833Z","6.0.0":"2019-09-07T20:58:23.606Z","6.1.0":"2019-09-10T10:40:55.134Z","6.2.0":"2019-10-09T05:57:37.981Z","6.3.0":"2019-11-25T16:01:15.587Z","6.4.0":"2019-11-30T17:56:27.325Z","6.5.0":"2019-12-09T15:54:51.835Z","6.6.0":"2020-01-18T18:20:16.338Z","6.7.0":"2020-02-05T08:50:20.525Z","7.0.0":"2020-03-09T08:37:13.126Z","7.1.0":"2020-04-17T07:12:05.371Z","7.2.0":"2020-05-14T15:16:51.976Z","7.3.0":"2020-05-25T06:32:17.651Z","7.4.0":"2020-10-23T19:39:18.562Z","7.5.0":"2021-03-09T13:08:52.046Z","8.0.0":"2021-10-18T18:59:16.270Z","8.1.0":"2021-10-25T05:11:46.630Z","8.2.0":"2021-11-13T18:58:47.545Z","8.3.0":"2022-03-28T07:13:45.853Z","8.3.1":"2022-03-28T07:23:58.824Z","8.4.0":"2022-05-17T05:13:23.786Z","8.5.0":"2022-06-29T06:46:35.156Z","8.6.0":"2022-06-30T07:11:18.398Z","9.0.0":"2022-07-20T05:51:09.016Z","9.1.0":"2023-01-13T09:46:08.366Z","9.2.0":"2023-03-20T07:24:21.384Z","9.3.0":"2023-10-07T18:58:54.142Z","9.4.0":"2023-12-27T13:18:32.542Z"},"maintainers":[{"name":"levrik","email":"me@levrik.io"}],"dist-tags":{"latest":"9.4.0"},"description":"Material Design Icons for React","readme":"# mdi-react [![npm package](https://img.shields.io/npm/v/mdi-react.svg?style=flat-square)](https://npmjs.org/package/mdi-react) [![Material Design Icons version](https://img.shields.io/badge/mdi-v7.4.47-blue.svg?style=flat-square)](https://materialdesignicons.com) [![build status](https://img.shields.io/travis/levrik/mdi-react/master.svg?style=flat-square)](https://travis-ci.org/levrik/mdi-react)\n[Material Design Icons](https://materialdesignicons.com) for React/Preact packaged as single components\n\n**New v9.4.0 released: See [CHANGELOG.md](./CHANGELOG.md)**\n\n## Installation\n\n```bash\nnpm install mdi-react\n# or if you use Yarn\nyarn add mdi-react\n```\n\n<!-- Preact intro -->\nSupport for [Preact](https://preactjs.com/) is available via the `mdi-preact` package.  \nThe `mdi-preact` package supports `class` as alternative to `className`.\n<!-- Preact intro -->\n\n## Usage\n\nJust search for an icon on [materialdesignicons.com](https://materialdesignicons.com) and look for its name.  \nThe name translates to PascalCase followed by the suffix `Icon` in `mdi-react`.  \nAlso it's possible to import with an alias. You can find them on the detail page of the respective icon.\n\nFor example the icons named `alert` and `alert-circle`:\n\n```javascript\nimport AlertIcon from 'mdi-react/AlertIcon';\nimport AlertCircleIcon from 'mdi-react/AlertCircleIcon';\n\nconst MyComponent = () => {\n  return (\n    <div>\n      {/* The default color is the current text color (currentColor) */}\n      <AlertIcon color=\"#fff\" />\n      {/* The default size is 24 */}\n      <AlertCircleIcon className=\"some-class\" size={16} />\n      {/* This sets the icon size to the current font size */}\n      <AlertIcon size=\"1em\" />\n    </div>\n  );\n};\n```\n\nTo change the color on hover you can just use your own class and plain CSS.\n\n```css\n.some-class:hover {\n  fill: red;\n}\n```\n\nYou can also add default styling via the `mdi-icon` class.\n\n```css\n.mdi-icon {\n  background-color: green;\n}\n```\n","versions":{"1.6.50-1":{"name":"mdi-react","version":"1.6.50-1","description":"Material Design Icons for React","keywords":["mdi","react","material","design","icons"],"main":"index.js","repository":{"type":"git","url":"git+ssh://git@github.com/levrik/mdi-react.git"},"author":{"name":"Levin Rickert","email":"me@levrik.io"},"license":"(MIT AND OFL-1.1)","bugs":{"url":"https://github.com/levrik/mdi-react/issues"},"homepage":"https://github.com/levrik/mdi-react","peerDependencies":{"react":">=0.14.0"},"_id":"mdi-react@1.6.50-1","scripts":{},"_shasum":"0c28ea057b8881d10e9e31695abc4824ca123da5","_from":".","_npmVersion":"3.10.5","_nodeVersion":"6.2.0","_npmUser":{"name":"levrik","email":"me@levrik.io"},"dist":{"shasum":"0c28ea057b8881d10e9e31695abc4824ca123da5","tarball":"https://registry.npmjs.org/mdi-react/-/mdi-react-1.6.50-1.tgz","integrity":"sha512-MdPz9vLNu4EO/To3vye1ILIJfOIfPJ+hCP6tPXJl492ODwbBs3fLs723yGqYw3oHcBQg4OSMRAAWyTed49W5mg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGOPbhltAVQg3rx2tgMbTCnUPiAxLChnojOef2KcKkWkAiB+2xsUUpWTwue2iwUboxE6uva5tPCoryitvFkd4hoQjw=="}]},"maintainers":[{"name":"levrik","email":"me@levrik.io"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/mdi-react-1.6.50-1.tgz_1468153873490_0.7286429735831916"},"directories":{}},"1.6.50-2":{"name":"mdi-react","version":"1.6.50-2","description":"Material Design Icons for React","keywords":["mdi","react","material","design","icons"],"main":"index.js","repository":{"type":"git","url":"git+ssh://git@github.com/levrik/mdi-react.git"},"author":{"name":"Levin Rickert","email":"me@levrik.io"},"license":"(MIT AND OFL-1.1)","bugs":{"url":"https://github.com/levrik/mdi-react/issues"},"homepage":"https://github.com/levrik/mdi-react","peerDependencies":{"react":">=0.14.0"},"_id":"mdi-react@1.6.50-2","scripts":{},"_shasum":"f892c077cc3b0c279adeaee5b26cacce5666ca73","_from":".","_npmVersion":"3.10.5","_nodeVersion":"6.2.0","_npmUser":{"name":"levrik","email":"me@levrik.io"},"dist":{"shasum":"f892c077cc3b0c279adeaee5b26cacce5666ca73","tarball":"https://registry.npmjs.org/mdi-react/-/mdi-react-1.6.50-2.tgz","integrity":"sha512-mHjrDLvMQvfJDa4FnxXMvU4zOggPodRtq4CIMZo9ZL+1BKrFYTTcXCMtdX5MsAIW4mOFEnuI3UhLVKl5u14gDA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDrvrcdYS1N2oLiVlWb59pSGWklDr7hr8K0FpeVDIoVfAiEAw9N9EZTOFzvee9G9yAZWoMhyWSEyuH73It2y0yj5jDA="}]},"maintainers":[{"name":"levrik","email":"me@levrik.io"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/mdi-react-1.6.50-2.tgz_1468257153752_0.8178955332841724"},"directories":{}},"1.6.50-3":{"name":"mdi-react","version":"1.6.50-3","description":"Material Design Icons for React","keywords":["mdi","react","material","design","icons"],"main":"index.js","repository":{"type":"git","url":"git+ssh://git@github.com/levrik/mdi-react.git"},"author":{"name":"Levin Rickert","email":"me@levrik.io"},"license":"(MIT AND OFL-1.1)","bugs":{"url":"https://github.com/levrik/mdi-react/issues"},"homepage":"https://github.com/levrik/mdi-react","peerDependencies":{"react":">=0.14.0"},"_id":"mdi-react@1.6.50-3","scripts":{},"_shasum":"88cc0462581a9f0d464863c8c0f896fed2625df3","_from":".","_npmVersion":"3.10.5","_nodeVersion":"6.2.0","_npmUser":{"name":"levrik","email":"me@levrik.io"},"dist":{"shasum":"88cc0462581a9f0d464863c8c0f896fed2625df3","tarball":"https://registry.npmjs.org/mdi-react/-/mdi-react-1.6.50-3.tgz","integrity":"sha512-CUoDtq9Eu/P6VivenNLL/HdLwqjEaBGanSK5T9vymLm8jNLNa7u6uP4V7h/yshbX0iDvZf8YRZF6RQ+d2VEvng==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGtxIE0QL2taFmwmXXocPtAx8xpzUDL6+20BL/qYI3qxAiEAyDl5r8HJg9OZXlMy6FZBfez4DtT1fAQFta1XRr0Geg8="}]},"maintainers":[{"name":"levrik","email":"me@levrik.io"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/mdi-react-1.6.50-3.tgz_1468257534638_0.6805600710213184"},"directories":{}},"1.6.50-4":{"name":"mdi-react","version":"1.6.50-4","description":"Material Design Icons for React","keywords":["mdi","react","material","design","icons"],"main":"index.js","repository":{"type":"git","url":"git+ssh://git@github.com/levrik/mdi-react.git"},"scripts":{"prepublish":"cp ../README.md README.md && cp ../LICENSE LICENSE"},"author":{"name":"Levin Rickert","email":"me@levrik.io"},"license":"(MIT AND OFL-1.1)","bugs":{"url":"https://github.com/levrik/mdi-react/issues"},"homepage":"https://github.com/levrik/mdi-react","peerDependencies":{"react":">=0.14.0"},"_id":"mdi-react@1.6.50-4","_shasum":"7c0fa01a5a1bb22f43684d79ec9ec0e67cefc5ac","_from":".","_npmVersion":"3.10.5","_nodeVersion":"6.3.0","_npmUser":{"name":"levrik","email":"me@levrik.io"},"dist":{"shasum":"7c0fa01a5a1bb22f43684d79ec9ec0e67cefc5ac","tarball":"https://registry.npmjs.org/mdi-react/-/mdi-react-1.6.50-4.tgz","integrity":"sha512-n686KbRGDVrAp+fpLPoEOy0DNzvi0xLyeMWQOK4o+e8+c+6n+86TpOwI8WEmQ3oNod74tyXAITiaiQ6q+Uct+A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC8mke/PETIy6mL8AFuOd0B2zGjY+DFZlvCr9+pQwapFwIgObhd/Du1O34D/qTo4ks5+kMJVAXVnIWW16NSflSD1Mw="}]},"maintainers":[{"name":"levrik","email":"me@levrik.io"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/mdi-react-1.6.50-4.tgz_1472146467795_0.12943809223361313"},"directories":{}},"1.7.12":{"name":"mdi-react","version":"1.7.12","description":"Material Design Icons for React","keywords":["mdi","react","material","design","icons"],"main":"index.js","repository":{"type":"git","url":"git+ssh://git@github.com/levrik/mdi-react.git"},"scripts":{"prepublish":"cd .. && npm run build && cd publish && cp ../README.md README.md && cp ../LICENSE LICENSE"},"author":{"name":"Levin Rickert","email":"me@levrik.io"},"license":"(MIT AND OFL-1.1)","bugs":{"url":"https://github.com/levrik/mdi-react/issues"},"homepage":"https://github.com/levrik/mdi-react","peerDependencies":{"react":">=0.14.0"},"_id":"mdi-react@1.7.12","_shasum":"f39f8f53bb791fbaa8e845192d78031eb5e1ba5e","_from":".","_npmVersion":"3.10.5","_nodeVersion":"6.3.0","_npmUser":{"name":"levrik","email":"me@levrik.io"},"dist":{"shasum":"f39f8f53bb791fbaa8e845192d78031eb5e1ba5e","tarball":"https://registry.npmjs.org/mdi-react/-/mdi-react-1.7.12.tgz","integrity":"sha512-7/jMp6GLJ5+ZjG0VhPBvY6Qf+u+uKYB73Xhe5rezq4wv4ha5qJGZhymGIAcexiV4J37k2Ekoa6AEVI+MEBtAMQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDT6+VN0eV1OFyhWisnyDG0O8ZVdVpI93/wc9BLyC8GeQIgL0VrlwXHIG1PTjE06jfxT1DOycSUFoPaNsuRJ8x+H5M="}]},"maintainers":[{"name":"levrik","email":"me@levrik.io"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/mdi-react-1.7.12.tgz_1472149990954_0.5775847935583442"},"directories":{}},"1.7.22":{"name":"mdi-react","version":"1.7.22","description":"Material Design Icons for React","keywords":["mdi","react","material","design","icons"],"main":"index.js","repository":{"type":"git","url":"git+ssh://git@github.com/levrik/mdi-react.git"},"scripts":{"prepublish":"cd .. && npm run build && cd publish && cp ../README.md README.md && cp ../LICENSE LICENSE"},"author":{"name":"Levin Rickert","email":"me@levrik.io"},"license":"(MIT AND OFL-1.1)","bugs":{"url":"https://github.com/levrik/mdi-react/issues"},"homepage":"https://github.com/levrik/mdi-react","peerDependencies":{"react":">=0.14.0"},"_id":"mdi-react@1.7.22","_shasum":"b33020f6588e35a82b5deacced8deffd836c2dfd","_from":".","_npmVersion":"3.10.5","_nodeVersion":"6.7.0","_npmUser":{"name":"levrik","email":"me@levrik.io"},"dist":{"shasum":"b33020f6588e35a82b5deacced8deffd836c2dfd","tarball":"https://registry.npmjs.org/mdi-react/-/mdi-react-1.7.22.tgz","integrity":"sha512-EosC3plha8yx2OIr7scPB1sKn9wQzKuh42RI91jQprdqP2Za5GqV3krc0gKOdhifyb08jNwsNQOxmrXeXL6NuA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCWAd/Rfuc2TtiNPJwh7P2PNTFDavoh+hoFmYDjJalFtwIhAPBKbNKuHThrwEYhwEZvIOjN42V45rOiko/UOYdSHXks"}]},"maintainers":[{"name":"levrik","email":"me@levrik.io"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/mdi-react-1.7.22.tgz_1477605433784_0.5138499983586371"},"directories":{}},"1.8.36":{"name":"mdi-react","version":"1.8.36","description":"Material Design Icons for React","keywords":["mdi","react","material","design","icons"],"main":"index.js","repository":{"type":"git","url":"git+ssh://git@github.com/levrik/mdi-react.git"},"scripts":{"prepublish":"cd .. && npm run build && cd publish && cp ../README.md README.md && cp ../LICENSE LICENSE"},"author":{"name":"Levin Rickert","email":"me@levrik.io"},"license":"(MIT AND OFL-1.1)","bugs":{"url":"https://github.com/levrik/mdi-react/issues"},"homepage":"https://github.com/levrik/mdi-react","peerDependencies":{"react":">=0.14.0"},"_id":"mdi-react@1.8.36","_shasum":"4740bd4532cc55955cab1cec6bfb1643290f71c2","_from":".","_npmVersion":"4.0.5","_nodeVersion":"6.9.2","_npmUser":{"name":"levrik","email":"me@levrik.io"},"dist":{"shasum":"4740bd4532cc55955cab1cec6bfb1643290f71c2","tarball":"https://registry.npmjs.org/mdi-react/-/mdi-react-1.8.36.tgz","integrity":"sha512-/rAk+PF9+ZmqdQmKILYeHdIw4zHNvvwqd7kSrvbcZz73xTmmm2sEtaSuR/B0Yf9K0QOZ4TYh71j9gOUkDYxQjQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEKib/9PeeKRf2VnTc9Z+Qjl0pX2vQi2hYMkazPLtHT+AiEAnpFjE8l/SOV1yDaYzitn6wEYJi+dhmQEs4Y2YrGUGR8="}]},"maintainers":[{"name":"levrik","email":"me@levrik.io"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/mdi-react-1.8.36.tgz_1485111268164_0.6494551135692745"},"directories":{}},"1.9.32":{"name":"mdi-react","version":"1.9.32","description":"Material Design Icons for React","keywords":["mdi","react","material","design","icons"],"main":"index.js","repository":{"type":"git","url":"git+ssh://git@github.com/levrik/mdi-react.git"},"scripts":{"prepublish":"cd .. && npm run build && cd publish && cp ../README.md README.md && cp ../LICENSE LICENSE"},"author":{"name":"Levin Rickert","email":"me@levrik.io"},"license":"(MIT AND OFL-1.1)","bugs":{"url":"https://github.com/levrik/mdi-react/issues"},"homepage":"https://github.com/levrik/mdi-react","peerDependencies":{"react":">=0.14.0"},"_id":"mdi-react@1.9.32","_shasum":"38cfb692ddec73f2916d308972aeccd662843472","_from":".","_npmVersion":"4.0.5","_nodeVersion":"6.9.5","_npmUser":{"name":"levrik","email":"me@levrik.io"},"dist":{"shasum":"38cfb692ddec73f2916d308972aeccd662843472","tarball":"https://registry.npmjs.org/mdi-react/-/mdi-react-1.9.32.tgz","integrity":"sha512-z3Fsm5BMWk4WeC76dNPjGLbYXVoohkyFQMtaUpnL3jZ4oOWsUTgcvUnWsYcFKU+qfbCh62CPWb1lKQ1WPJ49+A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCyh0HqXCZap8q2Eq7rTO+lupr2tbYhHm/yzNN5ssxWLgIgbw25abyfeTkJThCbHwS11wofBPFF9i/DdW7DY1WrmhU="}]},"maintainers":[{"name":"levrik","email":"me@levrik.io"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/mdi-react-1.9.32.tgz_1493236652204_0.29550065472722054"},"directories":{}},"2.0.46":{"name":"mdi-react","version":"2.0.46","description":"Material Design Icons for React","keywords":["mdi","react","material","design","icons"],"main":"index.js","repository":{"type":"git","url":"git+ssh://git@github.com/levrik/mdi-react.git"},"scripts":{"prepublish":"cd .. && npm run build && cd publish && cp ../README.md README.md && cp ../LICENSE LICENSE"},"author":{"name":"Levin Rickert","email":"me@levrik.io"},"license":"(MIT AND OFL-1.1)","bugs":{"url":"https://github.com/levrik/mdi-react/issues"},"homepage":"https://github.com/levrik/mdi-react","peerDependencies":{"react":">=0.14.0"},"_id":"mdi-react@2.0.46","_shasum":"376fa4e2766765e5ce1276b98f17e192c6661dbd","_from":".","_npmVersion":"4.0.5","_nodeVersion":"8.1.0","_npmUser":{"name":"levrik","email":"me@levrik.io"},"dist":{"shasum":"376fa4e2766765e5ce1276b98f17e192c6661dbd","tarball":"https://registry.npmjs.org/mdi-react/-/mdi-react-2.0.46.tgz","integrity":"sha512-Dhc009JS3PoCYrsq5JhaLqwsTB636xMyKcFV6g/QIPkmUohk0qJgEASeqWcrzjGiNe0b5ZVVJrO43mTQ6f1h6g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDQwW7nrHl0MKvGMLmQSM7vsuQ081fIgUSIUx+V/dP/lQIgWO3Bp8UJitjVAIVF+vsq6jXKr87Vtj1cXjZk8GfEwck="}]},"maintainers":[{"name":"levrik","email":"me@levrik.io"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mdi-react-2.0.46.tgz_1501354085447_0.39937025075778365"},"directories":{}},"2.0.46-hotfix.0":{"name":"mdi-react","version":"2.0.46-hotfix.0","description":"Material Design Icons for React","keywords":["mdi","react","material","design","icons"],"main":"index.js","repository":{"type":"git","url":"git+ssh://git@github.com/levrik/mdi-react.git"},"scripts":{"prepublish":"cd .. && yarn build && cd publish"},"author":{"name":"Levin Rickert","email":"me@levrik.io"},"license":"(MIT AND OFL-1.1)","bugs":{"url":"https://github.com/levrik/mdi-react/issues"},"homepage":"https://github.com/levrik/mdi-react","peerDependencies":{"react":">=0.14.0"},"licenseText":"The MIT License (MIT)\n\nCopyright (c) 2016-2017 Levin Rickert\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\nCopyright (c) 2014, Google (http://www.google.com/design/)\nuses the license at https://github.com/google/material-design-icons/blob/master/LICENSE\nCopyright (c) 2014, Austin Andrews (http://materialdesignicons.com/),\nwith Reserved Font Name Material Design Icons.\n\nThis Font Software is licensed under the SIL Open Font License, Version 1.1.\nThis license is copied below, and is also available with a FAQ at:\nhttp://scripts.sil.org/OFL\n\n-----------------------------------------------------------\nSIL OPEN FONT LICENSE Version 1.1 - 26 February 2007\n-----------------------------------------------------------\n\nPREAMBLE\nThe goals of the Open Font License (OFL) are to stimulate worldwide\ndevelopment of collaborative font projects, to support the font creation\nefforts of academic and linguistic communities, and to provide a free and\nopen framework in which fonts may be shared and improved in partnership\nwith others.\n\nThe OFL allows the licensed fonts to be used, studied, modified and\nredistributed freely as long as they are not sold by themselves. The\nfonts, including any derivative works, can be bundled, embedded,\nredistributed and/or sold with any software provided that any reserved\nnames are not used by derivative works. The fonts and derivatives,\nhowever, cannot be released under any other type of license. The\nrequirement for fonts to remain under this license does not apply\nto any document created using the fonts or their derivatives.\n\nDEFINITIONS\n\"Font Software\" refers to the set of files released by the Copyright\nHolder(s) under this license and clearly marked as such. This may\ninclude source files, build scripts and documentation.\n\n\"Reserved Font Name\" refers to any names specified as such after the\ncopyright statement(s).\n\n\"Original Version\" refers to the collection of Font Software components as\ndistributed by the Copyright Holder(s).\n\n\"Modified Version\" refers to any derivative made by adding to, deleting,\nor substituting -- in part or in whole -- any of the components of the\nOriginal Version, by changing formats or by porting the Font Software to a\nnew environment.\n\n\"Author\" refers to any designer, engineer, programmer, technical\nwriter or other person who contributed to the Font Software.\n\nPERMISSION AND CONDITIONS\nPermission is hereby granted, free of charge, to any person obtaining\na copy of the Font Software, to use, study, copy, merge, embed, modify,\nredistribute, and sell modified and unmodified copies of the Font\nSoftware, subject to the following conditions:\n\n1) Neither the Font Software nor any of its individual components,\nin Original or Modified Versions, may be sold by itself.\n\n2) Original or Modified Versions of the Font Software may be bundled,\nredistributed and/or sold with any software, provided that each copy\ncontains the above copyright notice and this license. These can be\nincluded either as stand-alone text files, human-readable headers or\nin the appropriate machine-readable metadata fields within text or\nbinary files as long as those fields can be easily viewed by the user.\n\n3) No Modified Version of the Font Software may use the Reserved Font\nName(s) unless explicit written permission is granted by the corresponding\nCopyright Holder. This restriction only applies to the primary font name as\npresented to the users.\n\n4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font\nSoftware shall not be used to promote, endorse or advertise any\nModified Version, except to acknowledge the contribution(s) of the\nCopyright Holder(s) and the Author(s) or with their explicit written\npermission.\n\n5) The Font Software, modified or unmodified, in part or in whole,\nmust be distributed entirely under this license, and must not be\ndistributed under any other license. The requirement for fonts to\nremain under this license does not apply to any document created\nusing the Font Software.\n\nTERMINATION\nThis license becomes null and void if any of the above conditions are\nnot met.\n\nDISCLAIMER\nTHE FONT SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT\nOF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE\nCOPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nINCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL\nDAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM\nOTHER DEALINGS IN THE FONT SOFTWARE.\n","_id":"mdi-react@2.0.46-hotfix.0","dist":{"shasum":"e3a8f739b424c521821ebed09f4116dab90884b6","tarball":"https://registry.npmjs.org/mdi-react/-/mdi-react-2.0.46-hotfix.0.tgz","integrity":"sha512-1NiiUnNouW7iaoDL7ds3cD+9QkVMcXHbO4IfmN2acdHPfZs2dWMmmfVGQh2cvxKL9PwC2j4iWSf/uArT6GZWLw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDY17Pamiy/KBoNxdPnCYvjlZ/o5ptDaghXHM4KV2QrBgIgUXB++0R1lpjmfTDv1TCAia9uh+yQl7HYorcmCttm7tA="}]},"maintainers":[{"name":"levrik","email":"me@levrik.io"}],"_npmUser":{"name":"levrik","email":"me@levrik.io"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mdi-react-2.0.46-hotfix.0.tgz_1510083781456_0.779684194829315"},"directories":{}},"2.1.19":{"name":"mdi-react","version":"2.1.19","description":"Material Design Icons for React","keywords":["mdi","react","material","design","icons"],"main":"index.js","repository":{"type":"git","url":"git+ssh://git@github.com/levrik/mdi-react.git"},"scripts":{"prepublish":"cd .. && yarn build && cd publish && cp ../README.md README.md && cp ../LICENSE LICENSE"},"author":{"name":"Levin Rickert","email":"me@levrik.io"},"license":"(MIT AND OFL-1.1)","bugs":{"url":"https://github.com/levrik/mdi-react/issues"},"homepage":"https://github.com/levrik/mdi-react","peerDependencies":{"react":">=0.14.0"},"licenseText":"The MIT License (MIT)\n\nCopyright (c) 2016-2017 Levin Rickert\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\nCopyright (c) 2014, Google (http://www.google.com/design/)\nuses the license at https://github.com/google/material-design-icons/blob/master/LICENSE\nCopyright (c) 2014, Austin Andrews (http://materialdesignicons.com/),\nwith Reserved Font Name Material Design Icons.\n\nThis Font Software is licensed under the SIL Open Font License, Version 1.1.\nThis license is copied below, and is also available with a FAQ at:\nhttp://scripts.sil.org/OFL\n\n-----------------------------------------------------------\nSIL OPEN FONT LICENSE Version 1.1 - 26 February 2007\n-----------------------------------------------------------\n\nPREAMBLE\nThe goals of the Open Font License (OFL) are to stimulate worldwide\ndevelopment of collaborative font projects, to support the font creation\nefforts of academic and linguistic communities, and to provide a free and\nopen framework in which fonts may be shared and improved in partnership\nwith others.\n\nThe OFL allows the licensed fonts to be used, studied, modified and\nredistributed freely as long as they are not sold by themselves. The\nfonts, including any derivative works, can be bundled, embedded,\nredistributed and/or sold with any software provided that any reserved\nnames are not used by derivative works. The fonts and derivatives,\nhowever, cannot be released under any other type of license. The\nrequirement for fonts to remain under this license does not apply\nto any document created using the fonts or their derivatives.\n\nDEFINITIONS\n\"Font Software\" refers to the set of files released by the Copyright\nHolder(s) under this license and clearly marked as such. This may\ninclude source files, build scripts and documentation.\n\n\"Reserved Font Name\" refers to any names specified as such after the\ncopyright statement(s).\n\n\"Original Version\" refers to the collection of Font Software components as\ndistributed by the Copyright Holder(s).\n\n\"Modified Version\" refers to any derivative made by adding to, deleting,\nor substituting -- in part or in whole -- any of the components of the\nOriginal Version, by changing formats or by porting the Font Software to a\nnew environment.\n\n\"Author\" refers to any designer, engineer, programmer, technical\nwriter or other person who contributed to the Font Software.\n\nPERMISSION AND CONDITIONS\nPermission is hereby granted, free of charge, to any person obtaining\na copy of the Font Software, to use, study, copy, merge, embed, modify,\nredistribute, and sell modified and unmodified copies of the Font\nSoftware, subject to the following conditions:\n\n1) Neither the Font Software nor any of its individual components,\nin Original or Modified Versions, may be sold by itself.\n\n2) Original or Modified Versions of the Font Software may be bundled,\nredistributed and/or sold with any software, provided that each copy\ncontains the above copyright notice and this license. These can be\nincluded either as stand-alone text files, human-readable headers or\nin the appropriate machine-readable metadata fields within text or\nbinary files as long as those fields can be easily viewed by the user.\n\n3) No Modified Version of the Font Software may use the Reserved Font\nName(s) unless explicit written permission is granted by the corresponding\nCopyright Holder. This restriction only applies to the primary font name as\npresented to the users.\n\n4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font\nSoftware shall not be used to promote, endorse or advertise any\nModified Version, except to acknowledge the contribution(s) of the\nCopyright Holder(s) and the Author(s) or with their explicit written\npermission.\n\n5) The Font Software, modified or unmodified, in part or in whole,\nmust be distributed entirely under this license, and must not be\ndistributed under any other license. The requirement for fonts to\nremain under this license does not apply to any document created\nusing the Font Software.\n\nTERMINATION\nThis license becomes null and void if any of the above conditions are\nnot met.\n\nDISCLAIMER\nTHE FONT SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT\nOF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE\nCOPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nINCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL\nDAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM\nOTHER DEALINGS IN THE FONT SOFTWARE.\n","_id":"mdi-react@2.1.19","dist":{"shasum":"aa05f3ebe4b073578c60ddfa30a8ec7eb36873b7","tarball":"https://registry.npmjs.org/mdi-react/-/mdi-react-2.1.19.tgz","integrity":"sha512-QujezwiaPip20pqAYZZuMX5Qh9SJ842NtCFycKgMYDlReDhIUns/r5p2QgUuG72iG0ld6O61xfKLnTCHBMxyGA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD7u5l27RbRtkYX08vQQD4D3V5ObdJSfm6LM5oy6E5QuQIgco99N0kgNwjunbiB0RBaoO8XbYJahIN7aN9XjaF0ZMw="}]},"maintainers":[{"name":"levrik","email":"me@levrik.io"}],"_npmUser":{"name":"levrik","email":"me@levrik.io"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mdi-react-2.1.19.tgz_1513367193608_0.23452447657473385"},"directories":{}},"3.0.0":{"name":"mdi-react","version":"3.0.0","description":"Material Design Icons for React","keywords":["mdi","react","material","design","icons"],"main":"dist/index.cjs.js","module":"dist/index.es.js","repository":{"type":"git","url":"git+ssh://git@github.com/levrik/mdi-react.git"},"scripts":{"prepublish":"cd .. && yarn build"},"author":{"name":"Levin Rickert","email":"me@levrik.io"},"license":"(MIT AND OFL-1.1)","bugs":{"url":"https://github.com/levrik/mdi-react/issues"},"homepage":"https://github.com/levrik/mdi-react","peerDependencies":{"@types/react":">=0.14.0","react":">=0.14.0"},"typings":"./dist/typings.d.ts","licenseText":"The MIT License (MIT)\n\nCopyright (c) 2016-2017 Levin Rickert\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\nCopyright (c) 2014, Google (http://www.google.com/design/)\nuses the license at https://github.com/google/material-design-icons/blob/master/LICENSE\nCopyright (c) 2014, Austin Andrews (http://materialdesignicons.com/),\nwith Reserved Font Name Material Design Icons.\n\nThis Font Software is licensed under the SIL Open Font License, Version 1.1.\nThis license is copied below, and is also available with a FAQ at:\nhttp://scripts.sil.org/OFL\n\n-----------------------------------------------------------\nSIL OPEN FONT LICENSE Version 1.1 - 26 February 2007\n-----------------------------------------------------------\n\nPREAMBLE\nThe goals of the Open Font License (OFL) are to stimulate worldwide\ndevelopment of collaborative font projects, to support the font creation\nefforts of academic and linguistic communities, and to provide a free and\nopen framework in which fonts may be shared and improved in partnership\nwith others.\n\nThe OFL allows the licensed fonts to be used, studied, modified and\nredistributed freely as long as they are not sold by themselves. The\nfonts, including any derivative works, can be bundled, embedded,\nredistributed and/or sold with any software provided that any reserved\nnames are not used by derivative works. The fonts and derivatives,\nhowever, cannot be released under any other type of license. The\nrequirement for fonts to remain under this license does not apply\nto any document created using the fonts or their derivatives.\n\nDEFINITIONS\n\"Font Software\" refers to the set of files released by the Copyright\nHolder(s) under this license and clearly marked as such. This may\ninclude source files, build scripts and documentation.\n\n\"Reserved Font Name\" refers to any names specified as such after the\ncopyright statement(s).\n\n\"Original Version\" refers to the collection of Font Software components as\ndistributed by the Copyright Holder(s).\n\n\"Modified Version\" refers to any derivative made by adding to, deleting,\nor substituting -- in part or in whole -- any of the components of the\nOriginal Version, by changing formats or by porting the Font Software to a\nnew environment.\n\n\"Author\" refers to any designer, engineer, programmer, technical\nwriter or other person who contributed to the Font Software.\n\nPERMISSION AND CONDITIONS\nPermission is hereby granted, free of charge, to any person obtaining\na copy of the Font Software, to use, study, copy, merge, embed, modify,\nredistribute, and sell modified and unmodified copies of the Font\nSoftware, subject to the following conditions:\n\n1) Neither the Font Software nor any of its individual components,\nin Original or Modified Versions, may be sold by itself.\n\n2) Original or Modified Versions of the Font Software may be bundled,\nredistributed and/or sold with any software, provided that each copy\ncontains the above copyright notice and this license. These can be\nincluded either as stand-alone text files, human-readable headers or\nin the appropriate machine-readable metadata fields within text or\nbinary files as long as those fields can be easily viewed by the user.\n\n3) No Modified Version of the Font Software may use the Reserved Font\nName(s) unless explicit written permission is granted by the corresponding\nCopyright Holder. This restriction only applies to the primary font name as\npresented to the users.\n\n4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font\nSoftware shall not be used to promote, endorse or advertise any\nModified Version, except to acknowledge the contribution(s) of the\nCopyright Holder(s) and the Author(s) or with their explicit written\npermission.\n\n5) The Font Software, modified or unmodified, in part or in whole,\nmust be distributed entirely under this license, and must not be\ndistributed under any other license. The requirement for fonts to\nremain under this license does not apply to any document created\nusing the Font Software.\n\nTERMINATION\nThis license becomes null and void if any of the above conditions are\nnot met.\n\nDISCLAIMER\nTHE FONT SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT\nOF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE\nCOPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nINCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL\nDAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM\nOTHER DEALINGS IN THE FONT SOFTWARE.\n","_id":"mdi-react@3.0.0","dist":{"shasum":"9e16c7f13fc39eb4510153f4762f9613201f2db6","tarball":"https://registry.npmjs.org/mdi-react/-/mdi-react-3.0.0.tgz","fileCount":4406,"unpackedSize":8895994,"integrity":"sha512-8LzsDijloy7L5QUHpw4+bbnVz0e5HNLBY1L0H8cYUkgNbFxT3j6R9o2UaZKpgDSPccLp5kIQd34V1tK5umuV8A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBoWrvKpR4JjGQd6PNDLRDHszyqCC/zOkBANHQaS/rXBAiAztmJPK+4JjQ/ncvQNN1PJ3K5YR3rPi9QsKY+xbRzSHg=="}]},"maintainers":[{"name":"levrik","email":"me@levrik.io"}],"_npmUser":{"name":"levrik","email":"me@levrik.io"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mdi-react_3.0.0_1521243250711_0.0523067886363644"},"_hasShrinkwrap":false},"3.1.0":{"name":"mdi-react","version":"3.1.0","description":"Material Design Icons for React","keywords":["mdi","react","material","design","icons"],"main":"dist/index.cjs.js","module":"dist/index.es.js","repository":{"type":"git","url":"git+ssh://git@github.com/levrik/mdi-react.git"},"scripts":{"prepublish":"cd .. && yarn build"},"author":{"name":"Levin Rickert","email":"me@levrik.io"},"license":"(MIT AND OFL-1.1)","bugs":{"url":"https://github.com/levrik/mdi-react/issues"},"homepage":"https://github.com/levrik/mdi-react","peerDependencies":{"@types/react":">=0.14.0","react":">=0.14.0"},"typings":"./dist/typings.d.ts","licenseText":"The MIT License (MIT)\n\nCopyright (c) 2016-2018 Levin Rickert\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\nCopyright (c) 2014, Google (http://www.google.com/design/)\nuses the license at https://github.com/google/material-design-icons/blob/master/LICENSE\nCopyright (c) 2014, Austin Andrews (http://materialdesignicons.com/),\nwith Reserved Font Name Material Design Icons.\n\nThis Font Software is licensed under the SIL Open Font License, Version 1.1.\nThis license is copied below, and is also available with a FAQ at:\nhttp://scripts.sil.org/OFL\n\n-----------------------------------------------------------\nSIL OPEN FONT LICENSE Version 1.1 - 26 February 2007\n-----------------------------------------------------------\n\nPREAMBLE\nThe goals of the Open Font License (OFL) are to stimulate worldwide\ndevelopment of collaborative font projects, to support the font creation\nefforts of academic and linguistic communities, and to provide a free and\nopen framework in which fonts may be shared and improved in partnership\nwith others.\n\nThe OFL allows the licensed fonts to be used, studied, modified and\nredistributed freely as long as they are not sold by themselves. The\nfonts, including any derivative works, can be bundled, embedded,\nredistributed and/or sold with any software provided that any reserved\nnames are not used by derivative works. The fonts and derivatives,\nhowever, cannot be released under any other type of license. The\nrequirement for fonts to remain under this license does not apply\nto any document created using the fonts or their derivatives.\n\nDEFINITIONS\n\"Font Software\" refers to the set of files released by the Copyright\nHolder(s) under this license and clearly marked as such. This may\ninclude source files, build scripts and documentation.\n\n\"Reserved Font Name\" refers to any names specified as such after the\ncopyright statement(s).\n\n\"Original Version\" refers to the collection of Font Software components as\ndistributed by the Copyright Holder(s).\n\n\"Modified Version\" refers to any derivative made by adding to, deleting,\nor substituting -- in part or in whole -- any of the components of the\nOriginal Version, by changing formats or by porting the Font Software to a\nnew environment.\n\n\"Author\" refers to any designer, engineer, programmer, technical\nwriter or other person who contributed to the Font Software.\n\nPERMISSION AND CONDITIONS\nPermission is hereby granted, free of charge, to any person obtaining\na copy of the Font Software, to use, study, copy, merge, embed, modify,\nredistribute, and sell modified and unmodified copies of the Font\nSoftware, subject to the following conditions:\n\n1) Neither the Font Software nor any of its individual components,\nin Original or Modified Versions, may be sold by itself.\n\n2) Original or Modified Versions of the Font Software may be bundled,\nredistributed and/or sold with any software, provided that each copy\ncontains the above copyright notice and this license. These can be\nincluded either as stand-alone text files, human-readable headers or\nin the appropriate machine-readable metadata fields within text or\nbinary files as long as those fields can be easily viewed by the user.\n\n3) No Modified Version of the Font Software may use the Reserved Font\nName(s) unless explicit written permission is granted by the corresponding\nCopyright Holder. This restriction only applies to the primary font name as\npresented to the users.\n\n4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font\nSoftware shall not be used to promote, endorse or advertise any\nModified Version, except to acknowledge the contribution(s) of the\nCopyright Holder(s) and the Author(s) or with their explicit written\npermission.\n\n5) The Font Software, modified or unmodified, in part or in whole,\nmust be distributed entirely under this license, and must not be\ndistributed under any other license. The requirement for fonts to\nremain under this license does not apply to any document created\nusing the Font Software.\n\nTERMINATION\nThis license becomes null and void if any of the above conditions are\nnot met.\n\nDISCLAIMER\nTHE FONT SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT\nOF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE\nCOPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nINCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL\nDAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM\nOTHER DEALINGS IN THE FONT SOFTWARE.\n","_id":"mdi-react@3.1.0","dist":{"shasum":"020ba8e2f509f70a1c47918ee6fee15b773849ba","tarball":"https://registry.npmjs.org/mdi-react/-/mdi-react-3.1.0.tgz","fileCount":4494,"unpackedSize":9070978,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa1iIdCRA9TVsSAnZWagAAmWsP/0HrwsHAZICsOoivAVy7\nsliHr/+U9fA7Ytk2+KqOH9uvFpuT2iD5f4FqaiUWjDAEA/FnaHllWJqd8oJf\nM9089z+UDWbRKU5rYX9/KXFumRgNv9WcCpkjABXia0WjVbcnOZsZtJUU762I\n4frNaX+PNyZUwrDoIkSkG/Pr3r381CMZqgsDrCbQ1V8tuo4cerFM7yTYALNr\nA2ho/e2E19nU2MJAnIRfKyXa3VV3zN9tDiAvuvXIfZqtL/v7cxOk1Mvdipjw\nZ8sml1+prL8UqzF/b3o3prEEQzmqHfRJz1kJzePF4/t31uxIpBqqaUTKEfRJ\n+QWBKPSb0480pKD6kBwzd2TkiKMvf6fYN1DYikwDcl+/Jj6TCpolsNhNqBdM\n91E1R9VFFAETczpo1VWn5G49bhioWEKOIuBVZvn2p4j/FPbQIIcKYT1atLSh\nvuLkpPzr97HGV4OmHnYfhadWDriKvXB975qeSoV95UI8gE8OBfZnzxbQ6aTp\nNEJXmzuxJVHEROE8y7dG8qZGoR54/PgR2eRGphud7jTJ6FwpFGSF5+Wsqxkv\n1Pck8VOknfdD5Krj0msws3uKCdCEl4INhdCMzK6xSxajJuHAaI7JN26iIbwx\nmHPPB7550xIqUejTs5gXvxbInzhP0enaLsYkYQQPHqZcjRsWe+fnz5C/cMsG\nyVPP\r\n=ZpDp\r\n-----END PGP SIGNATURE-----\r\n","integrity":"sha512-EYlj75Qw819RqlVbp4fwYTDJd4pjr1gVmi/nSxx+FxsbTU/9mKNxFIO8IhO/7LMSlwo0Qtbzc2js/P7+aDOfWQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFIvi2o0pCZRLWnssWTCkXpdRmV7b13Rmu6qdYprAWUEAiEAj3JPZFnlVgZ/2lGDbyvz2idOa3wqFQPl0MzUO5tz8RE="}]},"maintainers":[{"name":"levrik","email":"me@levrik.io"}],"_npmUser":{"name":"levrik","email":"me@levrik.io"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mdi-react_3.1.0_1523982876829_0.5333957107789209"},"_hasShrinkwrap":false},"3.2.0":{"name":"mdi-react","version":"3.2.0","description":"Material Design Icons for React","keywords":["mdi","react","material","design","icons"],"main":"dist/index.cjs.js","module":"dist/index.es.js","repository":{"type":"git","url":"git+ssh://git@github.com/levrik/mdi-react.git"},"scripts":{"prepublish":"cd .. && yarn build"},"author":{"name":"Levin Rickert","email":"me@levrik.io"},"license":"(MIT AND OFL-1.1)","bugs":{"url":"https://github.com/levrik/mdi-react/issues"},"homepage":"https://github.com/levrik/mdi-react","peerDependencies":{"@types/react":">=0.14.0","react":">=0.14.0"},"typings":"./dist/typings.d.ts","licenseText":"The MIT License (MIT)\n\nCopyright (c) 2016-2018 Levin Rickert\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\nCopyright (c) 2014, Google (http://www.google.com/design/)\nuses the license at https://github.com/google/material-design-icons/blob/master/LICENSE\nCopyright (c) 2014, Austin Andrews (http://materialdesignicons.com/),\nwith Reserved Font Name Material Design Icons.\n\nThis Font Software is licensed under the SIL Open Font License, Version 1.1.\nThis license is copied below, and is also available with a FAQ at:\nhttp://scripts.sil.org/OFL\n\n-----------------------------------------------------------\nSIL OPEN FONT LICENSE Version 1.1 - 26 February 2007\n-----------------------------------------------------------\n\nPREAMBLE\nThe goals of the Open Font License (OFL) are to stimulate worldwide\ndevelopment of collaborative font projects, to support the font creation\nefforts of academic and linguistic communities, and to provide a free and\nopen framework in which fonts may be shared and improved in partnership\nwith others.\n\nThe OFL allows the licensed fonts to be used, studied, modified and\nredistributed freely as long as they are not sold by themselves. The\nfonts, including any derivative works, can be bundled, embedded,\nredistributed and/or sold with any software provided that any reserved\nnames are not used by derivative works. The fonts and derivatives,\nhowever, cannot be released under any other type of license. The\nrequirement for fonts to remain under this license does not apply\nto any document created using the fonts or their derivatives.\n\nDEFINITIONS\n\"Font Software\" refers to the set of files released by the Copyright\nHolder(s) under this license and clearly marked as such. This may\ninclude source files, build scripts and documentation.\n\n\"Reserved Font Name\" refers to any names specified as such after the\ncopyright statement(s).\n\n\"Original Version\" refers to the collection of Font Software components as\ndistributed by the Copyright Holder(s).\n\n\"Modified Version\" refers to any derivative made by adding to, deleting,\nor substituting -- in part or in whole -- any of the components of the\nOriginal Version, by changing formats or by porting the Font Software to a\nnew environment.\n\n\"Author\" refers to any designer, engineer, programmer, technical\nwriter or other person who contributed to the Font Software.\n\nPERMISSION AND CONDITIONS\nPermission is hereby granted, free of charge, to any person obtaining\na copy of the Font Software, to use, study, copy, merge, embed, modify,\nredistribute, and sell modified and unmodified copies of the Font\nSoftware, subject to the following conditions:\n\n1) Neither the Font Software nor any of its individual components,\nin Original or Modified Versions, may be sold by itself.\n\n2) Original or Modified Versions of the Font Software may be bundled,\nredistributed and/or sold with any software, provided that each copy\ncontains the above copyright notice and this license. These can be\nincluded either as stand-alone text files, human-readable headers or\nin the appropriate machine-readable metadata fields within text or\nbinary files as long as those fields can be easily viewed by the user.\n\n3) No Modified Version of the Font Software may use the Reserved Font\nName(s) unless explicit written permission is granted by the corresponding\nCopyright Holder. This restriction only applies to the primary font name as\npresented to the users.\n\n4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font\nSoftware shall not be used to promote, endorse or advertise any\nModified Version, except to acknowledge the contribution(s) of the\nCopyright Holder(s) and the Author(s) or with their explicit written\npermission.\n\n5) The Font Software, modified or unmodified, in part or in whole,\nmust be distributed entirely under this license, and must not be\ndistributed under any other license. The requirement for fonts to\nremain under this license does not apply to any document created\nusing the Font Software.\n\nTERMINATION\nThis license becomes null and void if any of the above conditions are\nnot met.\n\nDISCLAIMER\nTHE FONT SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT\nOF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE\nCOPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nINCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL\nDAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM\nOTHER DEALINGS IN THE FONT SOFTWARE.\n","_id":"mdi-react@3.2.0","dist":{"shasum":"488c8c214cbe11c5778a32f4243233bc4bab3f7e","tarball":"https://registry.npmjs.org/mdi-react/-/mdi-react-3.2.0.tgz","fileCount":4716,"unpackedSize":9540196,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa2MPRCRA9TVsSAnZWagAASfYQAJqnHslqv/p0RUdwdH5d\nkn2WD0jXRI2kV+sQB6Jr643WEl8puvBwM58dI0ilAniIE98OXzvd719UoeLO\nNqkbmUUDGaPI37wTj/cq3RsOOKCa2ps9QwKI5HCJKQP5lnI1FkFl7qqzCWQ6\nfwRRKqdCak4TrDBi/o/kvIai30Va2k1+/6blieXD6Iz/zlUSeT4s3D3KO6Ts\nDpttkKBxk2HC8pOBTQrrekbALslJnUzCKkX3llfcw78PwrdmmivVNeQ7k0V8\nUnu5onCe5UOYUbO7jofRlK/UbPUxW2J+gl2J5r8POXVCpt83HHcANo2YfXvU\nNyJeO7ch1cPue16SnZA4ubIMPJiTkparsODR0bJSCBFx9og57VhbJhbxR/dm\n1i32aLwOk67t81k+fjQ7GVWvslh1wKIU46T8tHxjFJwE2eijIdSzyPmZoEFr\nPfGw3sANVEV5mKpLua6h+xg5ywH+eD9gGDCps/L8wx9GUYwOE8H/CQe+F/c3\nVAqihxWn4DhVxQzsVvifDRbua8Ups9LNsc8cS0C/1Q+rpbH6V4zN0+YErir1\nKNddhb3w4FgfoVfHgT3rZJb/J0JknVirrOSV1y20+dzVe2rh1WIe2LhdHcRp\nyMSNjlhzzkt/ndABdtSnIBDpDtyUyrATAOBa0DlCHFW1ovn/kkbbWVuFWKGW\n3aS3\r\n=KGqa\r\n-----END PGP SIGNATURE-----\r\n","integrity":"sha512-SZsP4cv+H4HXtXqVr4+Tg+Ge5v3TEaAfZFpJ55HcETy+o4xHxMHqczf8UKxFZ1xlejExxfy4JtMXjdkApwJAyA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDgGFGCgS2dR06oPkm7btQ9hTjcn+Hpyyl4Z/8QvCkscQIgQ591NxMRQA0/RJTSKKd5x2htN7TxP2LO8sFoJeZkJ+I="}]},"maintainers":[{"name":"levrik","email":"me@levrik.io"}],"_npmUser":{"name":"levrik","email":"me@levrik.io"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mdi-react_3.2.0_1524155343773_0.9935178445598345"},"_hasShrinkwrap":false},"3.3.0":{"name":"mdi-react","version":"3.3.0","description":"Material Design Icons for React","keywords":["mdi","react","material","design","icons"],"main":"dist/index.cjs.js","module":"dist/index.es.js","repository":{"type":"git","url":"git+ssh://git@github.com/levrik/mdi-react.git"},"scripts":{"prepublish":"cd .. && yarn build-react"},"author":{"name":"Levin Rickert","email":"me@levrik.io"},"license":"(MIT AND OFL-1.1)","bugs":{"url":"https://github.com/levrik/mdi-react/issues"},"homepage":"https://github.com/levrik/mdi-react","peerDependencies":{"react":">=0.14.0"},"typings":"./dist/typings.d.ts","licenseText":"The MIT License (MIT)\n\nCopyright (c) 2016-2018 Levin Rickert\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\nCopyright (c) 2014, Google (http://www.google.com/design/)\nuses the license at https://github.com/google/material-design-icons/blob/master/LICENSE\nCopyright (c) 2014, Austin Andrews (http://materialdesignicons.com/),\nwith Reserved Font Name Material Design Icons.\n\nThis Font Software is licensed under the SIL Open Font License, Version 1.1.\nThis license is copied below, and is also available with a FAQ at:\nhttp://scripts.sil.org/OFL\n\n-----------------------------------------------------------\nSIL OPEN FONT LICENSE Version 1.1 - 26 February 2007\n-----------------------------------------------------------\n\nPREAMBLE\nThe goals of the Open Font License (OFL) are to stimulate worldwide\ndevelopment of collaborative font projects, to support the font creation\nefforts of academic and linguistic communities, and to provide a free and\nopen framework in which fonts may be shared and improved in partnership\nwith others.\n\nThe OFL allows the licensed fonts to be used, studied, modified and\nredistributed freely as long as they are not sold by themselves. The\nfonts, including any derivative works, can be bundled, embedded,\nredistributed and/or sold with any software provided that any reserved\nnames are not used by derivative works. The fonts and derivatives,\nhowever, cannot be released under any other type of license. The\nrequirement for fonts to remain under this license does not apply\nto any document created using the fonts or their derivatives.\n\nDEFINITIONS\n\"Font Software\" refers to the set of files released by the Copyright\nHolder(s) under this license and clearly marked as such. This may\ninclude source files, build scripts and documentation.\n\n\"Reserved Font Name\" refers to any names specified as such after the\ncopyright statement(s).\n\n\"Original Version\" refers to the collection of Font Software components as\ndistributed by the Copyright Holder(s).\n\n\"Modified Version\" refers to any derivative made by adding to, deleting,\nor substituting -- in part or in whole -- any of the components of the\nOriginal Version, by changing formats or by porting the Font Software to a\nnew environment.\n\n\"Author\" refers to any designer, engineer, programmer, technical\nwriter or other person who contributed to the Font Software.\n\nPERMISSION AND CONDITIONS\nPermission is hereby granted, free of charge, to any person obtaining\na copy of the Font Software, to use, study, copy, merge, embed, modify,\nredistribute, and sell modified and unmodified copies of the Font\nSoftware, subject to the following conditions:\n\n1) Neither the Font Software nor any of its individual components,\nin Original or Modified Versions, may be sold by itself.\n\n2) Original or Modified Versions of the Font Software may be bundled,\nredistributed and/or sold with any software, provided that each copy\ncontains the above copyright notice and this license. These can be\nincluded either as stand-alone text files, human-readable headers or\nin the appropriate machine-readable metadata fields within text or\nbinary files as long as those fields can be easily viewed by the user.\n\n3) No Modified Version of the Font Software may use the Reserved Font\nName(s) unless explicit written permission is granted by the corresponding\nCopyright Holder. This restriction only applies to the primary font name as\npresented to the users.\n\n4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font\nSoftware shall not be used to promote, endorse or advertise any\nModified Version, except to acknowledge the contribution(s) of the\nCopyright Holder(s) and the Author(s) or with their explicit written\npermission.\n\n5) The Font Software, modified or unmodified, in part or in whole,\nmust be distributed entirely under this license, and must not be\ndistributed under any other license. The requirement for fonts to\nremain under this license does not apply to any document created\nusing the Font Software.\n\nTERMINATION\nThis license becomes null and void if any of the above conditions are\nnot met.\n\nDISCLAIMER\nTHE FONT SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT\nOF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE\nCOPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nINCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL\nDAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM\nOTHER DEALINGS IN THE FONT SOFTWARE.\n","_id":"mdi-react@3.3.0","dist":{"shasum":"65bcf00fb05e7b2792f39981689e460e3db8a493","tarball":"https://registry.npmjs.org/mdi-react/-/mdi-react-3.3.0.tgz","fileCount":6609,"unpackedSize":10782587,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa20z7CRA9TVsSAnZWagAAqQoP/ju+QqtNNGeHr/FuDLb9\nXrhnR5vwcmMrJHs+U+9rS6PT2a4R5LurveAWAU/TPWMTbrrWnCfe/FnFKX9k\nqZ7TQosqsioYRjuBVqTqdUdYgBtA2QmR1krAuvDyzDiPDB2dWe+93bs8a6YF\ny+d+mR3aNPLqDx1iGwGHIoPn0JFLzrEgAK1SzQtSJquB98wy925I0FiUmSLq\nIBwicsztd9rIiPDxnOZH8ppIQZIqWOK+kETsXJFu0ZBT48yjYbsFk3FF/Aco\nFGT/YFp0z1iwVBi+9N0tRsjD+YPIZEldGhB2DbScj9cSlbZhOhuoZ/znqRqr\n0JidxJEl6xtzRBEYmhpldNDfc6B81WlZ8McQgf9ljQ4sG8tzgYNtDW2Qpl2j\nvvdKLqkS6S+epH5jHSHsA8d0RrBpfBI7vOsxTdredL2uSV4JrjRgauo6770v\nlcu3n8iHPjjDMHHlKT7JGdmo+RhtlwmhFuaLhM7TVRzvfp0VdLh3ULeo+E0l\nWlFgrmDL9Ydfip/Gojrk8skpFgWvbfU50KOV6wNxY3/h87cThcOXU/c9zjPG\nIVLibpKfJ9e5rkMON/FBC8/aXZ+Ex+G5BElKN1esfU3WAo1fOWwEG1rQTHwF\n3OnHBnYATP/QYOUidG9kvmrlwto13QTdfMLKcHEh9s04icDRdXpnA5Fcv3mF\nil0/\r\n=Lrlj\r\n-----END PGP SIGNATURE-----\r\n","integrity":"sha512-vBgIChA6Os/rzyORvQHnCR1Vz6qNwF2HipyB6zhBop/x9ZtopKIfqsY9DDS06RAhEOKDdbSBK/KC+jSGUdesvg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCi8KeWCAu++mtYLO76X27JxZ/DUUTpywnrZfrvKNdFkwIgclM/cS+lp0SZjjrQilnyRKyiwsPHWE2Wby35D2iCaCY="}]},"maintainers":[{"name":"levrik","email":"me@levrik.io"}],"_npmUser":{"name":"levrik","email":"me@levrik.io"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mdi-react_3.3.0_1524321530927_0.5659928044336451"},"_hasShrinkwrap":false},"3.4.0":{"name":"mdi-react","version":"3.4.0","description":"Material Design Icons for React","keywords":["mdi","react","material","design","icons"],"main":"dist/index.cjs.js","module":"dist/index.es.js","repository":{"type":"git","url":"git+ssh://git@github.com/levrik/mdi-react.git"},"scripts":{"prepublish":"cd .. && yarn build-react"},"author":{"name":"Levin Rickert","email":"me@levrik.io"},"license":"(MIT AND OFL-1.1)","bugs":{"url":"https://github.com/levrik/mdi-react/issues"},"homepage":"https://github.com/levrik/mdi-react","peerDependencies":{"react":">=0.14.0"},"typings":"./dist/typings.d.ts","licenseText":"The MIT License (MIT)\n\nCopyright (c) 2016-2018 Levin Rickert\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\nCopyright (c) 2014, Google (http://www.google.com/design/)\nuses the license at https://github.com/google/material-design-icons/blob/master/LICENSE\nCopyright (c) 2014, Austin Andrews (http://materialdesignicons.com/),\nwith Reserved Font Name Material Design Icons.\n\nThis Font Software is licensed under the SIL Open Font License, Version 1.1.\nThis license is copied below, and is also available with a FAQ at:\nhttp://scripts.sil.org/OFL\n\n-----------------------------------------------------------\nSIL OPEN FONT LICENSE Version 1.1 - 26 February 2007\n-----------------------------------------------------------\n\nPREAMBLE\nThe goals of the Open Font License (OFL) are to stimulate worldwide\ndevelopment of collaborative font projects, to support the font creation\nefforts of academic and linguistic communities, and to provide a free and\nopen framework in which fonts may be shared and improved in partnership\nwith others.\n\nThe OFL allows the licensed fonts to be used, studied, modified and\nredistributed freely as long as they are not sold by themselves. The\nfonts, including any derivative works, can be bundled, embedded,\nredistributed and/or sold with any software provided that any reserved\nnames are not used by derivative works. The fonts and derivatives,\nhowever, cannot be released under any other type of license. The\nrequirement for fonts to remain under this license does not apply\nto any document created using the fonts or their derivatives.\n\nDEFINITIONS\n\"Font Software\" refers to the set of files released by the Copyright\nHolder(s) under this license and clearly marked as such. This may\ninclude source files, build scripts and documentation.\n\n\"Reserved Font Name\" refers to any names specified as such after the\ncopyright statement(s).\n\n\"Original Version\" refers to the collection of Font Software components as\ndistributed by the Copyright Holder(s).\n\n\"Modified Version\" refers to any derivative made by adding to, deleting,\nor substituting -- in part or in whole -- any of the components of the\nOriginal Version, by changing formats or by porting the Font Software to a\nnew environment.\n\n\"Author\" refers to any designer, engineer, programmer, technical\nwriter or other person who contributed to the Font Software.\n\nPERMISSION AND CONDITIONS\nPermission is hereby granted, free of charge, to any person obtaining\na copy of the Font Software, to use, study, copy, merge, embed, modify,\nredistribute, and sell modified and unmodified copies of the Font\nSoftware, subject to the following conditions:\n\n1) Neither the Font Software nor any of its individual components,\nin Original or Modified Versions, may be sold by itself.\n\n2) Original or Modified Versions of the Font Software may be bundled,\nredistributed and/or sold with any software, provided that each copy\ncontains the above copyright notice and this license. These can be\nincluded either as stand-alone text files, human-readable headers or\nin the appropriate machine-readable metadata fields within text or\nbinary files as long as those fields can be easily viewed by the user.\n\n3) No Modified Version of the Font Software may use the Reserved Font\nName(s) unless explicit written permission is granted by the corresponding\nCopyright Holder. This restriction only applies to the primary font name as\npresented to the users.\n\n4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font\nSoftware shall not be used to promote, endorse or advertise any\nModified Version, except to acknowledge the contribution(s) of the\nCopyright Holder(s) and the Author(s) or with their explicit written\npermission.\n\n5) The Font Software, modified or unmodified, in part or in whole,\nmust be distributed entirely under this license, and must not be\ndistributed under any other license. The requirement for fonts to\nremain under this license does not apply to any document created\nusing the Font Software.\n\nTERMINATION\nThis license becomes null and void if any of the above conditions are\nnot met.\n\nDISCLAIMER\nTHE FONT SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT\nOF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE\nCOPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nINCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL\nDAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM\nOTHER DEALINGS IN THE FONT SOFTWARE.\n","_id":"mdi-react@3.4.0","dist":{"shasum":"62e6d6ba4f049707e78ca6bd891060add7199286","tarball":"https://registry.npmjs.org/mdi-react/-/mdi-react-3.4.0.tgz","fileCount":6977,"unpackedSize":11397564,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbBdSQCRA9TVsSAnZWagAAbh4P/39UDy6Ro8oi2MQHr88T\nBWcxHxbX0ve4uSGbzLxGM/WDp8troqt1G7gxtDB83gqDxfR3UJfHTHviHMO5\nQA06xnZ+3b8NwJogQ/9MGWkOgor5lg8/M1NWUSOVmkdixJutuW5dvJXEf5rz\nbmzJvZO1CiXtb3fdlA7k6jVjXle0nY/jjRzscxQJVnxhpjq5ijzYn3y5S38y\nMzBikFze6Vh6zNwmAyFlUyO9KkPsAu8fUWPN3LFRTYY8/jPdPA3MBApDAAia\ntnOjvPiWLkErzQqklo5CrP67cKP35fa+Xo5IHFE8kfyc1ea05kzyeniP/flm\nkOM9PcKEgpFB+GCfL/dgW2mB73VfHQ1o05Otn6Re9scjTh4PJZXCDQkMEj2r\nQjITmA4k14fabuWam7X3nT0I6L7mwG2YFk2P6FoouysxYmuZyHDpPurlKlyF\ngHSUoeKMp1JwgJBK+hWFG+mFlOMLrBd+YNGyJeqH6x0Y7Nzz9KQM+tkIeZSN\nfPTpZ1PtGW8uEM3Xf2tgHU1DmfLyRKNVkDkmkkb5MVLQAgZkSbAPVK/AiQ9F\nq+8kt2hXSc0HBK+8Mgi33M0lAH+GEqpdkubrFFJITV8DU2uxNrVmpgamC53H\nwdgVd8rd37k2xPXjKxMDeNRXvH2p1iHlRb76md/IhdMPxRG8GAwF3o7GCoan\nbByt\r\n=dsGv\r\n-----END PGP SIGNATURE-----\r\n","integrity":"sha512-pSSI08zMbXDAgsiq4aNOI3Pu+Utsqr+2mpqcvhss95LgfzMZeaG4nDdUKcZqTIMgcjd69WdwDRGSnVs5Qs7qrw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQClF63j2FD8qaoVMeqjbS9fco+WDvlp0j/Ryxls3/2U9wIhAPB255ipdhKpz2k5SPxf96hhEpOnVeDhbhjLFiD59qxv"}]},"maintainers":[{"name":"levrik","email":"me@levrik.io"}],"_npmUser":{"name":"levrik","email":"me@levrik.io"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mdi-react_3.4.0_1527108751460_0.04160738685676635"},"_hasShrinkwrap":false},"4.0.0":{"name":"mdi-react","version":"4.0.0","description":"Material Design Icons for React","keywords":["mdi","react","material","design","icons"],"main":"dist/index.cjs.js","module":"dist/index.es.js","repository":{"type":"git","url":"git+ssh://git@github.com/levrik/mdi-react.git"},"scripts":{"prepublish":"cd .. && yarn build-react"},"author":{"name":"Levin Rickert","email":"me@levrik.io"},"license":"(MIT AND OFL-1.1)","bugs":{"url":"https://github.com/levrik/mdi-react/issues"},"homepage":"https://github.com/levrik/mdi-react","peerDependencies":{"react":">=0.14.0"},"typings":"./dist/typings.d.ts","licenseText":"The MIT License (MIT)\n\nCopyright (c) 2016-2018 Levin Rickert\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\nCopyright (c) 2014, Google (http://www.google.com/design/)\nuses the license at https://github.com/google/material-design-icons/blob/master/LICENSE\nCopyright (c) 2014, Austin Andrews (http://materialdesignicons.com/),\nwith Reserved Font Name Material Design Icons.\n\nThis Font Software is licensed under the SIL Open Font License, Version 1.1.\nThis license is copied below, and is also available with a FAQ at:\nhttp://scripts.sil.org/OFL\n\n-----------------------------------------------------------\nSIL OPEN FONT LICENSE Version 1.1 - 26 February 2007\n-----------------------------------------------------------\n\nPREAMBLE\nThe goals of the Open Font License (OFL) are to stimulate worldwide\ndevelopment of collaborative font projects, to support the font creation\nefforts of academic and linguistic communities, and to provide a free and\nopen framework in which fonts may be shared and improved in partnership\nwith others.\n\nThe OFL allows the licensed fonts to be used, studied, modified and\nredistributed freely as long as they are not sold by themselves. The\nfonts, including any derivative works, can be bundled, embedded,\nredistributed and/or sold with any software provided that any reserved\nnames are not used by derivative works. The fonts and derivatives,\nhowever, cannot be released under any other type of license. The\nrequirement for fonts to remain under this license does not apply\nto any document created using the fonts or their derivatives.\n\nDEFINITIONS\n\"Font Software\" refers to the set of files released by the Copyright\nHolder(s) under this license and clearly marked as such. This may\ninclude source files, build scripts and documentation.\n\n\"Reserved Font Name\" refers to any names specified as such after the\ncopyright statement(s).\n\n\"Original Version\" refers to the collection of Font Software components as\ndistributed by the Copyright Holder(s).\n\n\"Modified Version\" refers to any derivative made by adding to, deleting,\nor substituting -- in part or in whole -- any of the components of the\nOriginal Version, by changing formats or by porting the Font Software to a\nnew environment.\n\n\"Author\" refers to any designer, engineer, programmer, technical\nwriter or other person who contributed to the Font Software.\n\nPERMISSION AND CONDITIONS\nPermission is hereby granted, free of charge, to any person obtaining\na copy of the Font Software, to use, study, copy, merge, embed, modify,\nredistribute, and sell modified and unmodified copies of the Font\nSoftware, subject to the following conditions:\n\n1) Neither the Font Software nor any of its individual components,\nin Original or Modified Versions, may be sold by itself.\n\n2) Original or Modified Versions of the Font Software may be bundled,\nredistributed and/or sold with any software, provided that each copy\ncontains the above copyright notice and this license. These can be\nincluded either as stand-alone text files, human-readable headers or\nin the appropriate machine-readable metadata fields within text or\nbinary files as long as those fields can be easily viewed by the user.\n\n3) No Modified Version of the Font Software may use the Reserved Font\nName(s) unless explicit written permission is granted by the corresponding\nCopyright Holder. This restriction only applies to the primary font name as\npresented to the users.\n\n4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font\nSoftware shall not be used to promote, endorse or advertise any\nModified Version, except to acknowledge the contribution(s) of the\nCopyright Holder(s) and the Author(s) or with their explicit written\npermission.\n\n5) The Font Software, modified or unmodified, in part or in whole,\nmust be distributed entirely under this license, and must not be\ndistributed under any other license. The requirement for fonts to\nremain under this license does not apply to any document created\nusing the Font Software.\n\nTERMINATION\nThis license becomes null and void if any of the above conditions are\nnot met.\n\nDISCLAIMER\nTHE FONT SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT\nOF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE\nCOPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nINCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL\nDAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM\nOTHER DEALINGS IN THE FONT SOFTWARE.\n","_id":"mdi-react@4.0.0","dist":{"shasum":"dc0f06e6c9ae69c5ce468f8ae51a8bd76e3409db","tarball":"https://registry.npmjs.org/mdi-react/-/mdi-react-4.0.0.tgz","fileCount":6977,"unpackedSize":11465699,"integrity":"sha512-YZCHyHyo+f2Ly4gJ2m/dy6k2ucmyqj1hOC4coWxXQ0uWPCq0BKPuMusjjyRYgNHvPF7viQqQAabVNavuzSJZ+Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC2kZKINF5VQDmpW1vap/jGZFMLNLL82unBksdbyZ2u+QIgbKaEw9k8w1qTqoYJELGWV1MYgI8hVH/lkMUV6FL3uPM="}]},"maintainers":[{"name":"levrik","email":"me@levrik.io"}],"_npmUser":{"name":"levrik","email":"me@levrik.io"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mdi-react_4.0.0_1529752877230_0.4176549549033022"},"_hasShrinkwrap":false},"4.1.0":{"name":"mdi-react","version":"4.1.0","description":"Material Design Icons for React","keywords":["mdi","react","material","design","icons"],"main":"dist/index.cjs.js","module":"dist/index.es.js","repository":{"type":"git","url":"git+ssh://git@github.com/levrik/mdi-react.git"},"scripts":{},"author":{"name":"Levin Rickert","email":"me@levrik.io"},"license":"(MIT AND OFL-1.1)","bugs":{"url":"https://github.com/levrik/mdi-react/issues"},"homepage":"https://github.com/levrik/mdi-react","peerDependencies":{"react":">=0.14.0"},"typings":"./dist/typings.d.ts","_id":"mdi-react@4.1.0","_npmVersion":"6.3.0","_nodeVersion":"8.9.0","_npmUser":{"name":"levrik","email":"me@levrik.io"},"dist":{"integrity":"sha512-dWvVwPIk7TxkRTMAzYtuMIK+D//OohjjwGBOuLaJgdqnJv9mW8C7kas2OQuPx2AaB+fkU+zt7mHEGCyH3IN+WA==","shasum":"9f83f6c6ea1b8192a1291cb9353137bd349d9285","tarball":"https://registry.npmjs.org/mdi-react/-/mdi-react-4.1.0.tgz","fileCount":7531,"unpackedSize":12218087,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbbFYhCRA9TVsSAnZWagAAGQkP/RmPppUX/JoEmxLu2/c3\nr2OkddlENH8jpxAHqCEL7p6D1YzbxA3v2WaBZ4EXUqUE2ccj/TpdygPEAzv4\ncoYlZrxnXEsbJKs+QerCIsHuPo3oEBQAZZ0R/DuqN5DZdjysfC7eLRNUHqsY\n3dGIPt4lY3dXLfaCnfej+7uAh0kSMY+4vZM3MN33iG2OPeSIBihdY/ZRjW3r\nP1ZwieNilJ08c97+TVTwdvs2JrZFlzpR64MUyI7K1SLyOTGJs/yw0jffweE9\nc6o4unNbeYfWzVxPjUKHULC0eGKX+Ld6ht57ip2uPMIvmV9B4W2RdbsvwycP\nqbw7su/zoqOwO+B0BT68u9f2cPSG85dqogIlpZlMGHNAXl9ilEx5oX4t01T5\nbxCfkCF9PWdUKd1JnY2FYZmeVgTrmigxjf3bZ8sxuVUmc9sqgDkllos1sl/r\nYJ3vgm1109xrNhHsIC1tEFjd0xhZzYFL8x+yZHpq7A/sEdEwdaL+2E8q2LJ7\nBvGSzJ15rD4S+6nJiQHuaWSMRlEeNkhhpl8H+XTKhLSkKi8XWj8I0OHOln/C\nvA5VnjMY6HFKkbtW7alsHAkPFByfQtJYaXpN6TP3WmDmbTvvxtqz3OrxSCkW\nWirhMs/Uf0rRKjHJsMgGmK0JISm8QL3POgaQ4+KiJ8NxSVctv7FntwnlfxEu\nBXyr\r\n=6yA1\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDwRfwp/DGjLlurYBSlR5m7P/3XxEsUnwMWelULekCZCAiEAkoKrveQPVBsHY61ke5KNOdJWrs5jNoxpTwtSDM2Iq18="}]},"maintainers":[{"name":"levrik","email":"me@levrik.io"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mdi-react_4.1.0_1533826592518_0.32380134091948576"},"_hasShrinkwrap":false},"4.2.0":{"name":"mdi-react","version":"4.2.0","description":"Material Design Icons for React","keywords":["mdi","react","material","design","icons"],"main":"dist/index.cjs.js","module":"dist/index.es.js","repository":{"type":"git","url":"git+ssh://git@github.com/levrik/mdi-react.git"},"scripts":{},"author":{"name":"Levin Rickert","email":"me@levrik.io"},"license":"(MIT AND OFL-1.1)","bugs":{"url":"https://github.com/levrik/mdi-react/issues"},"homepage":"https://github.com/levrik/mdi-react","peerDependencies":{"react":">=0.14.0"},"typings":"./dist/typings.d.ts","_id":"mdi-react@4.2.0","_npmVersion":"6.3.0","_nodeVersion":"8.9.0","_npmUser":{"name":"levrik","email":"me@levrik.io"},"dist":{"integrity":"sha512-p2lOdt+Upr7jEzepqQ1IxqJggoa+MnPmpIJtSKuwyCNrW6rnl1/Uq9vkud/0XPSqL7GujCN3CprBeZuCPxb9Tg==","shasum":"144c230e838777d9852b61f0919acb9868f95afb","tarball":"https://registry.npmjs.org/mdi-react/-/mdi-react-4.2.0.tgz","fileCount":7733,"unpackedSize":12611627,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbgRLVCRA9TVsSAnZWagAAyvoP+wYKq2FLfdOW1GO6MT37\nGOlk9tv30rO3pB2T08ytLoFB62yGsbOND6UXo7t6Oe/3+i2f3/OhnYQDQHIb\nuqoiYxtA2ClWRPjz2GwpJQlw00zj/lj4joEy+JLsV0lOLkbh2YdaZe7TUSl8\niu+bzKH/JfDQYKcDcAeIzIhfSZUPuHjTbSz7ZvUmHloQ+Rx8JjTjQWsReUM6\nCVtOtzyAwBDVmi8sVqrJU3U5W9oPhN3BrzVWAoDBWGxIcUOV9Q+KvxtROjpS\n8H+6plIs8lupiOZy58xePeWOryu8T5i0nf2eu8vj7kyfICDLduBiwIV32rC1\npys2hXtN3tN/4DFWZxmiF4FWRIeYFe2rmZiWleJj3WXOU3lTkx9q3XbvzGcH\n3wtdvVuwpcdQ6djPf6f2s2su6lUU0lm3mjFJMxou29Pz9XlYyIuZRs0ag60B\nlTz1xDYlQcOHKF3jnQ3mXlDt0k4Qo+xR4Wt6NWCHFDgVsJWr6za5LLDXp7ql\nqRru25Fw8V1jKsfH5ij0EvMO61Hu+xT0MKZ0XHtYdDaxYyJ0vFrl+gzdE8yv\nngUP7sRWdAzDsCSfYl/zz2cnmlqpWyUZCN4zPYIrhQ3MMCu7UmArCzCviUtO\nPQ4mmq/QghJqEuLfFHY9Bw+h4DF2q9Z+X6qUrF+Eq8COCB5TfJZ4a/SA+OLj\nZ90e\r\n=mk2f\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGtpi4UHcF1tZay5hHWkpr/EIT/OunIg/17+cR2xGFuTAiEAus9EDizavwmefmkWbGPGWGbJKBNVxJZ1nepHIax+ODU="}]},"maintainers":[{"name":"levrik","email":"me@levrik.io"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mdi-react_4.2.0_1535185620883_0.5474623108303998"},"_hasShrinkwrap":false},"4.3.0":{"name":"mdi-react","version":"4.3.0","description":"Material Design Icons for React","keywords":["mdi","react","material","design","icons"],"main":"dist/index.cjs.js","module":"dist/index.es.js","repository":{"type":"git","url":"git+ssh://git@github.com/levrik/mdi-react.git"},"scripts":{},"author":{"name":"Levin Rickert","email":"me@levrik.io"},"license":"(MIT AND OFL-1.1)","bugs":{"url":"https://github.com/levrik/mdi-react/issues"},"homepage":"https://github.com/levrik/mdi-react","peerDependencies":{"react":">=0.14.0"},"typings":"./dist/typings.d.ts","_id":"mdi-react@4.3.0","_npmVersion":"6.3.0","_nodeVersion":"8.9.0","_npmUser":{"name":"levrik","email":"me@levrik.io"},"dist":{"integrity":"sha512-PtOM0On5NuOZBDopc4DcC7LYYup6kLOqGHMshv8kf/E35fwqcdYqCBgoQMRRXXUNCqAfQobFF7gjupNYI3eRyA==","shasum":"adb66402d847132abca18e021c4fecad3b1f92ab","tarball":"https://registry.npmjs.org/mdi-react/-/mdi-react-4.3.0.tgz","fileCount":8283,"unpackedSize":13364703,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbi6mpCRA9TVsSAnZWagAA3+0P/RF6UMlPfE9E1SCKZ+TV\nILRPTV5eQ0b3uln0dtOdUmT0P/VEcj25RraTnKLlbz+qiDqs1Hu0j5Ueu8qN\nCU/Z4sZZJ8T8LG/ph/lMas5/G/Ovhmr30MFWLSvYBFb8zoEaT1K9OpS/XV0I\nWJyurXv0bJ9qEyED+MDpQ7pJusH1hOBsBOGkuSyscAYk74xZU2BAnfk0x1W3\n9AyjU/X6T0j+0oAfe9hLHXiHLkJFHhdAyNXHGgyePd9Dz6GLdZDAQJaWlIBO\nYV/qC7hgvFTMBH8gHaoann6UWdOVpRgokCNvY51jmYJ01RsORY3iid8f2v7U\nURo7x7ZGS/XwCSUUajFOp+Og3XP6YOY8r/MRvhZ0ULG0DS8YBjZ4iqB+M22d\nroWNIBVMlaZm1CpFuMATuP2mK3iw7ZIM7VJYi2aKGdNzFJ7cV17L5EO4xWgO\n458relwoRXV3+oqdSlEZtNIsOtVpKEx0o4VoSztEoJL8ETSYMSwVpkq4qiua\nLkvWkhfJzAZTS/AxA97D1QAFbZOm1Lf/NwVwiR2+oDDwT7KIG29sskHeArlF\nnMd5aLIaZmRXcRpfs7yT59Gn19q/LNOiG9oxjNWMd8FNilidylwF7xxOM1Sn\nlwccwp9VnbBJjFF7hk51Q07mM+VgudsHFUCc+koPIeoL4ERI8PtXzwgg86jW\niKaJ\r\n=wHno\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC5RmzTzWVeWFO+zgZN6i1ly5pOfpdoC4m73YiAMuNAEQIgONVTvjk2VIEakhJ+xVVaDOwogqXP7Pela+IReWYJ3tQ="}]},"maintainers":[{"name":"levrik","email":"me@levrik.io"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mdi-react_4.3.0_1535879592518_0.3154021954578281"},"_hasShrinkwrap":false},"4.4.0":{"name":"mdi-react","version":"4.4.0","description":"Material Design Icons for React","keywords":["mdi","react","material","design","icons"],"main":"dist/index.cjs.js","module":"dist/index.es.js","repository":{"type":"git","url":"git+ssh://git@github.com/levrik/mdi-react.git"},"scripts":{},"author":{"name":"Levin Rickert","email":"me@levrik.io"},"license":"(MIT AND OFL-1.1)","bugs":{"url":"https://github.com/levrik/mdi-react/issues"},"homepage":"https://github.com/levrik/mdi-react","peerDependencies":{"react":">=0.14.0"},"typings":"./dist/typings.d.ts","_id":"mdi-react@4.4.0","_npmVersion":"6.3.0","_nodeVersion":"8.9.0","_npmUser":{"name":"levrik","email":"me@levrik.io"},"dist":{"integrity":"sha512-IxWW/10EHSYSDz5Hce1JzgvBiNtUHWERVDRWY6S+Bc07zUjWcRvQFDQND8GIgXG2Mnr/7uQFk25MBtSgLHQ0Gw==","shasum":"5901a3eda1f0dc5eacec1b13f2e2ee40e883b791","tarball":"https://registry.npmjs.org/mdi-react/-/mdi-react-4.4.0.tgz","fileCount":8827,"unpackedSize":14031755,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbrzB4CRA9TVsSAnZWagAAOI0P/jtTaAzbCe0muKO1SuvR\nYQoxkPix6FMgFD2XSoA50sqcqZmbYzBfbwmuOrBXQKZ6I3rNNXg7D1inQCS6\nK2XtNLOaeD5eGB8NutAMLXIwrpjywUP4qZpDPYS+wouATL+hCcqN7y3HJEUI\nMwlYEBZWrHduVyxwBQjBaR215avZ3RLlOYlCXdgnPqpwAqG3r3UsSRy2PqcW\nYoWYSI0esXa6UeVRlT8ZwHH7T6yNC5cTn+4aCyldZrmNvmG5Gipo8GJ2cb7O\nJtGmmhI4BLazUxriJHnkrUQ0sRS9Z8yZfxe5BC5Cx4tDL/xKHsfdmOtWtbpy\nwhK/hi0uoUH3USbRDpzXZwI5j1A2jBrpNVBG/Ef9t18Hpqx1r9s/mMP0w/YJ\nfV2EkfXsXcRrOfGEbbk90UjuMbStl/TkjraNCyHsV54Zczt0ZfbvkFVbcMtX\nwkcppG9jHqbR+GnjXXpI9A5u7wLP6GDcX0Jng7FBxktmrP7uvrweEbP9JUbi\n4zKGelgCFLOSOQJ5i0pXFAQ7rX3lmmUODan390mpVRioLxvOcRjiz0jdgNkt\nvn4M8/gkBiSnJZ5N3QPHiRZMpRibKN2dynPw9yyMJV53/meNznb64MvqSjs8\nhiGZJgydM9u/RXapjhcfcc7FvjwzqhICiGCA3Bz5fVnemigm/NMDMjvB14oR\nnaBx\r\n=LZ2w\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCWX6TthO95Zp2zwsbzy2odkjYVODxxq2E76oWscSssnAIgQT16HvQMkKhzCdJUH91I7UDZu+7SY7j6SSjITPKa5ag="}]},"maintainers":[{"name":"levrik","email":"me@levrik.io"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mdi-react_4.4.0_1538207863347_0.010108487720849268"},"_hasShrinkwrap":false},"5.0.0":{"name":"mdi-react","version":"5.0.0","description":"Material Design Icons for React","keywords":["mdi","react","material","design","icons"],"main":"dist/index.cjs.js","module":"dist/index.es.js","repository":{"type":"git","url":"git+ssh://git@github.com/levrik/mdi-react.git"},"scripts":{},"author":{"name":"Levin Rickert","email":"me@levrik.io"},"license":"(MIT AND OFL-1.1)","bugs":{"url":"https://github.com/levrik/mdi-react/issues"},"homepage":"https://github.com/levrik/mdi-react","peerDependencies":{"react":">=0.14.0"},"typings":"./dist/typings.d.ts","_id":"mdi-react@5.0.0","_npmVersion":"6.3.0","_nodeVersion":"8.9.0","_npmUser":{"name":"levrik","email":"me@levrik.io"},"dist":{"integrity":"sha512-26rbkxWW7yHBJrdZm9J06R3/4SzkqEVyYi/e0vjuWgpv4G7s64XDRjizKry98pnkjtAkktc0/roq6oUo9KbTYQ==","shasum":"38d5e0ac15e9322c7e0ff1e1dc5e1d65748e06db","tarball":"https://registry.npmjs.org/mdi-react/-/mdi-react-5.0.0.tgz","fileCount":9279,"unpackedSize":8540255,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb4zGqCRA9TVsSAnZWagAATboP/jmPztYjHWruoM0md3b8\nCImuio+0fuzWWHYK9yjfAkOWEkjYuAGelPOXGIZ6g1NG9fO27XqvzoBZ1/D/\n/SpiIlqZDomKClWHC6QfrgRnCErCOhnweLOlPGvQ7RscuSnJlPAaV6fglWbp\nf8UVOERribk0BmLw6Sjs9gF3pqnc6RNhU50LfmfZ851Isy/XR/Rbet6w8ha/\nz3ppOLRsr8S4hgjrKEAW99CY6izI+vzkO9gzw5h4+WSM6zMztUNsT4+ICbJN\ngggcKEClzkISBHzekKu1sKFilXI4rT4r0qirelCSiselMmtVyRatX/u8rsD6\nuTG1JrNy52Zc97ozz+5eGhcHlZ9r9ePiC/WP84IIpFjrwiUJ+Pm2LUyiUf5D\n0FcxJ4OBCIE9YhUW4xYHFndQMLF7IRNssCIsHp0RKTA4Kvrb9VWx+kijnL4C\n55l02ksrUniG0OwOVoPHVyTdkfW83qc8M25Po8qSQO7zGpC8bl7q3v3DFFqR\nss6N5YX+Vj019MQ5C3R4vnEC/CtOKUXdwlSyjk8fGNfP8H2WQEkVQ2sr4ENi\nCRelKz8Dq+IYxHptdbGMiQrVK/ClVicd3qJ/EgapjdFsqr0AWJoyBpM3YhUf\n2+yvG1cSBWPQhmnOqT9Y0ZXWot8oTPWdKKLCe3+AHk/Ol1J/RNx3+Tals3Yl\ns4w/\r\n=/Yw5\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCT64nJfdbhAgpLrCOKNeAvSbSgR0OG3vIjV2EJPUY8XAIhANV9daI2rI21XYH7ac3ITJFkl20IflTNVmlAJ1oZbh1O"}]},"maintainers":[{"name":"levrik","email":"me@levrik.io"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mdi-react_5.0.0_1541616041923_0.07115635292170319"},"_hasShrinkwrap":false},"5.1.0":{"name":"mdi-react","version":"5.1.0","description":"Material Design Icons for React","keywords":["mdi","react","material","design","icons"],"repository":{"type":"git","url":"git+ssh://git@github.com/levrik/mdi-react.git"},"scripts":{},"author":{"name":"Levin Rickert","email":"me@levrik.io"},"license":"(MIT AND OFL-1.1)","bugs":{"url":"https://github.com/levrik/mdi-react/issues"},"homepage":"https://github.com/levrik/mdi-react","peerDependencies":{"react":">=0.14.0"},"typings":"./dist/typings.d.ts","_id":"mdi-react@5.1.0","_npmVersion":"6.3.0","_nodeVersion":"8.9.0","_npmUser":{"name":"levrik","email":"me@levrik.io"},"dist":{"integrity":"sha512-oAZW4/kJVd7iK5pVUsBjiRn4hpc3hUjHt6vgjyXzUAYjvLfYCJkUZqeqOYeFFiEO3ktf/IvSq3+XinojcpkCmg==","shasum":"22f26540731a2cdb2a39b22b4ea51a069a025d07","tarball":"https://registry.npmjs.org/mdi-react/-/mdi-react-5.1.0.tgz","fileCount":11035,"unpackedSize":10164642,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcBWNoCRA9TVsSAnZWagAACLIP/i236yarHVqsgBcx34Md\n8mlmLfLEFOAddy75SFplzJEgatSrRqjH/YUC6CR5HVs6hUdiVIBFRdKuQYyo\nYXWckb5HoSIWpO6BffYclAoRs5sMbbCZ0237qvZa1ZC9Gr1g7vPX1DggOKK6\nOVzKarElbpmKiuNsz9kX+al/pr2UzDicEC75BmPMAzB8KjeKNKL8rp47AaV3\nVNHRRKB3yBe0qyuyu4J0lp4JmhG0DKWusPKmHd549CDJ2HQ+Y8/ocIqGedoV\n+ijPEb6KyTR5FOrTz6/q0yXCK0vXRSCP1U2GLZvGwW50/zqPIjZVT923NQaC\nab4BslI+cyHGBnyUFAgI4ThNwJMp2q+pPClExg/4BECgmPqJS8SKlaThR26O\njRJcIGgk9WH5m25UDEh94TwWh8ok/5QBs3h04ikeb9dWbPviggmkwO7r4sbO\nCYJSr/f8dbIh0hEPBUAM5wW2rb3QmM6KnZy8HhttcCD7vyrsqd/xPlGPy9Om\nmkeT0TBnskI62G5FMW+UIiGim2zkM5mKaK5PvJ9Zt7NmrheM3QotdHPo5hPQ\nsQyccg+fdNF0xTVEdG4g+E6pI0rwl0AxR2a2ULE1UL+shre/OjIxGBGw6c+h\nEtCcuK+oQ4MglmlyQP6ssBKXaQ5u+fUa1DRLq2e33wCahs/eKVv2ZlM8/CTj\nDBZ9\r\n=7Fjf\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDCYKnU+9j+B2zVLM44hGBGmYHR4VabTYLMLNNMF63WzwIgU3pjwlCypq6cLk6OUcYITchVGV2NmGOR6LwSNO6Ziak="}]},"maintainers":[{"name":"levrik","email":"me@levrik.io"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mdi-react_5.1.0_1543857000189_0.13078450551399712"},"_hasShrinkwrap":false},"5.2.0":{"name":"mdi-react","version":"5.2.0","description":"Material Design Icons for React","keywords":["mdi","react","material","design","icons"],"repository":{"type":"git","url":"git+ssh://git@github.com/levrik/mdi-react.git"},"scripts":{},"author":{"name":"Levin Rickert","email":"me@levrik.io"},"license":"(MIT AND OFL-1.1)","bugs":{"url":"https://github.com/levrik/mdi-react/issues"},"homepage":"https://github.com/levrik/mdi-react","peerDependencies":{"react":">=0.14.0"},"typings":"./dist/typings.d.ts","_id":"mdi-react@5.2.0","_npmVersion":"6.4.1","_nodeVersion":"10.14.1","_npmUser":{"name":"levrik","email":"me@levrik.io"},"dist":{"integrity":"sha512-q0zeUZbissoRVouq9JYSTrr/+2qk2P0dJI9N2m/TvZDX5RMcwHsVxffiqisjlo2m6cbXiCzAQaGaGmjoPfC4Pg==","shasum":"a46d83434aae0f9229365b4db98b6950b6775ebf","tarball":"https://registry.npmjs.org/mdi-react/-/mdi-react-5.2.0.tgz","fileCount":11337,"unpackedSize":10460683,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcPaauCRA9TVsSAnZWagAAn90P/0iTVr0yJUhyruBQ88z7\nFq08MsKJWdQrcvJAsf4zBUAGasBH053w+iQb1iaFuDwUsbyUwq/PZ4EQ4jqX\nX4lCAhwr76jX3gK8dhcNLZqSJjSek5gGfQ5d8lcCzRbL0ZlfVNDP2dOGJYQy\nhNrcUtPaoTUjoFroHaueK2bkgtfuHNRCMFNHp7P9gr4i2w75+Na6ZQ7kNfE8\n2Xxm+eO3vkeKDR6/bR4JMgJCcwy3eMPwc5HqJdctJa/3oLYXiFG5oLDjPpGF\nr8GoykRSkcg+0YaHd7DpoTV/yeVNbvUxSay28cOrBjaa5C1XgNmQYDgayQKu\nq1j3P1ASEjQnEG4GwOmeW/3gzW1P0d7mS8K6oXh9IrzP+xb4gyQTGx4bViCZ\n70jQmVdcmHkM7bqy/wkaBNEEd18oaxJ2afbJaajqfp6YIRsxRB8ATvLzXbks\nO25Gy0WdZZGxkLy8KNUZUQws20nAn9Mk/+jqUiPo4WazufVODR2NqTyj65c4\nf+306RjgBfq0otfX2Ho19A313GmggK9sRbJp9jBE4ou+uGr/ASuNFmy/GPYV\nuEwW7qiwkfmUGW3uJRI9+7x2X787Oxpt/Qu707Uq6VKdjikZnQAoRy0QFS20\nkJeS9YdTFB+HWyL8YAf12dtk7rt8UCB/XkTd45YAaqPhEdEcZFGh11lowSs9\nq/NQ\r\n=m3MP\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIF5c38JB04wmHVeXje94plakz/M3Tqk7FJzcneGwLjflAiAmfVmbVY089dD776FNGg+2TxIWsQGA7RffJv33LLlmkw=="}]},"maintainers":[{"name":"levrik","email":"me@levrik.io"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mdi-react_5.2.0_1547544237867_0.6109639220186462"},"_hasShrinkwrap":false},"5.3.0":{"name":"mdi-react","version":"5.3.0","description":"Material Design Icons for React","keywords":["mdi","react","material","design","icons"],"repository":{"type":"git","url":"git+ssh://git@github.com/levrik/mdi-react.git"},"scripts":{"prepublishOnly":"cd .. && yarn build-react"},"author":{"name":"Levin Rickert","email":"me@levrik.io"},"license":"(MIT AND OFL-1.1)","bugs":{"url":"https://github.com/levrik/mdi-react/issues"},"homepage":"https://github.com/levrik/mdi-react","peerDependencies":{"react":">=0.14.0"},"typings":"./dist/typings.d.ts","_id":"mdi-react@5.3.0","_npmVersion":"6.4.1","_nodeVersion":"10.14.1","_npmUser":{"name":"levrik","email":"me@levrik.io"},"dist":{"integrity":"sha512-Yf/aZplXLcl+aYlilfcBnCPRBueJMNOl7NxM+layFMRmCOWzxdER8ZsP2GZL7Vjc8U05Anh/mxoVaL0BS6/yCg==","shasum":"e27c876e113ee5706322cb084f898fbaed3c1367","tarball":"https://registry.npmjs.org/mdi-react/-/mdi-react-5.3.0.tgz","fileCount":11337,"unpackedSize":10460893,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcf5eVCRA9TVsSAnZWagAANjQQAJ4yx68wwFYSLpWLDvyn\nLZWfYT+PW8yaHQZM0KfUXsV5OKaWFeiJn8PwMqXSdVO6mqqBJ0sFPR3W9HKN\njCSnLmAmQNQZ3ZUpRpVM4c52dqW79wrlpq9c3t+JA/+CpVBySs/aYd9Yivio\nZ9j9b2SxsGrEBlorRvJB/3dhFP4a7toFFJysktfp/Dg8PkGOscFPp3J2nMFg\nal0vhUjD/W6rCY3HfDv6T1os46IeuBP4KFwild3uszeB37uidrIR11TSIcbt\nx37l93nlD+oFWf/jAnpVQyEgCxsRN2IJgUYj8jBEX9/FSqj/20NOmQGKZYMK\nju4CJKvjljA/I9cJjRxMjwnsFDK5IesjoQfUlCn5tkDaZRAkTkaCkZxaDWn+\n9ybFRiGM+DsxyifpcaPVwU1AY/RnV9UpETZ3XwJdLC4KcUC7qVGhBJjQzQqj\n0wt1PdnPBtI4ZHEK36yUM67kzlnz5uAe/Xb+2zcFS0+lD0zKhhwCvKnFXNqA\nX3B9Opn7yUpLpLxuinxGikSF/arLxZHmSqxhy3viCptrzuS48sd/g+FDc7kF\ntvPGEs1/2F40ljijQg6cD6m9VtbrR79uce/KB7ienGSLWNVqVGdyeIx914UL\nGoYRGSBJwJZnUjiJkuc9KNBFhn5TEOxjA9LEdL60owMukcvwVDlum4UpM9X0\nBaN/\r\n=Tljo\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDrynVYJyZTxtIF0CbDwKO+dutdtRa9MiTxaqCQqiM0+wIhAKu8+yRwjFKkI0o0eztluUE3yC1qd4dZIL/dQ2rZehU4"}]},"maintainers":[{"name":"levrik","email":"me@levrik.io"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mdi-react_5.3.0_1551865748692_0.6049219639331671"},"_hasShrinkwrap":false},"5.4.0":{"name":"mdi-react","version":"5.4.0","description":"Material Design Icons for React","keywords":["mdi","react","material","design","icons"],"repository":{"type":"git","url":"git+ssh://git@github.com/levrik/mdi-react.git"},"scripts":{"prepublishOnly":"cd .. && yarn build-react"},"author":{"name":"Levin Rickert","email":"me@levrik.io"},"license":"(MIT AND OFL-1.1)","bugs":{"url":"https://github.com/levrik/mdi-react/issues"},"homepage":"https://github.com/levrik/mdi-react","peerDependencies":{"react":">=0.14.0"},"typings":"./dist/typings.d.ts","_id":"mdi-react@5.4.0","_npmVersion":"6.4.1","_nodeVersion":"10.14.1","_npmUser":{"name":"levrik","email":"me@levrik.io"},"dist":{"integrity":"sha512-Y4eUHbbEiiQC8og6ofMM7ukUIiD+NnIQRpJHj2aVzle918aUCJh4Du9sjXw+yJ+wi8Nh7TdNvFptJD3WIdlbNw==","shasum":"4c2f2f9970aa603cc9eb78d58a02aa43d7f63b59","tarball":"https://registry.npmjs.org/mdi-react/-/mdi-react-5.4.0.tgz","fileCount":12401,"unpackedSize":12027501,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc2nmXCRA9TVsSAnZWagAAyVoP/3g0jWnJt/NnQK5oDpHF\noUt1Rt1LdjgBL/On/ucaevBmnCHBpb9kj/K1G60+mc1TjOQkjxt+xzBL7rS+\nFVT/KnayZlSimpGu5r/oovPJ3jESCzIokeexlUzt1ZzVWFXUJmlPpShsA6Hw\nwnNVlUtq0NfF298mD7pLyZ/4ZfRIdNBCPNg0acsLY+9791alDycsSobqrmHh\nIY8sfD8z7J0ntOHt9N/mNf0cRTp112ikv2sXgwV9mHCHHbVNSNTF6dm2jjs9\nJBYEkBBrGT6SWW4g8oYEWrm1/LJ0tVtyxVw8UXeYSWwmCZqbpGEnxrDTb+ly\nZ5bUBbokYzLARzH5UcRA6GACNQEpXaB+PqzjUfWR6WGf85H1vvPsOl3jLT1W\ndRTZ5gmxxLw7+MEX92eYCTv/aS0Y7bOx1AjZS5EDrvDCpHtII6GKxixPmhJ3\n4nlraelFhMqwUV2tTyD4Yw2M/uuttRptGZEltqKOKFuT/kivo5ISGDVuXFXX\nisCVxLWfNjO8NW6FgVlxE5GH9QLX6niiw9FAfv8MK3UuqiMmd7wKYreU3XlR\nVryOEMnpSn3U1GTKN7OiiY3xV8sGbDAw0A6M23pDW8xmdiyqvU0nl9pHqSkr\nAEdkqwkHDk6ZdzhrgdjXLp+ZeAEDGGHqGuvN+BDmAwMUhdBY7ctTusLx1oFu\nXg2z\r\n=SXmJ\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEcTRRR/+vaEz/BpNwvqDqJ805aTKjdZXm6uJbvI1GNBAiBCfDbwhibA0TMz2K+SNnnm8N6bL33JYoHrac0em/dJew=="}]},"maintainers":[{"name":"levrik","email":"me@levrik.io"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mdi-react_5.4.0_1557821847111_0.33598497534342564"},"_hasShrinkwrap":false},"5.5.0":{"name":"mdi-react","version":"5.5.0","description":"Material Design Icons for React","keywords":["mdi","react","material","design","icons"],"repository":{"type":"git","url":"git+ssh://git@github.com/levrik/mdi-react.git"},"scripts":{"prepublishOnly":"cd .. && yarn build-react"},"author":{"name":"Levin Rickert","email":"me@levrik.io"},"license":"(MIT AND OFL-1.1)","bugs":{"url":"https://github.com/levrik/mdi-react/issues"},"homepage":"https://github.com/levrik/mdi-react","peerDependencies":{"react":">=0.14.0"},"typings":"./dist/typings.d.ts","_id":"mdi-react@5.5.0","_npmVersion":"6.3.0","_nodeVersion":"8.9.0","_npmUser":{"name":"levrik","email":"me@levrik.io"},"dist":{"integrity":"sha512-OTm2TnBRgvHaMfBJsEqxHdiLZ4SToDC/f9ewI3x8yg0g20Fk7vO3YbBdpBF5C046ls2Emv5yKshoxue6mYpP7A==","shasum":"710173f6ff5dd4b217a8d8874600d914dbcb054d","tarball":"https://registry.npmjs.org/mdi-react/-/mdi-react-5.5.0.tgz","fileCount":12719,"unpackedSize":12356553,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdK0EKCRA9TVsSAnZWagAAKVYP+QA5XgUL18v8Xsj0sZht\njQq+Jk/EKo0MRFtzI5NmcFuGPh4MTGN1ZX3zWK45jE9RDY6kzZc6tUBudJBA\nDuk8XKMfshaC109pHB21fz4jHsIV5WBxqtQpH+KgVwAKij3tTRHEockCVMZE\nZh4DVCJiYnTxjupLmOs8G1tDST+5T9Fj1diRDg5cP/BZKB2fFydv3fk1ssw+\naT7AG9Yi8rADT2DnP3boR4qeq6zZPGAK6oF0CAoVtH4UwAXkR9Cx/c0c0Qa2\nI1d7xPdGeqpJND+tFm4+4hNWChfE6iF/aLnW2vpA0jBJu74qoYwcn+TdJnCy\nVoEn2Q1oAqaRL7WY6tLbuXZ+i5GYuBn+HcHo6Vw6eR+niCuLN+RTXwaM9qwH\n/QWDAhrbv8GYwkdqyYPVGntBNbaiJAOOMbVdyVpZqoyL++ijt8Rte0eVSrK7\n2Jj3onNx09AkWieAjOa79d2MPNy0ZhtrPhh9wjP6xzf0oGHhKnPduAy1w4WQ\n28CbMbzBTqNmJe4tu0J6+gHchUw9ox0Y9Nt3S5kxgLwmyDGMxXx9wyHZDebv\n4Br4dly/i9hyCeIiZ0LT6KnXH/rGBIOBP1SW+Nxx+CmnVA7RFlR/sutoNxrg\nSRrmDTZaL1NzvZk1rcpuK3lrJC6lWu3HCrppktNRsjLEACDXZuc2T2WJBcqw\ncJF4\r\n=PQFb\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCGOOWbggxdQ98GFxO5jGaQ4+SmNXYvSLtUfzJZu9G9AgIgY9xTX8SO8cP6gDsJfJw8srluV09clkVtNaBgYgH/0r4="}]},"maintainers":[{"name":"levrik","email":"me@levrik.io"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mdi-react_5.5.0_1563115785369_0.016386815345551087"},"_hasShrinkwrap":false},"5.6.0":{"name":"mdi-react","version":"5.6.0","description":"Material Design Icons for React","keywords":["mdi","react","material","design","icons"],"repository":{"type":"git","url":"git+ssh://git@github.com/levrik/mdi-react.git"},"scripts":{"prepublishOnly":"cd .. && yarn build-react"},"author":{"name":"Levin Rickert","email":"me@levrik.io"},"license":"(MIT AND OFL-1.1)","bugs":{"url":"https://github.com/levrik/mdi-react/issues"},"homepage":"https://github.com/levrik/mdi-react","peerDependencies":{"react":">=0.14.0"},"typings":"./dist/typings.d.ts","_id":"mdi-react@5.6.0","_nodeVersion":"12.10.0","_npmVersion":"6.10.3","dist":{"integrity":"sha512-mes6iLVHCEs0gDg/WNiF/xBZ6ES6EQtd10Aoe186yKU/TeWiYDLgmKaybIyV2UPsplD0bfHpxyhS2B0W9c+pqg==","shasum":"4e7c55db60ed01b71e681b0a784ab88f2fe0e44d","tarball":"https://registry.npmjs.org/mdi-react/-/mdi-react-5.6.0.tgz","fileCount":13281,"unpackedSize":12779624,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJddBYaCRA9TVsSAnZWagAAcv0P/1IzXd83uZKse+mkKMpW\nBB3RUgbeEaQ0nsWDxOG7Tak3GOjHOee/CRXlaIvUEKDAfhMEkRMTy7RJrJG3\nC2Z/N+8nPLIVlJNP4W9ie8PnKPVj46tWIeiwgSvXd7sTCCWRrGDvtYABdibK\nveDXoPst1C3TIrBiz4cAcntoJI4TdgvGB8SZNwTTVyCP0f2YJ38XavpghP8f\ntBCOF1PjA6DluoqncHV4atGcNDOiF0E15dH3+5MRPpATtoLTV1FgYahVd1hW\n/nIkDQzh/H/kN/8/srC3LySAhDDoowk4zAi6lZ2bGbmvLS1kLwCrB5D4svmV\n+h2BQy3JzpcIubrJ+XjcH01VmnTm/WO/xAUcNk1wqEmHjNaySZTj9VXzf3XS\nUA4BSXmBRF8P0KxoMVrTukKH+O5pFpfE4wD0AC7IFGwTm05FY7di10uccZB1\n7JRPyCWEqQEj7UdqRxQT2L2wLJUDYRVogxMXKgrmIYQtzN1riG7DaIyXVCKT\neJdq3tTjyVdn9SEUaOZs98AMEX/3iqXoEOsHJYCYlQ27niZM6h3APlo+38qN\ne7RJMnTsybNkezS+z+W2+rfR4DSssQw2qBusYJnT/xIlspchXtSD8x3CbZ6v\nNqmmWfr2Vamfy48ukrgB0+O5248uLSBQp7n985GQcOWLrWWaeDZz4cRRf+0M\nscOa\r\n=zQM6\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCaepv288ISk0rOM/mUPOnjlFRmMQQlLMbSqtai6kkhmAIhAJV4KGPX1hNL5bVeUfjzuF0Wa2drtRN0sgAhdh+vxcoZ"}]},"maintainers":[{"name":"levrik","email":"me@levrik.io"}],"_npmUser":{"name":"levrik","email":"me@levrik.io"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mdi-react_5.6.0_1567888921592_0.049000831486988305"},"_hasShrinkwrap":false},"6.0.0":{"name":"mdi-react","version":"6.0.0","description":"Material Design Icons for React","keywords":["mdi","react","material","design","icons"],"repository":{"type":"git","url":"git+ssh://git@github.com/levrik/mdi-react.git"},"scripts":{"prepublishOnly":"cd .. && yarn build-react"},"author":{"name":"Levin Rickert","email":"me@levrik.io"},"license":"(MIT AND OFL-1.1)","bugs":{"url":"https://github.com/levrik/mdi-react/issues"},"homepage":"https://github.com/levrik/mdi-react","peerDependencies":{"react":">=0.14.0"},"typings":"./dist/typings.d.ts","_id":"mdi-react@6.0.0","_nodeVersion":"12.10.0","_npmVersion":"6.10.3","dist":{"integrity":"sha512-TLnMEMXqJ2UNmoNfefG/nGXw6ZeLOYXOxFObHYwuMH5g0Nr5sDpWLYpOUNYhaYr5/oQUJsFa56unk6nWWUHhHw==","shasum":"ea68820de8745fb13811c3e67fbbac7000cba506","tarball":"https://registry.npmjs.org/mdi-react/-/mdi-react-6.0.0.tgz","fileCount":14351,"unpackedSize":13843649,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJddBnvCRA9TVsSAnZWagAAmDgQAI2DUU5ZDG8ncNMQFqwf\nR2wRuuo8jhp0sMfK/mDjmjja0hljeMDz4Vnx8EqwDPj5nIl6HT/OZMEQZytl\np6tLwAdG/qU4B7O79+JYXCUhVUKEkrB9VYaXWNvnNjHFqoknGvZ7WyMJyNf4\nxOPm3/Z3eIoOzdTVlsu77qwW/RNpT6RkWfzLKiKgyjhOsstIYaIWEdeUqwzd\nmHawDDsvImYVFmOpbCj+b2i07zJVxu+pCUNwz68bfHYEQ3ioElaszer2gkSe\nwqOpQYy+x+pIwnCYjsCPa9kFj0IZYhkO86GoB7lQtVaGUT2aMPAprYk8jiID\n02YmL7r/Ng4lK/TAou7NJ0YaXarYMRM4Sr/Mv+9zTf6Lbk7ZFcgIRL4puNAq\nKdn4XqaptbLGR/efDHPrPBgafnx7tdR3j1uspGtaKdPLfWjE2GHxgWmTCuRj\nL8vEhkoJ6uac+yB8Cf6CTHPMMZITJwOIjXHV/9CNALsql/ayB3Ovr+HrmEK7\nosLWuwak2PWVZNB2u5xgNZTa0lpJgT97dqrtiL6ncdWBMOpl4rHIc8DnSIon\n8p9SoRPIX7JTWuNxJOg7iitm+j0DEMAwOMBlmeIHBJHl5hydeC0djxOmiI0X\nMPHFqrBaQMDBV4+4WJQIyY7hJC9nGX4G4gMV2wsCdnUJeQR8yO898+p9xLV5\nlosE\r\n=4zAx\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICGBMZL4r7XTp3TaURR96ktMUVLz6y5fX5cXpv+IYeV1AiAGQozxkwb4AJLFKH9P+6ih28s7iTB/kdlH3vtadqGmLA=="}]},"maintainers":[{"name":"levrik","email":"me@levrik.io"}],"_npmUser":{"name":"levrik","email":"me@levrik.io"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mdi-react_6.0.0_1567889903322_0.24614771946696767"},"_hasShrinkwrap":false},"6.1.0":{"name":"mdi-react","version":"6.1.0","description":"Material Design Icons for React","keywords":["mdi","react","material","design","icons"],"repository":{"type":"git","url":"git+ssh://git@github.com/levrik/mdi-react.git"},"scripts":{"prepublishOnly":"cd .. && yarn build-react"},"author":{"name":"Levin Rickert","email":"me@levrik.io"},"license":"(MIT AND OFL-1.1)","bugs":{"url":"https://github.com/levrik/mdi-react/issues"},"homepage":"https://github.com/levrik/mdi-react","peerDependencies":{"react":">=0.14.0"},"typings":"./dist/typings.d.ts","_id":"mdi-react@6.1.0","_nodeVersion":"12.10.0","_npmVersion":"6.10.3","dist":{"integrity":"sha512-k/Tu204ok5ouabcrC8/9CaekseMQ+CAhHCVi7Wr9Au5qW9UkxkW/TNSKEpDImEQ2nOAXieQTawYkddNlNfxE9w==","shasum":"eb53447dff0aef899d95fb951f00216ec6b2c63f","tarball":"https://registry.npmjs.org/mdi-react/-/mdi-react-6.1.0.tgz","fileCount":14665,"unpackedSize":14152036,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdd323CRA9TVsSAnZWagAAI/EP/3u6EY+Ruu0UVuuHFdUd\nYBwj5ircotz0l5mITfQru8jZAmTzSMrtIGEOsEPwIPM3hrMhi3lRZJ+kvrCx\nAd6wMfv4tqzWyZeARIF+ymlYfPBdpL7uOiAGgRH9iWMibVs9feJmOBVZEloU\ntdPD8QPQwbOAXdRKFPSw6zC7OaC3xyUIIMsJDJ82Gy8Hl4PivkjIXiwR9wI0\nNrqggsXy+Ohs11epWztiIKYDCmjSYO7ONscoevJBedZQmM2pzhKHor8qUJDT\nh1GkieKNhLwkOhZssbL7H39isLlHJ/GoMwcyUqlrLecvRKLQR1vn9XqBtYl0\nkmwYpN2Lwof71cV+M8uin9iyF5VpT6+gw63jwH43qf/jWO9YI4bkFVC0IxpQ\n1QaU5yr6yRP0QuAmvGu6cGNhzFdUV7P0oiOPiao8621Db/x2OMReznlYJimg\nxv+9Tm45+42Sl/iqq+XAItz3Gb/6YrJ9TIMNBWbIYYIHUMoSB0fFRUbPqtTs\n1GykdlmgpJv/AZQIcLlUdUFNve4kYEpJ9xZWy1TkwSyONwlcEHW/FaF9SV52\ngwRcp6wmV+1Qs54Ti6mZKw4mhvWVLJesAj85szMoq2RdNgtLSNSUtkbah7Tk\n8b84fb/NBB3i/g+jNBODi4HTZgK8ggM+lkZFX8YEPdeLdZXujb6uTOvxhz0D\n0bIT\r\n=U8q0\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFZddpshOxOogvCoTog0qoGPyxH3RqPNry3GIYkIswXAAiEA3E1xCcaOBqZULQyTjn8/2FKjxGprpeAKmiXZW8XYm0k="}]},"maintainers":[{"name":"levrik","email":"me@levrik.io"}],"_npmUser":{"name":"levrik","email":"me@levrik.io"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mdi-react_6.1.0_1568112054845_0.3236858696678362"},"_hasShrinkwrap":false},"6.2.0":{"name":"mdi-react","version":"6.2.0","description":"Material Design Icons for React","keywords":["mdi","react","material","design","icons"],"repository":{"type":"git","url":"git+ssh://git@github.com/levrik/mdi-react.git"},"scripts":{"prepublishOnly":"cd .. && yarn build-react"},"author":{"name":"Levin Rickert","email":"me@levrik.io"},"license":"(MIT AND OFL-1.1)","bugs":{"url":"https://github.com/levrik/mdi-react/issues"},"homepage":"https://github.com/levrik/mdi-react","peerDependencies":{"react":">=0.14.0"},"typings":"./dist/typings.d.ts","_id":"mdi-react@6.2.0","_nodeVersion":"12.11.1","_npmVersion":"6.11.3","dist":{"integrity":"sha512-IM1+/YjJ5DJ4rWKDqphfxra6RM52T6Yiki1pr7dJzoE8B5SoPln0D3wwPMWuwEm9fd8oqsM8eMwAYuim3tgmzg==","shasum":"861f2fe6dea0721b416eef776ba839333087ef31","tarball":"https://registry.npmjs.org/mdi-react/-/mdi-react-6.2.0.tgz","fileCount":14879,"unpackedSize":14366106,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdnXbSCRA9TVsSAnZWagAArbYP/jLwbLvi74J2HikrZobr\nPzMZXunklbPBeH/fmlDPqy1g4UchmJDGt0lRwsGa27XR9u4XZiPYy99ZNqif\nXfr3fYhkf3f6ViD68JTxVIp0IKevPG+iEy55c72LXWfNWe2ECcQDvymDqzAz\nL/hDJHBp3lEvRko9e5IpsJO1T4W4/66TZVzatqxjEs0Bb/Ad6GY2BVWo4Zbx\nTzeHu9ElBSxL6kiNNQ3chNGVkmQadVWIAG2vtY37jL1TFfysyBbV+KcpOuvg\nsOLr1hidKxt4+ltJQdMcF/EpQITHdbeOwaRIYMzx9jljCs3UyzBjRbt4WdFC\nHOttMK4lLPaCrMmH0SASCV6xJp0EvIjLuefAd6zAp3qa2JSMI/vyHOUtBMSJ\ne4vZCOrgZlgYrjgTM0QpzvIQTpLBThqwyTW56YzoDzbOHVNW+blg/NWueNDd\n6OdjzZmqQqtL3+fgGtA5t0LYGLxiwBKXK6UBVWx5PiYnK8Ljj3WfAEgQfos2\nQj8J1xY78pCjtVxKlLvy/Co5XLcHWhyxxfo0Pop0doZVMIL1gBoQqcn4RLoA\nEro16pmh3nAZDJ5G7hk6xKqN8nnxSJ+kSYradExBVzD9pH9L3NfNKsRlzU60\neDcnrdK3DZg6zLrw1hfgV8KUU886ezpmq40EIfmtw3E65Y59MYYpOIN8nGKO\n+ZQh\r\n=y1//\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIB73slTHhrFGOTvZL6wlT/p6cdl3LFGj9MXW5Cs1zymwAiEApcVaVX1bg/OtsFI1aeu+x6yud4hQRoWe6pG3ybsc5d0="}]},"maintainers":[{"name":"levrik","email":"me@levrik.io"}],"_npmUser":{"name":"levrik","email":"me@levrik.io"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mdi-react_6.2.0_1570600657757_0.7914134326168318"},"_hasShrinkwrap":false},"6.3.0":{"name":"mdi-react","version":"6.3.0","description":"Material Design Icons for React","keywords":["mdi","react","material","design","icons"],"repository":{"type":"git","url":"git+ssh://git@github.com/levrik/mdi-react.git"},"scripts":{"prepublishOnly":"cd .. && yarn build-react"},"author":{"name":"Levin Rickert","email":"me@levrik.io"},"license":"(MIT AND OFL-1.1)","bugs":{"url":"https://github.com/levrik/mdi-react/issues"},"homepage":"https://github.com/levrik/mdi-react","peerDependencies":{"react":">=0.14.0"},"typings":"./dist/typings.d.ts","_id":"mdi-react@6.3.0","_nodeVersion":"12.13.1","_npmVersion":"6.12.1","dist":{"integrity":"sha512-Cs1Q0hwuXjM+scKXnQiw2QH2w2GV3xG/2+dGFidFTjiJeDxkPEBnULkfGZTp1cJMItoBRRKLe+SdPNfW0Xkmmg==","shasum":"09635d90856fe992ad20e06a233a562c24339ff6","tarball":"https://registry.npmjs.org/mdi-react/-/mdi-react-6.3.0.tgz","fileCount":15119,"unpackedSize":14593135,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd2/rLCRA9TVsSAnZWagAAh5cP+gKL2NPSQuSU4JREdqHO\npz+tCs5mQzT8tg6TupYjHTpi/S8O0c2kAzHbZlSg5/ygLa9EVZMvmYwwTCTT\nsX61L5YiMnNt47dd9RbdH7b6KTkXwzXe6TDehD0znpZLhTIRjuL3I/yhGzUb\nRYaCRCSoU1lMBG3NxcInq75E/WW6XFaJCro5Ze2k1cXSJk8faUozDkY2DTUX\nfNVjR5/NhtewA5L7fo0L7RyQ9AGSD3yB+O7RCmaGpy3A71X9/IkAvcrJv87z\nW0OJlONvDx3GtIlO8RdVzujiareboOR0UPauoV5h/wlEfDMiX5XZHuyY3l1k\nK5qAz8I1H+XaGVeJghFOGwH0Y8YsjUjijD95Qs/VFYZb+Ig3BQI2yxvVlozF\nRaKa/AAE5xfLpqrt2TCXg56qTQ9h7MHx2/UR1yH/59qnB45hZShe7cUBzT+R\nPSdJUYrdOagXY2Xan/rqMKh9jtVPSh1W6xx0HXK+L2EMOEXtERtNhqiMXt92\nc9ma+EAhDZheWMRdHSxxpuqjtc0Tfl6dOmNdwgYG7kYEQszELoHttVSKMAbO\nU1Kd+oCUHrZ/j6DicHScaOlSUkmmLolUe02Rk/RNIC9A1WqI5rq2xQFEKrFf\ndUF5t672Qt/SIWOpN9it75fMl2U940AfVUg9O5ltMryV13Ul/JYjpxvllTyH\ntGcH\r\n=mgOg\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDxdGgOiyT07ORcSvwTs+S3Jptm+RC/yQb2tmPJNayjEAiAVtAzrMBgEUTLqM7XOfsYSsuj9c6o6uIJEXE7Ad96SvA=="}]},"maintainers":[{"name":"levrik","email":"me@levrik.io"}],"_npmUser":{"name":"levrik","email":"me@levrik.io"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mdi-react_6.3.0_1574697675235_0.9427030398776415"},"_hasShrinkwrap":false},"6.4.0":{"name":"mdi-react","version":"6.4.0","description":"Material Design Icons for React","keywords":["mdi","react","material","design","icons"],"repository":{"type":"git","url":"git+ssh://git@github.com/levrik/mdi-react.git"},"scripts":{"prepublishOnly":"cd .. && yarn build-react"},"author":{"name":"Levin Rickert","email":"me@levrik.io"},"license":"(MIT AND OFL-1.1)","bugs":{"url":"https://github.com/levrik/mdi-react/issues"},"homepage":"https://github.com/levrik/mdi-react","peerDependencies":{"react":">=0.14.0"},"typings":"./dist/typings.d.ts","_id":"mdi-react@6.4.0","_nodeVersion":"10.16.0","_npmVersion":"6.9.0","dist":{"integrity":"sha512-EJLUeuVPgQ5KlsRHIT7Y8Tjs8305YnUIcAT9TUbOxM754r4Cq5W7NIBn/hWjSaWHGV3HWlNi1beIEwt79vzMEA==","shasum":"e4ff79c0521af52333a11b3ea3bd15bb7f142400","tarball":"https://registry.npmjs.org/mdi-react/-/mdi-react-6.4.0.tgz","fileCount":15119,"unpackedSize":14593656,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd4q1LCRA9TVsSAnZWagAAC+wP/iPV8cQT4BUnZEf+R5P3\n/CzUvPGA5gegOa+8xf/uQoMxTM+ld6r8/pEBVBNlxAngo2w3ONrHWk8YxTts\nfBNKHBOmU5mwUw8R+l9FBHJSR8ombDqoLmglsVPbf/1lHBJtGA++cdNU5yPy\nRzr7MTgTulKSXXxrqRqFwiKOCQkR4tDZ947KvOeGjPNiANRuazrCYccDEG0M\nRqyMredOqWXD846PnbTolw6/0/EKiWCGp6Ev+CQ0XpNAjYq/dp6cibreFYdp\n/fQPzkPqZL1bGs0JA3JGYo81MtbYtU8Q1JuVfIav8bPqfJV1F8HXa9t39pl+\np9n2N94XiwyveJco3h4fyBuwz2V/6PO1b9oJs5v3GOEbp/OS4bFKFPSHnRQi\nGwTANrbgPPq6edFPPYM74f+NwWtLX9tS7x0OOwjgULQCtwT4zGdeoU+z5ciP\nw6oTj8/cFIOuWEpc3YpH9UUG/HA3mTu2Lbw6RbWYGNV+iPMqs5PwnBUq6sQE\nfUZGYnmke71z50QukitIGsFwsvXI7QLEiytfdYb1YpNEQXTEa5VYti+0UIHe\ncPl2fsJWkEWFtB+B8GmS8gAn87/DqkIyyvKenN4rKroNLfbnR644TMIhP13F\nqo9+maKMV1uIE8pYcboHKIykryJTSmCT4drMNCwfLg5B7j2OCCnx+/FBlTKt\nLzTv\r\n=78uW\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHyHJjwycHgZMl4DkKZS/ZW0XvBxzr9Y1vw/LQFIZ10EAiBDKG/6/DBEuboxPYCW9dR1R8sioKPlPlQ1H/QfqS+v3w=="}]},"maintainers":[{"name":"levrik","email":"me@levrik.io"}],"_npmUser":{"name":"levrik","email":"me@levrik.io"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mdi-react_6.4.0_1575136587052_0.6954672292927522"},"_hasShrinkwrap":false},"6.5.0":{"name":"mdi-react","version":"6.5.0","description":"Material Design Icons for React","keywords":["mdi","react","material","design","icons"],"repository":{"type":"git","url":"git+ssh://git@github.com/levrik/mdi-react.git"},"scripts":{"prepublishOnly":"cd .. && yarn build-react"},"author":{"name":"Levin Rickert","email":"me@levrik.io"},"license":"(MIT AND OFL-1.1)","bugs":{"url":"https://github.com/levrik/mdi-react/issues"},"homepage":"https://github.com/levrik/mdi-react","peerDependencies":{"react":">=0.14.0"},"typings":"./dist/typings.d.ts","_id":"mdi-react@6.5.0","_nodeVersion":"12.13.1","_npmVersion":"6.12.1","dist":{"integrity":"sha512-oR7znMshEi/bDageK2nzaZNoz3vXe3Sba6J/V0SdaJ79n1NJlHHHNmbNGGOkuT1IhC05VcpVRghZVIsi7dK2HA==","shasum":"c29bd5c45245e012599bd6d067827f9edb9b5bf0","tarball":"https://registry.npmjs.org/mdi-react/-/mdi-react-6.5.0.tgz","fileCount":15299,"unpackedSize":14772376,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd7m5MCRA9TVsSAnZWagAAfugP/08lkzOegWHiV574iwdf\nlcyx+6zUI/3ruz0VBE3KVCgeAyXzUmM+Ajhx5Y4w3uuuNhdw5QvtPyUWyLms\nga0+oLG8cT70ZqmgbgrcJ8EAZzwLlX2wuJr1x6HY6kk/FK7Ylj3aLV2fd7KU\nVY5fpMFGOgi7fA3G1NjdgQLVSuqvsLlgfFnJgwejw0WuzknnMmlwbwAIsu07\nprygXQEdnh6y3FqonRVi/Y+sDi2F0xaZWWZ6pEnQXtWVbjXmILy3szoAKFru\nuIAAzH5uNDDYVOmhzOrkvUd6JcgbWsePYRTrwdrRCEj7i71Em9zEoN1Jqqkh\n7Ou1uRx2cNU0adgIaLrIGDVcETH3BywWEWstCzqlYhX/dOZM3i8xf653yzYy\niSmU5jpl+6BdtU9TMm2PKYNehd9k0NdJcss34o2h/fN+XcCT4K7unscFkyt6\nnJjVxkb0mKHA1DHO9flC1+nNRMLt6aiTUBO2ZMA7x+0movLuK4VfX306F6LQ\n3VtDuxu9bMVOhkOvXx4T6VB3ODVZQZt86jIlVl6rC7rHfcJ9HtatG9YCHv/P\njoDlugeqLt9yncDisx8e1fOHw4iJE+DqEtjkmgFs/t7UWxMU31jV8Ji6WhxQ\nx8CE3ndBaBmq1zEFgSLkpAvKjIN3mjX/EFe2/q0DKgNTyPlKGfc638VD0Oze\nhdgU\r\n=osYA\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDA0zaRr/4Co7zbOxUiJVcX/D2XDvrqF2aTwqLw0v1N6wIhAIl1gE+1QvQAZGTaO9Vpw8LoqZoPA3zM6XKBQIgWO/i2"}]},"maintainers":[{"name":"levrik","email":"me@levrik.io"}],"_npmUser":{"name":"levrik","email":"me@levrik.io"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mdi-react_6.5.0_1575906891642_0.20325486370492518"},"_hasShrinkwrap":false},"6.6.0":{"name":"mdi-react","version":"6.6.0","description":"Material Design Icons for React","keywords":["mdi","react","material","design","icons"],"repository":{"type":"git","url":"git+ssh://git@github.com/levrik/mdi-react.git"},"scripts":{"prepublishOnly":"cd .. && yarn build-react"},"author":{"name":"Levin Rickert","email":"me@levrik.io"},"license":"(MIT AND OFL-1.1)","bugs":{"url":"https://github.com/levrik/mdi-react/issues"},"homepage":"https://github.com/levrik/mdi-react","peerDependencies":{"react":">=0.14.0"},"typings":"./dist/typings.d.ts","_id":"mdi-react@6.6.0","_nodeVersion":"12.14.1","_npmVersion":"6.13.4","dist":{"integrity":"sha512-HF+Madrr2bROpLoAJaM5kLA3tevXmvnC3aCO5bb3czu6Tc5OogW3kpgpVAX64CAMVkgzWUd+IjCNKWMbAHdvCA==","shasum":"423d770f956119aa2e4c7e4c121508209c36e5d0","tarball":"https://registry.npmjs.org/mdi-react/-/mdi-react-6.6.0.tgz","fileCount":15625,"unpackedSize":15109331,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeI0xgCRA9TVsSAnZWagAA6QQP/3FAGpSw6MV9uDnXOl7K\nhluhV/NxxKEvMQsH+7pZOlBAaWIOmlHRWN1YopOXAvOAm0h3KApIjXqI7ZMt\nPaZK4Bgv+VfFcJb7wiHiXBUqHQw3jfa9i3kf0tRMEPAyWVq2MXJ/BFPs0wk4\ns28hSye5W8/hh4FRLByQWur0VbZYjdITg3FbxEkSBX27sh+FiLCn4AdsTEx/\nGWykE/AZBelOd+AL3/dzvo/BtTGbcv9rYYBm876fzcGp9GUx/IBss5u5r7Eo\n0+QDIJMczO7pV/u81I7gmWmHciVqF/RybL3w2tappLQG58zjbV+R1YGujlVk\n8/mbHOfFQ3nbUOrTR/mj5Vrtfcd//I/lBujOBWqldN/GvkIpC8VHYCFpETso\nx3nhKJ0zvgSSmT4Agffbt8NU+xtHRXOln/JQTK1/zrSN+IRV/KLvsLBFY+xm\n5DxFme0JQknaAI1QIf+MJ/bXnlncG5ncPiW/kmSGOt8heMNlZrVSBNzC+wSC\nr0LBvG3vcOvWUB7NsNJtxtCwJX0WhgS3Yce1QPKfTV/ewyIdKQ3nckIgwA9F\nXFMncq2w9Z4u5ZKRiu9e2Ti1yEls6Oy9AQmJYaF2ZxNb9tDn62PqgOievKyt\nadRBJAv9oX6k4XcAMVkErVkSto6gbq2Xdrsx593lkpLbOzPur690T8Mkfazn\neB0u\r\n=5Ngo\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIH7N0AeumXp5YLJmnQa78LOfu8Hzu+Gcwh41Gyj9M+hgAiBhkRxbCjPUj0k6sB9l7pcP6WWXZVy2fEjAZBVzmq8tPg=="}]},"maintainers":[{"name":"levrik","email":"me@levrik.io"}],"_npmUser":{"name":"levrik","email":"me@levrik.io"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mdi-react_6.6.0_1579371616076_0.21889293471056326"},"_hasShrinkwrap":false},"6.7.0":{"name":"mdi-react","version":"6.7.0","description":"Material Design Icons for React","keywords":["mdi","react","material","design","icons"],"repository":{"type":"git","url":"git+ssh://git@github.com/levrik/mdi-react.git"},"scripts":{"prepublishOnly":"cd .. && yarn build-react"},"author":{"name":"Levin Rickert","email":"me@levrik.io"},"license":"(MIT AND OFL-1.1)","bugs":{"url":"https://github.com/levrik/mdi-react/issues"},"homepage":"https://github.com/levrik/mdi-react","peerDependencies":{"react":">=0.14.0"},"typings":"./dist/typings.d.ts","_id":"mdi-react@6.7.0","_nodeVersion":"12.14.1","_npmVersion":"6.13.4","dist":{"integrity":"sha512-Xpl3bXh4Nmuufoll8ejtErsDd0v/Ty+Je+qC9V3owriFUQZno91F/f0CkAdQj9fRqWY+LwjhFcWii+3lFFGKvQ==","shasum":"d291f919b5f0f99cbbeac111f2c9ca5184607b6b","tarball":"https://registry.npmjs.org/mdi-react/-/mdi-react-6.7.0.tgz","fileCount":15979,"unpackedSize":15469367,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeOoHMCRA9TVsSAnZWagAA7I8P/RYdNsbRtfonO+Qu8Vdj\ngjym41ZJ81YqGh7gmI+Z1momsusA57oli4BPfsN2bYYUuUxzlQ+F7Q/UIr3A\nwYrf4hf0pKOHqq1WVuh0q1zVkEkp/pfXS2cxRMF5qoGBdmR+4DB5dIZ4sL+c\nQq8t6aaar6TZiiijNoJEqRNnEOL16uoTrbz1CWdAUaW4/MP9c8mVVU0plwAR\nP4QUxR3UIvRhTAS7vxnTU+Y8E6Ek5W0BPEuuR8jpOmpsK8jqNL4ubE8BtaeF\n2//nOQT09HDymng/3/Q1s9572+5kUjVekVplf7H3kl0DisaKAGh3siwVD7dZ\nEHoCiDTJ7nY3tkKm80jp/dUqLijIL1sc46Hic7UI2CuY6SKhw2MkG6PppAMY\ndcXFoQecHSV8FCXqe53/U2hw6fzkkSUeZ1p+cuXa3Lihzz/qOIbsdVxq3msg\ngJzuVqWMAPyAJQTc2PbIWXlzVewbdJf2mdDvZqsVCO41+gxXaTUvt8rJByNU\n3mJZly+qDlEYBYKWDkk2wANXm6FUjlCqIfxCn/xT265wE/k0wVTpoR7sINIQ\njdLSy6GbX5IOGgQ3hFDP7oWMvfe5Nekfso9clblYJQGfJ7LVBgr++mWjAbZS\nh+4bsDfF3xQhb98araBcKkk9cb3yRk2f67wQabNSK2n3d3Rcdm6kekH9j016\nMNWD\r\n=8u7t\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBz4apJf64Aym/jHOafahz2wSUubMrq9FWdwBCxFZLNcAiB/B049DrX5e8t/K/b6c3QkRLJO7MO+F066HeCBb+bIaA=="}]},"maintainers":[{"name":"levrik","email":"me@levrik.io"}],"_npmUser":{"name":"levrik","email":"me@levrik.io"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mdi-react_6.7.0_1580892620321_0.3068450590086442"},"_hasShrinkwrap":false},"7.0.0":{"name":"mdi-react","version":"7.0.0","description":"Material Design Icons for React","keywords":["mdi","react","material","design","icons"],"repository":{"type":"git","url":"git+ssh://git@github.com/levrik/mdi-react.git"},"scripts":{"prepublishOnly":"cd .. && yarn build-react"},"author":{"name":"Levin Rickert","email":"me@levrik.io"},"license":"(MIT AND OFL-1.1)","bugs":{"url":"https://github.com/levrik/mdi-react/issues"},"homepage":"https://github.com/levrik/mdi-react","peerDependencies":{"react":">=0.14.0"},"typings":"./dist/typings.d.ts","_id":"mdi-react@7.0.0","_nodeVersion":"12.16.1","_npmVersion":"6.13.4","dist":{"integrity":"sha512-eCsnXO0W4kzPhSuQ3xeGKz4mAZuo0wmSwgoJYOp6LLFZZPWFOX3mjNthk+AXV2jLa6ajXjZeZ/IFrxHMyPQKSQ==","shasum":"efc3577ef302c9622adc72aa07ed62c8ace2283c","tarball":"https://registry.npmjs.org/mdi-react/-/mdi-react-7.0.0.tgz","fileCount":16197,"unpackedSize":15690807,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeZgA5CRA9TVsSAnZWagAAdbUP/RYHoPaQBFdqhB8Jqjyq\nKIJ8Cha522cYxoBmyiGnyLh3Yl39nYQtpPLYPKz3oTHgMrcHyrkn/LFaMBbz\nbZnZprclcKMCxaYSmyusXeyKMNr0GK49jUMQdNQEJwfCbHsHij0LKlBXzxjN\nGhi2mVbiTy5RZCro5f8reQWi1CHyKWg4ioVvO/kM360EvxG4ogZ580gMeQtB\nKCLZugDlW2AKxeUaAt3kwBWfWPVlnbTXNEwVSk48iyzfyIvCFCmvtzIglDNo\npYec3sHdOoAnDLhaHcSv/BPJJOzmdhYaYMnK3fQjxq6MKXvRUpI2kFDqVVOW\nE6CxqiOsl73SfOUUR7yMFHSFfR2yrkWV9hzjrMpla+Rsfsw224QlRWbiFrdK\nMUctix9YvGpOhSH/DSqQl7Z4j06fEB6vjTU4gcU6VSsq4i4vD4deyGatqHfW\nw6OxilPfRSDwQNxrdDou1+HrdM705cYGp5hZ39qXjTtEfY1Z/RrTRUFWk7fi\ncM97Ulzz0XOU3qw77H+50FbA7GX8Qtc06sRh8NzYxWLAbzw+HpWGPj3nF+D6\nE5+MqL74DuYPGHJikEWVj2EuyVHaIG1IQO20+uAg/W6IXPnQUDK2QWasbqmq\nZL2Mi7N9t8+meABb66yXFVAKnRkQEGNGZON6WGLPPRTAshC4IZu/EcHPWfSw\niCGJ\r\n=nu51\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCsRtLJFHe9kUhwJBY5JwvRSsWN4QtNBVVpBFRREFQpnwIgINW8gcIcCnn8OR7sRhSAdytURM44bsJnU4gTDTOZV5c="}]},"maintainers":[{"name":"levrik","email":"me@levrik.io"}],"_npmUser":{"name":"levrik","email":"me@levrik.io"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mdi-react_7.0.0_1583743032852_0.17260624747922293"},"_hasShrinkwrap":false},"7.1.0":{"name":"mdi-react","version":"7.1.0","description":"Material Design Icons for React","keywords":["mdi","react","material","design","icons"],"repository":{"type":"git","url":"git+ssh://git@github.com/levrik/mdi-react.git"},"scripts":{"prepublishOnly":"cd .. && yarn build-react"},"author":{"name":"Levin Rickert","email":"me@levrik.io"},"license":"(MIT AND OFL-1.1)","bugs":{"url":"https://github.com/levrik/mdi-react/issues"},"homepage":"https://github.com/levrik/mdi-react","peerDependencies":{"react":">=0.14.0"},"typings":"./dist/typings.d.ts","_id":"mdi-react@7.1.0","_nodeVersion":"12.16.2","_npmVersion":"6.14.4","dist":{"integrity":"sha512-/ncGCDAMcNWsSmM5hpr4g63NKHwaRkcKS2zgvRA+WjRX0qLjo7aHLl/LY9xOpZ1BLp7epXXrvDxQYLVq2wJIkw==","shasum":"fc958992de611c76cb39629928aab477a1524439","tarball":"https://registry.npmjs.org/mdi-react/-/mdi-react-7.1.0.tgz","fileCount":16423,"unpackedSize":15920700,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJemVbFCRA9TVsSAnZWagAA5EAP/joWCLaBEbHhncCXzj6J\nyEUbCwGSLLpmL/EsLvEXBw0k4QbB+eJeJ+7V8046iRkbBmqjS6mNtker2Eig\ncnNs2fHb2Oa/hmztwPg0I0EAspV8URteaTVPs9UTePbJNyq9n9mTvNQh8zq/\nkkxJVWYA1dmgIwUzLk6B/zMJMVTBi+TJP7KsiwFzR+xR0ZsGLFfHT3e/0+fp\n1rYrLTB7+n5DaTn4nijAlzidgfMJA4VOw9ihIAaL7XHYKQBJCSKZN2+5fa6O\nGB0UINJoxQQ6p1s+VHnink7t8IeR3usYma8yyqt4d+c9J0lK1suaxxyAKokX\nx/M/QRFcTfCO+cVKh7GJC41pyzSJcGPL0CQP5oodLdpczbBhzvWZZ1p75akK\nRKe4X0e/IRxItF3M/q6hBIWX++DW5pQv+2U53SYstby+lc6yzv0ohLhkI1T7\nWB/mqLEPHJxn28GhqXnlkWnVXgP3mPC3+M0UJUsaAbBmY7z02aXNdOIHFssq\nXcwEKOolDxsmm0JTCp2WdMYi1Y8ds+09xbh7uYxPpDSPrhXzWrY1Ybn6PJNM\nFsisbAPMRa8xEQ5ZoUXQt/W0R1QQQCmnPwXDaado07FjgPmhUeibQpkzsNlk\nsnU4BAI15KtGMjSzIS/4vjBISQiPxeNBP1k3PIGpN9RWdE3bfWXziNVrBs09\nhXNV\r\n=ZZdL\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD9KtOpykz/enqcsohaz6s39PXBImJ8L9LSgXxVNTeJNwIgE2buULVOrEm7sagsB/eSLjQW6pJOpZbKw6vMfX4zwAc="}]},"maintainers":[{"name":"levrik","email":"me@levrik.io"}],"_npmUser":{"name":"levrik","email":"me@levrik.io"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mdi-react_7.1.0_1587107525046_0.06904920788839153"},"_hasShrinkwrap":false},"7.2.0":{"name":"mdi-react","version":"7.2.0","description":"Material Design Icons for React","keywords":["mdi","react","material","design","icons"],"repository":{"type":"git","url":"git+ssh://git@github.com/levrik/mdi-react.git"},"scripts":{"prepublishOnly":"cd .. && yarn build-react"},"author":{"name":"Levin Rickert","email":"me@levrik.io"},"license":"(MIT AND OFL-1.1)","bugs":{"url":"https://github.com/levrik/mdi-react/issues"},"homepage":"https://github.com/levrik/mdi-react","peerDependencies":{"react":">=0.14.0"},"typings":"./dist/typings.d.ts","_id":"mdi-react@7.2.0","_nodeVersion":"12.16.3","_npmVersion":"6.14.4","dist":{"integrity":"sha512-oY1uN9PISF/1mJS2p6YeScTet8pzRSXpl3w+bRYQdHV8s4jB71TYdcg/tNAXUOhH41pfs43yF9okxZtJpN3nmQ==","shasum":"aedd99c572b391ec5837c910002dc2b7cf5e0066","tarball":"https://registry.npmjs.org/mdi-react/-/mdi-react-7.2.0.tgz","fileCount":16773,"unpackedSize":16286910,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJevWDkCRA9TVsSAnZWagAAPaUP/jEVFfytYyPSlvg5UPaY\nMzDwL9n7hd8NU0f9BWcgA1U+ej6iv2rj5QXR9LefNXU2YJorJjp2uCLI+NCY\nQ8/fWNolnJ9eky+UguvopCcDaSSPx8W9dVLsd5teAgIjIa/PUUF13UGaemKR\n9RJ2TDsQa85RJdrZjJD6YeMVnHNofW+ZwCD93LWDLnUTqqWa/Vy1+7fAl5bu\nn78QghamhKNJ1SU2jFo3rtArQuKyh+fEtZft5/uH66J57MVfuyTmkZ62NifW\ns40vwQeq/Hd2oTXIsAVDnwzAeJJT4PhPA+lDNVxtXPsV4kaKMGE2Fc2m8oGq\nU3nGz3QeQ8KJ5aAVHXwSJY1XpvNNjgE8vWLQDQBfu7HCkFJkPy7g3cyzJewi\nGrWeOWjQ1uAx9/IvOqJ3WN98Pj3nBxEkkxKbjyb2HnjYLqGq0vhnNI8WO+Ab\nqmfXtWb6NQhXYXN8kPLAZK0tDjXR9SzMchQAhWaUtoLidICO3Mirc86fVRHD\nZL67BnMUDaDN6TI0UQx69DWpvohXEi2GZ/71c2VnUV+wUtk59Lfp1MJi0UAc\nxl+V3ZQtee5CRa9LEsoXj4C7awgZsy5PUtleBpcm3Dk9TjF7KqQtGdo44JwR\njhvJ+KF+RbrHrh84VpC+czRC2dt9WLfRG1qk1fDihkJc+ESNbic+/ZVDMdGM\n98ht\r\n=GaxH\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCgrS7sJKVY56Bbw1OEvUfRV6odBKeN2iTQUIf+3JPtoAIgKSqWKT1ZhaC3/RoDfQn8MB+Hh7+30pQnnGgc1pNc+Mc="}]},"maintainers":[{"name":"levrik","email":"me@levrik.io"}],"_npmUser":{"name":"levrik","email":"me@levrik.io"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mdi-react_7.2.0_1589469411818_0.2634534710768073"},"_hasShrinkwrap":false},"7.3.0":{"name":"mdi-react","version":"7.3.0","description":"Material Design Icons for React","keywords":["mdi","react","material","design","icons"],"repository":{"type":"git","url":"git+ssh://git@github.com/levrik/mdi-react.git"},"scripts":{"prepublishOnly":"cd .. && yarn build-react"},"author":{"name":"Levin Rickert","email":"me@levrik.io"},"license":"(MIT AND OFL-1.1)","bugs":{"url":"https://github.com/levrik/mdi-react/issues"},"homepage":"https://github.com/levrik/mdi-react","peerDependencies":{"react":">=0.14.0"},"typings":"./dist/typings.d.ts","_id":"mdi-react@7.3.0","_nodeVersion":"12.16.3","_npmVersion":"6.14.4","dist":{"integrity":"sha512-pG7nAhzUMHzlI/6jRMvyujMSpuM93gGcTIirpQBYq5zheNf6MkqR4BAMWcwWnK5759MRBqgTusbQm1YHnkJe9Q==","shasum":"70a3d1ebe892e0b4cc18f413472d1b83b9158ba2","tarball":"https://registry.npmjs.org/mdi-react/-/mdi-react-7.3.0.tgz","fileCount":16993,"unpackedSize":16505671,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJey2ZxCRA9TVsSAnZWagAAot0P/2L3Gf+B/G0LZEPfvQQT\nSqOLyRaFaQJ7freO284ceMry4dwg5zj6+823kPNdF+8m3zOSK7iK0O8pKbFg\niCSCXMobgxykouOZeS4nacmtwuwgB0FBH8JmSEW+0dz+kKlT0c34GPeuAK8D\nvW/rnZwiYqUyuAkHyvuK6MbhzLw+qVyqOnFGliR6QSYulkzRdGxIQ9ZUzo1/\nFdWaFMQM1mwylBmdDR6RV1ql0udzJGjp/wP7oMeZBOojiXq1Du+MFPe77Pm/\nXGTu2f2dpgphmpbGMG6KCMpJ/D7mL5o275paW5EIhwiHoUhkZM6Pk+75LYDH\nWps2xYkdrZbFsmGuAQp+mV+bYQwFleIX9laIUSD8I3uPzcnxzUDMrpravQVH\n3+cI7WYz+euS5XA/MUdPAqbuVuTMT8FiMs9yQk0F/eJvea+fr88A4Phyb3cV\n7E1N1li8kNpx9rWG2g0dLOHZ0+yJOpMlJLqfHyBscXd4tffIxJKwSEtMyY6B\nH2kFmXdrmxMa0MujMkx1r3nweZSqQG9QbHtgtBhOj2WUue94j+VID3bx9zdq\noYWN+n5B7Fl8Iuznnlg6GhHPqTgsDWmgvhOMeGtUAzfTdmpbGlldqRjrV2N5\nmUpwnwNLBdySXPM2q6InKiF+75lWgUuG+NZeMqN1ddci7H6lnRLL4toEM5Yp\nvgsx\r\n=4Zvu\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIG206VYSPmIgH4fLljotCiUPDu077R1urwErqTRnkoIhAiEAwJ3uxmxLwUBGsx1mD7f/hpLi1hTLArGsK4JJS0TLj4U="}]},"maintainers":[{"name":"levrik","email":"me@levrik.io"}],"_npmUser":{"name":"levrik","email":"me@levrik.io"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mdi-react_7.3.0_1590388337396_0.7679040016233161"},"_hasShrinkwrap":false},"7.4.0":{"name":"mdi-react","version":"7.4.0","description":"Material Design Icons for React","keywords":["mdi","react","material","design","icons"],"repository":{"type":"git","url":"git+ssh://git@github.com/levrik/mdi-react.git"},"scripts":{"prepublishOnly":"cd .. && yarn build-react"},"author":{"name":"Levin Rickert","email":"me@levrik.io"},"license":"(MIT AND OFL-1.1)","bugs":{"url":"https://github.com/levrik/mdi-react/issues"},"homepage":"https://github.com/levrik/mdi-react","peerDependencies":{"react":">=0.14.0"},"typings":"./dist/typings.d.ts","_id":"mdi-react@7.4.0","_nodeVersion":"12.19.0","_npmVersion":"6.14.8","dist":{"integrity":"sha512-Me04YOxIYU0aepDTwR0zjpBf+6M/VqGEqr+VIh10qeCj3za05sfi7foqokBomcb17IFjTIKXoX92VmKLDQQ6OA==","shasum":"9d0f1c977a18518db5a24777ff85b67efa5a5359","tarball":"https://registry.npmjs.org/mdi-react/-/mdi-react-7.4.0.tgz","fileCount":18343,"unpackedSize":17880158,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfkzFmCRA9TVsSAnZWagAA+U0P/3GXoYYal+TqE6klxpoO\nh+TKfJnw/k28HS0hMHn608vsC+O1zkJ70NJe1HUMlHpplGEbrMOJun8yViGT\njga4T0JQ11GGUN2PJZOlVZAMCW6+Ig7ovBDZ8rY0p7Yo6zLWZUEUxamOCY1p\n0vLoIUeBvAdIdsyP92cr6H1mNBF0rwE6p1hteETSHin5bW8ZOum5L+igVov4\n7Az9tt4mr0XHeNoOK/DMMxY+fwtHf9BmANrVDWwaSVIllFBOfY9uxg7JoSj1\nOl7MCm+RrMu8M05WIFK7MnlcpHfVtOxEmSbvEYCJiNvAGvcy/SOZnHJRtPhg\nUo1pbFKHtBsE8g4BChddW8lgfJhOGNTK81CYKdSSojBfSU5YplL8+FME3HXR\nQQKoTuPNamq9wry3p9VaZFrT0hwv96yAE7yQZJvGv7nf+93Q6ElUXk/JA8fK\nD3DRj0zjmQcm2M2EjGFvL38W+SMgGCL/B02RnsALSvFyxDOvMX4LQ6OGAuLD\nFXS3OOZ1WaysD1fsot6QtfRb5OsKVHYWV7kF8+0kkooR1euJrliNaOmvpWjE\ngrl1EOGWgD3a/shBVyXbmjifdIPTelZq5rLQTR4SVCm2zv+UnQrSc8CjILa4\nMnozTciXEWKBtMzPgOSFSH0IeUsEahA6YaqxFjpAGBmXIGc+gb/NeWcdA3rV\nPnBM\r\n=xMS+\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDC2q1j96UiPwJb7TqpwyvBluLacnoOlMYID5X+WRzbVwIgEX4QskIe8+g5VGSVCCd08EuC4RpWTc1Yydq2xsIBbIk="}]},"maintainers":[{"name":"levrik","email":"me@levrik.io"}],"_npmUser":{"name":"levrik","email":"me@levrik.io"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mdi-react_7.4.0_1603481958283_0.306343464561909"},"_hasShrinkwrap":false},"7.5.0":{"name":"mdi-react","version":"7.5.0","description":"Material Design Icons for React","keywords":["mdi","react","material","design","icons"],"repository":{"type":"git","url":"git+ssh://git@github.com/levrik/mdi-react.git"},"scripts":{"prepublishOnly":"cd .. && yarn build-react"},"author":{"name":"Levin Rickert","email":"me@levrik.io"},"license":"(MIT AND OFL-1.1)","bugs":{"url":"https://github.com/levrik/mdi-react/issues"},"homepage":"https://github.com/levrik/mdi-react","peerDependencies":{"react":">=0.14.0"},"typings":"./dist/typings.d.ts","_id":"mdi-react@7.5.0","_nodeVersion":"12.21.0","_npmVersion":"6.14.11","dist":{"integrity":"sha512-giWvxmBKcqOnhN2ekKN1VvFA9/YF2X5CrZyo7S2EcTZktT0chMreIPVCDF2Q3rjoHTWD7tR+cNsTopeDSaeYHg==","shasum":"f4a5782ea8f181647287f259eecc5af52cf67ccd","tarball":"https://registry.npmjs.org/mdi-react/-/mdi-react-7.5.0.tgz","fileCount":19407,"unpackedSize":19009383,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgR3NkCRA9TVsSAnZWagAAn8EP/jVTqGAmAPmQOROyzKjS\nz2DoTcaDKpn2zRv8cEijzEI/Iq0e2KmmMQgXDv9DdDgRHzYDL6m1XlSB34t1\nylfEx9ITAq59Lxz7S6DY/AIL9E7LJxF11PuygFVr+XZNYTfpMtmaVgVO3eCw\nRnGqNFIZUhbxHftzFTrIa4gsYsx8V16YivzESI9R1cEmOEfVh9lnF4jo/2VQ\nqUPdBccjYeukeL6pJJ6R1TU11wamZbxfgItf2y46bBkWJtx17doXISd83zLe\nzwgIlgXOlcDin90R4aUamkiWjbG1s/vu+8OiHIlP810s5yPl0ON94yjv2aOs\nw1Va8rcM80uNT5Ts8svOOlDS91keBcYzwu4C2AHD/lb4/SaNhKTkXr2pTzKd\nzL6n3vfMibSBcLqpNeOeOuStQBVdThiJDE1ZjxyyC2DxXwLN662gRcmtnqWs\nsWbp2LbzxggMttF3rHQkZaG1wf8crLApN3kvfpGx3O5JO8I00gQtqjjvRaOv\nOm+A27VOfvXBgFrD8+pzgglkm1EwFvGhStBTFMsiJKcZ77lWgcnIPKTJtiB5\nMN8Rz/LvX7wcEKUiOXiIpIfFYbq50tCOWtgPX4IMCdcW7CYTn7LKkx0o0xdH\nsB0QU8xQEmSxHDc9QM+dEP8HAYZSv8guw0s4WwdO4PMRsMZff7DBaZpjEZrQ\nnBex\r\n=ePWR\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDTHnGYLDdUpfOKYbOMACKnK9Uogdw4M6LMfEZ+/rIpmAiBvcg3J2PKWxvZsUoSVojPa7UuOaXOmkplMDJAmFD/mVA=="}]},"_npmUser":{"name":"levrik","email":"me@levrik.io"},"directories":{},"maintainers":[{"name":"levrik","email":"me@levrik.io"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mdi-react_7.5.0_1615295331750_0.6654070085713766"},"_hasShrinkwrap":false},"8.0.0":{"name":"mdi-react","version":"8.0.0","description":"Material Design Icons for React","keywords":["mdi","react","material","design","icons"],"repository":{"type":"git","url":"git+ssh://git@github.com/levrik/mdi-react.git"},"scripts":{"prepublishOnly":"cd .. && yarn build-react"},"author":{"name":"Levin Rickert","email":"me@levrik.io"},"license":"(MIT AND OFL-1.1)","bugs":{"url":"https://github.com/levrik/mdi-react/issues"},"homepage":"https://github.com/levrik/mdi-react","peerDependencies":{"react":">=0.14.0"},"typings":"./dist/typings.d.ts","_id":"mdi-react@8.0.0","_nodeVersion":"12.22.6","_npmVersion":"6.14.15","dist":{"integrity":"sha512-s0bus+FtFPQAihO2XXLSoJlXbM+xKPMBERiSB7RkBpsG9oOV1ILRQnReWcPdfOOAExAYPKJAs0H5z3clqTkvmw==","shasum":"4c9efc7ce276e727b8c87f63d6f406dc8510c21a","tarball":"https://registry.npmjs.org/mdi-react/-/mdi-react-8.0.0.tgz","fileCount":22057,"unpackedSize":21691941,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDh/9LMYMvB7HZXdWy5qsslb8N/wkWZFx70ILFwcCEd/gIhAMvRgARR/b9kiZWhDsT4AKF4b8cHlGe7aI4NxeR1E86C"}]},"_npmUser":{"name":"levrik","email":"me@levrik.io"},"directories":{},"maintainers":[{"name":"levrik","email":"me@levrik.io"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mdi-react_8.0.0_1634583555925_0.5306188585073741"},"_hasShrinkwrap":false},"8.1.0":{"name":"mdi-react","version":"8.1.0","description":"Material Design Icons for React","keywords":["mdi","react","material","design","icons"],"repository":{"type":"git","url":"git+ssh://git@github.com/levrik/mdi-react.git"},"scripts":{"prepublishOnly":"cd .. && yarn build-react"},"author":{"name":"Levin Rickert","email":"me@levrik.io"},"license":"(MIT AND OFL-1.1)","bugs":{"url":"https://github.com/levrik/mdi-react/issues"},"homepage":"https://github.com/levrik/mdi-react","peerDependencies":{"react":">=0.14.0"},"typings":"./dist/typings.d.ts","_id":"mdi-react@8.1.0","_nodeVersion":"12.22.7","_npmVersion":"6.14.15","dist":{"integrity":"sha512-MK/u2TbzyTW61DTzqPdewFjwt/joHndswlEpLRIHXhzbs7E//wncS1C4LVy/U6MLUVTjEc/9Vm70Y7qRFN0StA==","shasum":"faaa1d20e69b70c03e60588d989c6d58031263f3","tarball":"https://registry.npmjs.org/mdi-react/-/mdi-react-8.1.0.tgz","fileCount":22561,"unpackedSize":22231845,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCs7zM5QF465dIZlDwKjWzUMRihvOAq6RyVUsKxbWpoRAIhAO3Asv/au3bc5AoTyDr4PV2wVtif1SU/DMz3jRD9DmIJ"}]},"_npmUser":{"name":"levrik","email":"me@levrik.io"},"directories":{},"maintainers":[{"name":"levrik","email":"me@levrik.io"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mdi-react_8.1.0_1635138706310_0.7614228867754433"},"_hasShrinkwrap":false},"8.2.0":{"name":"mdi-react","version":"8.2.0","description":"Material Design Icons for React","keywords":["mdi","react","material","design","icons"],"repository":{"type":"git","url":"git+ssh://git@github.com/levrik/mdi-react.git"},"scripts":{"prepublishOnly":"cd .. && yarn build-react"},"author":{"name":"Levin Rickert","email":"me@levrik.io"},"license":"(MIT AND OFL-1.1)","bugs":{"url":"https://github.com/levrik/mdi-react/issues"},"homepage":"https://github.com/levrik/mdi-react","peerDependencies":{"react":">=0.14.0"},"typings":"./dist/typings.d.ts","_id":"mdi-react@8.2.0","_nodeVersion":"12.22.7","_npmVersion":"6.14.15","dist":{"integrity":"sha512-94ddMSkWlBSqs8mL+xql+zyh3wjtYSBaPsD5gchwILA06wv31z/lZQ4By83RLco/Ia2me2fUdeAw5TQiO8+sLQ==","shasum":"af81711fc597f04d4c3f7777424f15ca234d9b80","tarball":"https://registry.npmjs.org/mdi-react/-/mdi-react-8.2.0.tgz","fileCount":22913,"unpackedSize":22602019,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh2y9YCRA9TVsSAnZWagAAqZQP/2O81CcteVsnVEJv6p9G\n1Yy9hccthig1jK0B6X40eIK+j5SBuBc3MvxLFsaNILv1t23cWoggqYsKAghf\n6Y6YkSS2lTSDVvVBcIc5Mwi6kGdaNzdDHbtxdGSkoi6KUymZ4zfCgcC7+rYZ\nZYzXcDD+qxaYvhBKv5oXgmP5pG9DHErfjNnfIl2P8wKDHCxpoxRnRrXyH4hV\nwmMJnFE8asl1DvPaKS/2gr8y5gxhrRFq7fmzA8RCluNUWapJbnY+btrLUYXo\nzp2befexItDaodo88o2UhwvHVoqtli07t4sF539zG4ox7reNQhuozI2+qilt\nr5xeHQ2/HTExE7lf2uRloqMDiR39VfBc6qQZWzfRhAHdlkWrzFZc16Ad3yHJ\n4UiDKXEAatJ85ABgTZZwkwT08vcZXuKvWPiZlPhWBTMHQsEIxZQ07Hnl9HeW\nwL4gsSkDLeRbpBeeyJ0lAMLs+xIXwgAd6h/e7KiPBkP+/8QLC+Y8jhu/OPz4\nsg4brNAXO93D9qEsti37he6KOSUAl1iwNsFtXMGsARDkX/IaLcocfAzjgfvW\nlsDID0ZwPNFffiK8dzilMqEpjsYIH0jchtmXX3KbpuxB3xl/hFQzt2Q0o/g0\nGV7Qk6ZAxDyJwBpXVPOsxKop1f2Xo/Dfztch6zeVTc3bW2GKiHci8ZnGJ/1i\ng9RY\r\n=FAOu\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCz7Xv9JTtNSF+iFKA2wy1A6151H58rgL+3TYBRe/OYoAIgPzdxUTETMcEfIam8Tx2+AYQRmC9u7HNujH7NxNrYSE0="}]},"_npmUser":{"name":"levrik","email":"me@levrik.io"},"directories":{},"maintainers":[{"name":"levrik","email":"me@levrik.io"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mdi-react_8.2.0_1636829926783_0.7172373689803575"},"_hasShrinkwrap":false},"8.3.0":{"name":"mdi-react","version":"8.3.0","description":"Material Design Icons for React","keywords":["mdi","react","material","design","icons"],"repository":{"type":"git","url":"git+ssh://git@github.com/levrik/mdi-react.git"},"scripts":{"prepublishOnly":"cd .. && yarn build-react"},"author":{"name":"Levin Rickert","email":"me@levrik.io"},"license":"(MIT AND OFL-1.1)","bugs":{"url":"https://github.com/levrik/mdi-react/issues"},"homepage":"https://github.com/levrik/mdi-react","peerDependencies":{"react":">=0.14.0"},"typings":"./dist/typings.d.ts","_id":"mdi-react@8.3.0","_nodeVersion":"12.22.10","_npmVersion":"6.14.16","dist":{"integrity":"sha512-+TraMJxkPVNxyZest58q+yLtplwpqMtOER5elWF8ElupA3D7LSEyErCiyJGrOjFlLPzHBdVDWUIKGMoBKAFe0Q==","shasum":"61584770bf66b3cda6b920a73d50002fb005b3be","tarball":"https://registry.npmjs.org/mdi-react/-/mdi-react-8.3.0.tgz","fileCount":23307,"unpackedSize":22998734,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiQWApACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpC/g//aDzRHJL6kd068lEoGvScy0vXJg8acHgIASYzi+xhBxJNop1d\r\nMZMbe+mDKlvpHWpNGCygwS7OW85Ez0Po/g6SycEnhBhbtNFxbTWIeoH1FpkV\r\nkyI0ELU4Q9XU/dtRcg+hdsfaXdHd3u3uNRx++6CF126PH6TG8KrbU8h4ok68\r\nOwPfnvwTAMP3Vhkrt59W86MVp2fDzd1l+dVxvREPEPnqON1qfBGRBuIgf7DC\r\nGYKowm8OOaDHIb3KfLf8NJUm/Zr5ki6qQvwXMHDSbQHn4padMBlwXMzGpmSi\r\nshB4Nny0niSuBPfk4pE0NE8rzOIGyLojqLPZ9ChpmQVRANfLhjbmcbf5KFyS\r\nXjnmu5cm9wBnnkOt5mx1KM4ISjzinholtQEKUyDqIHSsXRBbVWbXMw1hH+Ol\r\n5FI5cuT+yZta0imrrG8Qof9+ADd1miOWatltaVaid6f48E6P0NHHM9iW5cqD\r\nAqCQhKMz908zE5WRBrdi8psqIIcJTAQBIoyOv74AcfHgxbcp69YaVc3BtLUb\r\n+zOt0a5e+eVsZytm3rH95a3D1F4fnbhyvRYOLAtu768e6pLbIZJX+zVnrC/V\r\nagCkWSGp1JEZOKt81FlTLJuHBZtG0UmPIXAZAkhB1AbgKbtg/bfTlEKtcUYg\r\nd5e5FG4nEuxfmaWZzMmwRy5LXS5OSdKMs+g=\r\n=V1kw\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBBaFwxPmSm/hxwTrnIfPv5rA++OaUaM4iolvv26C3WsAiA8f0DwJRnzW57MlmwCqUuoIHOBdlpg4eZwhMFRCpKQxw=="}]},"_npmUser":{"name":"levrik","email":"me@levrik.io"},"directories":{},"maintainers":[{"name":"levrik","email":"me@levrik.io"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mdi-react_8.3.0_1648451625552_0.850989103769412"},"_hasShrinkwrap":false},"8.3.1":{"name":"mdi-react","version":"8.3.1","description":"Material Design Icons for React","keywords":["mdi","react","material","design","icons"],"repository":{"type":"git","url":"git+ssh://git@github.com/levrik/mdi-react.git"},"scripts":{"prepublishOnly":"cd .. && yarn build-react"},"author":{"name":"Levin Rickert","email":"me@levrik.io"},"license":"(MIT AND OFL-1.1)","bugs":{"url":"https://github.com/levrik/mdi-react/issues"},"homepage":"https://github.com/levrik/mdi-react","peerDependencies":{"react":">=0.14.0"},"typings":"./dist/typings.d.ts","_id":"mdi-react@8.3.1","_nodeVersion":"12.22.10","_npmVersion":"6.14.16","dist":{"integrity":"sha512-2L1ie7rypQZZdFcqAJMe5ZLdYcsQVggYH9RC0jolG/5dgUz9vPWR4PBWDZ7XOjqwBzzenRTppui4Y8MZfy8xfA==","shasum":"64e1744125f169ccd9bfaeaecbc77017bd66644a","tarball":"https://registry.npmjs.org/mdi-react/-/mdi-react-8.3.1.tgz","fileCount":23365,"unpackedSize":23063534,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiQWKOACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr98xAAhKEuJBtIULsKo0Jm1g9EaZxMljg3aMN9Hkdw+M7C+iWkCD4e\r\nARCPV92Lj3V9f2X2h+AVWfm3vf5uJ2KXo/tWly239RaeimVuEBsj1AcnVJ/p\r\nhjuXh+HxIXc600lm92qhuo7JqYmDEa+tNXh4lHeE8L4+M8IxjG0LLmna/GIe\r\n+gedyOjC1ZoXqMmGvXstKXc+opi28CwXKa+fa6BaakWWnjpi68SA9D794oDZ\r\nrOWfiqw11IgduloluM42vYVLyIUEYcOOiPS0ZUN/Y4LNQrEHuERLlLram202\r\nIxBGPAFn/3+LyKw8UsWwQroJ0ztz/Bh0GaDv3GAsNuwUykS6QqtT3G21Wmq3\r\n9nepqwlpNq/sQggY3YbYSk5snqjI20ZGLU1dcf5PAsBe9j/H51mp9opW+lSg\r\nYjVE7ALiXBqBeP23kl3SxOi+zjz1Pe7glNZ3w/MaLGp+REfJtBWMbRkWdfMO\r\nPGv/XD3E/PhVrIEww8eYoExU78gwUcoQn82RuvsG/XQ0Keg8pzr4jbCfO7CF\r\nSId+tYA04UNMyubWTtPczdW0OeG588aAIP8DRw6SYSLJ+2ctKhfEGWLNt3LV\r\nwI+AE9KrD4KGJETnW6/xohK0CBOKC7IULxIUsClgc+uGjyMey/vUMpyzJzJ7\r\nrliBUgUHP4qjnKzbD6Ug0mXMh5AiB4Fakt4=\r\n=13z4\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCID9M5nFKc7b9vYq6mti1CCQJTc7BimvB6FkOrUX/EGJlAiBpBY+jbqbRvvnMCUIHO5oYE2ZY7v/oLLA2Ni8+YaM46Q=="}]},"_npmUser":{"name":"levrik","email":"me@levrik.io"},"directories":{},"maintainers":[{"name":"levrik","email":"me@levrik.io"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mdi-react_8.3.1_1648452238467_0.35251864224785545"},"_hasShrinkwrap":false},"8.4.0":{"name":"mdi-react","version":"8.4.0","description":"Material Design Icons for React","keywords":["mdi","react","material","design","icons"],"repository":{"type":"git","url":"git+ssh://git@github.com/levrik/mdi-react.git"},"scripts":{"prepublishOnly":"cd .. && yarn build-react"},"author":{"name":"Levin Rickert","email":"me@levrik.io"},"license":"(MIT AND OFL-1.1)","bugs":{"url":"https://github.com/levrik/mdi-react/issues"},"homepage":"https://github.com/levrik/mdi-react","peerDependencies":{"react":">=0.14.0"},"typings":"./dist/typings.d.ts","_id":"mdi-react@8.4.0","_nodeVersion":"12.22.12","_npmVersion":"6.14.16","dist":{"integrity":"sha512-qAuZcZL6Kliut4949Mr7GUb+WaiSVBaYQgx06ReUflqB++O9gVjeQ8eTMQbEFF4inzUZv9YyhNTdX9u0B1MinQ==","shasum":"ad7e4ee8e3a57286f30cf6018b1b40b4f53073bc","tarball":"https://registry.npmjs.org/mdi-react/-/mdi-react-8.4.0.tgz","fileCount":23731,"unpackedSize":23462491,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC4Eykr2XAJV/YBs/+G5x2qKXS8T9BpRYcj7T0UxaPjpAIhAPXZaM9ACWdu+awFSGJrwdx6Ym2wDGrO1AnvxW4ZSA2d"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJigy7zACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmreBxAAgq5EHXYGEkr1naEiMdA7QXBB/uEcyDt3/yHUEiAlziN2LvkX\r\nnKQPT26sW3oxbDmmoKOfmrArl2rOMrNLfZEHbkPEdPYlZh9qdM9eBWUQil+o\r\n++9lQIFfpq0j2iVF8VVl+qyxgmknD/cqybU3dp/V6PQFMAeAT6YDxxjPIO6U\r\nD9+F2PUD++B+pBjq7R8rJlfnaGMns13Uh0JpN50nYxXHa3A7BrESVFeu/p+g\r\nlQKf+AuQxTUYNEQaUQmRa2OP4UCqsedvk1X3TJqcNqdyb5vsuzCU5Oq3cYhh\r\n/mQNJnZBIhTysRTV0H9HFfcrbMxrPfU1Vt4bxfSb/gaD7C8vw9nrADzFgUhp\r\n58GVcR2RdIxhhph4TazlHARsx7o7DW8ECoJPaWZUOySP69/ycke+x7Sc4a/Z\r\nM4urPcrg+Ia1VsGud19W3o7UntRuMZGPZIvVnxIaXfe+9zGONQDUMXaapmfl\r\nymiZJw87GpbEMzJWTkAcoQxGRsDqVd1MK8Klwoe2IhgGqxydArvWoIuCEN+n\r\n+ZMmmd650fSUqwA6ogmHd6T52LD2iGjUx1t86JRRgMSCagjxqJd347Cag8fG\r\nqn3SG3sNQSLWpDKowafnZ2FVNbob1Aa10SOFRc9UDVaNwOoe0c48tGvfu8T6\r\nkJsONmoeZsPnWLYB5z+SQJmI3CeElz/XgWY=\r\n=N63h\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"levrik","email":"me@levrik.io"},"directories":{},"maintainers":[{"name":"levrik","email":"me@levrik.io"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mdi-react_8.4.0_1652764403509_0.6401200388721207"},"_hasShrinkwrap":false},"8.5.0":{"name":"mdi-react","version":"8.5.0","description":"Material Design Icons for React","keywords":["mdi","react","material","design","icons"],"repository":{"type":"git","url":"git+ssh://git@github.com/levrik/mdi-react.git"},"scripts":{"prepublishOnly":"cd .. && yarn build-react"},"author":{"name":"Levin Rickert","email":"me@levrik.io"},"license":"(MIT AND OFL-1.1)","bugs":{"url":"https://github.com/levrik/mdi-react/issues"},"homepage":"https://github.com/levrik/mdi-react","peerDependencies":{"react":">=0.14.0"},"typings":"./dist/typings.d.ts","_id":"mdi-react@8.5.0","_nodeVersion":"12.22.12","_npmVersion":"6.14.16","dist":{"integrity":"sha512-fESKf8reb6iD8/wVuQ0LCeCDm1WyISoixrBjbz4sOwTiR3yLNbAAzp3p58PJpYvo9NkgKOD2L/uwjA+HVOeoag==","shasum":"14202779e4852e7fc6f00e2ecfb97e701e27138d","tarball":"https://registry.npmjs.org/mdi-react/-/mdi-react-8.5.0.tgz","fileCount":24161,"unpackedSize":23913291,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCsG2UZYSOa3VwMz+xzZBep8qJvrheTqokODNOrhR+vzQIhAL5LDqlf1dRcdFX5azGZ+WFHo/1PmoouTfHtqfK/eEP0"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiu/VLACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmoglw/9EpFabXZFUalCeogSCcoqPVmkvsVbfBrg+t9O+SyqNlqgDf/n\r\nANcE7cyolcqoUvMk2g2da4+gzsPxTvNzS/nzxquyBsCcQg5Pqf+FxOmh/0LW\r\nTk6JpuPxvHXk+WRX1S+EmjCFwXOLgbeMZt2i9xKXRmRumzI9ZCUbKcmzR0hx\r\nVrA9mLzquyTbaEEcrwGICYBNawyiQMH2E511q+dII19RRqdOAH71SLebswrg\r\nWPretqcnL1UpKbtk5nuRlFvisnKI/AMSwYyDXuKTzG/zE/P6yvaDq2A+yyIx\r\n55frPlneRKGWODMv5bFWgH/B7FXzdDYD1JFjPblUZtPHkuOmcKndvZ9PE3P4\r\nFxAPbv2dnqlZcR10Ovrh3TpIO3DT655tvUGwkWtgMgGAGsgXZVkWYp2Mec5k\r\nCg4iAU9OKlds+82/pYPG/xZ32MebGZ90C8nobPQTUNfmVr34iEf6iozTs1Tp\r\n4HvD1iEI2aRfwZQvx8ceEryRN2cn4QypuRHBCfVh6muxoShmXY9Q/t+Nkf1Y\r\neDWkxjJW0YcldEygoSDcHkJ0gvlKnz+iCWHeodftXkQRPxYhH0HDf8kRwskz\r\n/GvmLtOGdbw9DWWLrX4DwILvX9OFkvOqinppCg4Wsk9fJcoDBfLqqsNNJTrA\r\nUHfS3mdn18u0lS7xMjc3L6OToiy0wvrqC8E=\r\n=I8ek\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"levrik","email":"me@levrik.io"},"directories":{},"maintainers":[{"name":"levrik","email":"me@levrik.io"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mdi-react_8.5.0_1656485194874_0.10362865790917852"},"_hasShrinkwrap":false},"8.6.0":{"name":"mdi-react","version":"8.6.0","description":"Material Design Icons for React","keywords":["mdi","react","material","design","icons"],"repository":{"type":"git","url":"git+ssh://git@github.com/levrik/mdi-react.git"},"scripts":{"prepublishOnly":"cd .. && yarn build-react"},"author":{"name":"Levin Rickert","email":"me@levrik.io"},"license":"(MIT AND OFL-1.1)","bugs":{"url":"https://github.com/levrik/mdi-react/issues"},"homepage":"https://github.com/levrik/mdi-react","peerDependencies":{"react":">=0.14.0"},"typings":"./dist/typings.d.ts","_id":"mdi-react@8.6.0","_nodeVersion":"12.22.12","_npmVersion":"6.14.16","dist":{"integrity":"sha512-aFhdEYDMCHZ90qGO8yLe902XkRPPeRgd4mOq7IbONnS1eeecvlAFRPETKpAMWKdSoxs+ReCS5nY3gOQG1Ciq3Q==","shasum":"74b8418cb233e7f7c3456b3072df0a5fcc591a8a","tarball":"https://registry.npmjs.org/mdi-react/-/mdi-react-8.6.0.tgz","fileCount":24591,"unpackedSize":24330008,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCwieY+gtb0PWyt42PVsG1YKeIhKmrP+N9O5ksjjG60ywIgQduCknFWmryiXLl5WIqAE7ezKkPumhn2QcOYDLToFhA="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJivUyWACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmry+A//Y2yAEAzXsy0nkwk4+V+FKM06HDk6Z/v4ZBADTi8ykZsD3/GJ\r\nmqsSk+N7UolFBykpaooP1wR19edJbRWqo2Hd0xOMEMduXxBO4P9HY2Da/ovq\r\nj8a5JhmNmZyWwEy4Uvb+a1iwp2420RW8fAtuuZaefK+xf7XitN+EIJZiO6l6\r\nIz6PAh3oc431lj6DvKAxjxJ6lp2yvWtLqWE0iTPxxMBU0vMMUcBldHFHTC8p\r\nCG6sc0uIT1/NTP+5BNhyIBZIG05HH//ONfGm48b27j9ViSucO4U+ROl8OTTG\r\nX6lK1Bs15VNXFEGQkeE2IVA+Tzbfzs50MxXpBgKyiO4WMVU2aKwsRzEMt/u4\r\noGLW5PFldq61eaMwV7w9Ov2v6ZvwRs+FM0gBTkdo7WzLPF5yaRvR6fOzJxOq\r\n4tRMjqWjvd5ynVxcMIQtxOod6MqKhiiSm2qKLE3sykg10TogC3RcsGyrjQ/o\r\nkCrtgC0NUQ+wa0JmzrOAN2NB8LWVmE25VXubHFP522Flt8cpMFoUB/NNR89/\r\nH9EYhR1xXZcJzt4nbv91oagMhnCvKOD9z7ueOlIVYj/U6nNLsT6DJr51NlJj\r\n6gw7UKKdpB8xHaZKphPihb2pJJQaJZn1wuyTpYVxitl3nEta3QJcz4nDlEqU\r\n4riiRGarYmT5I99DRVB6/BmJ5CeZZ9gURq4=\r\n=qbNQ\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"levrik","email":"me@levrik.io"},"directories":{},"maintainers":[{"name":"levrik","email":"me@levrik.io"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mdi-react_8.6.0_1656573078142_0.3014831541447196"},"_hasShrinkwrap":false},"9.0.0":{"name":"mdi-react","version":"9.0.0","description":"Material Design Icons for React","keywords":["mdi","react","material","design","icons"],"repository":{"type":"git","url":"git+ssh://git@github.com/levrik/mdi-react.git"},"scripts":{"prepublishOnly":"cd .. && yarn build-react"},"author":{"name":"Levin Rickert","email":"me@levrik.io"},"license":"(MIT AND OFL-1.1)","bugs":{"url":"https://github.com/levrik/mdi-react/issues"},"homepage":"https://github.com/levrik/mdi-react","peerDependencies":{"react":">=0.14.0"},"typings":"./dist/typings.d.ts","_id":"mdi-react@9.0.0","_nodeVersion":"12.22.12","_npmVersion":"6.14.16","dist":{"integrity":"sha512-bJJX0CbdFqOPXrnrL1/SP01sIDfoXo2ZJHxx8OjzqHvTYGB0YwFr3/0d1pfUU+yBNN3wRAnggeNF3o+opQmRng==","shasum":"86116eadd020e9b75c22d26dc3c8dcc18d85d902","tarball":"https://registry.npmjs.org/mdi-react/-/mdi-react-9.0.0.tgz","fileCount":24901,"unpackedSize":24647496,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIH9mEji8RX/QmrvGwp8d7zQkcuZDzNASutRZs1YfTH/UAiEAhw0XEPHjFdnAukgeP5FwUJIphgkU0ivcaIHh3C+wLx0="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi15fNACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqcxRAAgXdq9altksvBpfKaYe5qgRzvXzE4GEGoNGIjdyLVlJourXpO\r\nVvHkzomH8+OqZmYDBcn23A4tTDs4o+LedZ0P28xZWgboiKZx0/i3hfZAj7K6\r\nFXyfbcESg7dqaujVQSPjjJ+9DXTLl8+4CEjHW8xJ3DThXE3dgBOfvVsv1r6e\r\nOLyMPyxnwl2h5vpYVBsqIFyFHXKllzp+UDjdVUjK5HbvbKq1IoogsEpMUk/J\r\n7AXjYc8KL/0d1iwA1OWeSo1cyTMahF68cIb+CemL19thUtgbf2GvSSmFovQt\r\nS2BUnQkmU3O8tcPkA4ET8DMx5O2cKhm2hw8Fa+xY92jxU3fYXqfpXUOsKUJQ\r\nwPU8EygsAMbmsc7c2UcwOPQvqAz69xT19rFCQpflseRKGUOY0ezHqRyXOHpf\r\nbrn+h0DReSefkAQ70tn9iFAFtZgIx68lxqp4IiJHOCEfh6O6Ge1YKVmdDV45\r\nW8hiAqEY3vvSPSdquSet1x89ipg0CCKFIkXQliYr4L4vWRrVDt4CXcpKAZwy\r\nSsb916kwZquepPyOBGs+H5JXEJaoj42G5Av7ultp8Y2HAvfmVkKWWrerodWp\r\nLTOcgWLoZud9pmbYbAbV77ttnnWrPqkIHXcZVa8+ofF4z2xCSBtr8jHb5beA\r\n8AaHW/D/r+3YYOkIN6aRFPZBq0qlQ7cwrbY=\r\n=0ovM\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"levrik","email":"me@levrik.io"},"directories":{},"maintainers":[{"name":"levrik","email":"me@levrik.io"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mdi-react_9.0.0_1658296268703_0.7406029673197254"},"_hasShrinkwrap":false},"9.1.0":{"name":"mdi-react","version":"9.1.0","description":"Material Design Icons for React","keywords":["mdi","react","material","design","icons"],"repository":{"type":"git","url":"git+ssh://git@github.com/levrik/mdi-react.git"},"scripts":{"prepublishOnly":"cd .. && yarn build-react"},"author":{"name":"Levin Rickert","email":"me@levrik.io"},"license":"(MIT AND OFL-1.1)","bugs":{"url":"https://github.com/levrik/mdi-react/issues"},"homepage":"https://github.com/levrik/mdi-react","peerDependencies":{"react":">=0.14.0"},"typings":"./dist/typings.d.ts","gitHead":"ee94dd06d0485e5bc2c414adfedf1f43af8dcde7","_id":"mdi-react@9.1.0","_nodeVersion":"16.18.1","_npmVersion":"8.19.2","dist":{"integrity":"sha512-QFY9BkhX5MaEFpq+0ZGbM7S0iOGkgPb3RLRyzHJIxo8LT8jGu8VY0M+3tfXAaRgYN83t7ksA7D8kuFTt8d/oag==","shasum":"68ef12a10f6028411e8d00031f41de68338282ed","tarball":"https://registry.npmjs.org/mdi-react/-/mdi-react-9.1.0.tgz","fileCount":25395,"unpackedSize":25088879,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCPHMKEBnKHh5lLtoawaA+sE9f/c3w2C1LcVxtbdgpLSwIhAOV7+y1IjUiywqcMVilaxlaEj/ITJQ5K1PrwojRPiJZ8"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjwShgACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqc1hAAl1wa7Tw1vGLtRoxThfFZu2kfmiskihQwdLIux19EGUBXWr+2\r\nqwWiJHsgXytISklZyhLnj9xyWue34l/S2sCif2PMaSlwP2qXiKIfOr7DCi30\r\n15hThApPI2LzkYUfjGpen7N+jR4z03Sb1xZaQc5KoHh3dLQ3KmlgNjUag/IL\r\n040ukv7qaQQptSq/3X4y02Df9tS9RacnEQO/8nEtAW5MHCaEaKk62DCc+S0e\r\nr4Sh5hLGWbvDO/8W/MvOpw2vmUrupurJAjeXq35JufVBu2+7gGGH76EMgPTP\r\n7I+dMLpsD2dpOOOd1za8iF1ItIfaLL+LyQnjThuhQxV5BGoK7fBgF1QCeNmN\r\nKHh3HWAw6iE6MC++p1CXge4h8TqQMvh+ZZ4Fy3NUbBYltT41ThCHk0wlbU+i\r\nhlY0zB0G5EVyCtw3F8rr08f2m6ZR57hGVU538brHZWRQ478HbQGSoF3APasn\r\nElJvjVTwiRe1LpjnRTLVdRCju+hGKI5sD8rhITK1IAJvkfzEZCy4+u6UPeiw\r\nImp1Emsgx1mEJJreI4d89+3fBItkaF7RpjrUgYEe2mhvLNDXRnWqF20wU6E6\r\n2YmTLS9lNxOfVe0Z3vb6UTrZYYXErJD1iSV50nRjkon5HqDd3Gmrri0Kerhu\r\nykuthx5Dpf9jPRj4nIhVAFU5A11JaH3PCLs=\r\n=NloF\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"levrik","email":"me@levrik.io"},"directories":{},"maintainers":[{"name":"levrik","email":"me@levrik.io"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mdi-react_9.1.0_1673603168123_0.19625070750248996"},"_hasShrinkwrap":false},"9.2.0":{"name":"mdi-react","version":"9.2.0","description":"Material Design Icons for React","keywords":["mdi","react","material","design","icons"],"repository":{"type":"git","url":"git+ssh://git@github.com/levrik/mdi-react.git"},"scripts":{"prepublishOnly":"cd .. && yarn build-react"},"author":{"name":"Levin Rickert","email":"me@levrik.io"},"license":"(MIT AND OFL-1.1)","bugs":{"url":"https://github.com/levrik/mdi-react/issues"},"homepage":"https://github.com/levrik/mdi-react","peerDependencies":{"react":">=0.14.0"},"typings":"./dist/typings.d.ts","_id":"mdi-react@9.2.0","_nodeVersion":"12.22.12","_npmVersion":"6.14.16","dist":{"integrity":"sha512-NI1sIvu142SQKkOMe4bjA9KuvMXpT8PfNOkCblSEuUeakFpgciMuKV9rEyJbQkvFBppDLx1f1xmbcIc06oRyAQ==","shasum":"58fa8654937e5d86c7dfd8be5ba9259940d21115","tarball":"https://registry.npmjs.org/mdi-react/-/mdi-react-9.2.0.tgz","fileCount":25857,"unpackedSize":25566475,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDx62BIK4hgR4WQ6dMC67+RV4ZOBgBWCc++2QCWMxzRUAiAQofWlN2z4daD4zrZBFSDmJg0JvUc3MACRkWyB2vlR0g=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkGAolACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrnZw/+JVIPh9irOhJOm13Rh8hP2CiSap5IBwsmnG8+8fpHYYbXfxse\r\nSqIsrhWmmBUJuIwZxsCv90iCfqlanr1EcYdPtD4UMVeaUFnQUh4zj5JgkZqF\r\nH2KGDXn98Oe5dL0P4b9x2UcK6qrVOZLy7lpyytlAm4t26b8+QSJ7fSWNGNMt\r\nEBetJ+1VbCj3duX2Q4TNudop+uPqYiYdSBVUUUtXvkn0p2YSYxVo95WvZ/qR\r\nyAqrU+XblQzy7z62fiXrfl1CCrwpKYqVM81vvIEktVMYEQuBDl6bK7ynftwv\r\n749sFLVFpoMUNF740vnG6AKl/cwM6QqbxAb615X3IG8E2Mkk/o3Ovm7kp8Vj\r\nChFYMoxMk3t7srzawIoC7krHUXXU4MvboZ4prUqQtLPhg0kTPB7oADTnHw7l\r\nZbBwhk7c1MWV8VIy2a+lWF4eVNwQGJWIZWqeqXugIyC/SBXno2bfq6gqiiUo\r\nEoSUJRgu1FNrNWxGKhQeuAahXiHcJ+AXtRD8QiD55cdUUKiUYeFrnzlL7cnL\r\nvTgU7M+ugMrQJTbSBAvaxo+i8okKjNzMTp4oGY+txVmTB3WFEcmiVW9NcqkP\r\njp9uPBExkX7tVGOhhGjhjatYKIQ+S20M+NE4gMNJ6v0/xbPhD0ExI0arjd/1\r\n9ZjMJqStVl/1qboLU1nhXz+vRibwXhbjAG4=\r\n=QI2x\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"levrik","email":"me@levrik.io"},"directories":{},"maintainers":[{"name":"levrik","email":"me@levrik.io"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mdi-react_9.2.0_1679297061053_0.4913397871801277"},"_hasShrinkwrap":false},"9.3.0":{"name":"mdi-react","version":"9.3.0","description":"Material Design Icons for React","keywords":["mdi","react","material","design","icons"],"repository":{"type":"git","url":"git+ssh://git@github.com/levrik/mdi-react.git"},"scripts":{"prepublishOnly":"cd .. && yarn build-react"},"author":{"name":"Levin Rickert","email":"me@levrik.io"},"license":"(MIT AND OFL-1.1)","bugs":{"url":"https://github.com/levrik/mdi-react/issues"},"homepage":"https://github.com/levrik/mdi-react","peerDependencies":{"react":">=0.14.0"},"typings":"./dist/typings.d.ts","_id":"mdi-react@9.3.0","_nodeVersion":"12.22.12","_npmVersion":"6.14.16","dist":{"integrity":"sha512-Lsqg42oIi/dBfQJ7RckKNH44vemRoKYkz3XaTPcTs3P9FxucuFePfqSqHyZ/ZRM+gSls13KPYxmMvYgysXFUcg==","shasum":"0ba0a35d16549b0a974306b6800562f43e322798","tarball":"https://registry.npmjs.org/mdi-react/-/mdi-react-9.3.0.tgz","fileCount":26075,"unpackedSize":25800379,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHPCw8qzyil2YkmHc/nc91s2zzXFlbISnvGFLvE2Inw1AiEAr3h7Yz7cmvu/WH+HYvpmVaZowqqXGdXKvx3muy2OEUA="}]},"_npmUser":{"name":"levrik","email":"me@levrik.io"},"directories":{},"maintainers":[{"name":"levrik","email":"me@levrik.io"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mdi-react_9.3.0_1696705133806_0.06168756039334755"},"_hasShrinkwrap":false},"9.4.0":{"name":"mdi-react","version":"9.4.0","description":"Material Design Icons for React","keywords":["mdi","react","material","design","icons"],"repository":{"type":"git","url":"git+ssh://git@github.com/levrik/mdi-react.git"},"scripts":{"prepublishOnly":"cd .. && yarn build-react"},"author":{"name":"Levin Rickert","email":"me@levrik.io"},"license":"(MIT AND OFL-1.1)","bugs":{"url":"https://github.com/levrik/mdi-react/issues"},"homepage":"https://github.com/levrik/mdi-react","peerDependencies":{"react":">=0.14.0"},"typings":"./dist/typings.d.ts","_id":"mdi-react@9.4.0","_nodeVersion":"12.22.12","_npmVersion":"6.14.16","dist":{"integrity":"sha512-3McdJimHT2CO+bSDGgJ1SSmU6HvXLEwLdfFi3M/nQT4aauvVxIbIGTCI8eOCcPtkyVyVuZRcCZ7Gw0oaGldYLw==","shasum":"b1f886681084fc85dabbcbc31b39b518f5030ced","tarball":"https://registry.npmjs.org/mdi-react/-/mdi-react-9.4.0.tgz","fileCount":26307,"unpackedSize":26021627,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDmMDjh+69MfhY0RQpz6elZyM1SKWccUNg7ytOfJDgqJgIgaMkDcABzNtieHk2rTbfP+dJ1h54ldVKgw2gv2GWjE78="}]},"_npmUser":{"name":"levrik","email":"me@levrik.io"},"directories":{},"maintainers":[{"name":"levrik","email":"me@levrik.io"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mdi-react_9.4.0_1703683112208_0.09440148582873564"},"_hasShrinkwrap":false}},"homepage":"https://github.com/levrik/mdi-react","keywords":["mdi","react","material","design","icons"],"repository":{"type":"git","url":"git+ssh://git@github.com/levrik/mdi-react.git"},"author":{"name":"Levin Rickert","email":"me@levrik.io"},"bugs":{"url":"https://github.com/levrik/mdi-react/issues"},"license":"(MIT AND OFL-1.1)","readmeFilename":"README.md","users":{"mikekuzm":true}}