Jest: Cannot npm install jest Error: 404 Not Found: @babel/code-frame@^7.0.0-beta.35

Created on 21 Dec 2017  ยท  22Comments  ยท  Source: facebook/jest

Do you want to request a _feature_ or report a _bug_?
Bug

What is the current behavior?

npm i -DE --no-cache  jest
npm ERR! code E404
npm ERR! 404 Not Found: @babel/code-frame@^7.0.0-beta.35

If the current behavior is a bug, please provide the steps to reproduce and
either a repl.it demo through https://repl.it/languages/jest or a minimal
repository on GitHub that we can yarn install and yarn test.

The latest available beta on github seems to be 34. So you guys are asking for a non-existant package
https://github.com/babel/babel/blob/830c527bb7873b29f671a3568b21b4a6af98ceda/packages/babel-code-frame/README.md

What is the expected behavior?
No error

Please provide your exact Jest configuration and mention your Jest, node,
yarn/npm version and operating system.

node v8.9.1
npm v5.5.1

Most helpful comment

Still happening.

All 22 comments

The following works - so it's an error introduced with version 22

npm i -DE [email protected]
npm WARN deprecated [email protected]: This package has been renamed whatwg-mimetype; please upgrade.
npm WARN [email protected] requires a peer of postcss-less@>=1.1.0 but none is installed. You must install peer dependencies yourself.
npm WARN [email protected] requires a peer of postcss-sass@>=0.2.0 but none is installed. You must install peer dependencies yourself.
npm WARN [email protected] requires a peer of postcss-scss@>=1.0.0 but none is installed. You must install peer dependencies yourself.
npm WARN [email protected] requires a peer of sugarss@>=1.0.0 but none is installed. You must install peer dependencies yourself.
npm WARN [email protected] requires a peer of stylelint@^7.6.0 but none is installed. You must install peer dependencies yourself.
npm WARN [email protected] No repository field.
npm WARN [email protected] No license field.

+ [email protected]
added 163 packages in 12.682s

Latest is 35, something is wrong either with npm, the registry, or your network.

https://www.npmjs.com/package/@babel/code-frame

Still happening.

Somehow it feels strange that version 35 was referenced in the past since it disappeared from the npm repository:

npm show @babel/code-frame version
7.0.0-beta.38

We are having a different issue with this package but it seems like it has something to do with our corporate repo and the deletion of this package version.

both npm and yarn fails to download this.

It is available.

$ npm show @babel/code-frame versions

[ '7.0.0-beta.4',
  '7.0.0-beta.5',
  '7.0.0-beta.31',
  '7.0.0-beta.32',
  '7.0.0-beta.33',
  '7.0.0-beta.34',
  '7.0.0-beta.35',
  '7.0.0-beta.36',
  '7.0.0-beta.37',
  '7.0.0-beta.38' ]

curl https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.0.0-beta.35.tgz works. Not sure what's up with your networks/registries...

All info: https://registry.npmjs.org/@babel%2fcode-frame

We reference an internal NPM repository, so I wondered if that was not resolving the dependency correctly. Adding this to my .npmrc seemed to resolve the situation.

@babel:registry=https://registry.npmjs.org

