├── 3. DApps ├── Ballot2 │ ├── test │ │ ├── .Rhistory │ │ └── .DS_Store │ ├── node_modules │ │ ├── mime │ │ │ └── .npmignore │ │ ├── aws4 │ │ │ ├── .tern-port │ │ │ ├── .npmignore │ │ │ └── .travis.yml │ │ ├── extend │ │ │ └── .npmignore │ │ ├── extsprintf │ │ │ ├── .gitmodules │ │ │ └── .npmignore │ │ ├── browser-sync-ui │ │ │ ├── lib │ │ │ │ ├── urls.js │ │ │ │ └── plugins │ │ │ │ │ └── help │ │ │ │ │ └── help.directive.html │ │ │ ├── templates │ │ │ │ ├── plugin.tmpl │ │ │ │ └── inline.template.tmpl │ │ │ └── public │ │ │ │ └── css │ │ │ │ └── core.css │ │ ├── hoek │ │ │ ├── test │ │ │ │ └── modules │ │ │ │ │ ├── ignore.txt │ │ │ │ │ ├── test1.js │ │ │ │ │ ├── test2.js │ │ │ │ │ └── test3.js │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ └── images │ │ │ │ └── hoek.png │ │ ├── qs │ │ │ ├── .eslintignore │ │ │ ├── test │ │ │ │ └── index.js │ │ │ └── CONTRIBUTING.md │ │ ├── browser-sync │ │ │ ├── client │ │ │ │ └── dist │ │ │ │ │ └── .gitkeep │ │ │ ├── cli-options │ │ │ │ └── opts.init.json │ │ │ ├── templates │ │ │ │ └── script-tags-simple.tmpl │ │ │ └── dist │ │ │ │ └── types.js.map │ │ ├── fsevents │ │ │ ├── .npmignore │ │ │ ├── node_modules │ │ │ │ ├── aws4 │ │ │ │ │ ├── .tern-port │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── .travis.yml │ │ │ │ ├── extend │ │ │ │ │ └── .npmignore │ │ │ │ ├── verror │ │ │ │ │ ├── .gitmodules │ │ │ │ │ └── .npmignore │ │ │ │ ├── qs │ │ │ │ │ └── .eslintignore │ │ │ │ ├── hoek │ │ │ │ │ ├── test │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ ├── ignore.txt │ │ │ │ │ │ │ ├── test1.js │ │ │ │ │ │ │ ├── test2.js │ │ │ │ │ │ │ └── test3.js │ │ │ │ │ └── .travis.yml │ │ │ │ ├── isstream │ │ │ │ │ └── .npmignore │ │ │ │ ├── delayed-stream │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── Makefile │ │ │ │ ├── isarray │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ └── Makefile │ │ │ │ ├── nopt │ │ │ │ │ └── .npmignore │ │ │ │ ├── performance-now │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── .travis.yml │ │ │ │ ├── delegates │ │ │ │ │ └── .npmignore │ │ │ │ ├── jsbn │ │ │ │ │ └── .npmignore │ │ │ │ ├── json-stringify-safe │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── test │ │ │ │ │ │ └── mocha.opts │ │ │ │ ├── tar-pack │ │ │ │ │ └── test │ │ │ │ │ │ └── fixtures │ │ │ │ │ │ ├── packed-file.txt │ │ │ │ │ │ └── to-pack │ │ │ │ │ │ ├── bar.txt │ │ │ │ │ │ └── foo.txt │ │ │ │ ├── asn1 │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── .travis.yml │ │ │ │ ├── string_decoder │ │ │ │ │ └── .npmignore │ │ │ │ ├── json-stable-stringify │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── .travis.yml │ │ │ │ ├── sntp │ │ │ │ │ ├── index.js │ │ │ │ │ └── .travis.yml │ │ │ │ ├── debug │ │ │ │ │ ├── node.js │ │ │ │ │ └── .coveralls.yml │ │ │ │ ├── safe-buffer │ │ │ │ │ └── browser.js │ │ │ │ ├── deep-extend │ │ │ │ │ └── index.js │ │ │ │ ├── rc │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── node_modules │ │ │ │ │ │ └── minimist │ │ │ │ │ │ └── example │ │ │ │ │ │ └── parse.js │ │ │ │ ├── readable-stream │ │ │ │ │ ├── duplex.js │ │ │ │ │ ├── transform.js │ │ │ │ │ ├── lib │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ └── streams │ │ │ │ │ │ │ ├── stream.js │ │ │ │ │ │ │ └── stream-browser.js │ │ │ │ │ ├── passthrough.js │ │ │ │ │ ├── duplex-browser.js │ │ │ │ │ └── writable-browser.js │ │ │ │ ├── tar │ │ │ │ │ ├── .travis.yml │ │ │ │ │ └── .npmignore │ │ │ │ ├── tweetnacl │ │ │ │ │ └── .npmignore │ │ │ │ ├── uuid │ │ │ │ │ ├── test │ │ │ │ │ │ └── mocha.opts │ │ │ │ │ └── .travis.yml │ │ │ │ ├── concat-map │ │ │ │ │ └── .travis.yml │ │ │ │ ├── hawk │ │ │ │ │ └── .travis.yml │ │ │ │ ├── node-pre-gyp │ │ │ │ │ └── bin │ │ │ │ │ │ └── node-pre-gyp.cmd │ │ │ │ ├── minimist │ │ │ │ │ ├── .travis.yml │ │ │ │ │ └── example │ │ │ │ │ │ └── parse.js │ │ │ │ ├── stringstream │ │ │ │ │ └── .travis.yml │ │ │ │ ├── balanced-match │ │ │ │ │ └── .npmignore │ │ │ │ ├── ajv │ │ │ │ │ └── scripts │ │ │ │ │ │ └── .eslintrc.yml │ │ │ │ ├── core-util-is │ │ │ │ │ └── README.md │ │ │ │ ├── http-signature │ │ │ │ │ └── .npmignore │ │ │ │ ├── boom │ │ │ │ │ └── .travis.yml │ │ │ │ ├── fstream │ │ │ │ │ └── .npmignore │ │ │ │ ├── getpass │ │ │ │ │ └── .npmignore │ │ │ │ ├── jsonify │ │ │ │ │ └── index.js │ │ │ │ ├── cryptiles │ │ │ │ │ └── .travis.yml │ │ │ │ ├── gauge │ │ │ │ │ └── process.js │ │ │ │ └── number-is-nan │ │ │ │ │ └── index.js │ │ │ └── build │ │ │ │ └── Release │ │ │ │ └── obj.target │ │ │ │ └── action_after_build.stamp │ │ ├── isstream │ │ │ └── .npmignore │ │ ├── readdirp │ │ │ ├── test │ │ │ │ └── bed │ │ │ │ │ ├── root_file1.ext1 │ │ │ │ │ ├── root_file2.ext2 │ │ │ │ │ ├── root_file3.ext3 │ │ │ │ │ ├── root_dir1 │ │ │ │ │ ├── root_dir1_file1.ext1 │ │ │ │ │ ├── root_dir1_file2.ext2 │ │ │ │ │ ├── root_dir1_file3.ext3 │ │ │ │ │ └── root_dir1_subdir1 │ │ │ │ │ │ └── root1_dir1_subdir1_file1.ext1 │ │ │ │ │ └── root_dir2 │ │ │ │ │ ├── root_dir2_file1.ext1 │ │ │ │ │ └── root_dir2_file2.ext2 │ │ │ └── .travis.yml │ │ ├── backo2 │ │ │ ├── .npmignore │ │ │ └── Makefile │ │ ├── bs-recipes │ │ │ ├── recipes │ │ │ │ ├── grunt.sass │ │ │ │ │ ├── desc.md │ │ │ │ │ └── app │ │ │ │ │ │ ├── scss │ │ │ │ │ │ └── main.scss │ │ │ │ │ │ └── css │ │ │ │ │ │ └── main.css │ │ │ │ ├── server.includes │ │ │ │ │ ├── desc.md │ │ │ │ │ └── app │ │ │ │ │ │ ├── header.html │ │ │ │ │ │ ├── css │ │ │ │ │ │ └── main.css │ │ │ │ │ │ └── footer.html │ │ │ │ ├── gulp.swig │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── app │ │ │ │ │ │ ├── css │ │ │ │ │ │ └── main.css │ │ │ │ │ │ └── scss │ │ │ │ │ │ └── main.scss │ │ │ │ ├── gulp.browserify │ │ │ │ │ └── app │ │ │ │ │ │ ├── js │ │ │ │ │ │ ├── dist │ │ │ │ │ │ │ └── .npmignore │ │ │ │ │ │ └── app.js │ │ │ │ │ │ └── css │ │ │ │ │ │ └── main.css │ │ │ │ ├── webpack.babel │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── desc.md │ │ │ │ ├── webpack.typescript │ │ │ │ │ └── desc.md │ │ │ │ ├── gulp.pug │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── app │ │ │ │ │ │ └── scss │ │ │ │ │ │ └── main.scss │ │ │ │ ├── gulp.sass │ │ │ │ │ └── app │ │ │ │ │ │ ├── css │ │ │ │ │ │ └── main.css │ │ │ │ │ │ └── scss │ │ │ │ │ │ └── main.scss │ │ │ │ ├── webpack.preact-hot-loader │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── desc.md │ │ │ │ ├── gulp.ruby.sass │ │ │ │ │ └── app │ │ │ │ │ │ ├── scss │ │ │ │ │ │ └── main.scss │ │ │ │ │ │ └── css │ │ │ │ │ │ └── main.css │ │ │ │ ├── gulp.task.sequence │ │ │ │ │ └── app │ │ │ │ │ │ ├── css │ │ │ │ │ │ └── main.css │ │ │ │ │ │ └── scss │ │ │ │ │ │ └── main.scss │ │ │ │ ├── proxy.custom-css │ │ │ │ │ ├── app │ │ │ │ │ │ └── static │ │ │ │ │ │ │ └── _custom.css │ │ │ │ │ └── desc.md │ │ │ │ ├── server │ │ │ │ │ └── app │ │ │ │ │ │ └── css │ │ │ │ │ │ └── main.css │ │ │ │ ├── webpack.react-hot-loader │ │ │ │ │ ├── .babelrc │ │ │ │ │ └── desc.md │ │ │ │ ├── server.middleware │ │ │ │ │ └── app │ │ │ │ │ │ └── css │ │ │ │ │ │ └── main.css │ │ │ │ ├── middleware.css.injection │ │ │ │ │ ├── app │ │ │ │ │ │ └── css │ │ │ │ │ │ │ └── main.less │ │ │ │ │ └── desc.md │ │ │ │ ├── webpack.typescript.react │ │ │ │ │ └── desc.md │ │ │ │ └── webpack.react-transform-hmr │ │ │ │ │ └── desc.md │ │ │ └── index.js │ │ ├── delayed-stream │ │ │ ├── .npmignore │ │ │ └── Makefile │ │ ├── localtunnel │ │ │ ├── .npmignore │ │ │ ├── node_modules │ │ │ │ └── debug │ │ │ │ │ ├── node.js │ │ │ │ │ └── .coveralls.yml │ │ │ └── .travis.yml │ │ ├── performance-now │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ └── test │ │ │ │ └── mocha.opts │ │ ├── asn1 │ │ │ ├── .npmignore │ │ │ └── .travis.yml │ │ ├── indexof │ │ │ └── .npmignore │ │ ├── jsbn │ │ │ ├── .npmignore │ │ │ └── example.js │ │ ├── json-stringify-safe │ │ │ ├── .npmignore │ │ │ └── test │ │ │ │ └── mocha.opts │ │ ├── require-directory │ │ │ ├── .npmignore │ │ │ └── .travis.yml │ │ ├── after │ │ │ └── .npmignore │ │ ├── blob │ │ │ └── .npmignore │ │ ├── connect-logger │ │ │ └── .npmignore │ │ ├── openurl │ │ │ └── .npmignore │ │ ├── request │ │ │ └── node_modules │ │ │ │ └── qs │ │ │ │ └── .eslintignore │ │ ├── sntp │ │ │ ├── index.js │ │ │ └── .travis.yml │ │ ├── socket.io-adapter │ │ │ └── .npmignore │ │ ├── string_decoder │ │ │ └── .npmignore │ │ ├── xmlhttprequest-ssl │ │ │ └── tests │ │ │ │ └── testdata.txt │ │ ├── base64id │ │ │ └── .npmignore │ │ ├── is-number-like │ │ │ └── .npmignore │ │ ├── json-stable-stringify │ │ │ ├── .npmignore │ │ │ └── .travis.yml │ │ ├── lodash │ │ │ ├── index.js │ │ │ ├── each.js │ │ │ ├── first.js │ │ │ ├── fp │ │ │ │ ├── T.js │ │ │ │ ├── all.js │ │ │ │ ├── any.js │ │ │ │ ├── assoc.js │ │ │ │ ├── first.js │ │ │ │ ├── juxt.js │ │ │ │ ├── nAry.js │ │ │ │ ├── path.js │ │ │ │ ├── paths.js │ │ │ │ ├── pipe.js │ │ │ │ ├── pluck.js │ │ │ │ ├── prop.js │ │ │ │ ├── props.js │ │ │ │ ├── F.js │ │ │ │ ├── __.js │ │ │ │ ├── always.js │ │ │ │ ├── apply.js │ │ │ │ ├── assocPath.js │ │ │ │ ├── dissoc.js │ │ │ │ ├── each.js │ │ │ │ ├── entries.js │ │ │ │ ├── equals.js │ │ │ │ ├── extend.js │ │ │ │ ├── identical.js │ │ │ │ ├── indexBy.js │ │ │ │ ├── init.js │ │ │ │ ├── matches.js │ │ │ │ ├── omitAll.js │ │ │ │ ├── pathOr.js │ │ │ │ ├── pickAll.js │ │ │ │ ├── propOr.js │ │ │ │ ├── property.js │ │ │ │ ├── unapply.js │ │ │ │ ├── unnest.js │ │ │ │ ├── whereEq.js │ │ │ │ ├── allPass.js │ │ │ │ ├── anyPass.js │ │ │ │ ├── complement.js │ │ │ │ ├── compose.js │ │ │ │ ├── conforms.js │ │ │ │ ├── contains.js │ │ │ │ ├── dissocPath.js │ │ │ │ ├── dropLast.js │ │ │ │ ├── entriesIn.js │ │ │ │ ├── invertObj.js │ │ │ │ ├── takeLast.js │ │ │ │ ├── useWith.js │ │ │ │ ├── where.js │ │ │ │ ├── zipObj.js │ │ │ │ ├── eachRight.js │ │ │ │ ├── extendAll.js │ │ │ │ ├── extendWith.js │ │ │ │ ├── pathEq.js │ │ │ │ ├── propEq.js │ │ │ │ ├── symmetricDifference.js │ │ │ │ ├── dropLastWhile.js │ │ │ │ ├── extendAllWith.js │ │ │ │ ├── symmetricDifferenceBy.js │ │ │ │ ├── takeLastWhile.js │ │ │ │ ├── symmetricDifferenceWith.js │ │ │ │ ├── date.js │ │ │ │ ├── lang.js │ │ │ │ ├── math.js │ │ │ │ ├── seq.js │ │ │ │ ├── util.js │ │ │ │ ├── array.js │ │ │ │ ├── number.js │ │ │ │ ├── object.js │ │ │ │ ├── string.js │ │ │ │ ├── function.js │ │ │ │ └── collection.js │ │ │ ├── entries.js │ │ │ ├── extend.js │ │ │ ├── value.js │ │ │ ├── eachRight.js │ │ │ ├── entriesIn.js │ │ │ ├── extendWith.js │ │ │ ├── toJSON.js │ │ │ ├── valueOf.js │ │ │ ├── date.js │ │ │ ├── fp.js │ │ │ └── _realNames.js │ │ ├── parseuri │ │ │ ├── .npmignore │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ └── History.md │ │ ├── to-array │ │ │ └── .npmignore │ │ ├── uws │ │ │ ├── build │ │ │ │ └── Release │ │ │ │ │ └── obj.target │ │ │ │ │ └── action_after_build.stamp │ │ │ └── src │ │ │ │ └── uWS.h │ │ ├── debug │ │ │ ├── node.js │ │ │ ├── .coveralls.yml │ │ │ └── .npmignore │ │ ├── dev-ip │ │ │ ├── .npmignore │ │ │ ├── example.js │ │ │ └── .travis.yml │ │ ├── emitter-steward │ │ │ ├── .npmignore │ │ │ └── .travis.yml │ │ ├── isobject │ │ │ └── node_modules │ │ │ │ └── isarray │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ └── Makefile │ │ ├── moment │ │ │ ├── ender.js │ │ │ └── src │ │ │ │ └── lib │ │ │ │ ├── utils │ │ │ │ ├── mod.js │ │ │ │ └── is-undefined.js │ │ │ │ ├── locale │ │ │ │ └── pre-post-format.js │ │ │ │ └── moment │ │ │ │ └── now.js │ │ ├── requires-port │ │ │ └── .npmignore │ │ ├── batch │ │ │ ├── .npmignore │ │ │ └── Makefile │ │ ├── has-cors │ │ │ └── .npmignore │ │ ├── jsonfile │ │ │ └── .npmignore │ │ ├── stream-throttle │ │ │ ├── AUTHORS │ │ │ ├── index.js │ │ │ └── .npmignore │ │ ├── callsite │ │ │ ├── .npmignore │ │ │ └── Makefile │ │ ├── easy-extender │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ └── node_modules │ │ │ │ └── lodash │ │ │ │ ├── array │ │ │ │ ├── head.js │ │ │ │ ├── tail.js │ │ │ │ ├── unique.js │ │ │ │ └── object.js │ │ │ │ ├── lang │ │ │ │ └── eq.js │ │ │ │ ├── collection │ │ │ │ ├── all.js │ │ │ │ ├── any.js │ │ │ │ ├── collect.js │ │ │ │ ├── detect.js │ │ │ │ ├── each.js │ │ │ │ ├── foldl.js │ │ │ │ ├── inject.js │ │ │ │ ├── max.js │ │ │ │ ├── min.js │ │ │ │ ├── select.js │ │ │ │ ├── sum.js │ │ │ │ ├── contains.js │ │ │ │ ├── foldr.js │ │ │ │ ├── include.js │ │ │ │ └── eachRight.js │ │ │ │ ├── object │ │ │ │ ├── extend.js │ │ │ │ └── methods.js │ │ │ │ ├── chain │ │ │ │ ├── commit.js │ │ │ │ ├── concat.js │ │ │ │ ├── plant.js │ │ │ │ ├── run.js │ │ │ │ ├── toJSON.js │ │ │ │ ├── value.js │ │ │ │ ├── valueOf.js │ │ │ │ ├── reverse.js │ │ │ │ └── toString.js │ │ │ │ ├── function │ │ │ │ ├── compose.js │ │ │ │ └── backflow.js │ │ │ │ ├── utility │ │ │ │ └── iteratee.js │ │ │ │ └── date.js │ │ ├── parseqs │ │ │ ├── .npmignore │ │ │ ├── Makefile │ │ │ └── README.md │ │ ├── preserve │ │ │ └── .travis.yml │ │ ├── readable-stream │ │ │ ├── node_modules │ │ │ │ └── isarray │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ └── Makefile │ │ │ ├── duplex.js │ │ │ ├── transform.js │ │ │ ├── lib │ │ │ │ └── internal │ │ │ │ │ └── streams │ │ │ │ │ ├── stream.js │ │ │ │ │ └── stream-browser.js │ │ │ ├── passthrough.js │ │ │ ├── duplex-browser.js │ │ │ └── writable-browser.js │ │ ├── async-each │ │ │ └── .npmignore │ │ ├── better-assert │ │ │ ├── .npmignore │ │ │ └── Makefile │ │ ├── component-bind │ │ │ ├── .npmignore │ │ │ └── Makefile │ │ ├── component-inherit │ │ │ ├── .npmignore │ │ │ └── History.md │ │ ├── connect │ │ │ └── node_modules │ │ │ │ ├── debug │ │ │ │ ├── .jshintrc │ │ │ │ └── .npmignore │ │ │ │ └── ms │ │ │ │ └── .npmignore │ │ ├── lite-server │ │ │ ├── .npmignore │ │ │ └── .travis.yml │ │ ├── object-component │ │ │ └── .npmignore │ │ ├── base64-arraybuffer │ │ │ └── .npmignore │ │ ├── eazy-logger │ │ │ └── example.js │ │ ├── finalhandler │ │ │ └── node_modules │ │ │ │ ├── debug │ │ │ │ ├── .jshintrc │ │ │ │ └── .npmignore │ │ │ │ └── ms │ │ │ │ └── .npmignore │ │ ├── limiter │ │ │ ├── .npmignore │ │ │ └── index.js │ │ ├── nan │ │ │ └── include_dirs.js │ │ ├── send │ │ │ └── node_modules │ │ │ │ └── debug │ │ │ │ ├── node.js │ │ │ │ └── .coveralls.yml │ │ ├── serve-index │ │ │ └── node_modules │ │ │ │ ├── debug │ │ │ │ ├── .jshintrc │ │ │ │ └── .npmignore │ │ │ │ └── ms │ │ │ │ └── .npmignore │ │ ├── tweetnacl │ │ │ └── .npmignore │ │ ├── concat-map │ │ │ └── .travis.yml │ │ ├── hawk │ │ │ ├── .travis.yml │ │ │ └── images │ │ │ │ ├── hawk.png │ │ │ │ └── logo.png │ │ ├── require-main-filename │ │ │ └── .npmignore │ │ ├── rx │ │ │ ├── ts │ │ │ │ └── core │ │ │ │ │ └── joins │ │ │ │ │ └── plan.ts │ │ │ └── .coveralls.yml │ │ ├── stringstream │ │ │ └── .travis.yml │ │ ├── ua-parser-js │ │ │ └── dist │ │ │ │ └── ua-parser.html │ │ ├── glob-parent │ │ │ └── .npmignore │ │ ├── balanced-match │ │ │ └── .npmignore │ │ ├── unpipe │ │ │ └── HISTORY.md │ │ ├── is-arrayish │ │ │ ├── .npmignore │ │ │ └── .istanbul.yml │ │ ├── ajv │ │ │ └── scripts │ │ │ │ └── .eslintrc.yml │ │ ├── builtin-modules │ │ │ └── static.js │ │ ├── core-util-is │ │ │ └── README.md │ │ ├── fs-extra │ │ │ └── lib │ │ │ │ ├── copy-sync │ │ │ │ └── index.js │ │ │ │ └── copy │ │ │ │ └── index.js │ │ ├── http-signature │ │ │ └── .npmignore │ │ ├── minimist │ │ │ └── example │ │ │ │ └── parse.js │ │ ├── boom │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ └── images │ │ │ │ └── boom.png │ │ ├── http-proxy │ │ │ └── .npmignore │ │ ├── jsonify │ │ │ └── index.js │ │ ├── getpass │ │ │ └── .npmignore │ │ ├── utils-merge │ │ │ └── .travis.yml │ │ ├── cryptiles │ │ │ └── .travis.yml │ │ ├── number-is-nan │ │ │ └── index.js │ │ ├── object-path │ │ │ └── .npmignore │ │ ├── pinkie-promise │ │ │ └── index.js │ │ ├── safe-buffer │ │ │ └── .travis.yml │ │ ├── uuid │ │ │ ├── v3.js │ │ │ └── v5.js │ │ ├── form-data │ │ │ └── lib │ │ │ │ └── browser.js │ │ ├── has-binary2 │ │ │ └── README.md │ │ ├── sshpk │ │ │ └── .npmignore │ │ └── async-limiter │ │ │ └── .travis.yml │ ├── .DS_Store │ ├── bs-config.json │ ├── src │ │ ├── .DS_Store │ │ └── images │ │ │ ├── .DS_Store │ │ │ ├── apple.jpg │ │ │ ├── banana.jpg │ │ │ ├── mango.jpg │ │ │ └── orange.jpg │ └── build │ │ └── .DS_Store ├── Coin │ ├── node_modules │ │ ├── mime │ │ │ └── .npmignore │ │ ├── aws4 │ │ │ ├── .tern-port │ │ │ ├── .npmignore │ │ │ └── .travis.yml │ │ ├── extend │ │ │ └── .npmignore │ │ ├── extsprintf │ │ │ ├── .gitmodules │ │ │ └── .npmignore │ │ ├── qs │ │ │ ├── .eslintignore │ │ │ ├── test │ │ │ │ └── index.js │ │ │ └── CONTRIBUTING.md │ │ ├── browser-sync-ui │ │ │ ├── lib │ │ │ │ ├── urls.js │ │ │ │ └── plugins │ │ │ │ │ └── help │ │ │ │ │ └── help.directive.html │ │ │ ├── templates │ │ │ │ ├── plugin.tmpl │ │ │ │ └── inline.template.tmpl │ │ │ └── public │ │ │ │ └── css │ │ │ │ └── core.css │ │ ├── fsevents │ │ │ ├── .npmignore │ │ │ ├── node_modules │ │ │ │ ├── verror │ │ │ │ │ ├── .gitmodules │ │ │ │ │ └── .npmignore │ │ │ │ ├── aws4 │ │ │ │ │ ├── .tern-port │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── .travis.yml │ │ │ │ ├── extend │ │ │ │ │ └── .npmignore │ │ │ │ ├── hoek │ │ │ │ │ ├── test │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ ├── ignore.txt │ │ │ │ │ │ │ ├── test1.js │ │ │ │ │ │ │ ├── test2.js │ │ │ │ │ │ │ └── test3.js │ │ │ │ │ └── .travis.yml │ │ │ │ ├── isstream │ │ │ │ │ └── .npmignore │ │ │ │ ├── qs │ │ │ │ │ └── .eslintignore │ │ │ │ ├── delayed-stream │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── Makefile │ │ │ │ ├── nopt │ │ │ │ │ └── .npmignore │ │ │ │ ├── delegates │ │ │ │ │ └── .npmignore │ │ │ │ ├── isarray │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ └── Makefile │ │ │ │ ├── performance-now │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── .travis.yml │ │ │ │ ├── asn1 │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── .travis.yml │ │ │ │ ├── jsbn │ │ │ │ │ └── .npmignore │ │ │ │ ├── json-stringify-safe │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── test │ │ │ │ │ │ └── mocha.opts │ │ │ │ ├── string_decoder │ │ │ │ │ └── .npmignore │ │ │ │ ├── tar-pack │ │ │ │ │ └── test │ │ │ │ │ │ └── fixtures │ │ │ │ │ │ ├── packed-file.txt │ │ │ │ │ │ └── to-pack │ │ │ │ │ │ ├── bar.txt │ │ │ │ │ │ └── foo.txt │ │ │ │ ├── json-stable-stringify │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── .travis.yml │ │ │ │ ├── sntp │ │ │ │ │ ├── index.js │ │ │ │ │ └── .travis.yml │ │ │ │ ├── debug │ │ │ │ │ ├── node.js │ │ │ │ │ └── .coveralls.yml │ │ │ │ ├── safe-buffer │ │ │ │ │ └── browser.js │ │ │ │ ├── rc │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── node_modules │ │ │ │ │ │ └── minimist │ │ │ │ │ │ └── example │ │ │ │ │ │ └── parse.js │ │ │ │ ├── deep-extend │ │ │ │ │ └── index.js │ │ │ │ ├── tweetnacl │ │ │ │ │ └── .npmignore │ │ │ │ ├── uuid │ │ │ │ │ ├── test │ │ │ │ │ │ └── mocha.opts │ │ │ │ │ └── .travis.yml │ │ │ │ ├── hawk │ │ │ │ │ └── .travis.yml │ │ │ │ ├── readable-stream │ │ │ │ │ ├── duplex.js │ │ │ │ │ ├── transform.js │ │ │ │ │ ├── lib │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ └── streams │ │ │ │ │ │ │ ├── stream.js │ │ │ │ │ │ │ └── stream-browser.js │ │ │ │ │ ├── passthrough.js │ │ │ │ │ ├── duplex-browser.js │ │ │ │ │ └── writable-browser.js │ │ │ │ ├── tar │ │ │ │ │ ├── .travis.yml │ │ │ │ │ └── .npmignore │ │ │ │ ├── concat-map │ │ │ │ │ └── .travis.yml │ │ │ │ ├── minimist │ │ │ │ │ ├── .travis.yml │ │ │ │ │ └── example │ │ │ │ │ │ └── parse.js │ │ │ │ ├── node-pre-gyp │ │ │ │ │ └── bin │ │ │ │ │ │ └── node-pre-gyp.cmd │ │ │ │ ├── stringstream │ │ │ │ │ └── .travis.yml │ │ │ │ ├── balanced-match │ │ │ │ │ └── .npmignore │ │ │ │ ├── ajv │ │ │ │ │ └── scripts │ │ │ │ │ │ └── .eslintrc.yml │ │ │ │ ├── core-util-is │ │ │ │ │ └── README.md │ │ │ │ ├── http-signature │ │ │ │ │ └── .npmignore │ │ │ │ ├── boom │ │ │ │ │ └── .travis.yml │ │ │ │ ├── getpass │ │ │ │ │ └── .npmignore │ │ │ │ ├── jsonify │ │ │ │ │ └── index.js │ │ │ │ ├── fstream │ │ │ │ │ └── .npmignore │ │ │ │ └── gauge │ │ │ │ │ └── process.js │ │ │ └── build │ │ │ │ └── Release │ │ │ │ └── obj.target │ │ │ │ └── action_after_build.stamp │ │ ├── hoek │ │ │ ├── test │ │ │ │ └── modules │ │ │ │ │ ├── ignore.txt │ │ │ │ │ ├── test1.js │ │ │ │ │ ├── test2.js │ │ │ │ │ └── test3.js │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ └── images │ │ │ │ └── hoek.png │ │ ├── isstream │ │ │ └── .npmignore │ │ ├── backo2 │ │ │ └── .npmignore │ │ ├── browser-sync │ │ │ ├── client │ │ │ │ └── dist │ │ │ │ │ └── .gitkeep │ │ │ ├── cli-options │ │ │ │ └── opts.init.json │ │ │ ├── templates │ │ │ │ └── script-tags-simple.tmpl │ │ │ └── dist │ │ │ │ └── types.js.map │ │ ├── delayed-stream │ │ │ ├── .npmignore │ │ │ └── Makefile │ │ ├── localtunnel │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ └── node_modules │ │ │ │ └── debug │ │ │ │ ├── node.js │ │ │ │ └── .coveralls.yml │ │ ├── performance-now │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ └── test │ │ │ │ └── mocha.opts │ │ ├── readdirp │ │ │ ├── test │ │ │ │ └── bed │ │ │ │ │ ├── root_file1.ext1 │ │ │ │ │ ├── root_file2.ext2 │ │ │ │ │ ├── root_file3.ext3 │ │ │ │ │ ├── root_dir1 │ │ │ │ │ ├── root_dir1_file1.ext1 │ │ │ │ │ ├── root_dir1_file2.ext2 │ │ │ │ │ ├── root_dir1_file3.ext3 │ │ │ │ │ └── root_dir1_subdir1 │ │ │ │ │ │ └── root1_dir1_subdir1_file1.ext1 │ │ │ │ │ └── root_dir2 │ │ │ │ │ ├── root_dir2_file1.ext1 │ │ │ │ │ └── root_dir2_file2.ext2 │ │ │ └── .travis.yml │ │ ├── bs-recipes │ │ │ ├── recipes │ │ │ │ ├── grunt.sass │ │ │ │ │ ├── desc.md │ │ │ │ │ └── app │ │ │ │ │ │ ├── scss │ │ │ │ │ │ └── main.scss │ │ │ │ │ │ └── css │ │ │ │ │ │ └── main.css │ │ │ │ ├── gulp.swig │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── app │ │ │ │ │ │ ├── css │ │ │ │ │ │ └── main.css │ │ │ │ │ │ └── scss │ │ │ │ │ │ └── main.scss │ │ │ │ ├── server.includes │ │ │ │ │ ├── desc.md │ │ │ │ │ └── app │ │ │ │ │ │ ├── header.html │ │ │ │ │ │ ├── css │ │ │ │ │ │ └── main.css │ │ │ │ │ │ └── footer.html │ │ │ │ ├── gulp.browserify │ │ │ │ │ └── app │ │ │ │ │ │ ├── js │ │ │ │ │ │ ├── dist │ │ │ │ │ │ │ └── .npmignore │ │ │ │ │ │ └── app.js │ │ │ │ │ │ └── css │ │ │ │ │ │ └── main.css │ │ │ │ ├── webpack.babel │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── desc.md │ │ │ │ ├── webpack.typescript │ │ │ │ │ └── desc.md │ │ │ │ ├── gulp.pug │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── app │ │ │ │ │ │ └── scss │ │ │ │ │ │ └── main.scss │ │ │ │ ├── gulp.sass │ │ │ │ │ └── app │ │ │ │ │ │ ├── css │ │ │ │ │ │ └── main.css │ │ │ │ │ │ └── scss │ │ │ │ │ │ └── main.scss │ │ │ │ ├── webpack.preact-hot-loader │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── desc.md │ │ │ │ ├── gulp.ruby.sass │ │ │ │ │ └── app │ │ │ │ │ │ ├── scss │ │ │ │ │ │ └── main.scss │ │ │ │ │ │ └── css │ │ │ │ │ │ └── main.css │ │ │ │ ├── gulp.task.sequence │ │ │ │ │ └── app │ │ │ │ │ │ ├── css │ │ │ │ │ │ └── main.css │ │ │ │ │ │ └── scss │ │ │ │ │ │ └── main.scss │ │ │ │ ├── server │ │ │ │ │ └── app │ │ │ │ │ │ └── css │ │ │ │ │ │ └── main.css │ │ │ │ ├── webpack.react-hot-loader │ │ │ │ │ ├── .babelrc │ │ │ │ │ └── desc.md │ │ │ │ ├── proxy.custom-css │ │ │ │ │ └── app │ │ │ │ │ │ └── static │ │ │ │ │ │ └── _custom.css │ │ │ │ ├── server.middleware │ │ │ │ │ └── app │ │ │ │ │ │ └── css │ │ │ │ │ │ └── main.css │ │ │ │ ├── middleware.css.injection │ │ │ │ │ ├── app │ │ │ │ │ │ └── css │ │ │ │ │ │ │ └── main.less │ │ │ │ │ └── desc.md │ │ │ │ ├── webpack.typescript.react │ │ │ │ │ └── desc.md │ │ │ │ └── webpack.react-transform-hmr │ │ │ │ │ └── desc.md │ │ │ └── index.js │ │ ├── jsbn │ │ │ ├── .npmignore │ │ │ └── example.js │ │ ├── json-stringify-safe │ │ │ ├── .npmignore │ │ │ └── test │ │ │ │ └── mocha.opts │ │ ├── require-directory │ │ │ ├── .npmignore │ │ │ └── .travis.yml │ │ ├── after │ │ │ └── .npmignore │ │ ├── asn1 │ │ │ ├── .npmignore │ │ │ └── .travis.yml │ │ ├── blob │ │ │ └── .npmignore │ │ ├── connect-logger │ │ │ └── .npmignore │ │ ├── indexof │ │ │ └── .npmignore │ │ ├── request │ │ │ └── node_modules │ │ │ │ └── qs │ │ │ │ └── .eslintignore │ │ ├── socket.io-adapter │ │ │ └── .npmignore │ │ ├── string_decoder │ │ │ └── .npmignore │ │ ├── is-number-like │ │ │ └── .npmignore │ │ ├── json-stable-stringify │ │ │ ├── .npmignore │ │ │ └── .travis.yml │ │ ├── openurl │ │ │ └── .npmignore │ │ ├── parseuri │ │ │ ├── .npmignore │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ └── History.md │ │ ├── sntp │ │ │ ├── index.js │ │ │ └── .travis.yml │ │ ├── to-array │ │ │ └── .npmignore │ │ ├── xmlhttprequest-ssl │ │ │ └── tests │ │ │ │ └── testdata.txt │ │ ├── base64id │ │ │ └── .npmignore │ │ ├── lodash │ │ │ ├── first.js │ │ │ ├── fp │ │ │ │ ├── any.js │ │ │ │ ├── nAry.js │ │ │ │ ├── path.js │ │ │ │ ├── paths.js │ │ │ │ ├── prop.js │ │ │ │ ├── props.js │ │ │ │ ├── F.js │ │ │ │ ├── T.js │ │ │ │ ├── all.js │ │ │ │ ├── apply.js │ │ │ │ ├── assoc.js │ │ │ │ ├── assocPath.js │ │ │ │ ├── dissoc.js │ │ │ │ ├── each.js │ │ │ │ ├── first.js │ │ │ │ ├── identical.js │ │ │ │ ├── indexBy.js │ │ │ │ ├── init.js │ │ │ │ ├── juxt.js │ │ │ │ ├── omitAll.js │ │ │ │ ├── pathOr.js │ │ │ │ ├── pickAll.js │ │ │ │ ├── pipe.js │ │ │ │ ├── pluck.js │ │ │ │ ├── propOr.js │ │ │ │ ├── property.js │ │ │ │ ├── unapply.js │ │ │ │ ├── __.js │ │ │ │ ├── allPass.js │ │ │ │ ├── always.js │ │ │ │ ├── anyPass.js │ │ │ │ ├── complement.js │ │ │ │ ├── compose.js │ │ │ │ ├── contains.js │ │ │ │ ├── dissocPath.js │ │ │ │ ├── dropLast.js │ │ │ │ ├── entries.js │ │ │ │ ├── equals.js │ │ │ │ ├── extend.js │ │ │ │ ├── invertObj.js │ │ │ │ ├── matches.js │ │ │ │ ├── takeLast.js │ │ │ │ ├── unnest.js │ │ │ │ ├── useWith.js │ │ │ │ ├── where.js │ │ │ │ ├── whereEq.js │ │ │ │ ├── zipObj.js │ │ │ │ ├── conforms.js │ │ │ │ ├── eachRight.js │ │ │ │ ├── entriesIn.js │ │ │ │ ├── extendAll.js │ │ │ │ ├── extendWith.js │ │ │ │ ├── pathEq.js │ │ │ │ ├── propEq.js │ │ │ │ ├── symmetricDifference.js │ │ │ │ ├── dropLastWhile.js │ │ │ │ ├── symmetricDifferenceBy.js │ │ │ │ ├── takeLastWhile.js │ │ │ │ ├── extendAllWith.js │ │ │ │ ├── symmetricDifferenceWith.js │ │ │ │ ├── seq.js │ │ │ │ ├── array.js │ │ │ │ ├── date.js │ │ │ │ ├── lang.js │ │ │ │ ├── math.js │ │ │ │ ├── number.js │ │ │ │ ├── object.js │ │ │ │ ├── string.js │ │ │ │ ├── util.js │ │ │ │ ├── function.js │ │ │ │ └── collection.js │ │ │ ├── index.js │ │ │ ├── each.js │ │ │ ├── entries.js │ │ │ ├── extend.js │ │ │ ├── entriesIn.js │ │ │ ├── toJSON.js │ │ │ ├── value.js │ │ │ ├── valueOf.js │ │ │ ├── eachRight.js │ │ │ ├── extendWith.js │ │ │ ├── date.js │ │ │ ├── fp.js │ │ │ ├── _realNames.js │ │ │ └── _reEscape.js │ │ ├── requires-port │ │ │ └── .npmignore │ │ ├── uws │ │ │ ├── build │ │ │ │ └── Release │ │ │ │ │ └── obj.target │ │ │ │ │ └── action_after_build.stamp │ │ │ ├── src │ │ │ │ └── uWS.h │ │ │ ├── uws_linux_46.node │ │ │ ├── uws_linux_47.node │ │ │ ├── uws_linux_48.node │ │ │ ├── uws_linux_51.node │ │ │ ├── uws_win32_48.node │ │ │ ├── uws_win32_51.node │ │ │ ├── uws_darwin_46.node │ │ │ ├── uws_darwin_47.node │ │ │ ├── uws_darwin_48.node │ │ │ ├── uws_darwin_51.node │ │ │ └── uws_darwin_57.node │ │ ├── batch │ │ │ ├── .npmignore │ │ │ └── Makefile │ │ ├── debug │ │ │ ├── node.js │ │ │ ├── .coveralls.yml │ │ │ └── .npmignore │ │ ├── dev-ip │ │ │ ├── .npmignore │ │ │ ├── example.js │ │ │ └── .travis.yml │ │ ├── emitter-steward │ │ │ ├── .npmignore │ │ │ └── .travis.yml │ │ ├── has-cors │ │ │ └── .npmignore │ │ ├── isobject │ │ │ └── node_modules │ │ │ │ └── isarray │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ └── Makefile │ │ ├── moment │ │ │ ├── ender.js │ │ │ └── src │ │ │ │ └── lib │ │ │ │ ├── utils │ │ │ │ ├── mod.js │ │ │ │ └── is-undefined.js │ │ │ │ ├── locale │ │ │ │ └── pre-post-format.js │ │ │ │ └── moment │ │ │ │ └── now.js │ │ ├── stream-throttle │ │ │ ├── AUTHORS │ │ │ ├── index.js │ │ │ └── .npmignore │ │ ├── callsite │ │ │ ├── .npmignore │ │ │ └── Makefile │ │ ├── easy-extender │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ └── node_modules │ │ │ │ └── lodash │ │ │ │ ├── array │ │ │ │ ├── head.js │ │ │ │ ├── tail.js │ │ │ │ ├── unique.js │ │ │ │ └── object.js │ │ │ │ ├── collection │ │ │ │ ├── any.js │ │ │ │ ├── all.js │ │ │ │ ├── collect.js │ │ │ │ ├── detect.js │ │ │ │ ├── each.js │ │ │ │ ├── foldl.js │ │ │ │ ├── inject.js │ │ │ │ ├── max.js │ │ │ │ ├── min.js │ │ │ │ ├── select.js │ │ │ │ ├── sum.js │ │ │ │ ├── contains.js │ │ │ │ ├── foldr.js │ │ │ │ ├── include.js │ │ │ │ └── eachRight.js │ │ │ │ ├── lang │ │ │ │ └── eq.js │ │ │ │ ├── chain │ │ │ │ ├── plant.js │ │ │ │ ├── run.js │ │ │ │ ├── value.js │ │ │ │ ├── commit.js │ │ │ │ ├── concat.js │ │ │ │ ├── reverse.js │ │ │ │ ├── toJSON.js │ │ │ │ ├── valueOf.js │ │ │ │ └── toString.js │ │ │ │ ├── object │ │ │ │ ├── extend.js │ │ │ │ └── methods.js │ │ │ │ ├── function │ │ │ │ ├── backflow.js │ │ │ │ └── compose.js │ │ │ │ ├── utility │ │ │ │ └── iteratee.js │ │ │ │ └── date.js │ │ ├── jsonfile │ │ │ └── .npmignore │ │ ├── parseqs │ │ │ ├── .npmignore │ │ │ ├── Makefile │ │ │ └── README.md │ │ ├── preserve │ │ │ └── .travis.yml │ │ ├── readable-stream │ │ │ ├── node_modules │ │ │ │ └── isarray │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ └── Makefile │ │ │ ├── duplex.js │ │ │ ├── transform.js │ │ │ ├── lib │ │ │ │ └── internal │ │ │ │ │ └── streams │ │ │ │ │ ├── stream.js │ │ │ │ │ └── stream-browser.js │ │ │ ├── passthrough.js │ │ │ ├── duplex-browser.js │ │ │ └── writable-browser.js │ │ ├── better-assert │ │ │ ├── .npmignore │ │ │ └── Makefile │ │ ├── component-bind │ │ │ ├── .npmignore │ │ │ └── Makefile │ │ ├── component-inherit │ │ │ ├── .npmignore │ │ │ └── History.md │ │ ├── connect │ │ │ └── node_modules │ │ │ │ ├── debug │ │ │ │ ├── .jshintrc │ │ │ │ └── .npmignore │ │ │ │ └── ms │ │ │ │ └── .npmignore │ │ ├── object-component │ │ │ └── .npmignore │ │ ├── async-each │ │ │ └── .npmignore │ │ ├── base64-arraybuffer │ │ │ └── .npmignore │ │ ├── finalhandler │ │ │ └── node_modules │ │ │ │ ├── debug │ │ │ │ ├── .jshintrc │ │ │ │ └── .npmignore │ │ │ │ └── ms │ │ │ │ └── .npmignore │ │ ├── lite-server │ │ │ ├── .npmignore │ │ │ └── .travis.yml │ │ ├── send │ │ │ └── node_modules │ │ │ │ └── debug │ │ │ │ ├── node.js │ │ │ │ └── .coveralls.yml │ │ ├── serve-index │ │ │ └── node_modules │ │ │ │ ├── debug │ │ │ │ ├── .jshintrc │ │ │ │ └── .npmignore │ │ │ │ └── ms │ │ │ │ └── .npmignore │ │ ├── tweetnacl │ │ │ └── .npmignore │ │ ├── concat-map │ │ │ └── .travis.yml │ │ ├── eazy-logger │ │ │ └── example.js │ │ ├── hawk │ │ │ ├── .travis.yml │ │ │ └── images │ │ │ │ ├── hawk.png │ │ │ │ └── logo.png │ │ ├── limiter │ │ │ ├── .npmignore │ │ │ └── index.js │ │ ├── nan │ │ │ └── include_dirs.js │ │ ├── require-main-filename │ │ │ └── .npmignore │ │ ├── rx │ │ │ ├── ts │ │ │ │ └── core │ │ │ │ │ └── joins │ │ │ │ │ └── plan.ts │ │ │ └── .coveralls.yml │ │ ├── ua-parser-js │ │ │ └── dist │ │ │ │ └── ua-parser.html │ │ ├── glob-parent │ │ │ └── .npmignore │ │ ├── stringstream │ │ │ └── .travis.yml │ │ ├── balanced-match │ │ │ └── .npmignore │ │ ├── is-arrayish │ │ │ ├── .npmignore │ │ │ └── .istanbul.yml │ │ ├── unpipe │ │ │ └── HISTORY.md │ │ ├── ajv │ │ │ └── scripts │ │ │ │ └── .eslintrc.yml │ │ ├── builtin-modules │ │ │ └── static.js │ │ ├── core-util-is │ │ │ └── README.md │ │ ├── fs-extra │ │ │ └── lib │ │ │ │ ├── copy-sync │ │ │ │ └── index.js │ │ │ │ └── copy │ │ │ │ └── index.js │ │ ├── http-signature │ │ │ └── .npmignore │ │ ├── minimist │ │ │ └── example │ │ │ │ └── parse.js │ │ ├── boom │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ └── images │ │ │ │ └── boom.png │ │ ├── http-proxy │ │ │ └── .npmignore │ │ ├── getpass │ │ │ └── .npmignore │ │ ├── jsonify │ │ │ └── index.js │ │ ├── cryptiles │ │ │ └── .travis.yml │ │ ├── number-is-nan │ │ │ └── index.js │ │ ├── utils-merge │ │ │ └── .travis.yml │ │ ├── object-path │ │ │ └── .npmignore │ │ ├── has-binary2 │ │ │ └── README.md │ │ ├── pinkie-promise │ │ │ └── index.js │ │ ├── safe-buffer │ │ │ └── .travis.yml │ │ ├── uuid │ │ │ ├── v3.js │ │ │ └── v5.js │ │ ├── form-data │ │ │ └── lib │ │ │ │ └── browser.js │ │ └── sshpk │ │ │ └── .npmignore │ ├── .DS_Store │ ├── bs-config.json │ └── src │ │ ├── .DS_Store │ │ └── images │ │ ├── ted.jpg │ │ ├── .DS_Store │ │ ├── bernie.jpg │ │ ├── donald.jpg │ │ ├── eagles.png │ │ ├── hillary.jpg │ │ ├── jaguars.png │ │ ├── patriots.png │ │ └── vikings.png ├── Digest.pdf └── Certificate.pdf ├── 1. Blockchain Basics ├── SolutionHash.txt ├── Digest.pdf └── Certificate.pdf ├── 2. Smart Contracts ├── Digest.pdf └── Certificate.pdf ├── SpecializationCertificate.pdf └── 4. Blockchain Platforms ├── Digest.pdf └── Certificate.pdf /3. DApps/Ballot2/test/.Rhistory: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/mime/.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/mime/.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/aws4/.tern-port: -------------------------------------------------------------------------------- 1 | 62638 -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/extend/.npmignore: -------------------------------------------------------------------------------- 1 | test -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/aws4/.tern-port: -------------------------------------------------------------------------------- 1 | 62638 -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/extend/.npmignore: -------------------------------------------------------------------------------- 1 | test -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/extsprintf/.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/extsprintf/.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/qs/.eslintignore: -------------------------------------------------------------------------------- 1 | dist 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/browser-sync-ui/lib/urls.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/hoek/test/modules/ignore.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/qs/.eslintignore: -------------------------------------------------------------------------------- 1 | dist 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/browser-sync-ui/lib/urls.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/.npmignore: -------------------------------------------------------------------------------- 1 | test/ 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/hoek/test/modules/ignore.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/isstream/.npmignore: -------------------------------------------------------------------------------- 1 | *.tgz 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/browser-sync/client/dist/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/.npmignore: -------------------------------------------------------------------------------- 1 | test/ 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/isstream/.npmignore: -------------------------------------------------------------------------------- 1 | *.tgz 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/readdirp/test/bed/root_file1.ext1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/readdirp/test/bed/root_file2.ext2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/readdirp/test/bed/root_file3.ext3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/backo2/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/browser-sync/client/dist/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/delayed-stream/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/localtunnel/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/performance-now/.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/readdirp/test/bed/root_file1.ext1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/readdirp/test/bed/root_file2.ext2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/readdirp/test/bed/root_file3.ext3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/backo2/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/bs-recipes/recipes/grunt.sass/desc.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/delayed-stream/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/localtunnel/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/performance-now/.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/browser-sync/cli-options/opts.init.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/bs-recipes/recipes/grunt.sass/desc.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/verror/.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/jsbn/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/json-stringify-safe/.npmignore: -------------------------------------------------------------------------------- 1 | /*.tgz 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/require-directory/.npmignore: -------------------------------------------------------------------------------- 1 | test/** 2 | -------------------------------------------------------------------------------- /1. Blockchain Basics/SolutionHash.txt: -------------------------------------------------------------------------------- 1 | 97c8d39fc70b52208f18fc66bbf58874b -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/asn1/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/browser-sync/cli-options/opts.init.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/bs-recipes/recipes/server.includes/desc.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/aws4/.tern-port: -------------------------------------------------------------------------------- 1 | 62638 -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/extend/.npmignore: -------------------------------------------------------------------------------- 1 | test -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/verror/.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/indexof/.npmignore: -------------------------------------------------------------------------------- 1 | components 2 | build 3 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/jsbn/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/json-stringify-safe/.npmignore: -------------------------------------------------------------------------------- 1 | /*.tgz 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/require-directory/.npmignore: -------------------------------------------------------------------------------- 1 | test/** 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/after/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .monitor 3 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/asn1/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/blob/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | blob.js 3 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/browser-sync-ui/templates/plugin.tmpl: -------------------------------------------------------------------------------- 1 | %markup% -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/bs-recipes/recipes/gulp.swig/.npmignore: -------------------------------------------------------------------------------- 1 | dist/ -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/bs-recipes/recipes/server.includes/desc.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/connect-logger/.npmignore: -------------------------------------------------------------------------------- 1 | src 2 | Cakefile 3 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/extsprintf/.npmignore: -------------------------------------------------------------------------------- 1 | /deps 2 | /examples 3 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/aws4/.tern-port: -------------------------------------------------------------------------------- 1 | 62638 -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/extend/.npmignore: -------------------------------------------------------------------------------- 1 | test -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/hoek/test/modules/test1.js: -------------------------------------------------------------------------------- 1 | exports.x = 1; 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/hoek/test/modules/test2.js: -------------------------------------------------------------------------------- 1 | exports.y = 2; 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/hoek/test/modules/test3.js: -------------------------------------------------------------------------------- 1 | exports.z = 3; 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/indexof/.npmignore: -------------------------------------------------------------------------------- 1 | components 2 | build 3 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/request/node_modules/qs/.eslintignore: -------------------------------------------------------------------------------- 1 | dist 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/socket.io-adapter/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/string_decoder/.npmignore: -------------------------------------------------------------------------------- 1 | build 2 | test 3 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/after/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .monitor 3 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/blob/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | blob.js 3 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/browser-sync-ui/templates/plugin.tmpl: -------------------------------------------------------------------------------- 1 | %markup% -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/bs-recipes/index.js: -------------------------------------------------------------------------------- 1 | /* Module resolution */ 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/bs-recipes/recipes/gulp.swig/.npmignore: -------------------------------------------------------------------------------- 1 | dist/ -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/connect-logger/.npmignore: -------------------------------------------------------------------------------- 1 | src 2 | Cakefile 3 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/extsprintf/.npmignore: -------------------------------------------------------------------------------- 1 | /deps 2 | /examples 3 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/qs/.eslintignore: -------------------------------------------------------------------------------- 1 | dist 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/hoek/test/modules/test1.js: -------------------------------------------------------------------------------- 1 | exports.x = 1; 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/hoek/test/modules/test2.js: -------------------------------------------------------------------------------- 1 | exports.y = 2; 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/hoek/test/modules/test3.js: -------------------------------------------------------------------------------- 1 | exports.z = 3; 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/openurl/.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea 3 | 4 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/readdirp/test/bed/root_dir1/root_dir1_file1.ext1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/readdirp/test/bed/root_dir1/root_dir1_file2.ext2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/readdirp/test/bed/root_dir1/root_dir1_file3.ext3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/readdirp/test/bed/root_dir2/root_dir2_file1.ext1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/readdirp/test/bed/root_dir2/root_dir2_file2.ext2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/request/node_modules/qs/.eslintignore: -------------------------------------------------------------------------------- 1 | dist 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/sntp/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib'); -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/socket.io-adapter/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/string_decoder/.npmignore: -------------------------------------------------------------------------------- 1 | build 2 | test 3 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/xmlhttprequest-ssl/tests/testdata.txt: -------------------------------------------------------------------------------- 1 | Hello World -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/bs-recipes/index.js: -------------------------------------------------------------------------------- 1 | /* Module resolution */ 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/hoek/test/modules/ignore.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/isstream/.npmignore: -------------------------------------------------------------------------------- 1 | *.tgz 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/qs/.eslintignore: -------------------------------------------------------------------------------- 1 | dist 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/is-number-like/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | coverage -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/json-stable-stringify/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/openurl/.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea 3 | 4 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/parseuri/.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .node_modules/* -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/readdirp/test/bed/root_dir1/root_dir1_file1.ext1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/readdirp/test/bed/root_dir1/root_dir1_file2.ext2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/readdirp/test/bed/root_dir1/root_dir1_file3.ext3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/readdirp/test/bed/root_dir2/root_dir2_file1.ext1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/readdirp/test/bed/root_dir2/root_dir2_file2.ext2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/sntp/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib'); -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/to-array/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | *.err -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/xmlhttprequest-ssl/tests/testdata.txt: -------------------------------------------------------------------------------- 1 | Hello World -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/base64id/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/browser-sync-ui/lib/plugins/help/help.directive.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/hoek/test/modules/ignore.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/isstream/.npmignore: -------------------------------------------------------------------------------- 1 | *.tgz 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/is-number-like/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | coverage -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/json-stable-stringify/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lodash'); -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/parseuri/.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .node_modules/* -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/to-array/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | *.err -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/uws/build/Release/obj.target/action_after_build.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/base64id/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/browser-sync-ui/lib/plugins/help/help.directive.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/delayed-stream/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/nopt/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/verror/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/first.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./head'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/any.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./some'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/nAry.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./ary'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/path.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./get'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/paths.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./at'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/prop.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./get'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/props.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./at'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lodash'); -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/requires-port/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | coverage 3 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/uws/build/Release/obj.target/action_after_build.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/debug/node.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./src/node'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/dev-ip/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .idea 3 | npm-debug.log -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/emitter-steward/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .idea 3 | test -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/build/Release/obj.target/action_after_build.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/delayed-stream/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/isarray/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/nopt/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/performance-now/.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/verror/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/isobject/node_modules/isarray/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/each.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./forEach'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/first.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./head'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/T.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./stubTrue'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/all.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./every'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/any.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./some'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/assoc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./set'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/first.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./head'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/juxt.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./over'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/nAry.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./ary'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/path.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./get'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/paths.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./at'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/pipe.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./flow'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/pluck.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./map'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/prop.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./get'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/props.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./at'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/moment/ender.js: -------------------------------------------------------------------------------- 1 | $.ender({ moment: require('moment') }) 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/requires-port/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | coverage 3 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/batch/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/bs-recipes/recipes/gulp.browserify/app/js/dist/.npmignore: -------------------------------------------------------------------------------- 1 | *.js -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/bs-recipes/recipes/webpack.babel/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/debug/node.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./src/node'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/dev-ip/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .idea 3 | npm-debug.log -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/emitter-steward/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .idea 3 | test -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/build/Release/obj.target/action_after_build.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/delegates/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/isarray/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/performance-now/.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/has-cors/.npmignore: -------------------------------------------------------------------------------- 1 | components 2 | build 3 | node_modules 4 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/isobject/node_modules/isarray/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/each.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./forEach'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/entries.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./toPairs'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/extend.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./assignIn'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/F.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./stubFalse'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/T.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./stubTrue'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/all.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./every'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/apply.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./spread'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/assoc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./set'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/assocPath.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./set'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/dissoc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./unset'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/each.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./forEach'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/first.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./head'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/identical.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./eq'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/indexBy.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./keyBy'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/init.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./initial'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/juxt.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./over'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/omitAll.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./omit'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/pathOr.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./getOr'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/pickAll.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./pick'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/pipe.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./flow'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/pluck.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./map'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/propOr.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./getOr'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/property.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./get'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/unapply.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./rest'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/moment/ender.js: -------------------------------------------------------------------------------- 1 | $.ender({ moment: require('moment') }) 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/stream-throttle/AUTHORS: -------------------------------------------------------------------------------- 1 | Tiago Quelhas 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/batch/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/bs-recipes/recipes/gulp.browserify/app/js/dist/.npmignore: -------------------------------------------------------------------------------- 1 | *.js -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/bs-recipes/recipes/webpack.babel/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/delegates/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/jsbn/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/json-stringify-safe/.npmignore: -------------------------------------------------------------------------------- 1 | /*.tgz 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/tar-pack/test/fixtures/packed-file.txt: -------------------------------------------------------------------------------- 1 | bar -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/tar-pack/test/fixtures/to-pack/bar.txt: -------------------------------------------------------------------------------- 1 | baz -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/tar-pack/test/fixtures/to-pack/foo.txt: -------------------------------------------------------------------------------- 1 | bar -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/has-cors/.npmignore: -------------------------------------------------------------------------------- 1 | components 2 | build 3 | node_modules 4 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/jsonfile/.npmignore: -------------------------------------------------------------------------------- 1 | test/ 2 | .travis.yml 3 | appveyor.yml 4 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/entries.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./toPairs'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/extend.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./assignIn'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/F.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./stubFalse'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/__.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./placeholder'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/always.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./constant'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/apply.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./spread'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/assocPath.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./set'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/dissoc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./unset'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/each.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./forEach'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/entries.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./toPairs'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/equals.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./isEqual'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/extend.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./assignIn'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/identical.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./eq'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/indexBy.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./keyBy'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/init.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./initial'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/matches.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./isMatch'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/omitAll.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./omit'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/pathOr.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./getOr'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/pickAll.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./pick'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/propOr.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./getOr'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/property.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./get'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/unapply.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./rest'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/unnest.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./flatten'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/whereEq.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./isMatch'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/value.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./wrapperValue'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/stream-throttle/AUTHORS: -------------------------------------------------------------------------------- 1 | Tiago Quelhas 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/aws4/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | examples 3 | example.js 4 | browser 5 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/callsite/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/easy-extender/.npmignore: -------------------------------------------------------------------------------- 1 | test/ 2 | doc/ 3 | .sass-cache 4 | .idea -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/asn1/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/jsbn/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/json-stringify-safe/.npmignore: -------------------------------------------------------------------------------- 1 | /*.tgz 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/string_decoder/.npmignore: -------------------------------------------------------------------------------- 1 | build 2 | test 3 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/tar-pack/test/fixtures/packed-file.txt: -------------------------------------------------------------------------------- 1 | bar -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/tar-pack/test/fixtures/to-pack/bar.txt: -------------------------------------------------------------------------------- 1 | baz -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/tar-pack/test/fixtures/to-pack/foo.txt: -------------------------------------------------------------------------------- 1 | bar -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/jsonfile/.npmignore: -------------------------------------------------------------------------------- 1 | test/ 2 | .travis.yml 3 | appveyor.yml 4 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/entriesIn.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./toPairsIn'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/__.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./placeholder'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/allPass.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./overEvery'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/always.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./constant'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/anyPass.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./overSome'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/complement.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./negate'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/compose.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./flowRight'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/contains.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./includes'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/dissocPath.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./unset'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/dropLast.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./dropRight'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/entries.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./toPairs'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/equals.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./isEqual'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/extend.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./assignIn'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/invertObj.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./invert'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/matches.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./isMatch'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/takeLast.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./takeRight'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/unnest.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./flatten'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/useWith.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./overArgs'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/where.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./conformsTo'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/whereEq.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./isMatch'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/zipObj.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./zipObject'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/toJSON.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./wrapperValue'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/value.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./wrapperValue'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/valueOf.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./wrapperValue'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/parseqs/.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | npm-debug.log -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/preserve/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - '0.10' -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/readable-stream/node_modules/isarray/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/aws4/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | examples 3 | example.js 4 | browser 5 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/bs-recipes/recipes/gulp.browserify/app/js/app.js: -------------------------------------------------------------------------------- 1 | let app = 'awesome'; -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/callsite/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/easy-extender/.npmignore: -------------------------------------------------------------------------------- 1 | test/ 2 | doc/ 3 | .sass-cache 4 | .idea -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/asn1/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/hoek/test/modules/test1.js: -------------------------------------------------------------------------------- 1 | exports.x = 1; 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/hoek/test/modules/test2.js: -------------------------------------------------------------------------------- 1 | exports.y = 2; 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/hoek/test/modules/test3.js: -------------------------------------------------------------------------------- 1 | exports.z = 3; 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/string_decoder/.npmignore: -------------------------------------------------------------------------------- 1 | build 2 | test 3 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/eachRight.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./forEachRight'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/entriesIn.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./toPairsIn'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/extendWith.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./assignInWith'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/allPass.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./overEvery'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/anyPass.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./overSome'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/complement.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./negate'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/compose.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./flowRight'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/conforms.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./conformsTo'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/contains.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./includes'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/dissocPath.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./unset'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/dropLast.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./dropRight'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/entriesIn.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./toPairsIn'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/invertObj.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./invert'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/takeLast.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./takeRight'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/useWith.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./overArgs'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/where.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./conformsTo'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/zipObj.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./zipObject'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/toJSON.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./wrapperValue'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/valueOf.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./wrapperValue'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/parseqs/.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | npm-debug.log -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/preserve/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - '0.10' -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/readable-stream/node_modules/isarray/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/better-assert/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/bs-recipes/recipes/gulp.browserify/app/js/app.js: -------------------------------------------------------------------------------- 1 | let app = 'awesome'; -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/component-bind/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/component-inherit/.npmignore: -------------------------------------------------------------------------------- 1 | components 2 | build 3 | node_modules 4 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/connect/node_modules/debug/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "laxbreak": true 3 | } 4 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/debug/.coveralls.yml: -------------------------------------------------------------------------------- 1 | repo_token: SIAeZjKYlHK74rbcFvNHMUzjRiMpflxve 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/hoek/test/modules/test1.js: -------------------------------------------------------------------------------- 1 | exports.x = 1; 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/hoek/test/modules/test2.js: -------------------------------------------------------------------------------- 1 | exports.y = 2; 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/hoek/test/modules/test3.js: -------------------------------------------------------------------------------- 1 | exports.z = 3; 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/json-stable-stringify/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/sntp/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib'); -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/json-stringify-safe/test/mocha.opts: -------------------------------------------------------------------------------- 1 | --recursive 2 | --require must 3 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/eachRight.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./forEachRight'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/extendWith.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./assignInWith'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/conforms.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./conformsTo'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/eachRight.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./forEachRight'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/entriesIn.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./toPairsIn'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/extendAll.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./assignInAll'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/extendWith.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./assignInWith'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/pathEq.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./matchesProperty'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/propEq.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./matchesProperty'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/symmetricDifference.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./xor'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/object-component/.npmignore: -------------------------------------------------------------------------------- 1 | components 2 | build 3 | node_modules 4 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/async-each/.npmignore: -------------------------------------------------------------------------------- 1 | bower.json 2 | component.json 3 | CHANGELOG.md 4 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/better-assert/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/bs-recipes/recipes/webpack.typescript/desc.md: -------------------------------------------------------------------------------- 1 | 2 | See `src/main.ts` 3 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/component-bind/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/component-inherit/.npmignore: -------------------------------------------------------------------------------- 1 | components 2 | build 3 | node_modules 4 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/connect/node_modules/debug/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "laxbreak": true 3 | } 4 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/debug/.coveralls.yml: -------------------------------------------------------------------------------- 1 | repo_token: SIAeZjKYlHK74rbcFvNHMUzjRiMpflxve 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/json-stable-stringify/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/sntp/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib'); -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/json-stringify-safe/test/mocha.opts: -------------------------------------------------------------------------------- 1 | --recursive 2 | --require must 3 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lite-server/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .idea 3 | coverage/ 4 | *.log 5 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/eachRight.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./forEachRight'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/extendAll.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./assignInAll'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/extendWith.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./assignInWith'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/pathEq.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./matchesProperty'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/propEq.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./matchesProperty'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/symmetricDifference.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./xor'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/object-component/.npmignore: -------------------------------------------------------------------------------- 1 | components 2 | build 3 | node_modules 4 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/asn1/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | - 0.10 5 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/async-each/.npmignore: -------------------------------------------------------------------------------- 1 | bower.json 2 | component.json 3 | CHANGELOG.md 4 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/base64-arraybuffer/.npmignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | Gruntfile.js 3 | /test/ 4 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/bs-recipes/recipes/webpack.typescript/desc.md: -------------------------------------------------------------------------------- 1 | 2 | See `src/main.ts` 3 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/easy-extender/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - '0.10' 4 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/finalhandler/node_modules/debug/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "laxbreak": true 3 | } 4 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lite-server/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .idea 3 | coverage/ 4 | *.log 5 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/date.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | 'now': require('./now') 3 | }; 4 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/dropLastWhile.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./dropRightWhile'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/symmetricDifferenceBy.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./xorBy'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/takeLastWhile.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./takeRightWhile'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/parseqs/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @./node_modules/.bin/mocha test.js 4 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/parseuri/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @./node_modules/.bin/mocha test.js 4 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/readable-stream/duplex.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./readable').Duplex 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/readdirp/test/bed/root_dir1/root_dir1_subdir1/root1_dir1_subdir1_file1.ext1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/send/node_modules/debug/node.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./src/node'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/serve-index/node_modules/debug/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "laxbreak": true 3 | } 4 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/sntp/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - 0.10 5 | 6 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/stream-throttle/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./src/throttle.js'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/tweetnacl/.npmignore: -------------------------------------------------------------------------------- 1 | .eslintrc 2 | .travis.yml 3 | bower.json 4 | test 5 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/asn1/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | - 0.10 5 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/base64-arraybuffer/.npmignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | Gruntfile.js 3 | /test/ 4 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/easy-extender/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - '0.10' 4 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/eazy-logger/example.js: -------------------------------------------------------------------------------- 1 | var l = require('./out'); 2 | 3 | console.log(l); 4 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/finalhandler/node_modules/debug/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "laxbreak": true 3 | } 4 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/limiter/.npmignore: -------------------------------------------------------------------------------- 1 | build 2 | .lock-wscript 3 | .DS_Store 4 | node_modules 5 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/date.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | 'now': require('./now') 3 | }; 4 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/dropLastWhile.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./dropRightWhile'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/extendAllWith.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./assignInAllWith'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/symmetricDifferenceBy.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./xorBy'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/takeLastWhile.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./takeRightWhile'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/nan/include_dirs.js: -------------------------------------------------------------------------------- 1 | console.log(require('path').relative('.', __dirname)); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/parseqs/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @./node_modules/.bin/mocha test.js 4 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/parseuri/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @./node_modules/.bin/mocha test.js 4 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/readable-stream/duplex.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./readable').Duplex 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/readdirp/test/bed/root_dir1/root_dir1_subdir1/root1_dir1_subdir1_file1.ext1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/require-directory/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.10 4 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/send/node_modules/debug/node.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./src/node'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/serve-index/node_modules/debug/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "laxbreak": true 3 | } 4 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/sntp/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - 0.10 5 | 6 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/stream-throttle/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./src/throttle.js'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/tweetnacl/.npmignore: -------------------------------------------------------------------------------- 1 | .eslintrc 2 | .travis.yml 3 | bower.json 4 | test 5 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/better-assert/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @echo "populate me" 4 | 5 | .PHONY: test -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/browser-sync-ui/public/css/core.css: -------------------------------------------------------------------------------- 1 | 2 | /*# sourceMappingURL=core.css.map */ 3 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/concat-map/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.4 4 | - 0.6 5 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/eazy-logger/example.js: -------------------------------------------------------------------------------- 1 | var l = require('./out'); 2 | 3 | console.log(l); 4 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/debug/node.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./src/node'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/hawk/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - 0.10 5 | 6 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/limiter/.npmignore: -------------------------------------------------------------------------------- 1 | build 2 | .lock-wscript 3 | .DS_Store 4 | node_modules 5 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/extendAllWith.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./assignInAllWith'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/symmetricDifferenceWith.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./xorWith'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/nan/include_dirs.js: -------------------------------------------------------------------------------- 1 | console.log(require('path').relative('.', __dirname)); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/readable-stream/transform.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./readable').Transform 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/require-directory/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.10 4 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/require-main-filename/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | .nyc_output 4 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/rx/ts/core/joins/plan.ts: -------------------------------------------------------------------------------- 1 | module Rx { 2 | export class Plan { } 3 | } 4 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/ua-parser-js/dist/ua-parser.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /3. DApps/Digest.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parsh/Blockchain-Specialization/HEAD/3. DApps/Digest.pdf -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/better-assert/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @echo "populate me" 4 | 5 | .PHONY: test -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/browser-sync-ui/public/css/core.css: -------------------------------------------------------------------------------- 1 | 2 | /*# sourceMappingURL=core.css.map */ 3 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/bs-recipes/recipes/gulp.pug/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | dist 4 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/bs-recipes/recipes/gulp.sass/app/css/main.css: -------------------------------------------------------------------------------- 1 | body { 2 | background: white; } 3 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/bs-recipes/recipes/gulp.swig/app/css/main.css: -------------------------------------------------------------------------------- 1 | body { 2 | background: white; } 3 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/bs-recipes/recipes/webpack.babel/desc.md: -------------------------------------------------------------------------------- 1 | Edit any files within the `src` folder 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/bs-recipes/recipes/webpack.preact-hot-loader/.npmignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /app/dist/ -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/concat-map/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.4 4 | - 0.6 5 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/debug/node.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./src/node'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/safe-buffer/browser.js: -------------------------------------------------------------------------------- 1 | module.exports = require('buffer') 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/hawk/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - 0.10 5 | 6 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/localtunnel/node_modules/debug/node.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./src/node'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/symmetricDifferenceWith.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./xorWith'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/readable-stream/transform.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./readable').Transform 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/require-main-filename/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | .nyc_output 4 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/rx/ts/core/joins/plan.ts: -------------------------------------------------------------------------------- 1 | module Rx { 2 | export class Plan { } 3 | } 4 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/stringstream/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.4 4 | - 0.6 5 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/ua-parser-js/dist/ua-parser.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parsh/Blockchain-Specialization/HEAD/3. DApps/Coin/.DS_Store -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/bs-recipes/recipes/gulp.pug/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | dist 4 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/bs-recipes/recipes/gulp.pug/app/scss/main.scss: -------------------------------------------------------------------------------- 1 | body { 2 | background: white; 3 | } -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/bs-recipes/recipes/gulp.sass/app/css/main.css: -------------------------------------------------------------------------------- 1 | body { 2 | background: white; } 3 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/bs-recipes/recipes/gulp.sass/app/scss/main.scss: -------------------------------------------------------------------------------- 1 | body { 2 | background: white; 3 | } -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/bs-recipes/recipes/gulp.swig/app/css/main.css: -------------------------------------------------------------------------------- 1 | body { 2 | background: white; } 3 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/bs-recipes/recipes/gulp.swig/app/scss/main.scss: -------------------------------------------------------------------------------- 1 | body { 2 | background: white; 3 | } -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/bs-recipes/recipes/webpack.babel/desc.md: -------------------------------------------------------------------------------- 1 | Edit any files within the `src` folder 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/bs-recipes/recipes/webpack.preact-hot-loader/.npmignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /app/dist/ -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/aws4/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | examples 3 | example.js 4 | browser 5 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/safe-buffer/browser.js: -------------------------------------------------------------------------------- 1 | module.exports = require('buffer') 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/glob-parent/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | npm-debug.log 4 | coverage 5 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/localtunnel/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "4" 4 | - "6" 5 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/localtunnel/node_modules/debug/node.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./src/node'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/parseuri/README.md: -------------------------------------------------------------------------------- 1 | # parseuri 2 | Module for parsing URI's in engine.io-client 3 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/performance-now/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | - "0.8" -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/readable-stream/lib/internal/streams/stream.js: -------------------------------------------------------------------------------- 1 | module.exports = require('stream'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/readable-stream/passthrough.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./readable').PassThrough 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/stringstream/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.4 4 | - 0.6 5 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/bs-recipes/recipes/grunt.sass/app/scss/main.scss: -------------------------------------------------------------------------------- 1 | body { 2 | background: orange; 3 | } -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/bs-recipes/recipes/gulp.pug/app/scss/main.scss: -------------------------------------------------------------------------------- 1 | body { 2 | background: white; 3 | } -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/bs-recipes/recipes/gulp.sass/app/scss/main.scss: -------------------------------------------------------------------------------- 1 | body { 2 | background: white; 3 | } -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/bs-recipes/recipes/gulp.swig/app/scss/main.scss: -------------------------------------------------------------------------------- 1 | body { 2 | background: white; 3 | } -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/easy-extender/node_modules/lodash/array/head.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./first'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/easy-extender/node_modules/lodash/array/tail.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./rest'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/easy-extender/node_modules/lodash/lang/eq.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./isEqual'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/aws4/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | examples 3 | example.js 4 | browser 5 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/glob-parent/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | npm-debug.log 4 | coverage 5 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/localtunnel/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "4" 4 | - "6" 5 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/parseuri/README.md: -------------------------------------------------------------------------------- 1 | # parseuri 2 | Module for parsing URI's in engine.io-client 3 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/performance-now/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | - "0.8" -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/readable-stream/lib/internal/streams/stream.js: -------------------------------------------------------------------------------- 1 | module.exports = require('stream'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/readable-stream/passthrough.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./readable').PassThrough 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/send/node_modules/debug/.coveralls.yml: -------------------------------------------------------------------------------- 1 | repo_token: SIAeZjKYlHK74rbcFvNHMUzjRiMpflxve 2 | -------------------------------------------------------------------------------- /3. DApps/Certificate.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parsh/Blockchain-Specialization/HEAD/3. DApps/Certificate.pdf -------------------------------------------------------------------------------- /3. DApps/Coin/bs-config.json: -------------------------------------------------------------------------------- 1 | { 2 | "server": { 3 | "baseDir": ["./src", "./build/contracts"] 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/bs-recipes/recipes/grunt.sass/app/scss/main.scss: -------------------------------------------------------------------------------- 1 | body { 2 | background: orange; 3 | } -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/bs-recipes/recipes/gulp.ruby.sass/app/scss/main.scss: -------------------------------------------------------------------------------- 1 | body { 2 | background: white; 3 | } -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/easy-extender/node_modules/lodash/array/head.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./first'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/easy-extender/node_modules/lodash/array/tail.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./rest'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/easy-extender/node_modules/lodash/array/unique.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./uniq'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/easy-extender/node_modules/lodash/collection/any.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./some'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/easy-extender/node_modules/lodash/lang/eq.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./isEqual'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/rc/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | node_modules/* 3 | npm_debug.log 4 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/readable-stream/duplex-browser.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/_stream_duplex.js'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/send/node_modules/debug/.coveralls.yml: -------------------------------------------------------------------------------- 1 | repo_token: SIAeZjKYlHK74rbcFvNHMUzjRiMpflxve 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/stream-throttle/.npmignore: -------------------------------------------------------------------------------- 1 | *~ 2 | node_modules 3 | npm-debug.log 4 | tmp 5 | .DS_Store 6 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parsh/Blockchain-Specialization/HEAD/3. DApps/Ballot2/.DS_Store -------------------------------------------------------------------------------- /3. DApps/Ballot2/bs-config.json: -------------------------------------------------------------------------------- 1 | { 2 | "server": { 3 | "baseDir": ["./src", "./build/contracts"] 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/balanced-match/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | .gitignore 3 | .travis.yml 4 | Makefile 5 | example.js 6 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/bs-recipes/recipes/gulp.ruby.sass/app/scss/main.scss: -------------------------------------------------------------------------------- 1 | body { 2 | background: white; 3 | } -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/bs-recipes/recipes/gulp.task.sequence/app/css/main.css: -------------------------------------------------------------------------------- 1 | body { 2 | background: white; } 3 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/easy-extender/node_modules/lodash/array/unique.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./uniq'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/easy-extender/node_modules/lodash/collection/all.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./every'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/easy-extender/node_modules/lodash/collection/any.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./some'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/easy-extender/node_modules/lodash/object/extend.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./assign'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/debug/.coveralls.yml: -------------------------------------------------------------------------------- 1 | repo_token: SIAeZjKYlHK74rbcFvNHMUzjRiMpflxve 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/deep-extend/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/deep-extend'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/json-stringify-safe/test/mocha.opts: -------------------------------------------------------------------------------- 1 | --recursive 2 | --require must 3 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/rc/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | node_modules/* 3 | npm_debug.log 4 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/readable-stream/duplex-browser.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/_stream_duplex.js'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/stream-throttle/.npmignore: -------------------------------------------------------------------------------- 1 | *~ 2 | node_modules 3 | npm-debug.log 4 | tmp 5 | .DS_Store 6 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/unpipe/HISTORY.md: -------------------------------------------------------------------------------- 1 | 1.0.0 / 2015-06-14 2 | ================== 3 | 4 | * Initial release 5 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/aws4/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | - "0.12" 5 | - "4.2" 6 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/balanced-match/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | .gitignore 3 | .travis.yml 4 | Makefile 5 | example.js 6 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/bs-recipes/recipes/gulp.task.sequence/app/css/main.css: -------------------------------------------------------------------------------- 1 | body { 2 | background: white; } 3 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/bs-recipes/recipes/gulp.task.sequence/app/scss/main.scss: -------------------------------------------------------------------------------- 1 | body { 2 | background: white; 3 | } -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/bs-recipes/recipes/server/app/css/main.css: -------------------------------------------------------------------------------- 1 | body { 2 | background: white; 3 | color: pink; 4 | } -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/bs-recipes/recipes/webpack.react-hot-loader/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react", "es2015"] 3 | } -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/easy-extender/node_modules/lodash/array/object.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./zipObject'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/easy-extender/node_modules/lodash/chain/plant.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./wrapperPlant'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/easy-extender/node_modules/lodash/chain/run.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./wrapperValue'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/easy-extender/node_modules/lodash/chain/value.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./wrapperValue'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/easy-extender/node_modules/lodash/collection/all.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./every'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/easy-extender/node_modules/lodash/collection/collect.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./map'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/easy-extender/node_modules/lodash/collection/detect.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./find'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/easy-extender/node_modules/lodash/collection/each.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./forEach'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/easy-extender/node_modules/lodash/collection/foldl.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./reduce'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/easy-extender/node_modules/lodash/collection/inject.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./reduce'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/easy-extender/node_modules/lodash/collection/max.js: -------------------------------------------------------------------------------- 1 | module.exports = require('../math/max'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/easy-extender/node_modules/lodash/collection/min.js: -------------------------------------------------------------------------------- 1 | module.exports = require('../math/min'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/easy-extender/node_modules/lodash/collection/select.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./filter'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/easy-extender/node_modules/lodash/collection/sum.js: -------------------------------------------------------------------------------- 1 | module.exports = require('../math/sum'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/easy-extender/node_modules/lodash/object/extend.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./assign'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/easy-extender/node_modules/lodash/object/methods.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./functions'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/debug/.coveralls.yml: -------------------------------------------------------------------------------- 1 | repo_token: SIAeZjKYlHK74rbcFvNHMUzjRiMpflxve 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/deep-extend/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/deep-extend'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/json-stringify-safe/test/mocha.opts: -------------------------------------------------------------------------------- 1 | --recursive 2 | --require must 3 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/sntp/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - 0.10 5 | 6 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/tweetnacl/.npmignore: -------------------------------------------------------------------------------- 1 | .eslintrc 2 | .travis.yml 3 | bower.json 4 | test 5 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/uuid/test/mocha.opts: -------------------------------------------------------------------------------- 1 | --ui qunit 2 | --reporter spec 3 | --check-leaks 4 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/is-arrayish/.npmignore: -------------------------------------------------------------------------------- 1 | /coverage/ 2 | /test.js 3 | /test/ 4 | *.sw[a-p] 5 | /node_modules/ 6 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/localtunnel/node_modules/debug/.coveralls.yml: -------------------------------------------------------------------------------- 1 | repo_token: SIAeZjKYlHK74rbcFvNHMUzjRiMpflxve 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/readable-stream/writable-browser.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/_stream_writable.js'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/rx/.coveralls.yml: -------------------------------------------------------------------------------- 1 | service_name: travis-pro 2 | repo_token: 8YyWggHYCJrQmm4qdV2f5LVvo3vBD7Xsa 3 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/unpipe/HISTORY.md: -------------------------------------------------------------------------------- 1 | 1.0.0 / 2015-06-14 2 | ================== 3 | 4 | * Initial release 5 | -------------------------------------------------------------------------------- /3. DApps/Coin/src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parsh/Blockchain-Specialization/HEAD/3. DApps/Coin/src/.DS_Store -------------------------------------------------------------------------------- /2. Smart Contracts/Digest.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parsh/Blockchain-Specialization/HEAD/2. Smart Contracts/Digest.pdf -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/aws4/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | - "0.12" 5 | - "4.2" 6 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/bs-recipes/recipes/gulp.task.sequence/app/scss/main.scss: -------------------------------------------------------------------------------- 1 | body { 2 | background: white; 3 | } -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/bs-recipes/recipes/proxy.custom-css/app/static/_custom.css: -------------------------------------------------------------------------------- 1 | body { 2 | background: black; 3 | } -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/bs-recipes/recipes/server/app/css/main.css: -------------------------------------------------------------------------------- 1 | body { 2 | background: white; 3 | color: pink; 4 | } -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/bs-recipes/recipes/webpack.react-hot-loader/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react", "es2015"] 3 | } -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/easy-extender/node_modules/lodash/array/object.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./zipObject'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/easy-extender/node_modules/lodash/chain/commit.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./wrapperCommit'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/easy-extender/node_modules/lodash/chain/concat.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./wrapperConcat'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/easy-extender/node_modules/lodash/chain/plant.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./wrapperPlant'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/easy-extender/node_modules/lodash/chain/run.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./wrapperValue'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/easy-extender/node_modules/lodash/chain/toJSON.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./wrapperValue'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/easy-extender/node_modules/lodash/chain/value.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./wrapperValue'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/easy-extender/node_modules/lodash/chain/valueOf.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./wrapperValue'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/easy-extender/node_modules/lodash/collection/collect.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./map'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/easy-extender/node_modules/lodash/collection/detect.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./find'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/easy-extender/node_modules/lodash/collection/each.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./forEach'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/easy-extender/node_modules/lodash/collection/foldl.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./reduce'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/easy-extender/node_modules/lodash/collection/inject.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./reduce'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/easy-extender/node_modules/lodash/collection/max.js: -------------------------------------------------------------------------------- 1 | module.exports = require('../math/max'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/easy-extender/node_modules/lodash/collection/min.js: -------------------------------------------------------------------------------- 1 | module.exports = require('../math/min'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/easy-extender/node_modules/lodash/collection/select.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./filter'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/easy-extender/node_modules/lodash/collection/sum.js: -------------------------------------------------------------------------------- 1 | module.exports = require('../math/sum'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/easy-extender/node_modules/lodash/function/compose.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./flowRight'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/easy-extender/node_modules/lodash/object/methods.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./functions'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/easy-extender/node_modules/lodash/utility/iteratee.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./callback'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/asn1/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | - 0.10 5 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/readable-stream/duplex.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./readable').Duplex 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/sntp/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - 0.10 5 | 6 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/tar/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.10 4 | - 0.11 5 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/tweetnacl/.npmignore: -------------------------------------------------------------------------------- 1 | .eslintrc 2 | .travis.yml 3 | bower.json 4 | test 5 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/uuid/test/mocha.opts: -------------------------------------------------------------------------------- 1 | --ui qunit 2 | --reporter spec 3 | --check-leaks 4 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/is-arrayish/.npmignore: -------------------------------------------------------------------------------- 1 | /coverage/ 2 | /test.js 3 | /test/ 4 | *.sw[a-p] 5 | /node_modules/ 6 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/json-stable-stringify/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/localtunnel/node_modules/debug/.coveralls.yml: -------------------------------------------------------------------------------- 1 | repo_token: SIAeZjKYlHK74rbcFvNHMUzjRiMpflxve 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/readable-stream/writable-browser.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/_stream_writable.js'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/rx/.coveralls.yml: -------------------------------------------------------------------------------- 1 | service_name: travis-pro 2 | repo_token: 8YyWggHYCJrQmm4qdV2f5LVvo3vBD7Xsa 3 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parsh/Blockchain-Specialization/HEAD/3. DApps/Ballot2/src/.DS_Store -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/ajv/scripts/.eslintrc.yml: -------------------------------------------------------------------------------- 1 | rules: 2 | no-console: 0 3 | no-empty: [2, allowEmptyCatch: true] 4 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/bs-recipes/recipes/proxy.custom-css/app/static/_custom.css: -------------------------------------------------------------------------------- 1 | body { 2 | background: black; 3 | } -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/bs-recipes/recipes/server.includes/app/header.html: -------------------------------------------------------------------------------- 1 |
2 |

Some title!

3 |
-------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/builtin-modules/static.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = require('./builtin-modules.json'); 3 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/core-util-is/README.md: -------------------------------------------------------------------------------- 1 | # core-util-is 2 | 3 | The `util.is*` functions introduced in Node v0.12. 4 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/dev-ip/example.js: -------------------------------------------------------------------------------- 1 | var devip = require("./lib/dev-ip"); 2 | 3 | var ip = devip(); 4 | console.log(ip); -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/easy-extender/node_modules/lodash/chain/commit.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./wrapperCommit'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/easy-extender/node_modules/lodash/chain/concat.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./wrapperConcat'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/easy-extender/node_modules/lodash/chain/reverse.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./wrapperReverse'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/easy-extender/node_modules/lodash/chain/toJSON.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./wrapperValue'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/easy-extender/node_modules/lodash/chain/valueOf.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./wrapperValue'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/easy-extender/node_modules/lodash/collection/contains.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./includes'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/easy-extender/node_modules/lodash/collection/foldr.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./reduceRight'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/easy-extender/node_modules/lodash/collection/include.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./includes'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/easy-extender/node_modules/lodash/function/backflow.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./flowRight'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/easy-extender/node_modules/lodash/function/compose.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./flowRight'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/easy-extender/node_modules/lodash/utility/iteratee.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./callback'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fs-extra/lib/copy-sync/index.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | copySync: require('./copy-sync') 3 | } 4 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/asn1/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | - 0.10 5 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/hawk/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - 0.10 5 | 6 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/readable-stream/duplex.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./readable').Duplex 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/tar/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.10 4 | - 0.11 5 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/is-arrayish/.istanbul.yml: -------------------------------------------------------------------------------- 1 | instrumentation: 2 | excludes: 3 | - test.js 4 | - test/**/* 5 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/json-stable-stringify/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lite-server/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: stable 3 | 4 | script: 5 | - npm test 6 | -------------------------------------------------------------------------------- /SpecializationCertificate.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parsh/Blockchain-Specialization/HEAD/SpecializationCertificate.pdf -------------------------------------------------------------------------------- /1. Blockchain Basics/Digest.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parsh/Blockchain-Specialization/HEAD/1. Blockchain Basics/Digest.pdf -------------------------------------------------------------------------------- /3. DApps/Ballot2/build/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parsh/Blockchain-Specialization/HEAD/3. DApps/Ballot2/build/.DS_Store -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/ajv/scripts/.eslintrc.yml: -------------------------------------------------------------------------------- 1 | rules: 2 | no-console: 0 3 | no-empty: [2, allowEmptyCatch: true] 4 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/batch/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @./node_modules/.bin/mocha \ 4 | --require should 5 | 6 | .PHONY: test -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/bs-recipes/recipes/server.includes/app/header.html: -------------------------------------------------------------------------------- 1 |
2 |

Some title!

3 |
-------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/builtin-modules/static.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = require('./builtin-modules.json'); 3 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/connect/node_modules/debug/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | example 5 | *.sock 6 | dist 7 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/core-util-is/README.md: -------------------------------------------------------------------------------- 1 | # core-util-is 2 | 3 | The `util.is*` functions introduced in Node v0.12. 4 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/dev-ip/example.js: -------------------------------------------------------------------------------- 1 | var devip = require("./lib/dev-ip"); 2 | 3 | var ip = devip(); 4 | console.log(ip); -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/easy-extender/node_modules/lodash/chain/reverse.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./wrapperReverse'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/easy-extender/node_modules/lodash/chain/toString.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./wrapperToString'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/easy-extender/node_modules/lodash/collection/contains.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./includes'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/easy-extender/node_modules/lodash/collection/foldr.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./reduceRight'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/easy-extender/node_modules/lodash/collection/include.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./includes'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/easy-extender/node_modules/lodash/function/backflow.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./flowRight'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fs-extra/lib/copy-sync/index.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | copySync: require('./copy-sync') 3 | } 4 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/concat-map/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.4 4 | - 0.6 5 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/hawk/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - 0.10 5 | 6 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/node-pre-gyp/bin/node-pre-gyp.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | node "%~dp0\node-pre-gyp" %* 3 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/readable-stream/transform.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./readable').Transform 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/hoek/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - 0.10 5 | - 4.0 6 | 7 | sudo: false 8 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/http-signature/.npmignore: -------------------------------------------------------------------------------- 1 | .gitmodules 2 | deps 3 | docs 4 | Makefile 5 | node_modules 6 | test 7 | tools -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/is-arrayish/.istanbul.yml: -------------------------------------------------------------------------------- 1 | instrumentation: 2 | excludes: 3 | - test.js 4 | - test/**/* 5 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lite-server/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: stable 3 | 4 | script: 5 | - npm test 6 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/minimist/example/parse.js: -------------------------------------------------------------------------------- 1 | var argv = require('../')(process.argv.slice(2)); 2 | console.dir(argv); 3 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/qs/test/index.js: -------------------------------------------------------------------------------- 1 | require('./parse'); 2 | 3 | require('./stringify'); 4 | 5 | require('./utils'); 6 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/test/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parsh/Blockchain-Specialization/HEAD/3. DApps/Ballot2/test/.DS_Store -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/batch/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @./node_modules/.bin/mocha \ 4 | --require should 5 | 6 | .PHONY: test -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/bs-recipes/recipes/gulp.browserify/app/css/main.css: -------------------------------------------------------------------------------- 1 | body { 2 | background: white; 3 | color: black; 4 | } -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/bs-recipes/recipes/server.includes/app/css/main.css: -------------------------------------------------------------------------------- 1 | body { 2 | background: white; 3 | color: black; 4 | } -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/callsite/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @./node_modules/.bin/mocha \ 4 | --require should 5 | 6 | .PHONY: test -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/connect/node_modules/debug/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | example 5 | *.sock 6 | dist 7 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/easy-extender/node_modules/lodash/chain/toString.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./wrapperToString'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/easy-extender/node_modules/lodash/collection/eachRight.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./forEachRight'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/easy-extender/node_modules/lodash/date.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | 'now': require('./date/now') 3 | }; 4 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/concat-map/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.4 4 | - 0.6 5 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/isarray/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/minimist/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/node-pre-gyp/bin/node-pre-gyp.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | node "%~dp0\node-pre-gyp" %* 3 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/readable-stream/transform.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./readable').Transform 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/stringstream/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.4 4 | - 0.6 5 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/hoek/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - 0.10 5 | - 4.0 6 | 7 | sudo: false 8 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/http-signature/.npmignore: -------------------------------------------------------------------------------- 1 | .gitmodules 2 | deps 3 | docs 4 | Makefile 5 | node_modules 6 | test 7 | tools -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/isobject/node_modules/isarray/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/seq.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'); 2 | module.exports = convert(require('../seq')); 3 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/minimist/example/parse.js: -------------------------------------------------------------------------------- 1 | var argv = require('../')(process.argv.slice(2)); 2 | console.dir(argv); 3 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/qs/test/index.js: -------------------------------------------------------------------------------- 1 | require('./parse'); 2 | 3 | require('./stringify'); 4 | 5 | require('./utils'); 6 | -------------------------------------------------------------------------------- /3. DApps/Coin/src/images/ted.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parsh/Blockchain-Specialization/HEAD/3. DApps/Coin/src/images/ted.jpg -------------------------------------------------------------------------------- /2. Smart Contracts/Certificate.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parsh/Blockchain-Specialization/HEAD/2. Smart Contracts/Certificate.pdf -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/boom/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - 0.10 5 | - 4.0 6 | 7 | sudo: false 8 | 9 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/bs-recipes/recipes/gulp.browserify/app/css/main.css: -------------------------------------------------------------------------------- 1 | body { 2 | background: white; 3 | color: black; 4 | } -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/bs-recipes/recipes/server.includes/app/css/main.css: -------------------------------------------------------------------------------- 1 | body { 2 | background: white; 3 | color: black; 4 | } -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/bs-recipes/recipes/server.middleware/app/css/main.css: -------------------------------------------------------------------------------- 1 | body { 2 | background: white; 3 | color: pink; 4 | } -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/callsite/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @./node_modules/.bin/mocha \ 4 | --require should 5 | 6 | .PHONY: test -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/connect/node_modules/ms/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | test 3 | History.md 4 | Makefile 5 | component.json 6 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/delayed-stream/Makefile: -------------------------------------------------------------------------------- 1 | SHELL := /bin/bash 2 | 3 | test: 4 | @./test/run.js 5 | 6 | .PHONY: test 7 | 8 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/easy-extender/node_modules/lodash/collection/eachRight.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./forEachRight'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/easy-extender/node_modules/lodash/date.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | 'now': require('./date/now') 3 | }; 4 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/finalhandler/node_modules/debug/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | example 5 | *.sock 6 | dist 7 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/isarray/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/minimist/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/performance-now/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | - "0.8" -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/readable-stream/lib/internal/streams/stream.js: -------------------------------------------------------------------------------- 1 | module.exports = require('stream'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/readable-stream/passthrough.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./readable').PassThrough 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/stringstream/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.4 4 | - 0.6 5 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/isobject/node_modules/isarray/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/date.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'); 2 | module.exports = convert(require('../date')); 3 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/lang.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'); 2 | module.exports = convert(require('../lang')); 3 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/math.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'); 2 | module.exports = convert(require('../math')); 3 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/seq.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'); 2 | module.exports = convert(require('../seq')); 3 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/util.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'); 2 | module.exports = convert(require('../util')); 3 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/moment/src/lib/utils/mod.js: -------------------------------------------------------------------------------- 1 | export default function mod(n, x) { 2 | return ((n % x) + x) % x; 3 | } 4 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/parseqs/README.md: -------------------------------------------------------------------------------- 1 | Provides methods for converting an object into string representation, and vice versa. 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/readable-stream/lib/internal/streams/stream-browser.js: -------------------------------------------------------------------------------- 1 | module.exports = require('events').EventEmitter; 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/serve-index/node_modules/debug/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | example 5 | *.sock 6 | dist 7 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/boom/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - 0.10 5 | - 4.0 6 | 7 | sudo: false 8 | 9 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/browser-sync/templates/script-tags-simple.tmpl: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/bs-recipes/recipes/server.middleware/app/css/main.css: -------------------------------------------------------------------------------- 1 | body { 2 | background: white; 3 | color: pink; 4 | } -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/connect/node_modules/ms/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | test 3 | History.md 4 | Makefile 5 | component.json 6 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/delayed-stream/Makefile: -------------------------------------------------------------------------------- 1 | SHELL := /bin/bash 2 | 3 | test: 4 | @./test/run.js 5 | 6 | .PHONY: test 7 | 8 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/finalhandler/node_modules/debug/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | example 5 | *.sock 6 | dist 7 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/performance-now/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | - "0.8" -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/readable-stream/lib/internal/streams/stream.js: -------------------------------------------------------------------------------- 1 | module.exports = require('stream'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/readable-stream/passthrough.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./readable').PassThrough 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/http-proxy/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | examples 3 | doc 4 | benchmark 5 | .travis.yml 6 | CHANGELOG.md 7 | UPGRADING.md -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/array.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'); 2 | module.exports = convert(require('../array')); 3 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/date.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'); 2 | module.exports = convert(require('../date')); 3 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/lang.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'); 2 | module.exports = convert(require('../lang')); 3 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/math.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'); 2 | module.exports = convert(require('../math')); 3 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/number.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'); 2 | module.exports = convert(require('../number')); 3 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/object.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'); 2 | module.exports = convert(require('../object')); 3 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/string.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'); 2 | module.exports = convert(require('../string')); 3 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/util.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'); 2 | module.exports = convert(require('../util')); 3 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/moment/src/lib/utils/mod.js: -------------------------------------------------------------------------------- 1 | export default function mod(n, x) { 2 | return ((n % x) + x) % x; 3 | } 4 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/parseqs/README.md: -------------------------------------------------------------------------------- 1 | Provides methods for converting an object into string representation, and vice versa. 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/parseuri/History.md: -------------------------------------------------------------------------------- 1 | 2 | n.n.n / 2014-02-09 3 | ================== 4 | 5 | * parseuri first commit 6 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/readable-stream/lib/internal/streams/stream-browser.js: -------------------------------------------------------------------------------- 1 | module.exports = require('events').EventEmitter; 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/serve-index/node_modules/debug/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | example 5 | *.sock 6 | dist 7 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/serve-index/node_modules/ms/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | test 3 | History.md 4 | Makefile 5 | component.json 6 | -------------------------------------------------------------------------------- /3. DApps/Coin/src/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parsh/Blockchain-Specialization/HEAD/3. DApps/Coin/src/images/.DS_Store -------------------------------------------------------------------------------- /3. DApps/Coin/src/images/bernie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parsh/Blockchain-Specialization/HEAD/3. DApps/Coin/src/images/bernie.jpg -------------------------------------------------------------------------------- /3. DApps/Coin/src/images/donald.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parsh/Blockchain-Specialization/HEAD/3. DApps/Coin/src/images/donald.jpg -------------------------------------------------------------------------------- /3. DApps/Coin/src/images/eagles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parsh/Blockchain-Specialization/HEAD/3. DApps/Coin/src/images/eagles.png -------------------------------------------------------------------------------- /4. Blockchain Platforms/Digest.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parsh/Blockchain-Specialization/HEAD/4. Blockchain Platforms/Digest.pdf -------------------------------------------------------------------------------- /1. Blockchain Basics/Certificate.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parsh/Blockchain-Specialization/HEAD/1. Blockchain Basics/Certificate.pdf -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/browser-sync/templates/script-tags-simple.tmpl: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/finalhandler/node_modules/ms/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | test 3 | History.md 4 | Makefile 5 | component.json 6 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/readable-stream/duplex-browser.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/_stream_duplex.js'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/http-proxy/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | examples 3 | doc 4 | benchmark 5 | .travis.yml 6 | CHANGELOG.md 7 | UPGRADING.md -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/jsonify/index.js: -------------------------------------------------------------------------------- 1 | exports.parse = require('./lib/parse'); 2 | exports.stringify = require('./lib/stringify'); 3 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/array.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'); 2 | module.exports = convert(require('../array')); 3 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/number.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'); 2 | module.exports = convert(require('../number')); 3 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/object.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'); 2 | module.exports = convert(require('../object')); 3 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/string.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'); 2 | module.exports = convert(require('../string')); 3 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/parseuri/History.md: -------------------------------------------------------------------------------- 1 | 2 | n.n.n / 2014-02-09 3 | ================== 4 | 5 | * parseuri first commit 6 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/readable-stream/node_modules/isarray/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/readdirp/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | - "0.12" 5 | - "4.4" 6 | - "6.2" 7 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/serve-index/node_modules/ms/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | test 3 | History.md 4 | Makefile 5 | component.json 6 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/uws/src/uWS.h: -------------------------------------------------------------------------------- 1 | #ifndef UWS_UWS_H 2 | #define UWS_UWS_H 3 | 4 | #include "Hub.h" 5 | 6 | #endif // UWS_UWS_H 7 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/src/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parsh/Blockchain-Specialization/HEAD/3. DApps/Ballot2/src/images/.DS_Store -------------------------------------------------------------------------------- /3. DApps/Ballot2/src/images/apple.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parsh/Blockchain-Specialization/HEAD/3. DApps/Ballot2/src/images/apple.jpg -------------------------------------------------------------------------------- /3. DApps/Ballot2/src/images/banana.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parsh/Blockchain-Specialization/HEAD/3. DApps/Ballot2/src/images/banana.jpg -------------------------------------------------------------------------------- /3. DApps/Ballot2/src/images/mango.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parsh/Blockchain-Specialization/HEAD/3. DApps/Ballot2/src/images/mango.jpg -------------------------------------------------------------------------------- /3. DApps/Ballot2/src/images/orange.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parsh/Blockchain-Specialization/HEAD/3. DApps/Ballot2/src/images/orange.jpg -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/bs-recipes/recipes/middleware.css.injection/app/css/main.less: -------------------------------------------------------------------------------- 1 | body { 2 | background: white; 3 | color: blue; 4 | } -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/bs-recipes/recipes/server.includes/app/footer.html: -------------------------------------------------------------------------------- 1 |
2 | 3 |
-------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/dev-ip/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - '0.10' 4 | before_script: 5 | - npm install -g gulp 6 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/finalhandler/node_modules/ms/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | test 3 | History.md 4 | Makefile 5 | component.json 6 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/balanced-match/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | .gitignore 3 | .travis.yml 4 | Makefile 5 | example.js 6 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/readable-stream/duplex-browser.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/_stream_duplex.js'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/readable-stream/writable-browser.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/_stream_writable.js'); 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/getpass/.npmignore: -------------------------------------------------------------------------------- 1 | .gitmodules 2 | deps 3 | docs 4 | Makefile 5 | node_modules 6 | test 7 | tools 8 | coverage 9 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/jsonify/index.js: -------------------------------------------------------------------------------- 1 | exports.parse = require('./lib/parse'); 2 | exports.stringify = require('./lib/stringify'); 3 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/function.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'); 2 | module.exports = convert(require('../function')); 3 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/readable-stream/node_modules/isarray/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/readdirp/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | - "0.12" 5 | - "4.4" 6 | - "6.2" 7 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/uws/src/uWS.h: -------------------------------------------------------------------------------- 1 | #ifndef UWS_UWS_H 2 | #define UWS_UWS_H 3 | 4 | #include "Hub.h" 5 | 6 | #endif // UWS_UWS_H 7 | -------------------------------------------------------------------------------- /3. DApps/Coin/src/images/hillary.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parsh/Blockchain-Specialization/HEAD/3. DApps/Coin/src/images/hillary.jpg -------------------------------------------------------------------------------- /3. DApps/Coin/src/images/jaguars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parsh/Blockchain-Specialization/HEAD/3. DApps/Coin/src/images/jaguars.png -------------------------------------------------------------------------------- /3. DApps/Coin/src/images/patriots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parsh/Blockchain-Specialization/HEAD/3. DApps/Coin/src/images/patriots.png -------------------------------------------------------------------------------- /3. DApps/Coin/src/images/vikings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parsh/Blockchain-Specialization/HEAD/3. DApps/Coin/src/images/vikings.png -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/bs-recipes/recipes/middleware.css.injection/app/css/main.less: -------------------------------------------------------------------------------- 1 | body { 2 | background: white; 3 | color: blue; 4 | } -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/bs-recipes/recipes/middleware.css.injection/desc.md: -------------------------------------------------------------------------------- 1 | - Perform changes to `app/css/main.less` to see live css injection -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/bs-recipes/recipes/server.includes/app/footer.html: -------------------------------------------------------------------------------- 1 |
2 | 3 |
-------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/bs-recipes/recipes/webpack.react-hot-loader/desc.md: -------------------------------------------------------------------------------- 1 | To see `react-hot-loader` in action, edit `js/HelloWorld.jsx` 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/bs-recipes/recipes/webpack.typescript.react/desc.md: -------------------------------------------------------------------------------- 1 | Run `npm run preview` for the 8k (zipped) production version 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/component-inherit/History.md: -------------------------------------------------------------------------------- 1 | 2 | 0.0.2 / 2012-09-03 3 | ================== 4 | 5 | * fix typo in package.json 6 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/dev-ip/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - '0.10' 4 | before_script: 5 | - npm install -g gulp 6 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/aws4/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | - "0.12" 5 | - "4.2" 6 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/balanced-match/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | .gitignore 3 | .travis.yml 4 | Makefile 5 | example.js 6 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/isarray/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @node_modules/.bin/tape test.js 4 | 5 | .PHONY: test 6 | 7 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/readable-stream/writable-browser.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/_stream_writable.js'); 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/uuid/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.12" 4 | - "4" 5 | - "6" 6 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/getpass/.npmignore: -------------------------------------------------------------------------------- 1 | .gitmodules 2 | deps 3 | docs 4 | Makefile 5 | node_modules 6 | test 7 | tools 8 | coverage 9 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/isobject/node_modules/isarray/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @node_modules/.bin/tape test.js 4 | 5 | .PHONY: test 6 | 7 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/function.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'); 2 | module.exports = convert(require('../function')); 3 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/utils-merge/.travis.yml: -------------------------------------------------------------------------------- 1 | language: "node_js" 2 | node_js: 3 | - "0.4" 4 | - "0.6" 5 | - "0.8" 6 | - "0.10" 7 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/browser-sync-ui/templates/inline.template.tmpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/bs-recipes/recipes/middleware.css.injection/desc.md: -------------------------------------------------------------------------------- 1 | - Perform changes to `app/css/main.less` to see live css injection -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/bs-recipes/recipes/webpack.preact-hot-loader/desc.md: -------------------------------------------------------------------------------- 1 | To see `preact-hot-loader` in action, edit `js/HelloWorld.jsx` 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/bs-recipes/recipes/webpack.react-hot-loader/desc.md: -------------------------------------------------------------------------------- 1 | To see `react-hot-loader` in action, edit `js/HelloWorld.jsx` 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/bs-recipes/recipes/webpack.typescript.react/desc.md: -------------------------------------------------------------------------------- 1 | Run `npm run preview` for the 8k (zipped) production version 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/component-inherit/History.md: -------------------------------------------------------------------------------- 1 | 2 | 0.0.2 / 2012-09-03 3 | ================== 4 | 5 | * fix typo in package.json 6 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/cryptiles/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - 0.10 5 | - 4.0 6 | 7 | sudo: false 8 | 9 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/ajv/scripts/.eslintrc.yml: -------------------------------------------------------------------------------- 1 | rules: 2 | no-console: 0 3 | no-empty: [2, allowEmptyCatch: true] 4 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/aws4/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | - "0.12" 5 | - "4.2" 6 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/isarray/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @node_modules/.bin/tape test.js 4 | 5 | .PHONY: test 6 | 7 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/json-stable-stringify/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/tar/.npmignore: -------------------------------------------------------------------------------- 1 | .*.swp 2 | node_modules 3 | examples/extract/ 4 | test/tmp/ 5 | test/fixtures/ 6 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/uuid/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.12" 4 | - "4" 5 | - "6" 6 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/isobject/node_modules/isarray/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @node_modules/.bin/tape test.js 4 | 5 | .PHONY: test 6 | 7 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp.js: -------------------------------------------------------------------------------- 1 | var _ = require('./lodash.min').runInContext(); 2 | module.exports = require('./fp/_baseConvert')(_, _); 3 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/fp/collection.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'); 2 | module.exports = convert(require('../collection')); 3 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/moment/src/lib/locale/pre-post-format.js: -------------------------------------------------------------------------------- 1 | export function preParsePostFormat (string) { 2 | return string; 3 | } 4 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/number-is-nan/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = Number.isNaN || function (x) { 3 | return x !== x; 4 | }; 5 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/utils-merge/.travis.yml: -------------------------------------------------------------------------------- 1 | language: "node_js" 2 | node_js: 3 | - "0.4" 4 | - "0.6" 5 | - "0.8" 6 | - "0.10" 7 | -------------------------------------------------------------------------------- /4. Blockchain Platforms/Certificate.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parsh/Blockchain-Specialization/HEAD/4. Blockchain Platforms/Certificate.pdf -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/browser-sync-ui/templates/inline.template.tmpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/bs-recipes/recipes/webpack.preact-hot-loader/desc.md: -------------------------------------------------------------------------------- 1 | To see `preact-hot-loader` in action, edit `js/HelloWorld.jsx` 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/bs-recipes/recipes/webpack.react-transform-hmr/desc.md: -------------------------------------------------------------------------------- 1 | To see `react-transform-hmr` in action, edit `js/HelloWorld.jsx` 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/cryptiles/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - 0.10 5 | - 4.0 6 | 7 | sudo: false 8 | 9 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/ajv/scripts/.eslintrc.yml: -------------------------------------------------------------------------------- 1 | rules: 2 | no-console: 0 3 | no-empty: [2, allowEmptyCatch: true] 4 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/core-util-is/README.md: -------------------------------------------------------------------------------- 1 | # core-util-is 2 | 3 | The `util.is*` functions introduced in Node v0.12. 4 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/json-stable-stringify/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/tar/.npmignore: -------------------------------------------------------------------------------- 1 | .*.swp 2 | node_modules 3 | examples/extract/ 4 | test/tmp/ 5 | test/fixtures/ 6 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp.js: -------------------------------------------------------------------------------- 1 | var _ = require('./lodash.min').runInContext(); 2 | module.exports = require('./fp/_baseConvert')(_, _); 3 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/fp/collection.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'); 2 | module.exports = convert(require('../collection')); 3 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/moment/src/lib/locale/pre-post-format.js: -------------------------------------------------------------------------------- 1 | export function preParsePostFormat (string) { 2 | return string; 3 | } 4 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/number-is-nan/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = Number.isNaN || function (x) { 3 | return x !== x; 4 | }; 5 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/bs-recipes/recipes/webpack.react-transform-hmr/desc.md: -------------------------------------------------------------------------------- 1 | To see `react-transform-hmr` in action, edit `js/HelloWorld.jsx` 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/core-util-is/README.md: -------------------------------------------------------------------------------- 1 | # core-util-is 2 | 3 | The `util.is*` functions introduced in Node v0.12. 4 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/hoek/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - 0.10 5 | - 4.0 6 | 7 | sudo: false 8 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/http-signature/.npmignore: -------------------------------------------------------------------------------- 1 | .gitmodules 2 | deps 3 | docs 4 | Makefile 5 | node_modules 6 | test 7 | tools -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/minimist/example/parse.js: -------------------------------------------------------------------------------- 1 | var argv = require('../')(process.argv.slice(2)); 2 | console.dir(argv); 3 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/moment/src/lib/moment/now.js: -------------------------------------------------------------------------------- 1 | export var now = function () { 2 | return Date.now ? Date.now() : +(new Date()); 3 | }; 4 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/moment/src/lib/utils/is-undefined.js: -------------------------------------------------------------------------------- 1 | export default function isUndefined(input) { 2 | return input === void 0; 3 | } 4 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/object-path/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .c9revisions 3 | .settings 4 | .idea 5 | npm-debug.log 6 | generated 7 | coverage 8 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/readable-stream/node_modules/isarray/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @node_modules/.bin/tape test.js 4 | 5 | .PHONY: test 6 | 7 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/hoek/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - 0.10 5 | - 4.0 6 | 7 | sudo: false 8 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/http-signature/.npmignore: -------------------------------------------------------------------------------- 1 | .gitmodules 2 | deps 3 | docs 4 | Makefile 5 | node_modules 6 | test 7 | tools -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/minimist/example/parse.js: -------------------------------------------------------------------------------- 1 | var argv = require('../')(process.argv.slice(2)); 2 | console.dir(argv); 3 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/moment/src/lib/moment/now.js: -------------------------------------------------------------------------------- 1 | export var now = function () { 2 | return Date.now ? Date.now() : +(new Date()); 3 | }; 4 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/moment/src/lib/utils/is-undefined.js: -------------------------------------------------------------------------------- 1 | export default function isUndefined(input) { 2 | return input === void 0; 3 | } 4 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/object-path/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .c9revisions 3 | .settings 4 | .idea 5 | npm-debug.log 6 | generated 7 | coverage 8 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/pinkie-promise/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = typeof Promise === 'function' ? Promise : require('pinkie'); 4 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/qs/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | Please view our [hapijs contributing guide](https://github.com/hapijs/hapi/blob/master/CONTRIBUTING.md). 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/readable-stream/node_modules/isarray/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @node_modules/.bin/tape test.js 4 | 5 | .PHONY: test 6 | 7 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/safe-buffer/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 'node' 4 | - '5' 5 | - '4' 6 | - '0.12' 7 | - '0.10' 8 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/uuid/v3.js: -------------------------------------------------------------------------------- 1 | var v35 = require('./lib/v35.js'); 2 | var md5 = require('./lib/md5'); 3 | 4 | module.exports = v35('v3', 0x30, md5); -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/boom/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | Please view our [hapijs contributing guide](https://github.com/hapijs/hapi/blob/master/CONTRIBUTING.md). 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/bs-recipes/recipes/grunt.sass/app/css/main.css: -------------------------------------------------------------------------------- 1 | body { 2 | background: orange; } 3 | 4 | /*# sourceMappingURL=main.css.map */ 5 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/boom/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - 0.10 5 | - 4.0 6 | 7 | sudo: false 8 | 9 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/delayed-stream/Makefile: -------------------------------------------------------------------------------- 1 | SHELL := /bin/bash 2 | 3 | test: 4 | @./test/run.js 5 | 6 | .PHONY: test 7 | 8 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/readable-stream/lib/internal/streams/stream-browser.js: -------------------------------------------------------------------------------- 1 | module.exports = require('events').EventEmitter; 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/has-binary2/README.md: -------------------------------------------------------------------------------- 1 | has-binarydata.js 2 | ================= 3 | 4 | Simple module to test if an object contains binary data 5 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/hoek/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | Please view our [hapijs contributing guide](https://github.com/hapijs/hapi/blob/master/CONTRIBUTING.md). 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/jsbn/example.js: -------------------------------------------------------------------------------- 1 | var BigInteger = require('./'); 2 | var a = new BigInteger('91823918239182398123'); 3 | console.log(a.bitLength()); -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/performance-now/test/mocha.opts: -------------------------------------------------------------------------------- 1 | --require coffee-script/register 2 | --compilers coffee:coffee-script/register 3 | --reporter spec -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/pinkie-promise/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = typeof Promise === 'function' ? Promise : require('pinkie'); 4 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/qs/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | Please view our [hapijs contributing guide](https://github.com/hapijs/hapi/blob/master/CONTRIBUTING.md). 2 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/safe-buffer/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 'node' 4 | - '5' 5 | - '4' 6 | - '0.12' 7 | - '0.10' 8 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/uuid/v3.js: -------------------------------------------------------------------------------- 1 | var v35 = require('./lib/v35.js'); 2 | var md5 = require('./lib/md5'); 3 | 4 | module.exports = v35('v3', 0x30, md5); -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/uuid/v5.js: -------------------------------------------------------------------------------- 1 | var v35 = require('./lib/v35.js'); 2 | var sha1 = require('./lib/sha1'); 3 | module.exports = v35('v5', 0x50, sha1); 4 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/boom/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | Please view our [hapijs contributing guide](https://github.com/hapijs/hapi/blob/master/CONTRIBUTING.md). 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/browser-sync/dist/types.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"types.js","sourceRoot":"","sources":["../lib/types.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/bs-recipes/recipes/grunt.sass/app/css/main.css: -------------------------------------------------------------------------------- 1 | body { 2 | background: orange; } 3 | 4 | /*# sourceMappingURL=main.css.map */ 5 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/form-data/lib/browser.js: -------------------------------------------------------------------------------- 1 | /* eslint-env browser */ 2 | module.exports = typeof self == 'object' ? self.FormData : window.FormData; 3 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/boom/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - 0.10 5 | - 4.0 6 | 7 | sudo: false 8 | 9 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/delayed-stream/Makefile: -------------------------------------------------------------------------------- 1 | SHELL := /bin/bash 2 | 3 | test: 4 | @./test/run.js 5 | 6 | .PHONY: test 7 | 8 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/readable-stream/lib/internal/streams/stream-browser.js: -------------------------------------------------------------------------------- 1 | module.exports = require('events').EventEmitter; 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/has-binary2/README.md: -------------------------------------------------------------------------------- 1 | has-binarydata.js 2 | ================= 3 | 4 | Simple module to test if an object contains binary data 5 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/hoek/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | Please view our [hapijs contributing guide](https://github.com/hapijs/hapi/blob/master/CONTRIBUTING.md). 2 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/jsbn/example.js: -------------------------------------------------------------------------------- 1 | var BigInteger = require('./'); 2 | var a = new BigInteger('91823918239182398123'); 3 | console.log(a.bitLength()); -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/limiter/index.js: -------------------------------------------------------------------------------- 1 | 2 | exports.RateLimiter = require('./lib/rateLimiter'); 3 | exports.TokenBucket = require('./lib/tokenBucket'); 4 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/performance-now/test/mocha.opts: -------------------------------------------------------------------------------- 1 | --require coffee-script/register 2 | --compilers coffee:coffee-script/register 3 | --reporter spec -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/uuid/v5.js: -------------------------------------------------------------------------------- 1 | var v35 = require('./lib/v35.js'); 2 | var sha1 = require('./lib/sha1'); 3 | module.exports = v35('v5', 0x50, sha1); 4 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/boom/images/boom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parsh/Blockchain-Specialization/HEAD/3. DApps/Coin/node_modules/boom/images/boom.png -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/browser-sync/dist/types.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"types.js","sourceRoot":"","sources":["../lib/types.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/component-bind/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @./node_modules/.bin/mocha \ 4 | --require should \ 5 | --reporter spec 6 | 7 | .PHONY: test -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/debug/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | example 5 | *.sock 6 | dist 7 | yarn.lock 8 | coverage 9 | bower.json 10 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/form-data/lib/browser.js: -------------------------------------------------------------------------------- 1 | /* eslint-env browser */ 2 | module.exports = typeof self == 'object' ? self.FormData : window.FormData; 3 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/getpass/.npmignore: -------------------------------------------------------------------------------- 1 | .gitmodules 2 | deps 3 | docs 4 | Makefile 5 | node_modules 6 | test 7 | tools 8 | coverage 9 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/jsonify/index.js: -------------------------------------------------------------------------------- 1 | exports.parse = require('./lib/parse'); 2 | exports.stringify = require('./lib/stringify'); 3 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/hawk/images/hawk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parsh/Blockchain-Specialization/HEAD/3. DApps/Coin/node_modules/hawk/images/hawk.png -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/hawk/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parsh/Blockchain-Specialization/HEAD/3. DApps/Coin/node_modules/hawk/images/logo.png -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/hoek/images/hoek.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parsh/Blockchain-Specialization/HEAD/3. DApps/Coin/node_modules/hoek/images/hoek.png -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/limiter/index.js: -------------------------------------------------------------------------------- 1 | 2 | exports.RateLimiter = require('./lib/rateLimiter'); 3 | exports.TokenBucket = require('./lib/tokenBucket'); 4 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/_realNames.js: -------------------------------------------------------------------------------- 1 | /** Used to lookup unminified function names. */ 2 | var realNames = {}; 3 | 4 | module.exports = realNames; 5 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/sshpk/.npmignore: -------------------------------------------------------------------------------- 1 | .gitmodules 2 | deps 3 | docs 4 | Makefile 5 | node_modules 6 | test 7 | tools 8 | coverage 9 | man/src 10 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/uws/uws_linux_46.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parsh/Blockchain-Specialization/HEAD/3. DApps/Coin/node_modules/uws/uws_linux_46.node -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/uws/uws_linux_47.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parsh/Blockchain-Specialization/HEAD/3. DApps/Coin/node_modules/uws/uws_linux_47.node -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/uws/uws_linux_48.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parsh/Blockchain-Specialization/HEAD/3. DApps/Coin/node_modules/uws/uws_linux_48.node -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/uws/uws_linux_51.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parsh/Blockchain-Specialization/HEAD/3. DApps/Coin/node_modules/uws/uws_linux_51.node -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/uws/uws_win32_48.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parsh/Blockchain-Specialization/HEAD/3. DApps/Coin/node_modules/uws/uws_win32_48.node -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/uws/uws_win32_51.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parsh/Blockchain-Specialization/HEAD/3. DApps/Coin/node_modules/uws/uws_win32_51.node -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/boom/images/boom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parsh/Blockchain-Specialization/HEAD/3. DApps/Ballot2/node_modules/boom/images/boom.png -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/component-bind/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @./node_modules/.bin/mocha \ 4 | --require should \ 5 | --reporter spec 6 | 7 | .PHONY: test -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/debug/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | example 5 | *.sock 6 | dist 7 | yarn.lock 8 | coverage 9 | bower.json 10 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/emitter-steward/.travis.yml: -------------------------------------------------------------------------------- 1 | sudo: false 2 | git: 3 | depth: 2 4 | language: node_js 5 | node_js: 6 | - iojs 7 | - node 8 | - '0.10' -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/fstream/.npmignore: -------------------------------------------------------------------------------- 1 | .*.swp 2 | node_modules/ 3 | examples/deep-copy/ 4 | examples/path/ 5 | examples/filter-copy/ 6 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/getpass/.npmignore: -------------------------------------------------------------------------------- 1 | .gitmodules 2 | deps 3 | docs 4 | Makefile 5 | node_modules 6 | test 7 | tools 8 | coverage 9 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/jsonify/index.js: -------------------------------------------------------------------------------- 1 | exports.parse = require('./lib/parse'); 2 | exports.stringify = require('./lib/stringify'); 3 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/hawk/images/hawk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parsh/Blockchain-Specialization/HEAD/3. DApps/Ballot2/node_modules/hawk/images/hawk.png -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/hawk/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parsh/Blockchain-Specialization/HEAD/3. DApps/Ballot2/node_modules/hawk/images/logo.png -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/hoek/images/hoek.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parsh/Blockchain-Specialization/HEAD/3. DApps/Ballot2/node_modules/hoek/images/hoek.png -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/lodash/_realNames.js: -------------------------------------------------------------------------------- 1 | /** Used to lookup unminified function names. */ 2 | var realNames = {}; 3 | 4 | module.exports = realNames; 5 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/sshpk/.npmignore: -------------------------------------------------------------------------------- 1 | .gitmodules 2 | deps 3 | docs 4 | Makefile 5 | node_modules 6 | test 7 | tools 8 | coverage 9 | man/src 10 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/bs-recipes/recipes/gulp.ruby.sass/app/css/main.css: -------------------------------------------------------------------------------- 1 | body { 2 | background: white; } 3 | 4 | 5 | 6 | /*# sourceMappingURL=main.css.map */ -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/emitter-steward/.travis.yml: -------------------------------------------------------------------------------- 1 | sudo: false 2 | git: 3 | depth: 2 4 | language: node_js 5 | node_js: 6 | - iojs 7 | - node 8 | - '0.10' -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fs-extra/lib/copy/index.js: -------------------------------------------------------------------------------- 1 | const u = require('universalify').fromCallback 2 | module.exports = { 3 | copy: u(require('./copy')) 4 | } 5 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/fstream/.npmignore: -------------------------------------------------------------------------------- 1 | .*.swp 2 | node_modules/ 3 | examples/deep-copy/ 4 | examples/path/ 5 | examples/filter-copy/ 6 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/gauge/process.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | // this exists so we can replace it during testing 3 | module.exports = process 4 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/fsevents/node_modules/rc/node_modules/minimist/example/parse.js: -------------------------------------------------------------------------------- 1 | var argv = require('../')(process.argv.slice(2)); 2 | console.dir(argv); 3 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/lodash/_reEscape.js: -------------------------------------------------------------------------------- 1 | /** Used to match template delimiters. */ 2 | var reEscape = /<%-([\s\S]+?)%>/g; 3 | 4 | module.exports = reEscape; 5 | -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/uws/uws_darwin_46.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parsh/Blockchain-Specialization/HEAD/3. DApps/Coin/node_modules/uws/uws_darwin_46.node -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/uws/uws_darwin_47.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parsh/Blockchain-Specialization/HEAD/3. DApps/Coin/node_modules/uws/uws_darwin_47.node -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/uws/uws_darwin_48.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parsh/Blockchain-Specialization/HEAD/3. DApps/Coin/node_modules/uws/uws_darwin_48.node -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/uws/uws_darwin_51.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parsh/Blockchain-Specialization/HEAD/3. DApps/Coin/node_modules/uws/uws_darwin_51.node -------------------------------------------------------------------------------- /3. DApps/Coin/node_modules/uws/uws_darwin_57.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parsh/Blockchain-Specialization/HEAD/3. DApps/Coin/node_modules/uws/uws_darwin_57.node -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/async-limiter/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "6" 4 | - "node" 5 | script: npm run travis 6 | cache: 7 | yarn: true 8 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/backo2/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @./node_modules/.bin/mocha \ 4 | --require should \ 5 | --reporter dot \ 6 | --bail 7 | 8 | .PHONY: test -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/bs-recipes/recipes/gulp.ruby.sass/app/css/main.css: -------------------------------------------------------------------------------- 1 | body { 2 | background: white; } 3 | 4 | 5 | 6 | /*# sourceMappingURL=main.css.map */ -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/bs-recipes/recipes/proxy.custom-css/desc.md: -------------------------------------------------------------------------------- 1 | 2 | To see the live-updating and CSS injecting, simply perform changes to `app/static/_custom.css` -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fs-extra/lib/copy/index.js: -------------------------------------------------------------------------------- 1 | const u = require('universalify').fromCallback 2 | module.exports = { 3 | copy: u(require('./copy')) 4 | } 5 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/cryptiles/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - 0.10 5 | - 4.0 6 | 7 | sudo: false 8 | 9 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/gauge/process.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | // this exists so we can replace it during testing 3 | module.exports = process 4 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/number-is-nan/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = Number.isNaN || function (x) { 3 | return x !== x; 4 | }; 5 | -------------------------------------------------------------------------------- /3. DApps/Ballot2/node_modules/fsevents/node_modules/rc/node_modules/minimist/example/parse.js: -------------------------------------------------------------------------------- 1 | var argv = require('../')(process.argv.slice(2)); 2 | console.dir(argv); 3 | --------------------------------------------------------------------------------