# Maintainer: Behnam Momeni # Contributor: Guido # Contributor: Emmanuel Gil Peyrot pkgname="sozi" pkgver=15.11 # the build version is obtained from [here](https://github.com/senshu/Sozi/releases) _buildver=15.11.210709 pkgrel=2 pkgdesc="A zooming presentation based on SVG, using JavaScript" url="http://sozi.baierouge.fr/" arch=('i686' 'x86_64') license=('custom:MPL2.0') depends=("gconf" "libnotify" "alsa-lib" "nss" "gtk2" "libxtst") optdepends=( 'inkscape: for editing the original SVG document (any SVG editor can be used)' ) makedepends=('npm' 'bower' 'nodejs-grunt-cli' 'jq' 'npm-semver') source=("https://github.com/senshu/Sozi/archive/${pkgver}.tar.gz" "http://www.1001freefonts.com/d/5854/droid_sans.zip") sha1sums=('17a53a4a87a1b774e4e1f81011b857ac77bc5570' '265b6cc7b7cea7bcfb74eec52bc9c0e44f039740') source_i686=('http://dl.nwjs.io/v0.12.3/nwjs-v0.12.3-linux-ia32.tar.gz' 'buildConfig-i686.js') sha1sums_i686=('6ee4fba0bf546d19b3754f72b0c394a6926671f0' '9a956604ab3be4a8c32c69cc36eb5344b2e3824f') # 64bits systems won't work with the nwjs newer than 0.12.1 (last available version is 0.12.3) source_x86_64=('http://dl.nwjs.io/v0.12.1/nwjs-v0.12.1-linux-x64.tar.gz' 'buildConfig-x86_64.js') sha1sums_x86_64=('1d9b49643b13e0cd7cc4631e2a6386b4e12f2b68' 'ec8cee21c9406cbadf600670af1032bdef9c75d0') options=(!strip) prepare() { cd "${srcdir}/Sozi-${pkgver}/" sed -i "s/grunt.template.today(\"yy.mm.ddHHMM\")/\"${_buildver}\"/" Gruntfile.js install -D -m644 "${srcdir}/DroidSans.ttf" "vendor/DroidSans/DroidSans.ttf" install -D -m644 "${srcdir}/DroidSans-Bold.ttf" "vendor/DroidSans/DroidSans-Bold.ttf" if [[ $CARCH == "x86_64" ]]; then mkdir -p "cache/0.12.1/" cp -a -l "${srcdir}/nwjs-v0.12.1-linux-x64" "cache/0.12.1/linux64" cp "${srcdir}/buildConfig-x86_64.js" "buildConfig.js" else mkdir -p "cache/0.12.3/" cp -a -l "${srcdir}/nwjs-v0.12.3-linux-ia32" "cache/0.12.3/linux32" cp "${srcdir}/buildConfig-i686.js" "buildConfig.js" fi } bestmatch() { local package="$1"; local semverspec="$2"; ls "${srcdir}" | grep "^${package}-[0-9].*.tgz$" | sed "s/^${package}-\([0-9].*\).tgz$/\1/" | xargs semver -r "$semverspec" | tail -n1; } npminstallpackage() { local target="$1" if [ -d "${srcdir}/build/$target" ]; then echo "Installing $target [cached]" else echo "Installing $target ..." mkdir -p "${srcdir}/build/$target" cd "${srcdir}/build/$target" bsdtar xzf "${srcdir}/${target}.tgz" folder=$(ls) find "$folder" -mindepth 1 -maxdepth 1 | xargs mv -t . rm -r "$folder" cat package.json | jq -r '.dependencies | to_entries? | map(.key + "@" + .value) | .[]' | while read dep; do local package="$(echo "$dep" | gawk -F'@' '{ print $1 }')" local semverspec="$(echo "$dep" | gawk -F'@' '{ print $2 }')" local subtarget="${package}-$(bestmatch "$package" "$semverspec")" if [ ! -d "${srcdir}/build/${target}/node_modules/$package" ]; then npminstallpackage "$subtarget" fi done cd "${srcdir}/build/$target" mkdir -p "node_modules" cat package.json | jq -r '.dependencies | to_entries? | map(.key + "@" + .value) | .[]' | while read dep; do local package="$(echo "$dep" | gawk -F'@' '{ print $1 }')" local semverspec="$(echo "$dep" | gawk -F'@' '{ print $2 }')" local subtarget="${package}-$(bestmatch "$package" "$semverspec")" if [ ! -d "node_modules/$package" ]; then cp -a -l "${srcdir}/build/$subtarget" "node_modules/$package" fi done npm install --no-registry --no-optional --production fi } build() { mkdir -p "${srcdir}/build/" cd "${srcdir}/Sozi-${pkgver}/" cat package.json | jq -r '.dependencies, .devDependencies | to_entries? | map(.key + "@" + .value) | .[]' | sort -u | while read dep; do local package="$(echo "$dep" | gawk -F'@' '{ print $1 }')" local semverspec="$(echo "$dep" | gawk -F'@' '{ print $2 }')" local target="${package}-$(bestmatch "$package" "$semverspec")" npminstallpackage "$target" done cd "${srcdir}/Sozi-${pkgver}/" rm -rf "node_modules"; mkdir "node_modules" cat package.json | jq -r '.dependencies, .devDependencies | to_entries? | map(.key + "@" + .value) | .[]' | sort -u | while read dep; do local package="$(echo "$dep" | gawk -F'@' '{ print $1 }')" local semverspec="$(echo "$dep" | gawk -F'@' '{ print $2 }')" local target="${package}-$(bestmatch "$package" "$semverspec")" cp -a -l "${srcdir}/build/$target" "node_modules/$package" done npm install --no-registry --no-optional echo "npm install completed successfully" mv bower.json bower.json.ignored bowerdeps=( $(echo "${noextract[@]}" | tr ' ' '\n' | grep tar.gz | tr '\n' ' ') ) # bower cannot install symlink to packages; so they must be copied temporarily cp ${bowerdeps[@]/#/..\/} . bower install --offline ${bowerdeps[@]/#/.\/} rm ${bowerdeps[@]} mv bower.json.ignored bower.json echo "bower install completed successfully" grunt --verbose } package() { if [[ $CARCH == "x86_64" ]]; then cd "${srcdir}/Sozi-${pkgver}/build/Sozi/Sozi-${_buildver}-linux64/" else cd "${srcdir}/Sozi-${pkgver}/build/Sozi/Sozi-${_buildver}-linux32/" fi mkdir -p "${pkgdir}/opt/sozi-${pkgver}/" cp -a * "${pkgdir}/opt/sozi-${pkgver}/" mkdir -p "${pkgdir}/usr/bin/" cd "${pkgdir}/usr/bin/" ln -s "/opt/sozi-${pkgver}/Sozi" sozi cd "${srcdir}/Sozi-${pkgver}/" install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/sozi/MPL2.0" #TODO: Create a .desktop file too } #TODO: Create other subpackages from "tools" and "extras" folders # npm dependencies are extracted by the following script to create an offline makepkg-able PKGBUILD file (after downloading the source array entries): # # getdeps() { while read -r json; do echo "$json" | jq -r '.dependencies | to_entries? | map(.key + "@" + .value) | .[]'; done; } # listit() { p="$1"; t="$2"; if ! grep -q "$p" "$t"; then echo "$p" >> "$t"; j=$(npm view --json "$p"); json=$(if echo "$j" | head -n1 | grep '{'; then echo "$j"; else start=$(echo "$j" | grep -n '^{' | tail -n1 | cut -d: -f1); echo "$j" | tail -n+"$start"; fi | tr '\n' ' '); url=$(echo $json | jq -r '.dist.tarball'); shasum=$(echo $json | jq -r '.dist.shasum'); echo $json | getdeps | while read dep; do listit "$dep" "$t"; done; echo "$p" "$url" "$shasum"; fi } # t=$(mktemp); j=$(cat package.json | tr '\n' ' '); # echo "$j" | getdeps | while read dep; do listit "$dep" "$t"; done > deps # echo "$j" | jq -r '.devDependencies | to_entries? | map(.key + "@" + .value) | .[]' | while read dep; do listit "$dep" "$t"; done >> deps # cat deps | grep -v fsevents > d; # fsevents is an optional dependency for darwin # cat d | sed "$(cat d | gawk '{ n=n+1;print $3,n }' | sort -r --numeric-sort | uniq --all-repeated=prepend --check-chars=40 | gawk 'BEGIN {skip=0} { if(skip) { skip=0; } else { if($0=="") { skip=1; } else { print $2; } } }' | gawk '{ print $1"d;" }' | tr '\n' ' ')" > deps # cat deps | gawk '{ print " \""$2"\"" }' # for source array # cat deps | gawk '{ print " \""$3"\"" }' # for sha1sums array # cat deps | gawk -F/ '{ print $NF }' | gawk '{ print " \""$1"\"" }' # for noextract array # # dependencies are printed first and so they can be installed sequentially with the --no-registry option source+=( "http://registry.npmjs.org/abbrev/-/abbrev-1.0.7.tgz" "http://registry.npmjs.org/acorn/-/acorn-1.2.2.tgz" "http://registry.npmjs.org/align-text/-/align-text-0.1.3.tgz" "http://registry.npmjs.org/alter/-/alter-0.2.0.tgz" "http://registry.npmjs.org/amdefine/-/amdefine-1.0.0.tgz" "http://registry.npmjs.org/ansi-green/-/ansi-green-0.1.1.tgz" "http://registry.npmjs.org/ansi-regex/-/ansi-regex-0.2.1.tgz" "http://registry.npmjs.org/ansi-regex/-/ansi-regex-2.0.0.tgz" "http://registry.npmjs.org/ansi-styles/-/ansi-styles-1.0.0.tgz" "http://registry.npmjs.org/ansi-styles/-/ansi-styles-1.1.0.tgz" "http://registry.npmjs.org/ansi-styles/-/ansi-styles-2.1.0.tgz" "http://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz" "http://registry.npmjs.org/anymatch/-/anymatch-1.3.0.tgz" "http://registry.npmjs.org/archiver/-/archiver-0.13.1.tgz" "http://registry.npmjs.org/argparse/-/argparse-0.1.16.tgz" "http://registry.npmjs.org/argparse/-/argparse-1.0.3.tgz" "http://registry.npmjs.org/array-differ/-/array-differ-1.0.0.tgz" "http://registry.npmjs.org/array-filter/-/array-filter-0.0.1.tgz" "http://registry.npmjs.org/array-map/-/array-map-0.0.0.tgz" "http://registry.npmjs.org/array-reduce/-/array-reduce-0.0.0.tgz" "http://registry.npmjs.org/array-union/-/array-union-1.0.1.tgz" "http://registry.npmjs.org/array-uniq/-/array-uniq-1.0.2.tgz" "http://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz" "http://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz" "http://registry.npmjs.org/arr-flatten/-/arr-flatten-1.0.1.tgz" "http://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz" "http://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz" "http://registry.npmjs.org/asn1.js/-/asn1.js-4.2.1.tgz" "http://registry.npmjs.org/assert/-/assert-1.3.0.tgz" "http://registry.npmjs.org/assert-plus/-/assert-plus-0.1.5.tgz" "http://registry.npmjs.org/assert-plus/-/assert-plus-0.2.0.tgz" "http://registry.npmjs.org/ast-traverse/-/ast-traverse-0.1.1.tgz" "http://registry.npmjs.org/ast-types/-/ast-types-0.8.12.tgz" "http://registry.npmjs.org/astw/-/astw-2.0.0.tgz" "http://registry.npmjs.org/async/-/async-0.1.22.tgz" "http://registry.npmjs.org/async/-/async-0.2.10.tgz" "http://registry.npmjs.org/async/-/async-0.9.0.tgz" "http://registry.npmjs.org/async/-/async-0.9.2.tgz" "http://registry.npmjs.org/async/-/async-1.5.0.tgz" "http://registry.npmjs.org/async-each/-/async-each-0.1.6.tgz" "http://registry.npmjs.org/aws-sign2/-/aws-sign2-0.6.0.tgz" "http://registry.npmjs.org/babel-core/-/babel-core-5.8.34.tgz" "http://registry.npmjs.org/babel-plugin-constant-folding/-/babel-plugin-constant-folding-1.0.1.tgz" "http://registry.npmjs.org/babel-plugin-dead-code-elimination/-/babel-plugin-dead-code-elimination-1.0.2.tgz" "http://registry.npmjs.org/babel-plugin-eval/-/babel-plugin-eval-1.0.1.tgz" "http://registry.npmjs.org/babel-plugin-inline-environment-variables/-/babel-plugin-inline-environment-variables-1.0.1.tgz" "http://registry.npmjs.org/babel-plugin-jscript/-/babel-plugin-jscript-1.0.4.tgz" "http://registry.npmjs.org/babel-plugin-member-expression-literals/-/babel-plugin-member-expression-literals-1.0.1.tgz" "http://registry.npmjs.org/babel-plugin-property-literals/-/babel-plugin-property-literals-1.0.1.tgz" "http://registry.npmjs.org/babel-plugin-proto-to-assign/-/babel-plugin-proto-to-assign-1.0.4.tgz" "http://registry.npmjs.org/babel-plugin-react-constant-elements/-/babel-plugin-react-constant-elements-1.0.3.tgz" "http://registry.npmjs.org/babel-plugin-react-display-name/-/babel-plugin-react-display-name-1.0.3.tgz" "http://registry.npmjs.org/babel-plugin-remove-console/-/babel-plugin-remove-console-1.0.1.tgz" "http://registry.npmjs.org/babel-plugin-remove-debugger/-/babel-plugin-remove-debugger-1.0.1.tgz" "http://registry.npmjs.org/babel-plugin-runtime/-/babel-plugin-runtime-1.0.7.tgz" "http://registry.npmjs.org/babel-plugin-undeclared-variables-check/-/babel-plugin-undeclared-variables-check-1.0.2.tgz" "http://registry.npmjs.org/babel-plugin-undefined-to-void/-/babel-plugin-undefined-to-void-1.1.6.tgz" "http://registry.npmjs.org/babylon/-/babylon-5.8.34.tgz" "http://registry.npmjs.org/balanced-match/-/balanced-match-0.3.0.tgz" "http://registry.npmjs.org/Base64/-/Base64-0.2.1.tgz" "http://registry.npmjs.org/base64-js/-/base64-js-0.0.8.tgz" "http://registry.npmjs.org/binary/-/binary-0.3.0.tgz" "http://registry.npmjs.org/binary-extensions/-/binary-extensions-1.4.0.tgz" "http://registry.npmjs.org/bl/-/bl-0.9.4.tgz" "http://registry.npmjs.org/bl/-/bl-1.0.0.tgz" "http://registry.npmjs.org/bluebird/-/bluebird-1.2.4.tgz" "http://registry.npmjs.org/bluebird/-/bluebird-2.10.2.tgz" "http://registry.npmjs.org/bn.js/-/bn.js-4.5.2.tgz" "http://registry.npmjs.org/boom/-/boom-2.10.1.tgz" "http://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.2.tgz" "http://registry.npmjs.org/braces/-/braces-1.8.2.tgz" "http://registry.npmjs.org/breakable/-/breakable-1.0.0.tgz" "http://registry.npmjs.org/brorand/-/brorand-1.0.5.tgz" "http://registry.npmjs.org/browserify-aes/-/browserify-aes-1.0.5.tgz" "http://registry.npmjs.org/browserify/-/browserify-10.2.6.tgz" "http://registry.npmjs.org/browserify/-/browserify-12.0.1.tgz" "http://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.0.tgz" "http://registry.npmjs.org/browserify-des/-/browserify-des-1.0.0.tgz" "http://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.0.0.tgz" "http://registry.npmjs.org/browserify-sign/-/browserify-sign-4.0.0.tgz" "http://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.1.4.tgz" "http://registry.npmjs.org/browser-pack/-/browser-pack-5.0.1.tgz" "http://registry.npmjs.org/browser-pack/-/browser-pack-6.0.1.tgz" "http://registry.npmjs.org/browser-resolve/-/browser-resolve-1.11.0.tgz" "http://registry.npmjs.org/browser-split/-/browser-split-0.0.1.tgz" "http://registry.npmjs.org/buffer/-/buffer-3.5.5.tgz" "http://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.5.tgz" "http://registry.npmjs.org/buffers/-/buffers-0.1.1.tgz" "http://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz" "http://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.0.tgz" "http://registry.npmjs.org/builtins/-/builtins-0.0.7.tgz" "http://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-1.0.0.tgz" "http://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz" "http://registry.npmjs.org/camelcase/-/camelcase-2.0.1.tgz" "http://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.0.0.tgz" "http://registry.npmjs.org/camelize/-/camelize-1.0.0.tgz" "http://registry.npmjs.org/caseless/-/caseless-0.11.0.tgz" "http://registry.npmjs.org/center-align/-/center-align-0.1.2.tgz" "http://registry.npmjs.org/chainsaw/-/chainsaw-0.1.0.tgz" "http://registry.npmjs.org/chalk/-/chalk-0.4.0.tgz" "http://registry.npmjs.org/chalk/-/chalk-0.5.1.tgz" "http://registry.npmjs.org/chalk/-/chalk-1.1.1.tgz" "http://registry.npmjs.org/chokidar/-/chokidar-0.12.6.tgz" "http://registry.npmjs.org/chokidar/-/chokidar-1.4.1.tgz" "http://registry.npmjs.org/cipher-base/-/cipher-base-1.0.2.tgz" "http://registry.npmjs.org/cli/-/cli-0.6.6.tgz" "http://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz" "http://registry.npmjs.org/coffee-script/-/coffee-script-1.3.3.tgz" "http://registry.npmjs.org/colors/-/colors-0.5.1.tgz" "http://registry.npmjs.org/colors/-/colors-0.6.2.tgz" "http://registry.npmjs.org/combined-stream/-/combined-stream-1.0.5.tgz" "http://registry.npmjs.org/combine-source-map/-/combine-source-map-0.6.1.tgz" "http://registry.npmjs.org/combine-source-map/-/combine-source-map-0.7.1.tgz" "http://registry.npmjs.org/commander/-/commander-0.6.1.tgz" "http://registry.npmjs.org/commander/-/commander-2.3.0.tgz" "http://registry.npmjs.org/commander/-/commander-2.9.0.tgz" "http://registry.npmjs.org/commondir/-/commondir-0.0.1.tgz" "http://registry.npmjs.org/commoner/-/commoner-0.10.4.tgz" "http://registry.npmjs.org/compress-commons/-/compress-commons-0.2.9.tgz" "http://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz" "http://registry.npmjs.org/concat-stream/-/concat-stream-1.4.10.tgz" "http://registry.npmjs.org/concat-stream/-/concat-stream-1.5.1.tgz" "http://registry.npmjs.org/configstore/-/configstore-0.3.2.tgz" "http://registry.npmjs.org/console-browserify/-/console-browserify-1.1.0.tgz" "http://registry.npmjs.org/constants-browserify/-/constants-browserify-0.0.1.tgz" "http://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz" "http://registry.npmjs.org/convert-source-map/-/convert-source-map-1.1.2.tgz" "http://registry.npmjs.org/core-js/-/core-js-1.2.6.tgz" "http://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz" "http://registry.npmjs.org/crc32-stream/-/crc32-stream-0.3.4.tgz" "http://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.0.tgz" "http://registry.npmjs.org/create-hash/-/create-hash-1.1.2.tgz" "http://registry.npmjs.org/create-hmac/-/create-hmac-1.1.4.tgz" "http://registry.npmjs.org/cryptiles/-/cryptiles-2.0.5.tgz" "http://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.11.0.tgz" "http://registry.npmjs.org/csslint/-/csslint-0.10.0.tgz" "http://registry.npmjs.org/dashdash/-/dashdash-1.10.1.tgz" "http://registry.npmjs.org/dateformat/-/dateformat-1.0.2-1.2.3.tgz" "http://registry.npmjs.org/date-now/-/date-now-0.1.4.tgz" "http://registry.npmjs.org/debug/-/debug-2.2.0.tgz" "http://registry.npmjs.org/decamelize/-/decamelize-1.1.1.tgz" "http://registry.npmjs.org/decompress-zip/-/decompress-zip-0.0.8.tgz" "http://registry.npmjs.org/defined/-/defined-1.0.0.tgz" "http://registry.npmjs.org/defs/-/defs-1.1.1.tgz" "http://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz" "http://registry.npmjs.org/deps-sort/-/deps-sort-1.3.9.tgz" "http://registry.npmjs.org/deps-sort/-/deps-sort-2.0.0.tgz" "http://registry.npmjs.org/des.js/-/des.js-1.0.0.tgz" "http://registry.npmjs.org/detect-indent/-/detect-indent-3.0.1.tgz" "http://registry.npmjs.org/detective/-/detective-4.3.1.tgz" "http://registry.npmjs.org/diff/-/diff-1.4.0.tgz" "http://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.0.tgz" "http://registry.npmjs.org/domain-browser/-/domain-browser-1.1.7.tgz" "http://registry.npmjs.org/domelementtype/-/domelementtype-1.1.3.tgz" "http://registry.npmjs.org/domelementtype/-/domelementtype-1.3.0.tgz" "http://registry.npmjs.org/domhandler/-/domhandler-2.3.0.tgz" "http://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.0.tgz" "http://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz" "http://registry.npmjs.org/dom-walk/-/dom-walk-0.1.1.tgz" "http://registry.npmjs.org/duplexer2/-/duplexer2-0.0.2.tgz" "http://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz" "http://registry.npmjs.org/elliptic/-/elliptic-6.0.2.tgz" "http://registry.npmjs.org/encoding/-/encoding-0.1.11.tgz" "http://registry.npmjs.org/end-of-stream/-/end-of-stream-1.0.0.tgz" "http://registry.npmjs.org/end-of-stream/-/end-of-stream-1.1.0.tgz" "http://registry.npmjs.org/entities/-/entities-1.0.0.tgz" "http://registry.npmjs.org/entities/-/entities-1.1.1.tgz" "http://registry.npmjs.org/error/-/error-4.4.0.tgz" "http://registry.npmjs.org/error-ex/-/error-ex-1.3.0.tgz" "http://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.2.tgz" "http://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.3.tgz" "http://registry.npmjs.org/esprima/-/esprima-1.0.4.tgz" "http://registry.npmjs.org/esprima/-/esprima-2.7.1.tgz" "http://registry.npmjs.org/esprima-fb/-/esprima-fb-15001.1001.0-dev-harmony-fb.tgz" "http://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz" "http://registry.npmjs.org/eventemitter2/-/eventemitter2-0.4.14.tgz" "http://registry.npmjs.org/events/-/events-1.0.2.tgz" "http://registry.npmjs.org/events/-/events-1.1.0.tgz" "http://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.0.tgz" "http://registry.npmjs.org/ev-store/-/ev-store-7.0.0.tgz" "http://registry.npmjs.org/exit/-/exit-0.1.2.tgz" "http://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.4.tgz" "http://registry.npmjs.org/expand-range/-/expand-range-1.8.1.tgz" "http://registry.npmjs.org/extend/-/extend-3.0.0.tgz" "http://registry.npmjs.org/extglob/-/extglob-0.3.1.tgz" "http://registry.npmjs.org/extsprintf/-/extsprintf-1.0.2.tgz" "http://registry.npmjs.org/falafel/-/falafel-0.3.1.tgz" "http://registry.npmjs.org/figures/-/figures-1.4.0.tgz" "http://registry.npmjs.org/filename-regex/-/filename-regex-2.0.0.tgz" "http://registry.npmjs.org/file-sync-cmp/-/file-sync-cmp-0.1.1.tgz" "http://registry.npmjs.org/fill-keys/-/fill-keys-1.0.2.tgz" "http://registry.npmjs.org/fill-range/-/fill-range-2.2.3.tgz" "http://registry.npmjs.org/find-up/-/find-up-1.1.0.tgz" "http://registry.npmjs.org/findup-sync/-/findup-sync-0.1.3.tgz" "http://registry.npmjs.org/forever-agent/-/forever-agent-0.5.2.tgz" "http://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz" "http://registry.npmjs.org/for-in/-/for-in-0.1.4.tgz" "http://registry.npmjs.org/form-data/-/form-data-1.0.0-rc3.tgz" "http://registry.npmjs.org/for-own/-/for-own-0.1.3.tgz" "http://registry.npmjs.org/fs-extra/-/fs-extra-0.13.0.tgz" "http://registry.npmjs.org/fs-readdir-recursive/-/fs-readdir-recursive-0.1.2.tgz" "http://registry.npmjs.org/function-bind/-/function-bind-1.0.2.tgz" "http://registry.npmjs.org/generate-function/-/generate-function-2.0.0.tgz" "http://registry.npmjs.org/generate-object-property/-/generate-object-property-1.2.0.tgz" "http://registry.npmjs.org/getobject/-/getobject-0.1.0.tgz" "http://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz" "http://registry.npmjs.org/gettext-parser/-/gettext-parser-0.2.0.tgz" "http://registry.npmjs.org/gettext-parser/-/gettext-parser-1.1.0.tgz" "http://registry.npmjs.org/global/-/global-4.3.0.tgz" "http://registry.npmjs.org/globals/-/globals-6.4.1.tgz" "http://registry.npmjs.org/glob-base/-/glob-base-0.3.0.tgz" "http://registry.npmjs.org/glob/-/glob-3.1.21.tgz" "http://registry.npmjs.org/glob/-/glob-3.2.11.tgz" "http://registry.npmjs.org/glob/-/glob-3.2.3.tgz" "http://registry.npmjs.org/glob/-/glob-4.3.5.tgz" "http://registry.npmjs.org/glob/-/glob-4.5.3.tgz" "http://registry.npmjs.org/glob/-/glob-5.0.15.tgz" "http://registry.npmjs.org/glob-parent/-/glob-parent-2.0.0.tgz" "http://registry.npmjs.org/graceful-fs-extra/-/graceful-fs-extra-1.0.6.tgz" "http://registry.npmjs.org/graceful-fs/-/graceful-fs-1.2.3.tgz" "http://registry.npmjs.org/graceful-fs/-/graceful-fs-2.0.3.tgz" "http://registry.npmjs.org/graceful-fs/-/graceful-fs-3.0.8.tgz" "http://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.2.tgz" "http://registry.npmjs.org/graceful-ncp/-/graceful-ncp-2.0.0.tgz" "http://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz" "http://registry.npmjs.org/growl/-/growl-1.8.1.tgz" "http://registry.npmjs.org/grunt-babel/-/grunt-babel-5.0.3.tgz" "http://registry.npmjs.org/grunt-browserify/-/grunt-browserify-3.8.0.tgz" "http://registry.npmjs.org/grunt-contrib-compress/-/grunt-contrib-compress-0.13.0.tgz" "http://registry.npmjs.org/grunt-contrib-copy/-/grunt-contrib-copy-0.8.2.tgz" "http://registry.npmjs.org/grunt-contrib-csslint/-/grunt-contrib-csslint-0.4.0.tgz" "http://registry.npmjs.org/grunt-contrib-jshint/-/grunt-contrib-jshint-0.11.3.tgz" "http://registry.npmjs.org/grunt-contrib-uglify/-/grunt-contrib-uglify-0.9.2.tgz" "http://registry.npmjs.org/grunt/-/grunt-0.4.5.tgz" "http://registry.npmjs.org/grunt-jspot/-/grunt-jspot-0.1.0.tgz" "http://registry.npmjs.org/grunt-legacy-log/-/grunt-legacy-log-0.1.2.tgz" "http://registry.npmjs.org/grunt-legacy-log-utils/-/grunt-legacy-log-utils-0.1.1.tgz" "http://registry.npmjs.org/grunt-legacy-util/-/grunt-legacy-util-0.2.0.tgz" "http://registry.npmjs.org/grunt-newer/-/grunt-newer-1.1.1.tgz" "http://registry.npmjs.org/grunt-node-webkit-builder/-/grunt-node-webkit-builder-1.0.2.tgz" "http://registry.npmjs.org/grunt-nunjucks/-/grunt-nunjucks-0.1.4.tgz" "http://registry.npmjs.org/grunt-po2json/-/grunt-po2json-0.3.0.tgz" "http://registry.npmjs.org/grunt-rename/-/grunt-rename-0.1.4.tgz" "http://registry.npmjs.org/grunt-rsync/-/grunt-rsync-0.6.2.tgz" "http://registry.npmjs.org/grunt-simple-mocha/-/grunt-simple-mocha-0.4.0.tgz" "http://registry.npmjs.org/gzip-size/-/gzip-size-1.0.0.tgz" "http://registry.npmjs.org/handlebars/-/handlebars-3.0.3.tgz" "http://registry.npmjs.org/har-validator/-/har-validator-2.0.3.tgz" "http://registry.npmjs.org/has-ansi/-/has-ansi-0.1.0.tgz" "http://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz" "http://registry.npmjs.org/has-color/-/has-color-0.1.7.tgz" "http://registry.npmjs.org/has/-/has-1.0.1.tgz" "http://registry.npmjs.org/hash.js/-/hash.js-1.0.3.tgz" "http://registry.npmjs.org/hawk/-/hawk-3.1.2.tgz" "http://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz" "http://registry.npmjs.org/home-or-tmp/-/home-or-tmp-1.0.0.tgz" "http://registry.npmjs.org/hooker/-/hooker-0.2.3.tgz" "http://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.1.4.tgz" "http://registry.npmjs.org/htmlescape/-/htmlescape-1.1.0.tgz" "http://registry.npmjs.org/htmlparser2/-/htmlparser2-3.8.3.tgz" "http://registry.npmjs.org/http-browserify/-/http-browserify-1.7.0.tgz" "http://registry.npmjs.org/https-browserify/-/https-browserify-0.0.1.tgz" "http://registry.npmjs.org/http-signature/-/http-signature-1.1.0.tgz" "http://registry.npmjs.org/iconv-lite/-/iconv-lite-0.2.11.tgz" "http://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.13.tgz" "http://registry.npmjs.org/ieee754/-/ieee754-1.1.6.tgz" "http://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz" "http://registry.npmjs.org/indexof/-/indexof-0.0.1.tgz" "http://registry.npmjs.org/individual/-/individual-3.0.0.tgz" "http://registry.npmjs.org/inflight/-/inflight-1.0.4.tgz" "http://registry.npmjs.org/inherit/-/inherit-2.2.2.tgz" "http://registry.npmjs.org/inherits/-/inherits-1.0.2.tgz" "http://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" "http://registry.npmjs.org/inline-source-map/-/inline-source-map-0.5.0.tgz" "http://registry.npmjs.org/inline-source-map/-/inline-source-map-0.6.1.tgz" "http://registry.npmjs.org/insert-module-globals/-/insert-module-globals-6.6.3.tgz" "http://registry.npmjs.org/insert-module-globals/-/insert-module-globals-7.0.1.tgz" "http://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz" "http://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz" "http://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz" "http://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz" "http://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz" "http://registry.npmjs.org/is-buffer/-/is-buffer-1.1.0.tgz" "http://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz" "http://registry.npmjs.org/is-dotfile/-/is-dotfile-1.0.2.tgz" "http://registry.npmjs.org/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz" "http://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz" "http://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz" "http://registry.npmjs.org/is-finite/-/is-finite-1.0.1.tgz" "http://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz" "http://registry.npmjs.org/is-integer/-/is-integer-1.0.6.tgz" "http://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.12.3.tgz" "http://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz" "http://registry.npmjs.org/is-object/-/is-object-1.0.1.tgz" "http://registry.npmjs.org/isobject/-/isobject-2.0.0.tgz" "http://registry.npmjs.org/is-primitive/-/is-primitive-2.0.0.tgz" "http://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz" "http://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz" "http://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz" "http://registry.npmjs.org/is-utf8/-/is-utf8-0.2.0.tgz" "http://registry.npmjs.org/jade/-/jade-0.26.3.tgz" "http://registry.npmjs.org/jed/-/jed-1.1.0.tgz" "http://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz" "http://registry.npmjs.org/jshint/-/jshint-2.8.0.tgz" "http://registry.npmjs.org/json5/-/json5-0.4.0.tgz" "http://registry.npmjs.org/jsonfile/-/jsonfile-2.2.3.tgz" "http://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz" "http://registry.npmjs.org/jsonparse/-/jsonparse-1.2.0.tgz" "http://registry.npmjs.org/jsonpointer/-/jsonpointer-2.0.0.tgz" "http://registry.npmjs.org/json-schema/-/json-schema-0.2.2.tgz" "http://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-0.0.1.tgz" "http://registry.npmjs.org/JSONStream/-/JSONStream-1.0.7.tgz" "http://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz" "http://registry.npmjs.org/jspot/-/jspot-0.3.8.tgz" "http://registry.npmjs.org/jsprim/-/jsprim-1.2.2.tgz" "http://registry.npmjs.org/js-tokens/-/js-tokens-1.0.1.tgz" "http://registry.npmjs.org/js-yaml/-/js-yaml-2.0.5.tgz" "http://registry.npmjs.org/js-yaml/-/js-yaml-3.4.6.tgz" "http://registry.npmjs.org/kind-of/-/kind-of-2.0.1.tgz" "http://registry.npmjs.org/kind-of/-/kind-of-3.0.2.tgz" "http://registry.npmjs.org/labeled-stream-splicer/-/labeled-stream-splicer-1.0.2.tgz" "http://registry.npmjs.org/labeled-stream-splicer/-/labeled-stream-splicer-2.0.0.tgz" "http://registry.npmjs.org/lazy-cache/-/lazy-cache-0.2.7.tgz" "http://registry.npmjs.org/lazystream/-/lazystream-0.1.0.tgz" "http://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz" "http://registry.npmjs.org/left-pad/-/left-pad-0.0.3.tgz" "http://registry.npmjs.org/leven/-/leven-1.0.2.tgz" "http://registry.npmjs.org/lexical-scope/-/lexical-scope-1.2.0.tgz" "http://registry.npmjs.org/line-numbers/-/line-numbers-0.2.0.tgz" "http://registry.npmjs.org/load-grunt-tasks/-/load-grunt-tasks-3.3.0.tgz" "http://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz" "http://registry.npmjs.org/lodash/-/lodash-0.9.2.tgz" "http://registry.npmjs.org/lodash/-/lodash-2.4.2.tgz" "http://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz" "http://registry.npmjs.org/lodash/-/lodash-3.2.0.tgz" "http://registry.npmjs.org/lodash/-/lodash-3.7.0.tgz" "http://registry.npmjs.org/lodash.memoize/-/lodash.memoize-3.0.4.tgz" "http://registry.npmjs.org/longest/-/longest-1.0.1.tgz" "http://registry.npmjs.org/loud-rejection/-/loud-rejection-1.2.0.tgz" "http://registry.npmjs.org/lru-cache/-/lru-cache-2.7.3.tgz" "http://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz" "http://registry.npmjs.org/maxmin/-/maxmin-1.1.0.tgz" "http://registry.npmjs.org/meow/-/meow-3.6.0.tgz" "http://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.0.tgz" "http://registry.npmjs.org/micromatch/-/micromatch-2.3.5.tgz" "http://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.0.tgz" "http://registry.npmjs.org/mime-db/-/mime-db-1.20.0.tgz" "http://registry.npmjs.org/mime-types/-/mime-types-1.0.2.tgz" "http://registry.npmjs.org/mime-types/-/mime-types-2.1.8.tgz" "http://registry.npmjs.org/min-document/-/min-document-2.17.0.tgz" "http://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz" "http://registry.npmjs.org/minimatch/-/minimatch-0.2.14.tgz" "http://registry.npmjs.org/minimatch/-/minimatch-0.3.0.tgz" "http://registry.npmjs.org/minimatch/-/minimatch-2.0.10.tgz" "http://registry.npmjs.org/minimatch/-/minimatch-3.0.0.tgz" "http://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz" "http://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz" "http://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz" "http://registry.npmjs.org/mkdirp/-/mkdirp-0.3.0.tgz" "http://registry.npmjs.org/mkdirp/-/mkdirp-0.3.5.tgz" "http://registry.npmjs.org/mkdirp/-/mkdirp-0.5.0.tgz" "http://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz" "http://registry.npmjs.org/mkpath/-/mkpath-0.1.0.tgz" "http://registry.npmjs.org/mocha/-/mocha-2.3.4.tgz" "http://registry.npmjs.org/module-deps/-/module-deps-3.9.1.tgz" "http://registry.npmjs.org/module-deps/-/module-deps-4.0.2.tgz" "http://registry.npmjs.org/module-not-found-error/-/module-not-found-error-1.0.1.tgz" "http://registry.npmjs.org/moment/-/moment-2.5.1.tgz" "http://registry.npmjs.org/ms/-/ms-0.7.1.tgz" "http://registry.npmjs.org/multimatch/-/multimatch-2.1.0.tgz" "http://registry.npmjs.org/ncp/-/ncp-1.0.1.tgz" "http://registry.npmjs.org/ncp/-/ncp-2.0.0.tgz" "http://registry.npmjs.org/next-tick/-/next-tick-0.2.2.tgz" "http://registry.npmjs.org/node-int64/-/node-int64-0.3.3.tgz" "http://registry.npmjs.org/node-uuid/-/node-uuid-1.4.7.tgz" "http://registry.npmjs.org/node-webkit-builder/-/node-webkit-builder-1.0.13.tgz" "http://registry.npmjs.org/nomnom/-/nomnom-1.6.2.tgz" "http://registry.npmjs.org/nomnom/-/nomnom-1.8.1.tgz" "http://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz" "http://registry.npmjs.org/nopt/-/nopt-2.2.1.tgz" "http://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.3.5.tgz" "http://registry.npmjs.org/normalize-path/-/normalize-path-2.0.1.tgz" "http://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.0.tgz" "http://registry.npmjs.org/nunjucks/-/nunjucks-1.3.4.tgz" "http://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.0.tgz" "http://registry.npmjs.org/object-assign/-/object-assign-2.1.1.tgz" "http://registry.npmjs.org/object-assign/-/object-assign-4.0.1.tgz" "http://registry.npmjs.org/object.omit/-/object.omit-2.0.0.tgz" "http://registry.npmjs.org/once/-/once-1.2.0.tgz" "http://registry.npmjs.org/once/-/once-1.3.3.tgz" "http://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz" "http://registry.npmjs.org/os-browserify/-/os-browserify-0.1.2.tgz" "http://registry.npmjs.org/osenv/-/osenv-0.1.3.tgz" "http://registry.npmjs.org/os-homedir/-/os-homedir-1.0.1.tgz" "http://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz" "http://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.1.tgz" "http://registry.npmjs.org/outpipe/-/outpipe-1.1.1.tgz" "http://registry.npmjs.org/output-file-sync/-/output-file-sync-1.1.1.tgz" "http://registry.npmjs.org/pako/-/pako-0.2.8.tgz" "http://registry.npmjs.org/parents/-/parents-1.0.1.tgz" "http://registry.npmjs.org/parse-asn1/-/parse-asn1-5.0.0.tgz" "http://registry.npmjs.org/parse-glob/-/parse-glob-3.0.4.tgz" "http://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz" "http://registry.npmjs.org/parserlib/-/parserlib-0.2.5.tgz" "http://registry.npmjs.org/path-browserify/-/path-browserify-0.0.0.tgz" "http://registry.npmjs.org/path-exists/-/path-exists-1.0.0.tgz" "http://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz" "http://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.0.tgz" "http://registry.npmjs.org/path-platform/-/path-platform-0.11.15.tgz" "http://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz" "http://registry.npmjs.org/pbkdf2/-/pbkdf2-3.0.4.tgz" "http://registry.npmjs.org/pify/-/pify-2.3.0.tgz" "http://registry.npmjs.org/pinkie/-/pinkie-2.0.1.tgz" "http://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.0.tgz" "http://registry.npmjs.org/pkg-up/-/pkg-up-1.0.0.tgz" "http://registry.npmjs.org/platform-overrides/-/platform-overrides-1.0.1.tgz" "http://registry.npmjs.org/plist/-/plist-1.2.0.tgz" "http://registry.npmjs.org/po2json/-/po2json-0.4.1.tgz" "http://registry.npmjs.org/preserve/-/preserve-0.2.0.tgz" "http://registry.npmjs.org/pretty-bytes/-/pretty-bytes-1.0.4.tgz" "http://registry.npmjs.org/prettysize/-/prettysize-0.0.3.tgz" "http://registry.npmjs.org/private/-/private-0.1.6.tgz" "http://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.6.tgz" "http://registry.npmjs.org/process/-/process-0.11.2.tgz" "http://registry.npmjs.org/process/-/process-0.5.2.tgz" "http://registry.npmjs.org/progress/-/progress-1.1.8.tgz" "http://registry.npmjs.org/proxyquire/-/proxyquire-1.7.3.tgz" "http://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.0.tgz" "http://registry.npmjs.org/pump/-/pump-0.3.5.tgz" "http://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz" "http://registry.npmjs.org/punycode/-/punycode-1.4.0.tgz" "http://registry.npmjs.org/q/-/q-1.0.1.tgz" "http://registry.npmjs.org/q/-/q-1.4.1.tgz" "http://registry.npmjs.org/qs/-/qs-1.0.2.tgz" "http://registry.npmjs.org/qs/-/qs-5.2.0.tgz" "http://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz" "http://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz" "http://registry.npmjs.org/randomatic/-/randomatic-1.1.5.tgz" "http://registry.npmjs.org/randombytes/-/randombytes-2.0.1.tgz" "http://registry.npmjs.org/rcedit/-/rcedit-0.2.0.tgz" "http://registry.npmjs.org/readable-stream/-/readable-stream-1.0.33.tgz" "http://registry.npmjs.org/readable-stream/-/readable-stream-1.1.13.tgz" "http://registry.npmjs.org/readable-stream/-/readable-stream-2.0.5.tgz" "http://registry.npmjs.org/readable-wrap/-/readable-wrap-1.0.0.tgz" "http://registry.npmjs.org/readdirp/-/readdirp-1.3.0.tgz" "http://registry.npmjs.org/readdirp/-/readdirp-2.0.0.tgz" "http://registry.npmjs.org/read-only-stream/-/read-only-stream-1.1.1.tgz" "http://registry.npmjs.org/read-only-stream/-/read-only-stream-2.0.0.tgz" "http://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz" "http://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz" "http://registry.npmjs.org/recast/-/recast-0.10.33.tgz" "http://registry.npmjs.org/recast/-/recast-0.10.39.tgz" "http://registry.npmjs.org/redent/-/redent-1.0.0.tgz" "http://registry.npmjs.org/regenerate/-/regenerate-1.2.1.tgz" "http://registry.npmjs.org/regenerator/-/regenerator-0.8.40.tgz" "http://registry.npmjs.org/regex-cache/-/regex-cache-0.4.2.tgz" "http://registry.npmjs.org/regexpu/-/regexpu-1.3.0.tgz" "http://registry.npmjs.org/regjsgen/-/regjsgen-0.2.0.tgz" "http://registry.npmjs.org/regjsparser/-/regjsparser-0.1.5.tgz" "http://registry.npmjs.org/repeat-element/-/repeat-element-1.1.2.tgz" "http://registry.npmjs.org/repeating/-/repeating-1.1.3.tgz" "http://registry.npmjs.org/repeating/-/repeating-2.0.0.tgz" "http://registry.npmjs.org/repeat-string/-/repeat-string-1.5.2.tgz" "http://registry.npmjs.org/request/-/request-2.40.0.tgz" "http://registry.npmjs.org/request/-/request-2.67.0.tgz" "http://registry.npmjs.org/resolve/-/resolve-1.1.6.tgz" "http://registry.npmjs.org/right-align/-/right-align-0.1.3.tgz" "http://registry.npmjs.org/rimraf/-/rimraf-2.2.8.tgz" "http://registry.npmjs.org/rimraf/-/rimraf-2.4.4.tgz" "http://registry.npmjs.org/ripemd160/-/ripemd160-1.0.1.tgz" "http://registry.npmjs.org/rsyncwrapper/-/rsyncwrapper-0.4.3.tgz" "http://registry.npmjs.org/screenfull/-/screenfull-2.0.0.tgz" "http://registry.npmjs.org/semver/-/semver-2.3.2.tgz" "http://registry.npmjs.org/semver/-/semver-5.1.0.tgz" "http://registry.npmjs.org/sha.js/-/sha.js-2.4.4.tgz" "http://registry.npmjs.org/shasum/-/shasum-1.0.2.tgz" "http://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz" "http://registry.npmjs.org/shelljs/-/shelljs-0.3.0.tgz" "http://registry.npmjs.org/shell-quote/-/shell-quote-0.0.1.tgz" "http://registry.npmjs.org/shell-quote/-/shell-quote-1.4.3.tgz" "http://registry.npmjs.org/sigmund/-/sigmund-1.0.1.tgz" "http://registry.npmjs.org/signal-exit/-/signal-exit-2.1.2.tgz" "http://registry.npmjs.org/simple-fmt/-/simple-fmt-0.1.0.tgz" "http://registry.npmjs.org/simple-glob/-/simple-glob-0.1.0.tgz" "http://registry.npmjs.org/simple-is/-/simple-is-0.2.0.tgz" "http://registry.npmjs.org/slash/-/slash-1.0.0.tgz" "http://registry.npmjs.org/sntp/-/sntp-1.0.9.tgz" "http://registry.npmjs.org/source-map/-/source-map-0.1.32.tgz" "http://registry.npmjs.org/source-map/-/source-map-0.1.43.tgz" "http://registry.npmjs.org/source-map/-/source-map-0.4.2.tgz" "http://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz" "http://registry.npmjs.org/source-map/-/source-map-0.5.3.tgz" "http://registry.npmjs.org/source-map-support/-/source-map-support-0.2.10.tgz" "http://registry.npmjs.org/spdx-correct/-/spdx-correct-1.0.2.tgz" "http://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-1.0.4.tgz" "http://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-1.0.2.tgz" "http://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-1.1.0.tgz" "http://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz" "http://registry.npmjs.org/sshpk/-/sshpk-1.7.1.tgz" "http://registry.npmjs.org/stable/-/stable-0.1.5.tgz" "http://registry.npmjs.org/stream-browserify/-/stream-browserify-1.0.0.tgz" "http://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.1.tgz" "http://registry.npmjs.org/stream-combiner2/-/stream-combiner2-1.0.2.tgz" "http://registry.npmjs.org/stream-combiner2/-/stream-combiner2-1.1.1.tgz" "http://registry.npmjs.org/stream-http/-/stream-http-2.0.2.tgz" "http://registry.npmjs.org/stream-splicer/-/stream-splicer-1.3.2.tgz" "http://registry.npmjs.org/stream-splicer/-/stream-splicer-2.0.0.tgz" "http://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz" "http://registry.npmjs.org/stringmap/-/stringmap-0.2.2.tgz" "http://registry.npmjs.org/stringset/-/stringset-0.2.1.tgz" "http://registry.npmjs.org/stringstream/-/stringstream-0.0.5.tgz" "http://registry.npmjs.org/string-template/-/string-template-0.2.1.tgz" "http://registry.npmjs.org/strip-ansi/-/strip-ansi-0.1.1.tgz" "http://registry.npmjs.org/strip-ansi/-/strip-ansi-0.3.0.tgz" "http://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.0.tgz" "http://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz" "http://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz" "http://registry.npmjs.org/strip-json-comments/-/strip-json-comments-1.0.4.tgz" "http://registry.npmjs.org/subarg/-/subarg-1.0.0.tgz" "http://registry.npmjs.org/success-symbol/-/success-symbol-0.1.0.tgz" "http://registry.npmjs.org/supports-color/-/supports-color-0.2.0.tgz" "http://registry.npmjs.org/supports-color/-/supports-color-1.2.0.tgz" "http://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz" "http://registry.npmjs.org/syntax-error/-/syntax-error-1.1.4.tgz" "http://registry.npmjs.org/tar-fs/-/tar-fs-0.3.3.tgz" "http://registry.npmjs.org/tar-stream/-/tar-stream-0.4.7.tgz" "http://registry.npmjs.org/tar-stream/-/tar-stream-1.1.5.tgz" "http://registry.npmjs.org/temp/-/temp-0.7.0.tgz" "http://registry.npmjs.org/through2/-/through2-0.5.1.tgz" "http://registry.npmjs.org/through2/-/through2-1.1.1.tgz" "http://registry.npmjs.org/through2/-/through2-2.0.0.tgz" "http://registry.npmjs.org/through/-/through-2.3.8.tgz" "http://registry.npmjs.org/timers-browserify/-/timers-browserify-1.4.2.tgz" "http://registry.npmjs.org/to-fast-properties/-/to-fast-properties-1.0.1.tgz" "http://registry.npmjs.org/touch/-/touch-0.0.2.tgz" "http://registry.npmjs.org/tough-cookie/-/tough-cookie-2.2.1.tgz" "http://registry.npmjs.org/traverse/-/traverse-0.3.9.tgz" "http://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz" "http://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz" "http://registry.npmjs.org/tryor/-/tryor-0.1.2.tgz" "http://registry.npmjs.org/try-resolve/-/try-resolve-1.0.1.tgz" "http://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz" "http://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.4.2.tgz" "http://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz" "http://registry.npmjs.org/uglify-js/-/uglify-js-2.6.1.tgz" "http://registry.npmjs.org/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz" "http://registry.npmjs.org/umd/-/umd-3.0.1.tgz" "http://registry.npmjs.org/underscore.string/-/underscore.string-2.2.1.tgz" "http://registry.npmjs.org/underscore.string/-/underscore.string-2.3.3.tgz" "http://registry.npmjs.org/underscore.string/-/underscore.string-2.4.0.tgz" "http://registry.npmjs.org/underscore/-/underscore-1.4.4.tgz" "http://registry.npmjs.org/underscore/-/underscore-1.6.0.tgz" "http://registry.npmjs.org/underscore/-/underscore-1.7.0.tgz" "http://registry.npmjs.org/update-notifier/-/update-notifier-0.1.10.tgz" "http://registry.npmjs.org/uri-path/-/uri-path-0.0.2.tgz" "http://registry.npmjs.org/url/-/url-0.10.3.tgz" "http://registry.npmjs.org/url/-/url-0.11.0.tgz" "http://registry.npmjs.org/user-home/-/user-home-1.1.1.tgz" "http://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz" "http://registry.npmjs.org/util/-/util-0.10.3.tgz" "http://registry.npmjs.org/uuid/-/uuid-2.0.1.tgz" "http://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz" "http://registry.npmjs.org/verror/-/verror-1.3.6.tgz" "http://registry.npmjs.org/virtual-dom/-/virtual-dom-2.1.1.tgz" "http://registry.npmjs.org/vm-browserify/-/vm-browserify-0.0.4.tgz" "http://registry.npmjs.org/watchify/-/watchify-3.6.1.tgz" "http://registry.npmjs.org/which/-/which-1.0.9.tgz" "http://registry.npmjs.org/window-size/-/window-size-0.1.0.tgz" "http://registry.npmjs.org/window-size/-/window-size-0.1.4.tgz" "http://registry.npmjs.org/winresourcer/-/winresourcer-0.9.0.tgz" "http://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz" "http://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz" "http://registry.npmjs.org/wrappy/-/wrappy-1.0.1.tgz" "http://registry.npmjs.org/xdg-basedir/-/xdg-basedir-1.0.1.tgz" "http://registry.npmjs.org/x-is-array/-/x-is-array-0.1.0.tgz" "http://registry.npmjs.org/x-is-string/-/x-is-string-0.1.0.tgz" "http://registry.npmjs.org/xmlbuilder/-/xmlbuilder-4.0.0.tgz" "http://registry.npmjs.org/xmldom/-/xmldom-0.1.19.tgz" "http://registry.npmjs.org/xtend/-/xtend-3.0.0.tgz" "http://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz" "http://registry.npmjs.org/y18n/-/y18n-3.2.0.tgz" "http://registry.npmjs.org/yargs/-/yargs-3.10.0.tgz" "http://registry.npmjs.org/yargs/-/yargs-3.27.0.tgz" "http://registry.npmjs.org/zip-stream/-/zip-stream-0.5.2.tgz" ) sha1sums+=( "5b6035b2ee9d4fb5cf859f08a9be81b208491843" "c8ce27de0acc76d896d2b1fad3df588d9e82f014" "72db3983872eec2313919c9426a993a41afe93f7" "c7588808617572034aae62480af26b1d4d1cb3cd" "fd17474700cb5cc9c2b709f0be9d23ce3c198c33" "8a5d9a979e458d57c40e33580b37390b8e10d0f7" "0d8e946967a3d8143f93e24e298525fc1b2235f9" "c5061b6e0ef8a81775e50f5d66151bf6bf371107" "cb102df1c56f5123eab8b67cd7b98027a0279178" "eaecbf66cd706882760b2f4691582b8f55d7a7de" "990f747146927b559a932bf92959163d60c0d0e2" "a82250ddb0015e9a27ca82e82ea603bbfa45efaf" "a3e52fa39168c825ff57b0248126ce5a8ff95507" "afc6b3561a63643b38a26788912a83854ecaa0f1" "cfd01e0fbba3d6caed049fbd758d40f65196f57c" "14389deeb0c28fc4cda9405b9f532a4e3785ce84" "eff52e3758249d33be402b8bb8e564bb2b5d4031" "7da8cf2e26628ed732803581fd21f67cacd2eeec" "88a2bab73d1cf7bcd5c1b118a003f66f665fa662" "173899d3ffd1c7d9383e4479525dbe278cab5f2b" "4d410fc8395cb247637124bade9e3f547d5d55f2" "5fcc373920775723cfd64d65c64bef53bf9eba6d" "a1d97ccafcbc2625cc70fadceb36a50c58b01a53" "8f3b827f955a8bd669697e4a4256ac3ceae356cf" "e5ffe54d45e19f32f216e91eb99c8ce892bb604b" "898508da2226f380df904728456849c1501a4b0d" "dac8787713c9966849fc8180777ebe9c1ddf3b86" "75efd3770c00924ddb2c9530c049d98a4520c77b" "03939a622582a812cc202320a0b9a56c9b815849" "ee74009413002d84cec7219c6ac811812e723160" "d74e1b87e7affc0db8aadb7021f3fe48101ab234" "69cf2b8386f19dcda1bb1e05d68fe359d8897de6" "a0d90e4351bb887716c83fd637ebf818af4adfcc" "08121ac8288d35611c0ceec663f6cd545604897d" "0fc1aaa088a0e3ef0ebe2d8831bab0dcf8845061" "b6bbe0b0674b9d719708ca38de8c237cb526c3d1" "ac3613b1da9bed1b47510bb4651b8931e47146c7" "aea74d5e61c1f899613bf64bda66d4c78f2fd17d" "2796642723573859565633fc6274444bee2f8ce3" "b67e99edcddf96541e44af56290cd7d5c6e70439" "14342dd38dbcc94d0e5b87d763cd63612c0e794f" "0396370458772774041e5dbbef57ae0282ee61c2" "8361d364c98e449c3692bdba51eff0844290aa8e" "5f7c451274dcd7cccdbfbb3e0b85dd28121f0f65" "a2faed25ce6be69ade4bfec263f70169195950da" "1f58ce91207ad6a826a8bf645fafe68ff5fe3ffe" "8f342c38276e87a47d5fa0a8bd3d5eb6ccad8fcc" "cc5edb0faa8dc927170e74d6d1c02440021624d3" "0252301900192980b1c118efea48ce93aab83336" "c49e7afd02f577bc4da05ea2df002250cf7cd123" "946736e8378429cbc349dcff62f51c143b34e35a" "754fe38926e8424a4e7b15ab6ea6139dee0514fc" "d8f24556c3a05005d42aaaafd27787f53ff013a7" "fd2ea3cd61a428ad1f3b9c89882ff4293e8c14c7" "bf7c7d966dd56ecd5c17fa1cb253c9acb7e54aaf" "5cf1aa539d813ff64e99641290af620965f65dee" "7f578ef8b78dfae6003385d8417a61eda06e2f81" "549f573f45c3bc5e75b2a57639027d2d724edaaa" "a91cdd1ebef1a86659e70ff4def01625fc2d6756" "ba3a4230708e186705065e66babdd4c35cf60028" "1101e9544f4a76b1bc3b26d452ca96d7a35e7978" "9f60553bc5ce8c3386f3b553cff47462adecaa79" "d733ccb628986d7b326d88656e0ddbd3aac351b7" "4702ddf72fbe0ecd82787c00c113aea1935ad0e7" "ada9a8a89a6d7ac60862f7dec7db207873e0c3f5" "5985ec23cb6ff1a5834cc6447b3c5ef010fd321a" "024a5517295308857f14f91f1106fc3b555f446b" "bb9e3df54abe3e118d4754195cc74926545489e0" "39c8918ceff5799f83f9492a848f625add0c766f" "f21445d0488b658e2771efd870eff51df29f04ef" "036e024051d4bbc7096428b4d6f20ea1f137a794" "784a797915a38ead27bad456b5572cb4bbaa78c1" "07b54ca30286abd1718a0e2a830803efdc9bfa04" "447e7e4671fceb575f6bb16c7f31a20924f0c303" "dcbfef794f548f5f8498214814f697a5c50c0896" "2e0bd015384ed07feaac5b6466bd582c5085ec3e" "9988244874bf5ed4e28da95666dcd66ac8fc363a" "daa277717470922ed2fe18594118a175439721dd" "a72c5e33833fd576c3ccd3d1d5fe61c48fdd974d" "10773910c3c206d5420a46aad8694f820b85968f" "bb35f8a519f600e0fa6b8485241c979d0141fb2d" "4197719b20c6e0aaa09451c5111e53efb6fbc18d" "779887c792eaa1f64a46a22c8f1051cdcd96755f" "02042cb23484de896ee96ebb43c617e096c5deef" "7b097574f8e3ead606fb4664e64adfdda2981a93" "f7c55f7c2c634aa00efaabd864969a44eba82cf4" "db003ac2671e62ebd6ece78ea2c2e1b405736e91" "b24579c3bed4d6d396aeee6d9a8ae7f5482ab7bb" "26e61ed1422fb70dd42e6e36729ed51d855fe8d9" "1053955fd994a5746e525e4ac717b81caf07491c" "355219cd6cf18dbe7c01cc7fd2dce765cfdc549a" "30637ee262978ac07174e16d7f82f0ad06e085ad" "9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" "57568d687b8da56c4c1d17b4c74a3cee26d73aeb" "ab87e740d72a1ffcb12a43cc04c14b39d549eab9" "164a5483e630fa4321e5af07020e531831b2609b" "715b96ea9841593cc33067923f5ec60ebda4f7d7" "74fa8540fc19b26aae6edc7e031cd6993d495ba0" "5eab50b28afe58074d0d58291388828b5e5fbc98" "5199a3ddcd0c1efe23bc08c1b027b06176e0c64f" "663b3a648b68b55d04690d49167aa837858f2174" "509afb67066e7499f7eb3535c77445772ae2d019" "be204f5b9634e009311256e5d6e8e0e508284d2f" "df1d906769701a0f3df492c37dcc3cb35e6450e4" "54ac1d1ebdf6a1bcd3559e6f369d72697f2cab8f" "02ad44a380abf27adac5e6f0cdd7b043d74c53e3" "4b475760ff80264c762c3a1719032e91c7fea0d1" "150d6b4cb522894369efed6a2101c20bc7f4a4f4" "7d0023eaeb154e8ee9fce75dcb923d0ed1667774" "2423fe6678ac0c5dae8852e5d0e5be08c997abcc" "938370a57b4a51dea2c77c15d5c5fdf895164009" "9b4a09c316033d768e0f11e029fa2730e079ad96" "1720771dee7f3221ce3c62a104ee9a963f12009e" "fa68a14f6a945d54dbbe50d8cdb3320e9e3b1a06" "fd430e889832ec353b9acd1de217c11cb3eef873" "9c99094176e12240cb22d6c5146098400fe0f7d4" "89f00fdcd51b519c578733fec563e6a6da7f5be2" "98f3333dd3ad399596bb2d384a783bb7213d68f8" "422d927430c01abd06cd455b6dfc04cb4cf8003c" "d8a96bd77fd68df7793a73036a3ba0d5405d477b" "acc3bbf5602cb8cc980c6ac840fa7d8603e3ef36" "f3b80acf9e1f48e3875c0688b41b6c31602eea1c" "25e4c16c3768abf75c5a65bc61761f495055b459" "f0241c45730a9fc6323b206dbf38edc741d0bb10" "92577db527ba6c4cf0a4568d84bc031f441e21f2" "c20b96d8c617748aaf1c16021760cd27fcb8cb75" "8266378831073907fa384f0b2aecab0ba0586693" "e2351f6cae764f8c34e5d839acb6a60cef8b4a45" "b5fd54220aa2bc5ab57aab7140c940754503c1a7" "73bc25b45fac1db6632231a7bfce8927e9f06552" "888c723596cdf7612f6498233eebd7a35301737d" "51210062d7bb7479f6c65bb41a92208b1d61abad" "d3fb4ba253eb8b3f56e39ea2fbcb8af747bd3170" "3bdfecdc608147c1c67202fa291e7dca59eaa3b8" "3652a0906ab9b2a7e0c3ce66a408e957a2485522" "3a6a04e7565c8e9d19beb49767c7ec96e8365805" "0abf1af89a8f5129a81f18c2b35b21df22622f60" "b0220c02de98617433b72851cf47de3df2cdbee9" "eaf439fd4d4848ad74e5cc7dbef200672b9e345b" "f87057e995b1a1f6ae6a4960664137bc56f039da" "8871479a6c0487f5653d48a992f1d0381ca6f031" "4a265b22c7b209d7b24fa66f2b2dfbced59044f3" "c98d9bcef75674188e110969151199e39b1fa693" "b22609f2c7a11ba7a3db116805c139b1caffa9d2" "df3ae199acadfb7d440aaae0b29e2272b24ec619" "29dfff53e17b36aecae7530adbbbf622c2ed1a71" "091724902e84658260eb910748cccd1af6e21fb5" "c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" "9dc5e5ddbceef8325764b9451b02bc6d54084f75" "9fb06dd1ee8f0ea4dbcc607cda39d9ce1d4f726f" "7f28d2eb9ee7b15a97efd89ce63dcfdaa3ccbabf" "f3c957cfd5419fea048540b39a751d7e4363f031" "867aa4b093faa05f1de08c06f4d7b21fdf8698bc" "bd28773e2642881aec51544924299c5cd822185b" "b17aed82e8ab59e52dd9c19b1756e0fc187204c2" "2de59a0822d5027fabff6f032c2b25a2a8abe738" "073c697546ce0780ce23be4a28e293e40bc30c82" "dcd8488a26f563d61079e48c9f7b7e32373682cf" "672226dc74c8f799ad35307df936aba11acd6018" "c614dcf67e2fb14995a91711e5a617e8a60a31db" "8b12dab878c0d69e3e7891051662a32fc6bddcc1" "219b96cd92aa9885d91d31c1fd42eaa5eb4483a9" "52c65ac15aab467f1338451e2615f988eccc0258" "d4596e702734a93e40e9af864319eabd99ff2f0e" "e9353258baa9108965efc41cb0ef8ade2f3cfb07" "b2987aa3821347fcde642b24fdfc9e4fb712bf26" "6e5c2d0a5621b5dadaecef80b90edfb5cd7772f0" "bf69ff251fb4a279c19adccdaa6b61e90d9bf12a" "e67b43f3e82c96ea3a584ffee0b9fc3325d802d9" "4dbc2fe674e71949caf3fb2695ce7f2dc1d9a8d1" "9e2d8b25bc2555c3336723750e03f099c2735bb5" "9f557e08fc3b4d26ece9dd34f8fbf476b62585ad" "2ab7d1549edd06d14d69a6c1a1754aca02e9657e" "43beb57ec26e8cf237d3dd8b33e42533577f2659" "0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" "8f61b75cde012b2e9eb284d4545583b5643b61ab" "75849dcfe93d10fb057c30055afdbd51d06a8e24" "4b389fc200f910742ebff3abb2efe33690f45429" "497b66ad9fef65cd7c08a6180824ba1476b66e53" "1ab0c7f82136505dd74b31d17701cb2be6d26558" "0632638f8d877cc82107d30a0fff1a17cba1cd0c" "797b9e484101205f418cecaec6312c132f51e2ae" "acbd63e56efd9139722b755f099b9db5ac1f33f6" "5a474353b9f3353ddd8176dfd37b91c83a46f1d4" "4f31241c0dddc90ac8c729cb6d7c872dee77c8f5" "e1080e0658e300b06294990cc70e1502235fd550" "f3546748814f7d09543d19f2fb3d6090f136853d" "eb8f56390dbe3081044a5c2a9d9089075a48432f" "996e3e80479b98b9897f15a8a58b3d084e926775" "a5e7a8ffbfa493b43b923bbd4ca89a53b63b612b" "9a8fa36f4e8ad634e3bf6b4f3c8882551452eb20" "50b77dfd7e469bc7492470963699fe7a8485a723" "a63b0eec4625a2902534898a5f9eec8aaed046e9" "7f3e7a97b82392c653bf06589bd85190e93c3683" "6d0e09c4921f94a27f63d3b49c5feff1ea4c5130" "fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" "9f5cf7b4ffc7e1ae6591a4e97b177aa59d70fb2e" "d35bc62e7fbc2937ae78f948aaa0d38d90607577" "606444cde77c2f0a11088169e2e354eaf56e74fe" "dcafc10f2cb5184f2360b5ffff06267370539433" "315b4fb8c1ca5b8c47defef319d073dad3568059" "c2873b69c5e6d7cefae47d2555172926c8c2e05e" "6858fe7c0969b7d4e9093337647ac79f60dfbe74" "9c0e1c40308ce804f4783618b937fa88f99d50d0" "047a449789fa160d018f5486ed91320b6ec7885c" "b968c6b0a04384324902e8bf1a5df32579a450fe" "541b99e2720e460163055c64e99b1422e3e995f5" "2c5a6638d893934b9b55037d0ad82cb7004b2679" "ef7ec4beead579b454f5ebd5e7f303db54f42a2b" "8498032b3b6d1cc81eebc5f79690d8fe29fabf4f" "dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" "d29e0a055dea5138f4d07ed40e8982e83c2066cd" "4a973f635b9190f715d10987d5c00fd2815ebe3d" "e313eeb249c7affaa5c475286b0e115b59839467" "80fbb08ca540f238acce5d11d1e9bc41e75173d3" "c6cb73d3226c1efef04de3c56d012f03377ee15f" "1bc936b9e02f4a603fcc222ecf7633d30b8b93b1" "81383d72db054fcccf5336daa902f182f6edbb28" "9b87378618f6122ea75f281db90aceb029aac9bc" "15a4806a57547cb2d2dbf27f42e89a8c3451b364" "7cd2cdb228a4a3f36e95efa6cc142de7d1a136d0" "ce813e725fa82f7e6147d51c9a5ca68270551c22" "fe2239b7574972e67e41f808823f9bfa4a991e37" "dcd162928d3b4e72b8ff047fb5a5247c19b19d81" "4cafad76bc62f02fa039b2f94e9a3dd3a391a725" "4b2dec8d907e93db336624dcec0183502f8c9428" "86220eb3202efae233a8418a1d7f87b60adee323" "0d00d83d92578175cdea863fbf860e3d5621c4a3" "c75e95edff7f19fd22b9d9f8bcb1648c73d84d70" "df31c90ffcc409bc9fafe44ec0dd1e4259916fea" "cad1d21daeef8dbf3ff8015822555b7b8e29d6a0" "80368181dccd551186e5b8385c011cee24d640a0" "1a61c6f212410e4abb4f7c89153717b101560260" "56937cd5194324adff6d207631832a9d6ba4e7f0" "83f275ec0ec7630518bc4a052d4f0dae5adad794" "15ee03b61e262e1b36f13762d967923cd1ce515e" "c0706b9dd9064e116f36f23fe4e6b048672c0f7e" "93324884dbf7e37a9ff7c026dff451d94a9e554b" "c98d9514d6f55fceb8bd981acfb9e692becec7e5" "363525b01155be0225bf3434c6a1781cd292ac7a" "271c4cc5b4b8f0bbfa0e1750ff5ee21eb329e4c7" "cb8859384ad4cc5a244c77cc026f38eac6b284c3" "73d26af1da4d223cb63465cb3506167daf0894c2" "f92c51b7a1df2dab7a1d08f9db54bf6b203d9bac" "bdf4c1b26d93cf938a875481c1786211faad7ac0" "66cf8b101047227b95bace6ea1da0c177ed5c22f" "0e09651a2f0fb3c949160583710d551f92e6d2ad" "5a9e12564a571cf0b81ef93c2157bd1617168883" "84f265aae8c0e6a88a12d7022894b7568894c62e" "34f5049ce1ecdf2b0649af3ef24e45ed35416d91" "67144a5260c34fc3cca677d041daf52fe7b78b2f" "8461733f538b0837c9361e39a9ab9e9704dc2f28" "1332ff00156c0a0ffdd8236013d07b77a0451573" "90c90118886e21975d1ad4ae9b3e284ed19a2de8" "20bb7403d3cea398e91dc4710a8ff1b8274a25ed" "4b9f1e40800c3e50c6c27f781676afcce71f3985" "b834f723cc4a242aa65963459df6d984c5d3d959" "d9e953b26988be88096c46e926494d9604c300f8" "ebf7a9524f7c86b5f6888589b40bdba712eafa67" "996c28b191516a8be86501a7d79757e5c70c1068" "33795ade72df88acfbfd36773cefeda764735b20" "3f91365cabe60b77ed0ebba24b454e3e09d95a82" "5d2d7e9b6ef49980ad5b128d8e4ef09a31c90d95" "1ce60a3a57864a292d1321ff4609ca4bb965adc8" "1f88aba4ab0b1508e8312acc39345f36e992e2f2" "2e1013219c6d6712973ec54d981ec19e5579de97" "8e2d48348742121b4a8218b7a137e9a52049dc80" "82dc336d232b9062179d05ab3293a66059fd435d" "e7ca4f85f8957b018734f285750dc22ec2f9862d" "6cbb4521ebd51ce0ec0a936bfd7657ef7e9b172a" "3b5b3417d434f81a234d68f79612615e416244a3" "ca4309dadee6b54cc0b8d247e8d7c7a0975bdc9b" "b17d08d326b4423e568eff719f91b0b1cbdf69f1" "4a4c5dd8e4fb5e9b3cda60c822dfadcaee66e0af" "f9d1f19690674d51539cdfd44efd713dac2cfe04" "20638e29a30f9ed1ca2e3a825fbc2cba5246ddfc" "c03bf4e01cb086d5b5e5ace8ad0afe7889d638c3" "104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" "8a18acfca9a8f4177e09abfc6038939b05d1eedf" "bb935d48582cba168c06834957a54a3e07124f11" "77c99840527aa8ecb1a8ba697b80645a7a926a9d" "75f16642b480f187a711c814161fd3a4a7655898" "36f7850c0d077a71b041f3565664155f07035bd0" "540572d34f7ac3119f8f76c30cbc1b1e037affbe" "2c132383f39199f8edc268ca01b9b007d205cc4d" "2238098fc221de0bcfa5d9eac4c45d638aa1c534" "62b110e289a471418e3ec36a617d472e301dfc89" "ac468177c4943405a092fc8f29760c6ffc6206c0" "6438603eaebe2793948ff4a4262ec8db3d62597b" "d096f926a3ded5600f3fdfd91198cb0888c2d863" "5273819fada880d123e1ac00a938e7172dd8d95e" "5a39d1d76b2dbb83140bbd157b1d5ee4bdc85ad6" "01fcbbb393463a548f2f466cce16dece49db908f" "8952688c5ec2ffd6b03ecc85e769e02903083470" "208de872bd7378c2a92af9428a3f56eb91a122c4" "207bab91638499c07b2adf240a41a87210034575" "57fe1c4e48474edd65b09911f26b1cd4095dda84" "47e63f7af55afa6f92e1500e690eb8b8529c099a" "e479c80858df0c1b11ddda6940f96011fcda4a9a" "b8aa54125ae626bfe4e3beb965f16a89c58a1137" "8f10d7977d8d79f2f6ff862a81b0513ccb25686c" "d54b7a0f953fa456d5988b6b7209f55c9c51d450" "e7dee66e35d6fc16f710fe91d5cf69f70f08911d" "1d09a3bd913c4cadfa81bf18d582bd85bffe0d44" "054352e4c4c80c86c0923877d449de176a732c8d" "e252b99a6af901d3ec41f332589c90509a7bc605" "2c74b6ee41d93ca51b7b5aaee8f503631d252a73" "5c0c5685107160e72fe7489bddea0b44c2bc67bd" "3af1dd20fe85463910d469a385e33017d2a030d9" "50354f19f603917c695f70b85afa77c3b0f23506" "611c23e814db375527df851193db59dd2af27f45" "700c8e4711fef1ce421f650bead55235bb21d7de" "1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" "7182dc17a05aece710b1a5cf29be35d49d1cf9e0" "f20c906ac92abd58e3b79ac8bc70a48832512da1" "cc435a5c8b94ad15acb7983140fc80182c89aeae" "a25ae6509999e97df278c6719da11bd0687743a8" "6be1b23f6249f53d293370fd4d1aaa63ce1b4eb0" "018ec7a4ce7e3a86cb9141be519d24c8faa981b5" "187db427046e7e90945692e6768668bd6900dea0" "4615331537784981e8fd264e1f3a434c4e0ddd65" "a52e1d138024c00b86b1c0c91f677918b8ae0a59" "7feddf2dcb6edb77d11ef1d117ab5ffdf0ab1b65" "1b25d63c772a4c20f0a5ed0a9d77f484b6e16920" "308accafa0bc483a3867b4b6f2b9506251d1b835" "04d99b4a1eaf9e5f79c05e5d745d53edd1aa8aa1" "9144b6eebca5f1d0680169f1a6770dcea60b75c3" "fcea5edc704a4b3a8796cdca419c3a0afaf22df4" "6bc028149440e570d495ab509692aa08bd779c6e" "be5892909458d93ddf769eb4bc685102080c6321" "956905708d58b4bab4c2261b04f59f31c99374c0" "8f3499c5245d346d682e5b0d3b40767e09f1a92c" "fadd834b9683073da179b3eae6d9c0d15053f73e" "5bf45e8e49ba4189e17d482789dfd15bd140b7b6" "4bf50a3243f9aeb0bac41a55d3d5990675a462fb" "3678bd8ab995057c07ade836ed2ef087da811d45" "2dcbd2c287cbc0a55cc42328bd0c736150d53e3f" "30a0b2da38f73770e8294a0d22e6625ed77d0097" "f4f87db6abec3b7fe47834531ecf6a011143e58d" "6d4524e8b955f95d4f5b58851ce21dd72fb4e952" "d933ceb9205d82bdcf4886f6742bdc2b4dea146d" "71365e84a99dd8f8b3f7d5fde2f00d1e7f73be61" "e7a535295cb89db0e0782428e55fa8615bf9e150" "2169cf7538e1b0cc87fb88e1502d8474bbf79864" "d8dfed89e28419d073489be55c33f0b05c273217" "4a62fb1d42933c05583982f4c716f6fb9e6c6d3d" "496f90fd01fe0e031c8823ec3aa9450ffda18ed8" "995ae1392ab8affcbfcb2641dd054e943c0d5dce" "faf57823de04bc7cbff4ee82c6b63946e812ae72" "9d092f96c501084598d7a09ae87e0da90a514759" "702be2dda6b37f4836bcb3f5db56641b64a1d3d3" "c74e780574f63c6f9a090e90efbe6ef53a6a756a" "275d8edaac4f1bb3326472089e7949c8394699dd" "8d087c39c6b38c001b97fca7ce6d0e1e80afbac7" "5236157a51e4f004c177fb3c527ff7dd78f0ef83" "de3f98543dbf96082be48ad1a0c7cda836301dcf" "857fcabfc3397d2625b8228262e86aa7a011b05d" "a35008b20f41383eec1fb914f4cd5df79a264284" "1bbf5ab1ba827af23575143490426455f481fe1e" "de3e5f8961c88c787ee1368df849ac4413eca8d7" "1d73076a6df986cd9344e15e71fcc05a4c9abf12" "30057438eac6cf7f8c4767f38648d6697d75c903" "7554a6f8d871834cc97b5462b122c4c124d6de91" "8629a6fb044f2d225aa4b81a2ae2d001699eb266" "ea75caf9199090d25b0d5512b5acacb96e7f87f3" "962e6438b8b2ace391ad75b74078b9ce436acc20" "cf8b4ff4f29640674d6cdd02b0e3bc523c2bbdc0" "7146a3900533064ca799d5e792f4e480ee0e82bc" "9cd13c03adbff25b65effde7ce864ee952017098" "9c7906a22fb4c02919e2f5f75161b4cdbd4b2a2b" "d15367e5cb87432ba117d2bf80fdf45aecfb4246" "195a21d6c46e361d2fb1281ba38b91e9df7bdbb3" "75da4a927ee5887e39065880065b7336413b310d" "2d6e6b2ece5de8588b43d88d1bc41b26cd1fa84d" "6da5a17668c4b3dd59623bda11cf7fa4c1f60a6f" "050a6614263960cb8fd1fa7824911525f2c66b0b" "84a66a260174408fc5b77a18f888eccc44fb6971" "2151f722472ba79e50a76fc125bb8c8f2e4dc2a7" "6ddd21bd2a31417b92727dd585f8a6f37608ebee" "2aa09b7d1768487b3b89a9c5aa52335bff0baea7" "8d924f142960e1777e7ffe170543631cc7cb02df" "47886ac1662760d4261b7d979d241709d3ce3f7a" "c020f529c5282adfdd233d91d4b181c3d686dc4b" "4ddd10a8364b1a64d3e3d7d2a8d4368131d39042" "938fdc875765ba527137d8aec9d178e24debc553" "43c36e5d569ff8e4816c4efa8be02d26967c18aa" "99504456c3598b5cad4fc59c26e8a9bb107fe0bd" "868597333d54e60662940bb458605dd6ae12fe94" "de1905c636af874a8fba862d9aabddd1f920461c" "b2e261557ce4c314ec8304f3fa82663e4297ca20" "da3ea74686fa21a19a111c326e90eb15a0196686" "49ca0293e0b19590a5f5de10c7f265a617d8fe54" "83cf05c6d6458fc4d5ac6362ea325d92f2754217" "0d62bdf44b916fd3bbdcf2cab191948fb094f007" "20f9f17ae29ed345e8bde583b13d2009803c14d9" "e9b423a1edaf479882562e92ed71d7743a071b6e" "50cf8616365e87e031e29a5ec9339a3da4725fa2" "a4653997c2df63c9811f7f1d7a1208404ed32e9e" "15ad772915362913f20de4a8a164b4aacc6165d6" "fedd4d2bf193a77745fe71e371d73c3307d9c751" "35060f6d5015d37628c770f4e091a0b5a278bc23" "b2c376cfb11f35513badd173ef0bb6e3a388391c" "f480f40434ef80741f8469099f8dea18f55a4dc9" "85907dd8605aa06abb3dd295d50bb2b8fa4dd117" "a0b870729aae214005b7d5032ec2cbbb0fb4451a" "d5a8998eb71ef37a74c34eb0d9eba6e878eea081" "0feb6c64f0fc518d9a754dd5efb62c7022761f4b" "263dada66ab3f2fb10bf7f9d24dd8f3e570ef912" "e864217f74c36850f0852b78dc7bf7d4a5721bf2" "59c44f7ee491da704da415da5a4070ba4f8fe441" "12c8bfaf920543786a85150b03f68d5f1aa982fc" "ed141a6ac043a849ea588498e7dca8b15330e90c" "4236c86fc29f261c2045bbe81f78cbb2a5e8306c" "4c83538de1f6e660c29e0a13446844f7a7e88259" "3e08fb461525c4421624a33b9f7e6d0af5b05a26" "914ce17b276717461d1cf71d8f8837aafbfb739f" "084b5093ddc92506e259f874b8d9b1afb8c79593" "af0bfccc859afddd7234e9a3c40a121d51bf5e9d" "815ed1f6ebc65926f865b310c0713bcb3315ce4b" "0a22e8210609ad35542f8c8d5d2159aff0751c84" "14afff6a645e591a4ddf1c72919c23b4146181a1" "55c6a976d0f9bafb9924851350fe47b9b5fbb7c1" "0f96b001cea90b12592ce566edb97ec11e69bd05" "8a58d1d12c573f3f890da9848a4fe8e16ca977b2" "1638d8a8e34c2f440a91db95ab9aeb677fc185cf" "e260c78f6161cdd9b0e56cc3e0a85de17c7a57be" "54fff5b321829d802aea900a928b95bab46874e6" "39f699f3a46560dd5ebacbca693caf7c65c18cc6" "ae5ff8c1f93ed87adc6530a97565b126f585454b" "9653a036fb7c1ee42342f2325cceefea3926c48d" "3f879ea03f24c718d4d4b7e47de1fb51cf6c3e33" "11872aeedee89268110b10a718448ffb10112a14" "55705bcd93c5f3673530c2c2cbc0c2b3addc286e" "50a93e2b5af6691c31bcea5dae78ee6ea1903768" "a9f31142af468cb72b25b30136ba2456834916be" "9ec61f79049875707d69414596fd907a4d711e73" "b209849203bb25df820da756e747005878521620" "5e9ef5f2d573c67bd2b8124ae90b5156e457840b" "18f4a9ba0dd07bdb1580bc9156091fcf90eabc6f" "063a9983c4c166654d09fd0f720ed0ad5fbbba0a" "3a360dd66c1b1d7fd4705389860eda1d0f61126c" "f6eef764f514c89e2b9e23146a75ba106756d23e" "a2426f8dcd4551c77a33f96edf2886a23c829669" "3b5a211c631e12303a54991c806c17e7ae206bff" "eaf1a9b463be9a8190fc9ae163aa1ac934aa340b" "cc09ba5d12d8feb864bc75f6e2ebc137060cbd82" "5da77c799ed1388d3ef88a18471bb5924f8a0ba1" "2724fd6a8113d73764ac288d4386270c1dbf17f0" "f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" "9d63c13276c065918d57f002a57f40a1b643fb02" "942808f7aa016f1fa7142c461d7e5704aaa8d697" "f637234da1ed3d0fa007b1c46678e158887b8da4" "cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" "9e30ba68a6bd96ac3dcba62ab09d55d4b2fcbe04" "a0e457c58ebdbae575c9f8cd75127e93756435d8" "6e4f89c266bc03c33fd129c062184687f4663487" "e534dc991a9e5846050c98de6d7dd4a55c9ea16d" "6c016adeac554f75823fe37ac05b92d5a4edb1f7" "7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" "ef089a178d1483baae4d93eb98b4f9e4e11d990a" "3d4114218877537494f97f77f9785fab810fa4ac" "fd27d6d264d18fbebfaa56553dd7b82535a5034e" "21065f70727ad053a0dd5e957ac9e00c7560d90a" "4dd670f696f1e6e842e66b4b5e839301ab9beb67" "8af74780e2bf11ea0ae9aa965c11f11afd272742" "d3492ad054ca800f5befa612e61beac1eec98f8f" "61339b722fe6a3515689210d24e14c96148613ef" "e439be2aaee327321952730f99a8929e4fc50582" "b528ce2ebe0e6d89fb03b265de11d61da0dbcf82" "93a4bbd4942bc574b69a8fa57c71de10ecca7d6e" "ade3a66557067ab4f637ec847cc1abeb2d9d0066" "a00b29a93e06b1ac5760eda642ca092d551814fe" "b9848f25d6cf36333073ec9ef8856d42f1233e52" "85f2cf8550465c4df000cf7d86f6b054106ab9e5" "da1b088fde46c9ed4f17e6d29f29f4928e98e251" "e7012310d8f417f4deb5712150e5678b87ae565f" "da42f49740c0b42db2ca9728571cb190c98efea3" "3596e6307a781544f591f37da618360f31db57b1" "1a41196f3c0333c482323593d6886ecf153dd986" "952c44e0b1ed9013ef53958179cc643e8777466b" "3ff21f198cad2175f9f3b781853fd94d0d19b590" "375879b1f92ebc3b334480d038dc546a6d558564" "191bf566a59e6530482cb25ab53b4a8dc85c3a6b" "f5e84fb8692db730ea8654d4da42d1b5ef8c1456" "2abb75aade39deb5cc815ce10e6191164850baf0" "c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" "6541184cc90aeea6c6e7b35e2659082443c66198" "c8b6c167797ba4740a8ea33252162ff08591b266" "c24bc146ca517c1471f5dacbe2571b2b7f9e3346" "dc9f3114394ab7c1f9782972f3d11820fff06f1f" "eba4f5da9c0dc999de68032d8b4f76173652036b" "82674b85a71b0be76c3e7416d15e9f5252eb3be0" "ea5a3900a1c1cb25096a0ae8cc5c2b4b10ded3dc" "4b3073d933ff51f3912f03ac5519498a4150db40" "220b84239119ae9045a892db81a83f4ce16f80fd" "d52b14b5e9670771440af225bcb563122ac452f6" "28694acdf39fe27de45143fff81f21f6c66d44ac" "04e6926f662895354f3dd015203633b857297e2c" "565e386c42a77e6062fbd14c0472ff21cd53398c" "08232f60c732e9890784b5bed0734f8b32a887b9" "bf9b4abfb42b274d751479e44e0ff2656b6f1193" "66266ee5f9bdb9940a4e4514cafb43bb71e5c9db" "ba72a6b50cbfabfa950fc8bc87604bd01eb60671" "fb4d8a1420ea362764e21ad4780397bebcb41cbe" "5acdcd05c6fe78dfeace92a81a73ebf3e8f82913" "3c0441be15b9bf4e226275e6dc83964745546661" "1b63be438a133e4b671cc1935197600175910d83" "62e203bc41766c6c28c9fc84301dab1c5310fa94" "556c137b258f942b8776f5b2ef582aa069d7d1b1" "ef259c4e349344377fcd1c913dd2e848c9c042b5" "4e484cd4de5a0bbbee18e46307710a8a81621878" "42932e598a352d01fc22ec3367d9d84eec6c9add" "39e8a98d044d150660abe4a6808acf70bb7bc991" "25f48ea22ca79187f3174a4db8759347bb126220" "7510b665567ca914ccb5d7e072763ac968be3724" "6219a85616520491f35788bdbf1447a99c7e6b0e" "0c7962a6adefa7bbd4ac366460a638552ae1a0a2" "1e15fbcac97d3ee99bf2d73b4c656b082bbafb91" "f62cf17581e996b48fc965699f54c06ae268b8d2" "24022e486f3bf1cdca094283b769c472d3b72897" "d92de2694eb3f67323973d7ae3d8b55b4c22190a" "ff1ed1e61169d06b3cf2d588e188b18d8847e17e" "535d045ce6b6363fa40117084629995e9df324c7" "1ad035e1b4f72fe16186510ac24f055c48002f6d" "c50bc3becefa63955ab25874728150d605718b4b" "1f1d2ce9ebc7b42765243ca0e8f1b7bfda0aadcd" "be9218c130c20029e107b0f967fb23de0579d13c" "d34bdc8e7f955da2a6a473fea07ad601d68ba78f" "dfdd012eb9c700e2323fd334f38ac622ab372da7" "0847cbc4449f3405574dbdccd9bb841b83ac3545" "f41a1c31df5e129e4314446f66eca05cd6a30480" "0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" "c9c58b575be8407375cb5e2462dacee74359f41d" "4a41554d2b2f4bbe2d794060dc47396b10bb48a8" "a65a777795e5cbbe1299499bdc42281ffb21b5f4" "3b0516b799e70e8164436a1446e7e5877fda118e" "717b8f220cc0bb7b44e40514c22b2e8bbc70d8b9" "5887966bb582a4503a41eb524f7d35011815a613" "cb2e1203067e0c8de1f614094b9fe45704ea6003" "8145e4ca7caff40acde3ccf946e8b8bb75b4172b" "cfde6fabd72d63e5797cfaab873abbe8e700e912" "a157ba402da24e9bf957f9aa69d524eed42901a6" "1104e3f36ac87125c287270067d582d18133bfee" "867ac74e3864187b1d3d47d996a78ec5c8830777" "edbbe1888ba3525ded3a7bf836b30b3405d3161b" "6e0924d6bda6b5afe349e39a6d632850a0f882b7" "8ae556e11011f63c2596708a8837259f01b3d60e" "d7c0fa2af5d5a1a67f4253daee98132e733f0f19" "71c08bf6b428b1133f37e78fa3a21c82f7329b0d" "8cdd8fbac4e2d2ea1e7e2e8097c42f442280f85b" "61a6a32010622afa07963bf325203cf12239d604" "8b38b10cacdef63337b8b24e4ff86d45aea529a8" "6bbaf0877500d36be34ecaa584e0db9fef035209" "215cbe1053369f0d4a44f84b51eba7cb80484695" "803eb01f2feb17927dcce0f6187e72b75f53f554" "021e4d9c7705f21bbf37d03ceb58767402774c64" "3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" "2b5be23a32b63a7c9deb8d0f28d485724a3df190" "450d4dc9fa70de732762fbd2d4a28981419a0ccf" "7afb1afe50805246489e3db7fe0ed379336ac0f9" "c2a30dedb3e535d72ccf82e343941a50ba8533ac" "2804babe712ad3379459acfbe24746ab2c303fbc" "cff5df12946d297d2baaefaa2689e25be01c005c" "80eda2d481b9ede0c049118cefcb4a05f21d1375" "5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73" "7b5ab5d993c5b0074b41f160d062a7b37fdf69e0" "460c1da0f810103d0321a9b633af9e575e64486f" "5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" "f8e1aa1ee5a53ec5bf151ffa09742a6ad7697876" "0afca30f3c6e7458058d28a0b673c9dda622b9b5" "b79669bb42ecb409f83d583cad52ca17eaa1643f" "a3d5da6cd5c0bc0008d37234bbaf1bed63059107" "1e65969965ccbc2db4548c6b84a6f2c5aedd4739" "14ff8f63a4fdbcb05d5b6eea22b36f3033b9f04e" "de520171d47b3f416f5587d629b89d26b12dc29d" "474b50865af3a49a9c4657f05acd145458f77d82" "98b8f651ca30aa624036f127d11cc66dc7b907a3" "631fc07776efd84118bf25171b37ed4d075a0abc" "5cce7407baf642cba7becda568111c493f59665a" "a5c6d532be656e23db820efb943a1f04998d63af" "3bec64c93b730d924a6148c765757932433e34c8" "f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" "21205469316e939131d59f2da0c6d7f98221ea40" "32dcbc506d0dab4d21372625bd7ebaac3c2fff56" ) noextract=( "abbrev-1.0.7.tgz" "acorn-1.2.2.tgz" "align-text-0.1.3.tgz" "alter-0.2.0.tgz" "amdefine-1.0.0.tgz" "ansi-green-0.1.1.tgz" "ansi-regex-0.2.1.tgz" "ansi-regex-2.0.0.tgz" "ansi-styles-1.0.0.tgz" "ansi-styles-1.1.0.tgz" "ansi-styles-2.1.0.tgz" "ansi-wrap-0.1.0.tgz" "anymatch-1.3.0.tgz" "archiver-0.13.1.tgz" "argparse-0.1.16.tgz" "argparse-1.0.3.tgz" "array-differ-1.0.0.tgz" "array-filter-0.0.1.tgz" "array-map-0.0.0.tgz" "array-reduce-0.0.0.tgz" "array-union-1.0.1.tgz" "array-uniq-1.0.2.tgz" "array-unique-0.2.1.tgz" "arr-diff-2.0.0.tgz" "arr-flatten-1.0.1.tgz" "arrify-1.0.1.tgz" "asn1-0.2.3.tgz" "asn1.js-4.2.1.tgz" "assert-1.3.0.tgz" "assert-plus-0.1.5.tgz" "assert-plus-0.2.0.tgz" "ast-traverse-0.1.1.tgz" "ast-types-0.8.12.tgz" "astw-2.0.0.tgz" "async-0.1.22.tgz" "async-0.2.10.tgz" "async-0.9.0.tgz" "async-0.9.2.tgz" "async-1.5.0.tgz" "async-each-0.1.6.tgz" "aws-sign2-0.6.0.tgz" "babel-core-5.8.34.tgz" "babel-plugin-constant-folding-1.0.1.tgz" "babel-plugin-dead-code-elimination-1.0.2.tgz" "babel-plugin-eval-1.0.1.tgz" "babel-plugin-inline-environment-variables-1.0.1.tgz" "babel-plugin-jscript-1.0.4.tgz" "babel-plugin-member-expression-literals-1.0.1.tgz" "babel-plugin-property-literals-1.0.1.tgz" "babel-plugin-proto-to-assign-1.0.4.tgz" "babel-plugin-react-constant-elements-1.0.3.tgz" "babel-plugin-react-display-name-1.0.3.tgz" "babel-plugin-remove-console-1.0.1.tgz" "babel-plugin-remove-debugger-1.0.1.tgz" "babel-plugin-runtime-1.0.7.tgz" "babel-plugin-undeclared-variables-check-1.0.2.tgz" "babel-plugin-undefined-to-void-1.1.6.tgz" "babylon-5.8.34.tgz" "balanced-match-0.3.0.tgz" "Base64-0.2.1.tgz" "base64-js-0.0.8.tgz" "binary-0.3.0.tgz" "binary-extensions-1.4.0.tgz" "bl-0.9.4.tgz" "bl-1.0.0.tgz" "bluebird-1.2.4.tgz" "bluebird-2.10.2.tgz" "bn.js-4.5.2.tgz" "boom-2.10.1.tgz" "brace-expansion-1.1.2.tgz" "braces-1.8.2.tgz" "breakable-1.0.0.tgz" "brorand-1.0.5.tgz" "browserify-aes-1.0.5.tgz" "browserify-10.2.6.tgz" "browserify-12.0.1.tgz" "browserify-cipher-1.0.0.tgz" "browserify-des-1.0.0.tgz" "browserify-rsa-4.0.0.tgz" "browserify-sign-4.0.0.tgz" "browserify-zlib-0.1.4.tgz" "browser-pack-5.0.1.tgz" "browser-pack-6.0.1.tgz" "browser-resolve-1.11.0.tgz" "browser-split-0.0.1.tgz" "buffer-3.5.5.tgz" "buffer-crc32-0.2.5.tgz" "buffers-0.1.1.tgz" "buffer-xor-1.0.3.tgz" "builtin-modules-1.1.0.tgz" "builtins-0.0.7.tgz" "builtin-status-codes-1.0.0.tgz" "camelcase-1.2.1.tgz" "camelcase-2.0.1.tgz" "camelcase-keys-2.0.0.tgz" "camelize-1.0.0.tgz" "caseless-0.11.0.tgz" "center-align-0.1.2.tgz" "chainsaw-0.1.0.tgz" "chalk-0.4.0.tgz" "chalk-0.5.1.tgz" "chalk-1.1.1.tgz" "chokidar-0.12.6.tgz" "chokidar-1.4.1.tgz" "cipher-base-1.0.2.tgz" "cli-0.6.6.tgz" "cliui-2.1.0.tgz" "coffee-script-1.3.3.tgz" "colors-0.5.1.tgz" "colors-0.6.2.tgz" "combined-stream-1.0.5.tgz" "combine-source-map-0.6.1.tgz" "combine-source-map-0.7.1.tgz" "commander-0.6.1.tgz" "commander-2.3.0.tgz" "commander-2.9.0.tgz" "commondir-0.0.1.tgz" "commoner-0.10.4.tgz" "compress-commons-0.2.9.tgz" "concat-map-0.0.1.tgz" "concat-stream-1.4.10.tgz" "concat-stream-1.5.1.tgz" "configstore-0.3.2.tgz" "console-browserify-1.1.0.tgz" "constants-browserify-0.0.1.tgz" "constants-browserify-1.0.0.tgz" "convert-source-map-1.1.2.tgz" "core-js-1.2.6.tgz" "core-util-is-1.0.2.tgz" "crc32-stream-0.3.4.tgz" "create-ecdh-4.0.0.tgz" "create-hash-1.1.2.tgz" "create-hmac-1.1.4.tgz" "cryptiles-2.0.5.tgz" "crypto-browserify-3.11.0.tgz" "csslint-0.10.0.tgz" "dashdash-1.10.1.tgz" "dateformat-1.0.2-1.2.3.tgz" "date-now-0.1.4.tgz" "debug-2.2.0.tgz" "decamelize-1.1.1.tgz" "decompress-zip-0.0.8.tgz" "defined-1.0.0.tgz" "defs-1.1.1.tgz" "delayed-stream-1.0.0.tgz" "deps-sort-1.3.9.tgz" "deps-sort-2.0.0.tgz" "des.js-1.0.0.tgz" "detect-indent-3.0.1.tgz" "detective-4.3.1.tgz" "diff-1.4.0.tgz" "diffie-hellman-5.0.0.tgz" "domain-browser-1.1.7.tgz" "domelementtype-1.1.3.tgz" "domelementtype-1.3.0.tgz" "domhandler-2.3.0.tgz" "dom-serializer-0.1.0.tgz" "domutils-1.5.1.tgz" "dom-walk-0.1.1.tgz" "duplexer2-0.0.2.tgz" "duplexer2-0.1.4.tgz" "elliptic-6.0.2.tgz" "encoding-0.1.11.tgz" "end-of-stream-1.0.0.tgz" "end-of-stream-1.1.0.tgz" "entities-1.0.0.tgz" "entities-1.1.1.tgz" "error-4.4.0.tgz" "error-ex-1.3.0.tgz" "escape-string-regexp-1.0.2.tgz" "escape-string-regexp-1.0.3.tgz" "esprima-1.0.4.tgz" "esprima-2.7.1.tgz" "esprima-fb-15001.1001.0-dev-harmony-fb.tgz" "esutils-2.0.2.tgz" "eventemitter2-0.4.14.tgz" "events-1.0.2.tgz" "events-1.1.0.tgz" "evp_bytestokey-1.0.0.tgz" "ev-store-7.0.0.tgz" "exit-0.1.2.tgz" "expand-brackets-0.1.4.tgz" "expand-range-1.8.1.tgz" "extend-3.0.0.tgz" "extglob-0.3.1.tgz" "extsprintf-1.0.2.tgz" "falafel-0.3.1.tgz" "figures-1.4.0.tgz" "filename-regex-2.0.0.tgz" "file-sync-cmp-0.1.1.tgz" "fill-keys-1.0.2.tgz" "fill-range-2.2.3.tgz" "find-up-1.1.0.tgz" "findup-sync-0.1.3.tgz" "forever-agent-0.5.2.tgz" "forever-agent-0.6.1.tgz" "for-in-0.1.4.tgz" "form-data-1.0.0-rc3.tgz" "for-own-0.1.3.tgz" "fs-extra-0.13.0.tgz" "fs-readdir-recursive-0.1.2.tgz" "function-bind-1.0.2.tgz" "generate-function-2.0.0.tgz" "generate-object-property-1.2.0.tgz" "getobject-0.1.0.tgz" "get-stdin-4.0.1.tgz" "gettext-parser-0.2.0.tgz" "gettext-parser-1.1.0.tgz" "global-4.3.0.tgz" "globals-6.4.1.tgz" "glob-base-0.3.0.tgz" "glob-3.1.21.tgz" "glob-3.2.11.tgz" "glob-3.2.3.tgz" "glob-4.3.5.tgz" "glob-4.5.3.tgz" "glob-5.0.15.tgz" "glob-parent-2.0.0.tgz" "graceful-fs-extra-1.0.6.tgz" "graceful-fs-1.2.3.tgz" "graceful-fs-2.0.3.tgz" "graceful-fs-3.0.8.tgz" "graceful-fs-4.1.2.tgz" "graceful-ncp-2.0.0.tgz" "graceful-readlink-1.0.1.tgz" "growl-1.8.1.tgz" "grunt-babel-5.0.3.tgz" "grunt-browserify-3.8.0.tgz" "grunt-contrib-compress-0.13.0.tgz" "grunt-contrib-copy-0.8.2.tgz" "grunt-contrib-csslint-0.4.0.tgz" "grunt-contrib-jshint-0.11.3.tgz" "grunt-contrib-uglify-0.9.2.tgz" "grunt-0.4.5.tgz" "grunt-jspot-0.1.0.tgz" "grunt-legacy-log-0.1.2.tgz" "grunt-legacy-log-utils-0.1.1.tgz" "grunt-legacy-util-0.2.0.tgz" "grunt-newer-1.1.1.tgz" "grunt-node-webkit-builder-1.0.2.tgz" "grunt-nunjucks-0.1.4.tgz" "grunt-po2json-0.3.0.tgz" "grunt-rename-0.1.4.tgz" "grunt-rsync-0.6.2.tgz" "grunt-simple-mocha-0.4.0.tgz" "gzip-size-1.0.0.tgz" "handlebars-3.0.3.tgz" "har-validator-2.0.3.tgz" "has-ansi-0.1.0.tgz" "has-ansi-2.0.0.tgz" "has-color-0.1.7.tgz" "has-1.0.1.tgz" "hash.js-1.0.3.tgz" "hawk-3.1.2.tgz" "hoek-2.16.3.tgz" "home-or-tmp-1.0.0.tgz" "hooker-0.2.3.tgz" "hosted-git-info-2.1.4.tgz" "htmlescape-1.1.0.tgz" "htmlparser2-3.8.3.tgz" "http-browserify-1.7.0.tgz" "https-browserify-0.0.1.tgz" "http-signature-1.1.0.tgz" "iconv-lite-0.2.11.tgz" "iconv-lite-0.4.13.tgz" "ieee754-1.1.6.tgz" "indent-string-2.1.0.tgz" "indexof-0.0.1.tgz" "individual-3.0.0.tgz" "inflight-1.0.4.tgz" "inherit-2.2.2.tgz" "inherits-1.0.2.tgz" "inherits-2.0.1.tgz" "inline-source-map-0.5.0.tgz" "inline-source-map-0.6.1.tgz" "insert-module-globals-6.6.3.tgz" "insert-module-globals-7.0.1.tgz" "invert-kv-1.0.0.tgz" "isarray-0.0.1.tgz" "isarray-1.0.0.tgz" "is-arrayish-0.2.1.tgz" "is-binary-path-1.0.1.tgz" "is-buffer-1.1.0.tgz" "is-builtin-module-1.0.0.tgz" "is-dotfile-1.0.2.tgz" "is-equal-shallow-0.1.3.tgz" "is-extendable-0.1.1.tgz" "is-extglob-1.0.0.tgz" "is-finite-1.0.1.tgz" "is-glob-2.0.1.tgz" "is-integer-1.0.6.tgz" "is-my-json-valid-2.12.3.tgz" "is-number-2.1.0.tgz" "is-object-1.0.1.tgz" "isobject-2.0.0.tgz" "is-primitive-2.0.0.tgz" "is-property-1.0.2.tgz" "isstream-0.1.2.tgz" "is-typedarray-1.0.0.tgz" "is-utf8-0.2.0.tgz" "jade-0.26.3.tgz" "jed-1.1.0.tgz" "jsesc-0.5.0.tgz" "jshint-2.8.0.tgz" "json5-0.4.0.tgz" "jsonfile-2.2.3.tgz" "jsonify-0.0.0.tgz" "jsonparse-1.2.0.tgz" "jsonpointer-2.0.0.tgz" "json-schema-0.2.2.tgz" "json-stable-stringify-0.0.1.tgz" "JSONStream-1.0.7.tgz" "json-stringify-safe-5.0.1.tgz" "jspot-0.3.8.tgz" "jsprim-1.2.2.tgz" "js-tokens-1.0.1.tgz" "js-yaml-2.0.5.tgz" "js-yaml-3.4.6.tgz" "kind-of-2.0.1.tgz" "kind-of-3.0.2.tgz" "labeled-stream-splicer-1.0.2.tgz" "labeled-stream-splicer-2.0.0.tgz" "lazy-cache-0.2.7.tgz" "lazystream-0.1.0.tgz" "lcid-1.0.0.tgz" "left-pad-0.0.3.tgz" "leven-1.0.2.tgz" "lexical-scope-1.2.0.tgz" "line-numbers-0.2.0.tgz" "load-grunt-tasks-3.3.0.tgz" "load-json-file-1.1.0.tgz" "lodash-0.9.2.tgz" "lodash-2.4.2.tgz" "lodash-3.10.1.tgz" "lodash-3.2.0.tgz" "lodash-3.7.0.tgz" "lodash.memoize-3.0.4.tgz" "longest-1.0.1.tgz" "loud-rejection-1.2.0.tgz" "lru-cache-2.7.3.tgz" "map-obj-1.0.1.tgz" "maxmin-1.1.0.tgz" "meow-3.6.0.tgz" "merge-descriptors-1.0.0.tgz" "micromatch-2.3.5.tgz" "miller-rabin-4.0.0.tgz" "mime-db-1.20.0.tgz" "mime-types-1.0.2.tgz" "mime-types-2.1.8.tgz" "min-document-2.17.0.tgz" "minimalistic-assert-1.0.0.tgz" "minimatch-0.2.14.tgz" "minimatch-0.3.0.tgz" "minimatch-2.0.10.tgz" "minimatch-3.0.0.tgz" "minimist-0.0.10.tgz" "minimist-0.0.8.tgz" "minimist-1.2.0.tgz" "mkdirp-0.3.0.tgz" "mkdirp-0.3.5.tgz" "mkdirp-0.5.0.tgz" "mkdirp-0.5.1.tgz" "mkpath-0.1.0.tgz" "mocha-2.3.4.tgz" "module-deps-3.9.1.tgz" "module-deps-4.0.2.tgz" "module-not-found-error-1.0.1.tgz" "moment-2.5.1.tgz" "ms-0.7.1.tgz" "multimatch-2.1.0.tgz" "ncp-1.0.1.tgz" "ncp-2.0.0.tgz" "next-tick-0.2.2.tgz" "node-int64-0.3.3.tgz" "node-uuid-1.4.7.tgz" "node-webkit-builder-1.0.13.tgz" "nomnom-1.6.2.tgz" "nomnom-1.8.1.tgz" "nopt-1.0.10.tgz" "nopt-2.2.1.tgz" "normalize-package-data-2.3.5.tgz" "normalize-path-2.0.1.tgz" "number-is-nan-1.0.0.tgz" "nunjucks-1.3.4.tgz" "oauth-sign-0.8.0.tgz" "object-assign-2.1.1.tgz" "object-assign-4.0.1.tgz" "object.omit-2.0.0.tgz" "once-1.2.0.tgz" "once-1.3.3.tgz" "optimist-0.6.1.tgz" "os-browserify-0.1.2.tgz" "osenv-0.1.3.tgz" "os-homedir-1.0.1.tgz" "os-locale-1.4.0.tgz" "os-tmpdir-1.0.1.tgz" "outpipe-1.1.1.tgz" "output-file-sync-1.1.1.tgz" "pako-0.2.8.tgz" "parents-1.0.1.tgz" "parse-asn1-5.0.0.tgz" "parse-glob-3.0.4.tgz" "parse-json-2.2.0.tgz" "parserlib-0.2.5.tgz" "path-browserify-0.0.0.tgz" "path-exists-1.0.0.tgz" "path-exists-2.1.0.tgz" "path-is-absolute-1.0.0.tgz" "path-platform-0.11.15.tgz" "path-type-1.1.0.tgz" "pbkdf2-3.0.4.tgz" "pify-2.3.0.tgz" "pinkie-2.0.1.tgz" "pinkie-promise-2.0.0.tgz" "pkg-up-1.0.0.tgz" "platform-overrides-1.0.1.tgz" "plist-1.2.0.tgz" "po2json-0.4.1.tgz" "preserve-0.2.0.tgz" "pretty-bytes-1.0.4.tgz" "prettysize-0.0.3.tgz" "private-0.1.6.tgz" "process-nextick-args-1.0.6.tgz" "process-0.11.2.tgz" "process-0.5.2.tgz" "progress-1.1.8.tgz" "proxyquire-1.7.3.tgz" "public-encrypt-4.0.0.tgz" "pump-0.3.5.tgz" "punycode-1.3.2.tgz" "punycode-1.4.0.tgz" "q-1.0.1.tgz" "q-1.4.1.tgz" "qs-1.0.2.tgz" "qs-5.2.0.tgz" "querystring-es3-0.2.1.tgz" "querystring-0.2.0.tgz" "randomatic-1.1.5.tgz" "randombytes-2.0.1.tgz" "rcedit-0.2.0.tgz" "readable-stream-1.0.33.tgz" "readable-stream-1.1.13.tgz" "readable-stream-2.0.5.tgz" "readable-wrap-1.0.0.tgz" "readdirp-1.3.0.tgz" "readdirp-2.0.0.tgz" "read-only-stream-1.1.1.tgz" "read-only-stream-2.0.0.tgz" "read-pkg-1.1.0.tgz" "read-pkg-up-1.0.1.tgz" "recast-0.10.33.tgz" "recast-0.10.39.tgz" "redent-1.0.0.tgz" "regenerate-1.2.1.tgz" "regenerator-0.8.40.tgz" "regex-cache-0.4.2.tgz" "regexpu-1.3.0.tgz" "regjsgen-0.2.0.tgz" "regjsparser-0.1.5.tgz" "repeat-element-1.1.2.tgz" "repeating-1.1.3.tgz" "repeating-2.0.0.tgz" "repeat-string-1.5.2.tgz" "request-2.40.0.tgz" "request-2.67.0.tgz" "resolve-1.1.6.tgz" "right-align-0.1.3.tgz" "rimraf-2.2.8.tgz" "rimraf-2.4.4.tgz" "ripemd160-1.0.1.tgz" "rsyncwrapper-0.4.3.tgz" "screenfull-2.0.0.tgz" "semver-2.3.2.tgz" "semver-5.1.0.tgz" "sha.js-2.4.4.tgz" "shasum-1.0.2.tgz" "shebang-regex-1.0.0.tgz" "shelljs-0.3.0.tgz" "shell-quote-0.0.1.tgz" "shell-quote-1.4.3.tgz" "sigmund-1.0.1.tgz" "signal-exit-2.1.2.tgz" "simple-fmt-0.1.0.tgz" "simple-glob-0.1.0.tgz" "simple-is-0.2.0.tgz" "slash-1.0.0.tgz" "sntp-1.0.9.tgz" "source-map-0.1.32.tgz" "source-map-0.1.43.tgz" "source-map-0.4.2.tgz" "source-map-0.4.4.tgz" "source-map-0.5.3.tgz" "source-map-support-0.2.10.tgz" "spdx-correct-1.0.2.tgz" "spdx-exceptions-1.0.4.tgz" "spdx-expression-parse-1.0.2.tgz" "spdx-license-ids-1.1.0.tgz" "sprintf-js-1.0.3.tgz" "sshpk-1.7.1.tgz" "stable-0.1.5.tgz" "stream-browserify-1.0.0.tgz" "stream-browserify-2.0.1.tgz" "stream-combiner2-1.0.2.tgz" "stream-combiner2-1.1.1.tgz" "stream-http-2.0.2.tgz" "stream-splicer-1.3.2.tgz" "stream-splicer-2.0.0.tgz" "string_decoder-0.10.31.tgz" "stringmap-0.2.2.tgz" "stringset-0.2.1.tgz" "stringstream-0.0.5.tgz" "string-template-0.2.1.tgz" "strip-ansi-0.1.1.tgz" "strip-ansi-0.3.0.tgz" "strip-ansi-3.0.0.tgz" "strip-bom-2.0.0.tgz" "strip-indent-1.0.1.tgz" "strip-json-comments-1.0.4.tgz" "subarg-1.0.0.tgz" "success-symbol-0.1.0.tgz" "supports-color-0.2.0.tgz" "supports-color-1.2.0.tgz" "supports-color-2.0.0.tgz" "syntax-error-1.1.4.tgz" "tar-fs-0.3.3.tgz" "tar-stream-0.4.7.tgz" "tar-stream-1.1.5.tgz" "temp-0.7.0.tgz" "through2-0.5.1.tgz" "through2-1.1.1.tgz" "through2-2.0.0.tgz" "through-2.3.8.tgz" "timers-browserify-1.4.2.tgz" "to-fast-properties-1.0.1.tgz" "touch-0.0.2.tgz" "tough-cookie-2.2.1.tgz" "traverse-0.3.9.tgz" "trim-newlines-1.0.0.tgz" "trim-right-1.0.1.tgz" "tryor-0.1.2.tgz" "try-resolve-1.0.1.tgz" "tty-browserify-0.0.0.tgz" "tunnel-agent-0.4.2.tgz" "typedarray-0.0.6.tgz" "uglify-js-2.6.1.tgz" "uglify-to-browserify-1.0.2.tgz" "umd-3.0.1.tgz" "underscore.string-2.2.1.tgz" "underscore.string-2.3.3.tgz" "underscore.string-2.4.0.tgz" "underscore-1.4.4.tgz" "underscore-1.6.0.tgz" "underscore-1.7.0.tgz" "update-notifier-0.1.10.tgz" "uri-path-0.0.2.tgz" "url-0.10.3.tgz" "url-0.11.0.tgz" "user-home-1.1.1.tgz" "util-deprecate-1.0.2.tgz" "util-0.10.3.tgz" "uuid-2.0.1.tgz" "validate-npm-package-license-3.0.1.tgz" "verror-1.3.6.tgz" "virtual-dom-2.1.1.tgz" "vm-browserify-0.0.4.tgz" "watchify-3.6.1.tgz" "which-1.0.9.tgz" "window-size-0.1.0.tgz" "window-size-0.1.4.tgz" "winresourcer-0.9.0.tgz" "wordwrap-0.0.2.tgz" "wordwrap-0.0.3.tgz" "wrappy-1.0.1.tgz" "xdg-basedir-1.0.1.tgz" "x-is-array-0.1.0.tgz" "x-is-string-0.1.0.tgz" "xmlbuilder-4.0.0.tgz" "xmldom-0.1.19.tgz" "xtend-3.0.0.tgz" "xtend-4.0.1.tgz" "y18n-3.2.0.tgz" "yargs-3.10.0.tgz" "yargs-3.27.0.tgz" "zip-stream-0.5.2.tgz" ) # bower dependencies: source+=( "fontawesome-v4.2.0.tar.gz::https://github.com/FortAwesome/Font-Awesome/archive/v4.2.0.tar.gz" "notifyjs-v0.3.4.tar.gz::https://github.com/jpillora/notifyjs/archive/0.3.4.tar.gz" "jquery-v2.1.4.tar.gz::https://github.com/jquery/jquery/archive/2.1.4.tar.gz" ) sha1sums+=( "bc4b6e3849e9bc83e769b3c34f1fde1de22154bf" "11c3ca612c1d9a4f5043594e0b5da1d82e29425c" "79543e31819aa6e126f08e89750da8892c024181" ) noextract+=( "fontawesome-v4.2.0.tar.gz" "notifyjs-v0.3.4.tar.gz" "jquery-v2.1.4.tar.gz" )