@SimenB I can install @babel/code-frame using npm i @babel/code-frame but there is an issue with NPM REGISTRY: [https://registry.npmjs.com/package/@babel/code-frame]
(https://registry.npmjs.com/package/@babel/code-frame) I'm getting **HTTP 403** error.

Doesn't registry work for public scoped packages? If so, is there an alternative?

Seems like they've changed their permission model, however this URL works: https://registry.npmjs.org/@babel%2fcode-frame

I can't seem to get this to work.

I can run npm view @babel/code-frame versions and see the versions but no matter how I try to install @babel/code-frame it fails with a 404. I have tried pointing my registry to all the listed options with no success.

Is there a current workaround for this or a patch planned?

No plans for a patch.

Does everybody with issues use private registries or a proxy in front of the registry? At work we had issues with our proxy, as it unescaped %2f meaning it put a literal / in the url turning it into a path (thus giving us 404). I don't remember the particulars (I can dig into our infrastructure code later if anybody thinks it'd help), but we basically turned off path decoding.

For private registries, I'd try adding @babel:registry=https://my.registry.com to .npmrc. It's not a scalable solution (if it even makes any difference) but might help.

Hello, did anyone find a way to resolve this 404 Not found error, I tried every single solution that was suggested below and non of them seem to be working.
My friend and I are working on the same network and yet he manages to get the dependencies installed but not me.

Seems it's not available in npm registry.
screen shot 2018-03-27 at 11 04 59 am

it definitely is, please check your npmrc for custom registry

This error was happening for me when I was trying to npm install jest --save-dev from within a create-react-app project, not realizing that jest is already installed from react-scripts. Hopefully, this helps someone.

I am trying to install jest globally and it does require code-frame and still not working.

Here is what I have been through.

Click for details

$ npm install -g jest
npm ERR! code E404
npm ERR! 404 Not Found: @babel/code-frame@^7.0.0-beta.35

npm ERR! A complete log of this run can be found in:
npm ERR!    #####



$ npm show @babel/code-frame 
{ name: '@babel/code-frame',
  description: 'Generate errors that contain a code frame that point to source locations.',
  'dist-tags': { latest: '7.0.0-beta.44' },
  versions: 
   [ '7.0.0-beta.4',
     '7.0.0-beta.5',
     '7.0.0-beta.31',
     '7.0.0-beta.32',
     '7.0.0-beta.33',
     '7.0.0-beta.34',
     '7.0.0-beta.35',
     '7.0.0-beta.36',
     '7.0.0-beta.37',
     '7.0.0-beta.38',
     '7.0.0-beta.39',
     '7.0.0-beta.40',
     '7.0.0-beta.41',
     '7.0.0-beta.42',
     '7.0.0-beta.43',
     '7.0.0-beta.44' ],
  maintainers: 
   [ 'andarist <[email protected]>',
     'danez <[email protected]>',
     'existentialism <[email protected]>',
     'hzoo <[email protected]>',
     'loganfsmyth <[email protected]>',
     'xtuc <[email protected]>' ],
  time: 
   { modified: '2018-04-02T22:19:49.273Z',
     created: '2017-10-30T18:34:05.205Z',
     '7.0.0-beta.4': '2017-10-30T18:34:05.205Z',
     '7.0.0-beta.5': '2017-10-30T20:55:53.706Z',
     '7.0.0-beta.31': '2017-11-03T20:03:06.690Z',
     '7.0.0-beta.32': '2017-11-12T13:32:57.085Z',
     '7.0.0-beta.33': '2017-12-01T14:17:03.737Z',
     '7.0.0-beta.34': '2017-12-02T14:38:57.119Z',
     '7.0.0-beta.35': '2017-12-14T21:47:29.867Z',
     '7.0.0-beta.36': '2017-12-25T19:04:12.961Z',
     '7.0.0-beta.37': '2018-01-08T16:02:16.986Z',
     '7.0.0-beta.38': '2018-01-17T16:31:35.278Z',
     '7.0.0-beta.39': '2018-01-30T20:27:22.199Z',
     '7.0.0-beta.40': '2018-02-12T16:41:53.906Z',
     '7.0.0-beta.41': '2018-03-14T16:25:42.283Z',
     '7.0.0-beta.42': '2018-03-15T20:50:16.725Z',
     '7.0.0-beta.43': '2018-04-02T16:48:06.732Z',
     '7.0.0-beta.44': '2018-04-02T22:19:49.142Z' },
  homepage: 'https://babeljs.io/',
  repository: 
   { type: 'git',
     url: 'https://github.com/babel/babel/tree/master/packages/babel-code-frame' },
  author: 'Sebastian McKenzie <[email protected]>',
  license: 'MIT',
  readmeFilename: 'README.md',
  users: { fangbot: true },
  version: '7.0.0-beta.44',
  main: 'lib/index.js',
  dependencies: { '@babel/highlight': '7.0.0-beta.44' },
  devDependencies: { chalk: '^2.0.0', 'strip-ansi': '^4.0.0' },
  dist: 
   { integrity: 'sha512-cuAuTTIQ9RqcFRJ/Y8PvTh+paepNcaGxwQwjIDRWPXmzzyAeCO4KqS9ikMvq0MCbRk6GlYKwfzStrcP3/jSL8g==',
     shasum: '2a02643368de80916162be70865c97774f3adbd9',
     tarball: 'https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.0.0-beta.44.tgz',
     fileCount: 3,
     unpackedSize: 8927 },
  directories: {} }



$ cat ~/.npmrc
@babel:registry=https://registry.npmjs.org



$ npm install -g @babel/code-frame --verbos
npm info it worked if it ends with ok
npm verb cli [ '/usr/local/Cellar/node/9.2.1/bin/node',
npm verb cli   '/usr/local/bin/npm',
npm verb cli   'install',
npm verb cli   '-g',
npm verb cli   '@babel/code-frame',
npm verb cli   '--verbos' ]
npm info using [email protected]
npm info using [email protected]
npm verb npm-session 9a55dafdd7040d6d
npm http fetch GET 404 https://registry.npmjs.org/@babel%2fcode-frame 908ms
npm verb stack Error: 404 Not Found: @babel/code-frame@latest
npm verb stack     at fetch.then.res (/usr/local/lib/node_modules/npm/node_modules/pacote/lib/fetchers/registry/fetch.js:42:19)
npm verb stack     at tryCatcher (/usr/local/lib/node_modules/npm/node_modules/bluebird/js/release/util.js:16:23)
npm verb stack     at Promise._settlePromiseFromHandler (/usr/local/lib/node_modules/npm/node_modules/bluebird/js/release/promise.js:512:31)
npm verb stack     at Promise._settlePromise (/usr/local/lib/node_modules/npm/node_modules/bluebird/js/release/promise.js:569:18)
npm verb stack     at Promise._settlePromise0 (/usr/local/lib/node_modules/npm/node_modules/bluebird/js/release/promise.js:614:10)
npm verb stack     at Promise._settlePromises (/usr/local/lib/node_modules/npm/node_modules/bluebird/js/release/promise.js:693:18)
npm verb stack     at Async._drainQueue (/usr/local/lib/node_modules/npm/node_modules/bluebird/js/release/async.js:133:16)
npm verb stack     at Async._drainQueues (/usr/local/lib/node_modules/npm/node_modules/bluebird/js/release/async.js:143:10)
npm verb stack     at Immediate.Async.drainQueues [as _onImmediate] (/usr/local/lib/node_modules/npm/node_modules/bluebird/js/release/async.js:17:14)
npm verb stack     at runCallback (timers.js:800:20)
npm verb stack     at tryOnImmediate (timers.js:762:5)
npm verb stack     at processImmediate [as _immediateCallback] (timers.js:733:5)
npm verb cwd /Users/####
npm verb Darwin 16.7.0
npm verb argv "/usr/local/Cellar/node/9.2.1/bin/node" "/usr/local/bin/npm" "install" "-g" "@babel/code-frame" "--verbos"
npm verb node v9.2.1
npm verb npm  v5.6.0
npm ERR! code E404
npm ERR! 404 Not Found: @babel/code-frame@latest
npm verb exit [ 1, true ]

npm ERR! A complete log of this run can be found in:
npm ERR!    ######


however changing the node version down to 7.x.x would pass the installation smoothly.

Click for details

$ nvm use 7.10.1
Now using node v7.10.1 (npm v4.2.0)



$ npm i -g jest
/Users/#####/.nvm/versions/node/v7.10.1/bin/jest -> /Users/#####/.nvm/versions/node/v7.10.1/lib/node_modules/jest/bin/jest.js

> [email protected] install /Users/#####/.nvm/versions/node/v7.10.1/lib/node_modules/jest/node_modules/fsevents
> node install

[fsevents] Success: "/Users/######/.nvm/versions/node/v7.10.1/lib/node_modules/jest/node_modules/fsevents/lib/binding/Release/node-v51-darwin-x64/fse.node" is installed via remote
/Users/#####/.nvm/versions/node/v7.10.1/lib
โ””โ”€โ”ฌ [email protected] 
  โ”œโ”€โ”ฌ [email protected] 
  โ”‚ โ”œโ”€โ”ฌ [email protected] 
  โ”‚ โ”‚ โ””โ”€โ”ฌ [email protected] 
  โ”‚ โ”‚   โ””โ”€โ”ฌ [email protected] 
  โ”‚ โ”‚     โ”œโ”€โ”ฌ [email protected] 
  โ”‚ โ”‚     โ”‚ โ””โ”€โ”ฌ [email protected] 
  โ”‚ โ”‚     โ”‚   โ””โ”€โ”€ [email protected] 
  โ”‚ โ”‚     โ””โ”€โ”€ [email protected] 
  โ”‚ โ””โ”€โ”ฌ [email protected] 
  โ”‚   โ””โ”€โ”€ [email protected] 
  โ””โ”€โ”ฌ [email protected] 
    โ”œโ”€โ”€ [email protected] 
    โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”‚ โ””โ”€โ”ฌ [email protected] 
    โ”‚ โ”‚   โ””โ”€โ”€ [email protected] 
    โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚ โ””โ”€โ”ฌ [email protected] 
    โ”‚   โ””โ”€โ”€ [email protected] 
    โ”œโ”€โ”€ [email protected] 
    โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”‚ โ””โ”€โ”ฌ [email protected] 
    โ”‚ โ”‚   โ”œโ”€โ”€ [email protected] 
    โ”‚ โ”‚   โ””โ”€โ”€ [email protected] 
    โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚ โ””โ”€โ”€ [email protected] 
    โ”œโ”€โ”€ [email protected] 
    โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ””โ”€โ”€ [email protected] 
    โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”‚ โ””โ”€โ”ฌ [email protected] 
    โ”‚ โ”‚   โ””โ”€โ”ฌ [email protected] 
    โ”‚ โ”‚     โ””โ”€โ”ฌ [email protected] 
    โ”‚ โ”‚       โ””โ”€โ”€ [email protected] 
    โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚ โ”‚ โ””โ”€โ”ฌ [email protected] 
    โ”‚ โ”‚   โ””โ”€โ”€ [email protected] 
    โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”‚ โ””โ”€โ”ฌ [email protected] 
    โ”‚ โ”‚   โ”œโ”€โ”€ [email protected] 
    โ”‚ โ”‚   โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”‚   โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚ โ”‚   โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”‚   โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚ โ”‚   โ””โ”€โ”ฌ [email protected] 
    โ”‚ โ”‚     โ”œโ”€โ”€ [email protected] 
    โ”‚ โ”‚     โ””โ”€โ”ฌ [email protected] 
    โ”‚ โ”‚       โ”œโ”€โ”€ [email protected] 
    โ”‚ โ”‚       โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”‚       โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”‚       โ”‚ โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”‚       โ”‚ โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚ โ”‚       โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚ โ”‚       โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚ โ”‚       โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚ โ”‚       โ””โ”€โ”€ [email protected] 
    โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚ โ””โ”€โ”ฌ [email protected] 
    โ”‚   โ””โ”€โ”€ [email protected] 
    โ”œโ”€โ”€ [email protected] 
    โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚ โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚ โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚ โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”‚ โ”‚ โ””โ”€โ”ฌ [email protected] 
    โ”‚ โ”‚ โ”‚   โ””โ”€โ”ฌ [email protected] 
    โ”‚ โ”‚ โ”‚     โ””โ”€โ”€ [email protected] 
    โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”‚ โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”‚ โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚ โ”‚ โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚ โ”‚ โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚ โ”‚ โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚ โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚ โ”‚ โ””โ”€โ”ฌ [email protected] 
    โ”‚ โ”‚   โ””โ”€โ”€ [email protected] 
    โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚ โ””โ”€โ”€ [email protected] 
    โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚ โ””โ”€โ”€ [email protected] 
    โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ””โ”€โ”€ [email protected] 
    โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚ โ”‚ โ””โ”€โ”ฌ [email protected] 
    โ”‚ โ”‚   โ””โ”€โ”€ [email protected] 
    โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”‚ โ””โ”€โ”ฌ [email protected] 
    โ”‚ โ”‚   โ””โ”€โ”€ [email protected] 
    โ”‚ โ””โ”€โ”ฌ [email protected] 
    โ”‚   โ””โ”€โ”€ [email protected] 
    โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚ โ””โ”€โ”ฌ [email protected] 
    โ”‚   โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ””โ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚   โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚   โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚   โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚   โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚   โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚   โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚   โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ””โ”€โ”ฌ [email protected] 
    โ”‚   โ”‚   โ””โ”€โ”€ [email protected] 
    โ”‚   โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ””โ”€โ”€ [email protected] 
    โ”œโ”€โ”€ [email protected] 
    โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”‚ โ””โ”€โ”ฌ [email protected] 
    โ”‚ โ”‚   โ””โ”€โ”€ [email protected] 
    โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚ โ””โ”€โ”ฌ [email protected] 
    โ”‚   โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ””โ”€โ”ฌ [email protected] 
    โ”‚   โ”‚   โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”‚ โ””โ”€โ”ฌ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”‚   โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”‚ โ”‚ โ””โ”€โ”ฌ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”‚ โ”‚   โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”‚ โ”‚   โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”‚ โ”‚   โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”‚ โ”‚   โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”‚ โ”‚   โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ””โ”€โ”€ [email protected] 
    โ”‚   โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ””โ”€โ”ฌ [email protected] 
    โ”‚   โ”‚   โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚   โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚ โ””โ”€โ”ฌ [email protected] 
    โ”‚   โ”‚   โ”‚   โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚   โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”‚ โ”‚ โ””โ”€โ”ฌ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”‚ โ”‚   โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”‚ โ”‚ โ””โ”€โ”ฌ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”‚ โ”‚   โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”‚ โ””โ”€โ”ฌ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”‚   โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”‚   โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”‚   โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”‚   โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”‚   โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”‚   โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”‚   โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”‚   โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”‚   โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”‚   โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”‚   โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚   โ”‚ โ””โ”€โ”ฌ [email protected] 
    โ”‚   โ”‚   โ”‚   โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚   โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚   โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚   โ”‚   โ”‚ โ””โ”€โ”ฌ [email protected] 
    โ”‚   โ”‚   โ”‚   โ”‚   โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚   โ”‚   โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚   โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚   โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚   โ””โ”€โ”ฌ [email protected] 
    โ”‚   โ”‚     โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚     โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚     โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚     โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚     โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚     โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚     โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚     โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚     โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚     โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚     โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚     โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚     โ””โ”€โ”€ [email protected] 
    โ”‚   โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ””โ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚   โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ””โ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚   โ””โ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚     โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”‚ โ””โ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”‚   โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”‚   โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”‚   โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”‚   โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”‚   โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚ โ””โ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚   โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”‚ โ”‚ โ””โ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”‚ โ”‚   โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”‚ โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”‚ โ”‚ โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”‚ โ”‚ โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”‚ โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”‚ โ”‚ โ””โ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”‚ โ”‚   โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”‚ โ””โ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”‚   โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”‚   โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”‚   โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”‚   โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”‚ โ”‚ โ””โ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”‚ โ”‚   โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”‚ โ”‚   โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”‚ โ”‚   โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”‚ โ”‚   โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”‚ โ”‚   โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”‚ โ””โ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”‚   โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”‚   โ”‚ โ””โ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”‚   โ”‚   โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”‚   โ”‚   โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”‚   โ”‚   โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”‚   โ”‚   โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”‚   โ”‚   โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”‚   โ””โ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”‚     โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”‚     โ””โ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”‚       โ””โ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”‚         โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”‚         โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”‚         โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ””โ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚   โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚   โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚   โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚   โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚   โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ”‚ โ””โ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”‚   โ””โ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ””โ”€โ”ฌ [email protected] 
    โ”‚   โ”‚   โ””โ”€โ”€ [email protected] 
    โ”‚   โ””โ”€โ”ฌ [email protected] 
    โ”‚     โ””โ”€โ”€ [email protected] 
    โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”œโ”€โ”ฌ @babel/[email protected] 
    โ”‚ โ”‚ โ””โ”€โ”€ @babel/[email protected] 
    โ”‚ โ””โ”€โ”€ [email protected] 
    โ”œโ”€โ”€ [email protected] 
    โ”œโ”€โ”€ [email protected] 
    โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ””โ”€โ”€ [email protected] 
    โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚ โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”‚ โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”‚ โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚ โ”‚ โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚ โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”‚ โ””โ”€โ”ฌ [email protected] 
    โ”‚ โ”‚   โ”œโ”€โ”€ [email protected] 
    โ”‚ โ”‚   โ””โ”€โ”€ [email protected] 
    โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”‚ โ””โ”€โ”ฌ [email protected] 
    โ”‚ โ”‚   โ”œโ”€โ”€ [email protected] 
    โ”‚ โ”‚   โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”‚   โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚ โ”‚   โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚ โ”‚   โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”‚   โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚ โ”‚   โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚ โ”‚   โ”‚ โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”‚   โ”‚ โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚ โ”‚   โ”‚ โ”‚ โ”‚ โ””โ”€โ”ฌ [email protected] 
    โ”‚ โ”‚   โ”‚ โ”‚ โ”‚   โ””โ”€โ”€ [email protected] 
    โ”‚ โ”‚   โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚ โ”‚   โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”‚   โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚ โ”‚   โ”‚ โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”‚   โ”‚ โ”‚ โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”‚   โ”‚ โ”‚ โ”‚ โ”‚ โ””โ”€โ”ฌ [email protected] 
    โ”‚ โ”‚   โ”‚ โ”‚ โ”‚ โ”‚   โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”‚   โ”‚ โ”‚ โ”‚ โ”‚   โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚ โ”‚   โ”‚ โ”‚ โ”‚ โ”‚   โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”‚   โ”‚ โ”‚ โ”‚ โ”‚   โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚ โ”‚   โ”‚ โ”‚ โ”‚ โ”‚   โ””โ”€โ”€ [email protected] 
    โ”‚ โ”‚   โ”‚ โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚ โ”‚   โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚ โ”‚   โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚ โ”‚   โ”œโ”€โ”€ [email protected] 
    โ”‚ โ”‚   โ””โ”€โ”ฌ [email protected] 
    โ”‚ โ”‚     โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”‚     โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚ โ”‚     โ”‚ โ””โ”€โ”ฌ [email protected] 
    โ”‚ โ”‚     โ”‚   โ””โ”€โ”€ [email protected] 
    โ”‚ โ”‚     โ””โ”€โ”ฌ [email protected] 
    โ”‚ โ”‚       โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”‚       โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”‚       โ”‚ โ”‚ โ””โ”€โ”ฌ [email protected] 
    โ”‚ โ”‚       โ”‚ โ”‚   โ””โ”€โ”€ [email protected] 
    โ”‚ โ”‚       โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚ โ”‚       โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”‚       โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚ โ”‚       โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”‚       โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚ โ”‚       โ”‚ โ””โ”€โ”ฌ [email protected] 
    โ”‚ โ”‚       โ”‚   โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”‚       โ”‚   โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚ โ”‚       โ”‚   โ””โ”€โ”ฌ [email protected] 
    โ”‚ โ”‚       โ”‚     โ””โ”€โ”€ [email protected] 
    โ”‚ โ”‚       โ””โ”€โ”€ [email protected] 
    โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚ โ””โ”€โ”ฌ [email protected] 
    โ”‚   โ”œโ”€โ”€ [email protected] 
    โ”‚   โ””โ”€โ”€ [email protected] 
    โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚ โ””โ”€โ”€ [email protected] 
    โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚ โ””โ”€โ”€ [email protected] 
    โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ””โ”€โ”€ [email protected] 
    โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ””โ”€โ”ฌ [email protected] 
    โ”‚   โ””โ”€โ”ฌ [email protected] 
    โ”‚     โ”œโ”€โ”€ [email protected] 
    โ”‚     โ”œโ”€โ”€ [email protected] 
    โ”‚     โ”œโ”€โ”€ [email protected] 
    โ”‚     โ”œโ”€โ”€ [email protected] 
    โ”‚     โ””โ”€โ”€ [email protected] 
    โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”‚ โ”‚ โ””โ”€โ”ฌ [email protected] 
    โ”‚ โ”‚ โ”‚   โ”œโ”€โ”€ [email protected] 
    โ”‚ โ”‚ โ”‚   โ”œโ”€โ”€ [email protected] 
    โ”‚ โ”‚ โ”‚   โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”‚ โ”‚   โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”‚ โ”‚   โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚ โ”‚ โ”‚   โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚ โ”‚ โ”‚   โ””โ”€โ”€ [email protected] 
    โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”‚ โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚ โ””โ”€โ”ฌ [email protected] 
    โ”‚   โ””โ”€โ”ฌ [email protected] 
    โ”‚     โ””โ”€โ”€ [email protected] 
    โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚ โ””โ”€โ”€ [email protected] 
    โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ””โ”€โ”ฌ [email protected] 
    โ”‚   โ”œโ”€โ”ฌ [email protected] 
    โ”‚   โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚   โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚   โ””โ”€โ”ฌ [email protected] 
    โ”‚     โ””โ”€โ”ฌ [email protected] 
    โ”‚       โ”œโ”€โ”ฌ [email protected] 
    โ”‚       โ”‚ โ”œโ”€โ”€ [email protected] 
    โ”‚       โ”‚ โ””โ”€โ”€ [email protected] 
    โ”‚       โ”œโ”€โ”€ [email protected] 
    โ”‚       โ”œโ”€โ”€ [email protected] 
    โ”‚       โ”œโ”€โ”€ [email protected] 
    โ”‚       โ””โ”€โ”€ [email protected] 
    โ”œโ”€โ”€ [email protected] 
    โ”œโ”€โ”€ [email protected] 
    โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ””โ”€โ”€ [email protected] 
    โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ””โ”€โ”€ [email protected] 
    โ”œโ”€โ”ฌ [email protected] 
    โ”‚ โ””โ”€โ”€ [email protected] 
    โ””โ”€โ”ฌ [email protected] 
      โ”œโ”€โ”ฌ [email protected] 
      โ”‚ โ””โ”€โ”ฌ [email protected] 
      โ”‚   โ”œโ”€โ”ฌ [email protected] 
      โ”‚   โ”‚ โ”œโ”€โ”€ [email protected] 
      โ”‚   โ”‚ โ””โ”€โ”€ [email protected] 
      โ”‚   โ””โ”€โ”ฌ [email protected] 
      โ”‚     โ””โ”€โ”€ [email protected] 
      โ”œโ”€โ”€ [email protected] 
      โ”œโ”€โ”€ [email protected] 
      โ”œโ”€โ”ฌ [email protected] 
      โ”‚ โ”œโ”€โ”ฌ [email protected] 
      โ”‚ โ”‚ โ”œโ”€โ”ฌ [email protected] 
      โ”‚ โ”‚ โ”‚ โ”œโ”€โ”ฌ [email protected] 
      โ”‚ โ”‚ โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
      โ”‚ โ”‚ โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
      โ”‚ โ”‚ โ”‚ โ””โ”€โ”ฌ [email protected] 
      โ”‚ โ”‚ โ”‚   โ””โ”€โ”€ [email protected] 
      โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
      โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
      โ”‚ โ”‚ โ”œโ”€โ”ฌ [email protected] 
      โ”‚ โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
      โ”‚ โ”‚ โ”œโ”€โ”€ [email protected] 
      โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
      โ”‚ โ”œโ”€โ”ฌ [email protected] 
      โ”‚ โ”‚ โ””โ”€โ”€ [email protected] 
      โ”‚ โ””โ”€โ”ฌ [email protected] 
      โ”‚   โ””โ”€โ”€ [email protected] 
      โ”œโ”€โ”€ [email protected] 
      โ”œโ”€โ”€ [email protected] 
      โ”œโ”€โ”€ [email protected] 
      โ”œโ”€โ”ฌ [email protected] 
      โ”‚ โ””โ”€โ”€ [email protected] 
      โ”œโ”€โ”€ [email protected] 
      โ”œโ”€โ”€ [email protected] 
      โ””โ”€โ”ฌ [email protected] 
        โ””โ”€โ”€ [email protected] 


I fought this problem for about an hour this morning; I had an _auth string in my npm config that wasn't letting me install anything. Even if you add @babel:registry=https://my.registry.com it doesn't work with the (I'm guessing) unnecessary _auth param.

EDIT: I also tried downgrading to 7.x.x and the installation didn't work, to clarify.

I had the same issue.
I confirm that removing _auth param in .npmrc fixes that issue.

@sonatype

Does everybody with issues use private registries or a proxy in front of the registry? At work we had issues with our proxy, as it unescaped %2f meaning it put a literal / in the url turning it into a path (thus giving us 404). I don't remember the particulars (I can dig into our infrastructure code later if anybody thinks it'd help), but we basically turned off path decoding.

For private registries, I'd try adding @babel:registry=https://my.registry.com to .npmrc. It's not a scalable solution (if it even makes any difference) but might help.

npm install xxxx --registry=http://registry.npmjs.org solved my issue.

@sonatype

Does everybody with issues use private registries or a proxy in front of the registry? At work we had issues with our proxy, as it unescaped %2f meaning it put a literal / in the url turning it into a path (thus giving us 404). I don't remember the particulars (I can dig into our infrastructure code later if anybody thinks it'd help), but we basically turned off path decoding.
For private registries, I'd try adding @babel:registry=https://my.registry.com to .npmrc. It's not a scalable solution (if it even makes any difference) but might help.

I had the same problem when using a nexus repo as a proxy, I had configure the apache in front of the Nexus repo to not decode the "%2f" https://issues.sonatype.org/browse/NEXUS-10570.
It solved the problem

I had the same problem. The thing is that if you use e.g. a corporate NPM feed, and add that to your .npmrc, then NPM might mix things up, and use your corporate URL to get a external package.

The solution is to only use that feed registry for you corporate package.

Before I had this in my .npmrc

registry=https://urlTofeed
always-auth=true 

I change that to

@myNameSpace:registry=https://urlToFeed
always-auth=true

My package ref in package.json was changed to

{
  "dependencies": {
    ...,
    "@myNameSpace/myPackage": "latest"
  },
Was this page helpful?
0 / 5 - 0 ratings