pax_global_header00006660000000000000000000000064137523675350014532gustar00rootroot0000000000000052 comment=6448b77bb187a6bd72cb9e592d49a587fa6c5639 node-temp-0.9.4/000077500000000000000000000000001375236753500134345ustar00rootroot00000000000000node-temp-0.9.4/.gitignore000066400000000000000000000001021375236753500154150ustar00rootroot00000000000000.DS_Store .\#* /node_modules \#* npm-debug.log node_modules *.tgz node-temp-0.9.4/.travis.yml000066400000000000000000000001021375236753500155360ustar00rootroot00000000000000language: node_js node_js: - "node" - "lts/*" - "6" - "7" node-temp-0.9.4/LICENSE000066400000000000000000000020761375236753500144460ustar00rootroot00000000000000The MIT License (MIT) Copyright (c) 2010-2014 Bruce Williams Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. node-temp-0.9.4/README.md000066400000000000000000000167501375236753500147240ustar00rootroot00000000000000![Image of node-temp logo](https://raw.githubusercontent.com/bruce/node-temp/master/media/A5.jpg) ========= Temporary files, directories, and streams for Node.js. Handles generating a unique file/directory name under the appropriate system temporary directory, changing the file to an appropriate mode, and supports automatic removal (if asked) `temp` has a similar API to the `fs` module. Node.js Compatibility --------------------- Supports v6.0.0+. [![Build Status](https://travis-ci.org/bruce/node-temp.png)](https://travis-ci.org/bruce/node-temp) Please let me know if you have problems running it on a later version of Node.js or have platform-specific problems. Installation ------------ Install it using [npm](http://github.com/isaacs/npm): $ npm install temp Or get it directly from: http://github.com/bruce/node-temp Synopsis -------- You can create temporary files with `open` and `openSync`, temporary directories with `mkdir` and `mkdirSync`, or you can get a unique name in the system temporary directory with `path`. Working copies of the following examples can be found under the `examples` directory. ### Temporary Files To create a temporary file use `open` or `openSync`, passing them an optional prefix, suffix, or both (see below for details on affixes). The object passed to the callback (or returned) has `path` and `fd` keys: ```javascript { path: "/path/to/file", , fd: theFileDescriptor } ``` In this example we write to a temporary file and call out to `grep` and `wc -l` to determine the number of time `foo` occurs in the text. The temporary file is chmod'd `0600` and cleaned up automatically when the process at exit (because `temp.track()` is called): ```javascript var temp = require('temp'), fs = require('fs'), util = require('util'), exec = require('child_process').exec; // Automatically track and cleanup files at exit temp.track(); // Fake data var myData = "foo\nbar\nfoo\nbaz"; // Process the data (note: error handling omitted) temp.open('myprefix', function(err, info) { if (!err) { fs.write(info.fd, myData, (err) => { console.log(err); }); fs.close(info.fd, function(err) { exec("grep foo '" + info.path + "' | wc -l", function(err, stdout) { util.puts(stdout.trim()); }); }); } }); ``` ### Want Cleanup? Make sure you ask for it. As noted in the example above, if you want temp to track the files and directories it creates and handle removing those files and directories on exit, you must call `track()`. The `track()` function is chainable, and it's recommended that you call it when requiring the module. ```javascript var temp = require("temp").track(); ``` Why is this necessary? In pre-0.6 versions of temp, tracking was automatic. While this works great for scripts and [Grunt tasks](http://gruntjs.com/), it's not so great for long-running server processes. Since that's arguably what Node.js is _for_, you have to opt-in to tracking. But it's easy. #### Cleanup anytime When tracking, you can run `cleanup()` and `cleanupSync()` anytime (`cleanupSync()` will be run for you on process exit). An object will be returned (or passed to the callback) with cleanup counts and the file/directory tracking lists will be reset. ```javascript > temp.cleanupSync(); { files: 1, dirs: 0 } ``` ```javascript > temp.cleanup(function(err, stats) { console.log(stats); }); { files: 1, dirs: 0 } ``` Note: If you're not tracking, an error ("not tracking") will be passed to the callback. ### Temporary Directories To create a temporary directory, use `mkdir` or `mkdirSync`, passing it an optional prefix, suffix, or both (see below for details on affixes). In this example we create a temporary directory, write to a file within it, call out to an external program to create a PDF, and read the result. While the external process creates a lot of additional files, the temporary directory is removed automatically at exit (because `temp.track()` is called): ```javascript var temp = require('temp'), fs = require('fs'), util = require('util'), path = require('path'), exec = require('child_process').exec; // Automatically track and cleanup files at exit temp.track(); // For use with ConTeXt, http://wiki.contextgarden.net var myData = "\\starttext\nHello World\n\\stoptext"; temp.mkdir('pdfcreator', function(err, dirPath) { var inputPath = path.join(dirPath, 'input.tex') fs.writeFile(inputPath, myData, function(err) { if (err) throw err; process.chdir(dirPath); exec("texexec '" + inputPath + "'", function(err) { if (err) throw err; fs.readFile(path.join(dirPath, 'input.pdf'), function(err, data) { if (err) throw err; sys.print(data); }); }); }); }); ``` ### Temporary Streams To create a temporary WriteStream, use 'createWriteStream', which sits on top of `fs.createWriteStream`. The return value is a `fs.WriteStream` with a `path` property containing the temporary file path for the stream. The `path` is registered for removal when `temp.cleanup` is called (because `temp.track()` is called). ```javascript var temp = require('temp'); // Automatically track and cleanup files at exit temp.track(); var stream = temp.createWriteStream(); // stream.path contains the temporary file path for the stream stream.write("Some data"); // Maybe do some other things stream.end(); ``` ### Affixes You can provide custom prefixes and suffixes when creating temporary files and directories. If you provide a string, it is used as the prefix for the temporary name. If you provide an object with `prefix`, `suffix` and `dir` keys, they are used for the temporary name. Here are some examples: * `"aprefix"`: A simple prefix, prepended to the filename; this is shorthand for: * `{prefix: "aprefix"}`: A simple prefix, prepended to the filename * `{suffix: ".asuffix"}`: A suffix, appended to the filename (especially useful when the file needs to be named with specific extension for use with an external program). * `{prefix: "myprefix", suffix: "mysuffix"}`: Customize both affixes * `{dir: path.join(os.tmpdir(), "myapp")}`: default prefix and suffix within a new temporary directory. * `null`: Use the defaults for files and directories (prefixes `"f-"` and `"d-"`, respectively, no suffixes). In this simple example we read a `pdf`, write it to a temporary file with a `.pdf` extension, and close it. ```javascript var fs = require('fs'), temp = require('temp'); fs.readFile('/path/to/source.pdf', function(err, data) { temp.open({suffix: '.pdf'}, function(err, info) { if (err) throw err; fs.write(info.fd, data, (err) => { console.log(err) }); fs.close(info.fd, function(err) { if (err) throw err; // Do something with the file }); }); }); ``` ### Just a path, please If you just want a unique name in your temporary directory, use `path`: ```javascript var fs = require('fs'); var tempName = temp.path({suffix: '.pdf'}); // Do something with tempName ``` Note: The file isn't created for you, and the mode is not changed -- and it will not be removed automatically at exit. If you use `path`, it's all up to you. Testing ------- ```sh $ npm test ``` Contributing ------------ You can find the repository at: http://github.com/bruce/node-temp Issues/Feature Requests can be submitted at: http://github.com/bruce/node-temp/issues I'd really like to hear your feedback, and I'd love to receive your pull-requests! Copyright --------- Copyright (c) 2010-2014 Bruce Williams. This software is licensed under the MIT License, see LICENSE for details. node-temp-0.9.4/appveyor.yml000066400000000000000000000011371375236753500160260ustar00rootroot00000000000000# Test against the latest version of this Node.js version environment: matrix: # node.js - nodejs_version: "stable" - nodejs_version: "lts" - nodejs_version: "6" - nodejs_version: "7" # Install scripts. (runs after repo cloning) install: # Get the latest stable version of Node.js or io.js - ps: Install-Product node $env:nodejs_version # install modules - npm install # Post-install test scripts. test_script: # Output useful info for debugging. - node --version - npm --version # run tests - npm test # Don't actually build. build: off node-temp-0.9.4/examples/000077500000000000000000000000001375236753500152525ustar00rootroot00000000000000node-temp-0.9.4/examples/grepcount.js000066400000000000000000000010231375236753500176120ustar00rootroot00000000000000var temp = require('../lib/temp'), fs = require('fs'), util = require('util'), exec = require('child_process').exec; var myData = "foo\nbar\nfoo\nbaz"; temp.open('myprefix', function(err, info) { if (err) throw err; fs.write(info.fd, myData, function(err) { if (err) throw err; fs.close(info.fd, function(err) { if (err) throw err; exec("grep foo '" + info.path + "' | wc -l", function(err, stdout) { if (err) throw err; util.puts(stdout.trim()); }); }); }); }); node-temp-0.9.4/examples/pdfcreator.js000066400000000000000000000012151375236753500177400ustar00rootroot00000000000000var temp = require('../lib/temp'), fs = require('fs'), util = require('util'), path = require('path'), exec = require('child_process').exec; var myData = "\\starttext\nHello World\n\\stoptext"; temp.mkdir('pdfcreator', function(err, dirPath) { var inputPath = path.join(dirPath, 'input.tex') fs.writeFile(inputPath, myData, function(err) { if (err) throw err; process.chdir(dirPath); exec("texexec '" + inputPath + "'", function(err) { if (err) throw err; fs.readFile(path.join(dirPath, 'input.pdf'), function(err, data) { if (err) throw err; util.print(data); }); }); }); }); node-temp-0.9.4/lib/000077500000000000000000000000001375236753500142025ustar00rootroot00000000000000node-temp-0.9.4/lib/temp.js000066400000000000000000000164731375236753500155200ustar00rootroot00000000000000let fs = require('fs'); let path = require('path'); let cnst = require('constants'); let os = require('os'); let rimraf = require('rimraf'); let mkdirp = require('mkdirp'); let osTmpdir = require('os').tmpdir(); const rimrafSync = rimraf.sync; //== helpers // let dir = path.resolve(os.tmpdir()); let RDWR_EXCL = cnst.O_CREAT | cnst.O_TRUNC | cnst.O_RDWR | cnst.O_EXCL; let promisify = function(callback) { if (typeof callback === 'function') { return [undefined, callback]; } var promiseCallback; var promise = new Promise(function(resolve, reject) { promiseCallback = function() { var args = Array.from(arguments); var err = args.shift(); process.nextTick(function() { if (err) { reject(err); } else if (args.length === 1) { resolve(args[0]); } else { resolve(args); } }); }; }); return [promise, promiseCallback]; }; var generateName = function(rawAffixes, defaultPrefix) { var affixes = parseAffixes(rawAffixes, defaultPrefix); var now = new Date(); var name = [affixes.prefix, now.getFullYear(), now.getMonth(), now.getDate(), '-', process.pid, '-', (Math.random() * 0x100000000 + 1).toString(36), affixes.suffix].join(''); return path.join(affixes.dir || dir, name); }; var parseAffixes = function(rawAffixes, defaultPrefix) { var affixes = {prefix: null, suffix: null}; if(rawAffixes) { switch (typeof(rawAffixes)) { case 'string': affixes.prefix = rawAffixes; break; case 'object': affixes = rawAffixes; break; default: throw new Error("Unknown affix declaration: " + affixes); } } else { affixes.prefix = defaultPrefix; } return affixes; }; /* ------------------------------------------------------------------------- * Don't forget to call track() if you want file tracking and exit handlers! * ------------------------------------------------------------------------- * When any temp file or directory is created, it is added to filesToDelete * or dirsToDelete. The first time any temp file is created, a listener is * added to remove all temp files and directories at exit. */ var tracking = false; var track = function(value) { tracking = (value !== false); return module.exports; // chainable }; var exitListenerAttached = false; var filesToDelete = []; var dirsToDelete = []; function deleteFileOnExit(filePath) { if (!tracking) return false; attachExitListener(); filesToDelete.push(filePath); } function deleteDirOnExit(dirPath) { if (!tracking) return false; attachExitListener(); dirsToDelete.push(dirPath); } function attachExitListener() { if (!tracking) return false; if (!exitListenerAttached) { process.addListener('exit', function() { try { cleanupSync(); } catch(err) { console.warn("Fail to clean temporary files on exit : ", err); throw err; } }); exitListenerAttached = true; } } function cleanupFilesSync() { if (!tracking) { return false; } var count = 0; var toDelete; while ((toDelete = filesToDelete.shift()) !== undefined) { rimrafSync(toDelete, { maxBusyTries: 6 }); count++; } return count; } function cleanupFiles(callback) { var p = promisify(callback); var promise = p[0]; callback = p[1]; if (!tracking) { callback(new Error("not tracking")); return promise; } var count = 0; var left = filesToDelete.length; if (!left) { callback(null, count); return promise; } var toDelete; var rimrafCallback = function(err) { if (!left) { // Prevent processing if aborted return; } if (err) { // This shouldn't happen; pass error to callback and abort // processing callback(err); left = 0; return; } else { count++; } left--; if (!left) { callback(null, count); } }; while ((toDelete = filesToDelete.shift()) !== undefined) { rimraf(toDelete, { maxBusyTries: 6 }, rimrafCallback); } return promise; } function cleanupDirsSync() { if (!tracking) { return false; } var count = 0; var toDelete; while ((toDelete = dirsToDelete.shift()) !== undefined) { rimrafSync(toDelete, { maxBusyTries: 6 }); count++; } return count; } function cleanupDirs(callback) { var p = promisify(callback); var promise = p[0]; callback = p[1]; if (!tracking) { callback(new Error("not tracking")); return promise; } var count = 0; var left = dirsToDelete.length; if (!left) { callback(null, count); return promise; } var toDelete; var rimrafCallback = function (err) { if (!left) { // Prevent processing if aborted return; } if (err) { // rimraf handles most "normal" errors; pass the error to the // callback and abort processing callback(err, count); left = 0; return; } else { count++; } left--; if (!left) { callback(null, count); } }; while ((toDelete = dirsToDelete.shift()) !== undefined) { rimraf(toDelete, { maxBusyTries: 6 }, rimrafCallback); } return promise; } function cleanupSync() { if (!tracking) { return false; } var fileCount = cleanupFilesSync(); var dirCount = cleanupDirsSync(); return {files: fileCount, dirs: dirCount}; } function cleanup(callback) { var p = promisify(callback); var promise = p[0]; callback = p[1]; if (!tracking) { callback(new Error("not tracking")); return promise; } cleanupFiles(function(fileErr, fileCount) { if (fileErr) { callback(fileErr, {files: fileCount}); } else { cleanupDirs(function(dirErr, dirCount) { callback(dirErr, {files: fileCount, dirs: dirCount}); }); } }); return promise; } //== directories // const mkdir = (affixes, callback) => { const p = promisify(callback); const promise = p[0]; callback = p[1]; let dirPath = generateName(affixes, 'd-'); mkdirp(dirPath, 0o700, (err) => { if (!err) { deleteDirOnExit(dirPath); } callback(err, dirPath); }); return promise; } const mkdirSync = (affixes) => { let dirPath = generateName(affixes, 'd-'); mkdirp.sync(dirPath, 0o700); deleteDirOnExit(dirPath); return dirPath; } //== files // const open = (affixes, callback) => { const p = promisify(callback); const promise = p[0]; callback = p[1]; const path = generateName(affixes, 'f-'); fs.open(path, RDWR_EXCL, 0o600, (err, fd) => { if (!err) { deleteFileOnExit(path); } callback(err, { path, fd }); }); return promise; } const openSync = (affixes) => { const path = generateName(affixes, 'f-'); let fd = fs.openSync(path, RDWR_EXCL, 0o600); deleteFileOnExit(path); return { path, fd }; } const createWriteStream = (affixes) => { const path = generateName(affixes, 's-'); let stream = fs.createWriteStream(path, { flags: RDWR_EXCL, mode: 0o600 }); deleteFileOnExit(path); return stream; } //== settings // exports.dir = dir; exports.track = track; //== functions // exports.mkdir = mkdir; exports.mkdirSync = mkdirSync; exports.open = open; exports.openSync = openSync; exports.path = generateName; exports.cleanup = cleanup; exports.cleanupSync = cleanupSync; exports.createWriteStream = createWriteStream; node-temp-0.9.4/media/000077500000000000000000000000001375236753500145135ustar00rootroot00000000000000node-temp-0.9.4/media/A5.jpg000066400000000000000000003506511375236753500154740ustar00rootroot00000000000000JFIFHH@ExifMM*i8Photoshop 3.08BIM8BIM%ُ B~ s!1"AQ2aq# BR3$b0rC4S@%c5sPD&T6dt`҄p'E7eUuÅFvGVf ()*89:HIJWXYZghijwxyz ! 1A0"2Q@3#aBqR4P$Cb5S%`Drc6p&ET' ()*789:FGHIJUVWXYZdefghijstuvwxyzCC ?PիTVZj5VZMEjիVSQZjիTVZj5VZMEaMAcHSPl-X(6 V4 5Ս"aMAcHSPl-X(6EՅ5VXXQZjՅ5VXXQZjՅ5VXXQZjՅ"qXXaՅ0qXXaՅ0qXXaՅ0qX ZZ:4ujEhժaCGVV ZZ:4ujEhժjaիT#aիT#aիT#aիT#aիT#aիT#aիGVZuhjաGVZuhjաGVZuhjաGT#5գ5գ5գ5գ5գ5գ5իVZ:hjգVZ:hjգVZ:hjգV+TVSQZ::MEhhj5TVSQZ::MEhjգVZ:hjգVZ:hjգVZ:hjգ0jիGCVZjիVZt5jիV ZjիGCVZjիVZt0cjՍ V6-XڰcjՍ V6-XڰcjՍ V6-XڰcM@jՅ VXXڰjՅ VXXڰjՅ VXXڰhڵjիV6ZjՅVZacjիVXXڵjիV6ZjՅTիVZjիVZjիVZjիVZjիVZjիVZjիVZjիVZjիVZjիVZjիVZjիVZjիVZZEL4bj0ъիTTF*kVQS ZEL4bj0ъգիVZjժ*kVZjիVZjիVZjժ*kVZhDujիV ZjիCGVZjիVZ4ujիV ZjիCGVZjիVZjիVZjիVZjիVZjիVZjիVZjաաGCGCGV  Zt4t4uhjաGCGCGV  ZpjաGVZhjիVZujիVZjաGVZhjիVZ)6B*c#"Њhjȴ"82-6B*c#"Њh`p #  GB 0t #  GB 0t #  GB 0t "1ЊMELt":QSTB*j#51ЊMELt":QS֭Q ֭Q ֭Q ֭Q ֭Q ֭Q քGFj!5њhhD4f:3Q CFj!5њhhD4fZMEjիVSQZjիTVZj5VZMEjիVSQZjիTGTVZMEjժj+TVZMEjժj+TVZMEjժj+TV66ZacacjիV66ZacacjիV66ZacacjիV64 VZjիVZjիVZjիVZjիVZjիVZjիVXmZjիVZjիVZjիVZjիVZjիVZjիVZHjիVl-Zjի VZjիVZjիVl-Zjի V66mXXXZacacajՅV66mXXXZacacaMEjիVZjժ*kVZjիVZjիVZjժ*kVZj5VZEMjիVQSZjիTT֭Zj5VZEMjիVQSSQZjժ*kVZjիVZjիVZjժ*kVZjիVZEL5hh0գTTVQS Z::EL5hh0գTTj#0գ*a0գ*a0գ*a0գ*a0գ*a0գ*a0գ+TVZ:L5jգ+TVZ:L5jգ+TVZ:L5jգ+R-Z:SZ0DVT֌"գ5HhEMh-Z:SZ0DVT֌"գ0:# k0:# k0:# k0(4VQRl(4VQRl(4VQRl(4VQRl(4VQRl(4VQRl(4VVSQSQSQZMEMEMEj555TTTVSQSQSQZMEMEMEj5VZjիVZjիVZjիVZjիVZjիVZjիVCVZjիVZjիVZjիVZjիVZjիVZjիVZ:jիVZjիVZjիVZjիVZjիVZjիVZjիVZjիVZjիVZjիVZjիVZjիVZjիVZZj5VZEMjիVQSZjիTT֭Zj5VZEMjիV֨4!15 "LbMjHSZ(+T֨4!15 "LbMjH^VZ  _}t5jիWރw7z|L_0i>^\p6_ưjժ) cH-Z^o菓VZoߚ<ڵjիǓ/RE= jDE֭\`2_П'jիV8bjժ@{kqdxjիW6=&O?/T5"5óV!Oct]?2\5jI7f~{oիWAkq]OթW.='O55CM?:s7jt[+v{jL=O5jի>?իWz|KZ1_-|^hcǯ{ST+VZjs$]VSe^طq=|,qbi5j D֪6ZjիW`~j|~W`~jիW+3r}TCҽ>njx];WA+>VZjիWZjժj+VW[uj~W~+-TC_Gt|f5j;Zsc״.9~5{{kbyujիVd{PtjիVXZz{_b?W+žV)OWԘnW_ujLbKWz|QJj<>P-\5~9~Eڀztfdžv}ZjիZw/(GZj>~W{x|Q^˯gSy~[~_Wg/T|DիV^tVP5jj6s Uq׵^xW'ߙ'y^ůj˯}6e[0y~Dl(#vD|G ۷REMjy}Q\{t[]kI o'wR/iQ\z{|WVk^=ߌ>6(SZEj5TVSZEj5TVSZEj5@5j+TVZMEjժj+TVZMEjժj+TVZMEjժj+TTTVZMEjիTVZMEjիTVZMEjիTVQZj5VSQZj5VSQZj5VSQZjR;4i|C<CXBP,C<Cxa Vx!qUomZ{R hC<CUEkCԜl건vnj*(bH=o{քHSi7Vin Pv$${Gﶎ|ˇ >q`>/eMn{4Q4O svkf u~2mt.NW=cgv/7}2Э{Zrﺫ.Zr@/of~,FE;"D{oݶT۾ ķvT/{S[ҩoeMn~{[ɃGh> vŻmiliO{olҶ/csROMʴN6ݷn։n( QQoeM-*m4dTS $_su;Ĝvr;o_ (;-b4~|snwsԫ) AckN6]5e{kN6_{|Wm.UnU%VVf }Wj{߫?&'skr ƿfm{++։oJNUڕm[q[}T=)WvZuD_ڿ{~jݫܤLW)7>jݫ\h;{~j)^jݫKg4\ݫWvxH۸_j(_I ?Lyxa?5;??<ֿ?gǟxxZxx??vggnO???igM?xxiݟ7?xaO?pr?<??xatxx/?7?xaO?pr?<??xa?9|??~Oǟ????<xx__??Ǐ?_xbrxx???<xxxb7yxa?ؿ??'???ؿ?xxxc_?q/<??xaƟuxxr7i_?q/<??xaƟuxxxc__x;xxc????wxx??9?<[ǣ7rxxcGxao?xxxxoǏ??????=?W<??~/'?O?xwO?ߧǟqxaǏo8]xxxx7xa?rr?i|xx??9?9?4xx?xxO_<ǣatxxxxlz???xxO_<ǣatxxxxlz???xxO_<ǣatxxxxlz???xxO_?lO?x\xx?gox7ǟX]xxx?x????</Ǐxxx[Ɵ?xa???9<4xxco?x???Ǐ?yŏ_?<??so/r__<zx???ؿ??9?9?<x?ixxxbxx)xxxxxlǧ?o/r__<zx???ؿ??9?9?<x?xcxx??rx?7ǟxxlxxxx/???<~~GǏ??go/?q??<xxx?x?9?9x o??/Ǐxxx[_x\yx?9<_???9O/ǟǏ?xxxbz?_??=Sq/????ؿ)xxxxx_Gryx\xxcO/ǣ9?<??<xxxxxx????ؿxxx__x\z__?9x o?Oxxcq/?q~_?9<_??xx/??=??/ǏO7ǧy?<xxx?8xixcxx?/Ǐ??߯????s?ixkΟxx_G??ǟO:??=txcǏ?ߟ????z?<??x?9????y~xxx_s?Ο??x~?9x o?~txxxx_xxkǏ??߯?_??<x?8xhs????ǏGcxaO<_???7yxxO????????yxa:yxaxx???9Ǐ??yxxΟ??<xxOtxxǟ???:sǟ?<x??<xxxa???xxcxxxxxx?<xrpxxcO???y?9?8?<xxxx}<???rqxx>Ǐ?__?9?8xiG//Ǐ?x?Ǘ?o'????iǗ'????iǗ'????iǗ'????iǗ'????iǗ'????iǗ'????izxxcxx?xxǏ/ǣ?ǗO_GG/Ǧ??ؿǡxx>Ǐ?_M??<=C}<xxbz????y=Ow?ǏOw?ǏOw?ǏOw?ǏOw?ǏOw?ǏOw?~_xxx?Ǐ/ǣ<_Gxx:xǟ??ؿux???<=??xxbz?xx?+????9?xcǟǏOw?]xx:yx`xxx?+????9?xcǟǏOw?~O/ǏǏ/ǟ?<?߯ǟ??ؿߏtxx~?xxby~?yxa~O/ǏǏ/ǟ?<?߯ǟ??ؿߏtxx7??<xx'yxaǟǏO4xx??iǏ?????9???8?<<??r?qǟ??yx`xxxxxO??O_?<xtxxx?<xx?O_?<xtxxx?<xx?O_?<xtxxx?<xx?O_z~ox??7???7?8qxkxyƟ??_ǧxxx4xx\~o?=?oǯqǏ=??7?<?OiΟ??<xxxxO:xxx ?<?4xǏ???8?<Ο??<xxxxO:xxx ?<_?xa?xx<xx/xxxǟyx??Gx?<O? ????pz??xcxxxx=_??pyx\?ǟ??8?<]?<????py~?y?8?<xxx=txx`pyxazxxxxxǟǟ?O?>C㏡xxq??8Exxǿ{?<xxǿuxxǿ{?<xxǿtx ??< ??< ??< ??< ??< ??<?<uxx?8xx_;??<uxx?=txxxx_?<?9?<xyxa?_OI2?Oy}̟&d4s'9'7cf "an8[d4s'?ǟM'<i>OI2?O?I3*&zxxxx.> ,F6ǡ2w<i>OI2?OIpiʣ?q7xxd'!cD1?|HP̟&d4s'R Hs?=?oǏ=|&&#y}̟&d4s'?y0:et?]=D,i¿?|M ?/Oxxxxxxxxxy??x=?A?$t7$9ćg7QUÿᡷz7?$xxC77U?Gdž}#ӖxDa/_͚l?'qs1xk/gq_$IAxߏ$91p7 pG87 oF 9s!f&Ue)J\Dȟ̓g翡%`1?CɋrXWůYh f,np˶{pߋutkN/. ؇Ɋp]G dDN3ov3?8?9xxxc?8=5?<)ϨLdh@rM1Eo%,x(+puG,= dȋaG-_K!a?:yxa~j{>7$/-σg ~j{>7$o-`0h_w'O/xaw2ye)`#Jpxx/ΘK4Flϊ dǍ1g~(B2X$?ϮLR1Wqȉ7q;7zZs7kKFw<ה{>ptz,&a,ݴ\Lr"zߜp#?4j؉_@M>O'_r,Gh?/:~?F?vxr<NS?#a3o>ޯ'q@y?cOYQdh4h_ǿ'Tݾ#nz,E`}F\#_%be(>7(<'̀>?E1(e@OL0sfnv|oOӞSsvq9YJ?)ρ}ݐccI%$4/[gpH2>$2&R2>dI?&&go.'ƿ rMDŵgo.'js0Ɵ/fc i^{ y<8180pK?ؿ# wW?_朌IӞÀ&h9cv'Ne1?٘PG,KH !~_=oW/X#3vtP>;#uuT>-LWGZ09Ox!Hh<$Iddb}ߜߒ'_Η\/!:?c-ZѸ4ޣdŷ_veѯ4k># JR=Ur>_S?| #IPVz|?Yt}t)H]}W߾_]}W߾_]}W߾_|3c)Fq1z]Ã\.Hu} z/`GS6|qlŶ9B9ø ăW[LzY0͔28`J34jA]}Wuā>\ɀRCK?_T?z)t]TaNR81R&BdCU~=wA_0CU~znYYz|آzivLSoj/kӇa'Gxqd)g"| ?|ş>LrP}s&D__.$x1\#"905f&N?lPQ R/G#~Q?I8wK9Kc?Lxxcu{??<?gǏ:xx[xx=??ؿww~O???g]?xxk??_Ο?xckzx0?o????_Ο?xckzx0?o????_Ο?xckzx0?o????_ǟǏ?4xZxxxxƟO_????zzxykg_Oy?-yx\xxcO'?=?=?߯:yy???ؿ?Wys??<??_???9Ο/x_xxO??_~/xӟ_/ǧO?9???8??>ry=?zxxcxa9Oϧ?_O??r?p~/}9xxxzxxys/ǗǏ??N?9<i??y??y??y??y??y??y?gǫǣxxbzxxbz??ؿz???ؿǏ/ǮǏ/ǫǣxxbzxxbz??ؿ?9?<7ǟ//'G?yx\rrr??9?<7ǟ//'G?yx\rrr??9?<7ǟ//'G?yx\rrr??9?<7_'?_xbxxx?xx;xx%QO?nO{#aywzC-Sj;:5:DHKX_?,<}?xa?9c-cxy=|xxpww?Ο?/xxx7ɏ%xx/-sxxK`?6?1_[`?6?1 l~a?6?1xxx?$W{tQ_P''''''GOe j*X dO~~i?WȿV?pK  ?_` xdg'?HqyUa:>'/]?RP|p=Q?xqAJjY(Ɵi=4TDIK11cb/\J>Y~ȌqZҟ0 vV~ªr\ЏkVؿWU~Ȉ5֜i_rƳ腥GjO_6b xqG .D*$gʿrYG ^oT@_j))ۧh ?\c I*('5_.P.8H3~Sbw"/֑O}S_(⤚u$~ O+eZBSxW E^D/JSQ?-_ R0ĩ#+$W{ ߊwvR4)4P***<$L˖S\?NN+5~+WS'ˮOO˅'>+=O/LT*GI?9?䖕DrBc F(4>c)J#,'0HOT?4F>GyCE{N`_GO@ʔjxZjc?f%J?~ O+BqB~W|iD2~֢үH?fg=8@k<,*s'?RPOf"OC~}:Ҥ+@@}ɾBG׼__jۣد !??h>rIkR5v)⣢Ghu+^Ԩrv>Gd+a+4M=SBƿ|=G(bQYi? ?W{tcJA?'aR8miON.?*%i{'x퇗/?F?d #B^_WQüOE] }3oJ6hOJu6?}mOfmOfmOfRTPhքiU%qiMT2"e6h3oJ6h䦈92iUG5~%3$fBȏ0mN*꫒S_MJT@(k:?4SsG%?4S@hW=&*4Mhtױ\D`D$dTM|W3oJ6h3oJq"9c JDWi}Π >ʓ P+Sϱ*o_&U(OZ 4GY73 !1AQaq 0@P`p?!?_~?o?>?W2y~w_ϻ~?̿ߟ}~e??W3/?_7w~98?9???_~~/e;_8?9???_~~/?W2y~?/?_7o?W2y~?/?_7o?W2y~?/?_7o?W2r?qo_~~2s~|?̿}/e;_87/??_?Wyw_7yw_7yw_7yw_7yw_7yw_7O?̿}/e;_87/??_?9??>?_w?qo_~~?W2??/s~ko?W2??/s~ko?W2??/s~ko?W2???_??~~2}/e??9??>?_s~|0?87/a~??9?_5w_73_?s_w??e??W?9?_5w_73_?O/a~?qC0?8!_s~|/e??9??>?2}??~~?9?_5w_73_?s_w??e??W?9?_5w_73_?|/e???̿~_|/e???̿~_|/e???̿~_~/g?̿9og?̿9og?̿9og?̿9og?̿9og?̿9og?̿e?~?>?2_?W_/a~e?~?>?2_?W_/a~e?~?>?2_?W_/a~e?~?3?9?_5?W?9og???s~k8?~s_?_?W_/a~e?~?>?2_?W_/a~e?~?>?2_?W_/a~e?~?>?2_?W_?s~k8?~s_????q~_73?9?_5?W?g??~e????̿_?O0?w3}w??W2Ͽ??_~/'_>?e??;?̿;~O79?_8?ww??2?_?'q~|w??;ϟwwoGo76?9?W6__?Ϳ2?om??Ϳ9?Wos~m?̿oe?w??q~W2?̿3/g?_??q~W2?̿3?̿7?̿7?̿7o?̿9?̿9?̿9?̿99?_??o?̿???y~e?a~s~Ow?/s~ߟ7_?92埯??e9?_~?s~σ?,??8?/Y>q3_|8?w/g?̿?g??0?9?'?~e?0?9?'?~e?0?9?'?~e?0?9?'?~e?0?9?'?~e?0?9?'?~e?0?9?'8?q3_/_~~?e9????8?q3_/_~~/?W2y~?/?_7o?W2y~?/?_7o?W2y~?/?_7o?W2r?qo_~~2s~|?̿}/e;_87/??_?W3_q~_73_q~_73_q~_73_q~_73_q~_73_q~_73_?W??8!_|/e????~?>?2?_?̿z~_=_?W_?s~k8?~s_????q~_73?9?_5?W?s~~/a~s~~/a~s~~/a~s~~/a~s~~/a~s~~/a~s~~??_/q~_79?W|?_??9?W??_/q~_79?W|?_??8!??W2?8!??W2?8!??W2?8!??W2?8!??W2?8!??W2?W9?E;~s8?~79?E;~s8?~79?E;~s8?~79?E;~s8?~79?E;~s8?~79?E;~s8?~79?E;~s?W9?_?O0?w?W9?_?O0?w?W9?_?O0?w?W9?_?O0?w?W9?_?O0?w?W9?_?O0?w?W9?_?_/ߏ?/ߏ?/ߏ?/ߏ?/ߏ?/ߏ?/ߏ9?_?~/a~e??'_~w??W2_}?̿9?_?~/a~e??'_~u w7/q~_o/ߏ?_z~>??? 9?W?u w7/q~_o/ߏ?_z~>_}?̿9?_?~/a~e??'_~w??W2_}?̿9?_?~/a~e??/ߏ?~7\o_ϟ?W?u w7/qg:;~s83??? 9ο}???_z~>_}?̿9?_?~/a~e??'_~w??W2_}?̿9?_?~/a~e????qx/?~_z8?~ru?8o~?w??qx/?~_z8?~w_~g??/e??W8?~8%?9?W}_____~g??/e??W8?~8%?9?W??_2?_2?_2?_2?_2?_2?os~W??ϛos~W??ϛos~W??ϛos~W??ϛos~W??ϛos~W??ϛos~W79?%??7;_w9?%??7;_w9?%??7;_w9?%??7;_w9?%??7;_w9?%??7;_w9?%??79?__36?8?w372}_ϯ|??ϛos~>g/m?q~}_w8?w?q??q~???;w8~?8?wq~771dɏ>?RJ*W+,GuTRJq(Evos~ I>%~TE  R.??#9)RJ~>'i=}^)c `e??8._?X~8?~Jc1/wbG0Ajʿ)mwl <`o?uus'# 7B] l????q?~>M 8q~Û a@R%|vt揌_pRlx{W(,=,r O>ۃ="YB*:7?*edž:˻tӌL% nAs${2???vLɞg}WKdoL僿8$eD5>?3o78?w8???oo)|'~_8?3I~rYSL2_?j5Ck$Q' D=}G/ _'?YVNxuNr ue*L qE A/Fs~#:}Ns`j*{wq/O+qEH>K깰%~?ob_$cA;I}77~,odF(z5_:!?WO;aO/we7$H$& : rx%O=: f>>-'O|D~?P?g̝?l=]G6?HV??7"\Hf)9R] C'|#yomD^5_Hc?sMGNer}?u;&Wrcϰ%ϑ_mHyɺj$诵gKϋ ?k?v/o#T-j$iB,&co5_)?0_|#'ߒJG@0? ҁ=b}>S t$6{Ŀ3xQxON<7npEg$X;uBRןߪ"&l21\7 .fJLO9YfJ^ q13?̦.>__?9|WwA]_?;}8!90??̿e?>?oe??/qCs/a~~|__?_?_7_?_?_7_?_?_7_?_?_7_?_?_7_?_?_7_???k~/g9?_?e??8??̿5?_32?_s~ A$A$A$A$A$A$A{{{{{{{O O O O O O OOOOOOOO0000000K=k=k=k=k=k=k=------eeeeeeehhhhhhhhhhhhh------{{{{{{{Ecccccc>&^~&^~&^~&^~&^~&^~$!g7!g7!g7!g7!g7!g7 ((((((hBhBhBhBhBhBh$$$$$$," " " " " " "6`6`6`6`6`6`7RBBBBBBB NNNNNNNASASASASASASA m6m6m6m6m6m6m"-"-"-"-"-"-"4H4H4H4H4H4H42B2B2B2B2B2B0 2 2 2 2 2 2 $ $ $ $ $ $``````` HHHHHHH b[ b[ b[ b[ b[ b[ fhhhhhh`LLLLLLӭ7˭7˭7˭7˭7˭7˭#-4-4-4-4-4-4-iiiiii$H$H$H$H$H$H$A"A"A"A"A"A"E        %{%{%{%{%{%{%PN0CC@Y4PF %I$8(,$0dd$Q$IO&9I$0$AOd" ddt e@mdILh[ @K&K )@ i i%k9 oIeI% % % % % / H$H$H$H$H$H$H A$A$A$A$A$A$H3 !1AQa q𑁡0@P`p?\iso>y}ll~O7?O,]٩~Ê~~<~~|'זqv~_~_q ?Z~\O~?G_[??>_8?_?F?ju~_kp⅟?_m??sG~ݟ5:__~qB֟6_矏ϟ9?Ouя_?\8gO/ggx}yg:gN}PͿu<|~>~fwㇿO=>~w_#qşN'';_oŏΟ{)s}}G?>׿a'OOw??#S?\R?|矖_}㏟O{c;3=_~G}??:~|?,ӎ,G?^E蟯w?g>8{h}N~,~ts?KWu?~YY>~?_O,|p~X翾=??<N8|{~[YDs?9|{.~S|~ߤ' /ӓOoQ}?7~_?՟?wClߞ?߫ɹ<:7v{ >O~~x'ϟqng^MͿCѸ۴uu ?|?o~_n|ugw?7nm+΍~ݣ? GHO_'>|w&~n3?۾&<}Wso?y_tn>?q<@B|"9?Oۼ3w?gYy46;9qh??~( ?/ɡ~oo?WG\|@=~?P'ȿ?NO<}GLg|GVq1qNd~'ߜsͳG痧cy<|Տu/sg?Pwt }Oӎqw=}\wӟ?>࿜~y|l^xcqp|o?c8?y{w9]|>tA_fG'Ͼ8/;ߞ~_?>~yzz&?W9#X\n\r76s^WB?O8G|s}9~s 7矗6ϻ^H?V?#>;s͜C痷sЁ>N:yqNd~'ߜsͳG痧cy<|Տu/sg?Pwt }Oӎqw=}\wӟ?>࿜~y|l^xcqp|o?c8?y{w9]|>tA_fG'Ͼ8/;ߞ~_?>~yzz&?W9'_u<|?|oӓx'ϟW6G连?ߪ O΍: ;翑}צ{ϓ~~~?o~_n|ugn?EPMͿOߕ~tn>O==@0|>|w&~n3?p}m /nm~q?cyu3ߟ'߿Oۼ3w?gYۇhl<}Tso?~|ux|w#>L'&9>'~( ?/~?Cd~;9+}O;{{za>7<}GLg|GV+n#_o_F~D =gɿ?NOI?/xg>~:O7;㞾.;̋㏮Nљ~nwٿ<9o3 &B 4,>>/3.~9~qw=}\wӟ]ߣ2~y|s`ߌ?gMɝ>hX| k}yN_f\Csqtz?2/׎>9Fef<?DϬ4 ;|/аsx̹(:?ӟsqNd_}ws~sy̓~3~Xi4:&w_a/寱9~sQgu?ӏ#9㾜ȿ^8}g=?>ht/LB__cr2<ϨN8G|s}9~q3/7矗6 z&~}a_OX돓o46??~o^=~DϿz >Q~\|V/3~-zǞG }^~}{i;w>z:. =韛>ym?׾w<|?3޿?CO?o}'՟phl%L߹o^{881;翑}צ~}'|?N_ˇv#Cc/sgϞ[?==@0 Oӫ9wۭ~^?߿\̹}<~o1;7__cr2߾~?!N?puO'י~;?\~y|7?zf?~uzyfwvX| k}yN_f[yGp?ӟsnz/O~s{2o?/gLNO -})7~(;s?]8q;?/\^e߮|f\ss`ߌ?7Ia/寱9~o?wuN8G|}ߧ̿]?˟wٿ<l=3Xi:=<@;,>>/3-<t[r}y~s7矗y̓~3߇c '_Gvoeהe|C9w8~O2tw?3.~fO9o~aE^>}~| ~v3N?:07_<OY|_h믩ˈ?7?~H%L߹o^{ ^>}~| ~v3N?:07_<OY|_h믩ˈ?7?~H%L߹o^{ ^>}~| ~v3N?:07_<OY|_h믩ˈ?7?~H%L߹o^{ ^>}~| ~v3N?:_?~;?/\^es}wgLNO ~J}߾/wo_?9wٿ?yo~awߞMysG|}ߧ̿~3.s~7`ߌ?7I~_;Ͽ=<#_眎uO'יo|f\yfo~o1}x߾~WX~A}_~'\}L7."}>9Oߏxߔ _:>gwXwp~~,??}l8 ^>}~|}o'߷Po:>tq߷p?o>l?M˅ |?ȟOsyaS;aŧ?g,>;w;|>O~?ao}~\)D}s-?A?g׏_;)[uu2}Ϯ{H'\X~qi >}N?+Onu}>㯿n.>ߦ}wu~~_ @>GwËOY|~nR9x>~]̿~3$;~o?? 383zy3>~քo?1&_:4} tߔ^e'{}_oߘ>Wcɟq Q78~1Oۧ^z/}8߯~¸ L߸u I|Ρ>G|7>xbM俟u i>#)'޼}G{2N9s߿0}3?>_ө>>>jC='|O8۸l?c_]c>>&}|R?þ\}_ﻆ9o|sB>>jC='|O8۸l?c_]c>>&}|R?þ\}_ﻆ9o|sB>>jC='|O8۸l?c_]c>>&}|R?þ\}_ﻆ9o|sB>>jC='|O8۸l?c_]c_{͝]~_<̧y?c]En]\v9~pL_kOuCO?MϷO)wu~cC2O'OwXsG|7><\u μ}?ד8NW?Uqa޿Voc?߼1&T~_?d4} t}q_84>:)^Oz;_:tWyŇ?zcg[_|~ĚS||'s]]~_<̧y?c]En]\v9~pL_kOuCO?MϷO)wu~cC2O'OwXsG|7><\u μ}?ד8NW?Uqa޿V_$gx~߽~su7]lL>!>W+ &W}0$gx~߽~su7]lL>!>W+ &W}0$gx~߽~su7]lL>!>W+ &W}0$gx~߽~su7]lL>!>W+ &W}0$gx~߽~su7]lL>!>W+ &W}0$gx~߽~su7]lL>!>W+ &W}0$gx~߽~su7]nl9뎺ߧμ}?ד8ߞ߿_|5w~13h[39~7:И?,?/׎~u|??.~o<̧y?c8Y{3?,3>>cs rx']cS9뎺ߧμ}?ד8ߞ߿_|5w~13h[39~7:И?,?/׎~u|??.~o<̧y?c8Y{3?,3>>cs rx']cS9뎺ߧμ}?ד8ߞ߿_|5w~13h[39~7:И?,?/׎~u|??.~o<̧y?c8Y{3?,3>>cs rx']cS9뎺ߧμ}?ד8ߞ߿_|5w~13h[~]|IRso7 ~y~۝G>}}<}pԜ8u}vQ\;n8_;oߏslO}5'?w?cp|G]~sW???763?'%}Wl47?\';gw I1_nuýͿp|n> &<`IRso7 ~y~۝G>}}<}pԜ8u}vQ\;n8_;oߏslO}5'?w?cp|G]~sV{=qi'Uاy?c_|wnjoo@?_yaGfѺ|~z?=33!\~Z|?uv)^OG}w?;w~13h[X~oٯytn?->_'q#;??-S?ۿ,?7׼:7__Gsb}]]}?ד8{gxd?vk|||d9O1>⮮>_|Nc>>s2qWWbO/wc}Y{3?s{8۟:lu}vQ_?n>}wiOo 7n~~y~۝G>`$ߪ|fO?糍_nus/=nqƟ˟V逓~~}?6[|G]~sW<_o}.~[M?9ds{8۟:lu}vQ_?n>}wiOo 7n~~y~۝G>`$ߪ|fO?糍_nu5O7WcLw?w~_27;5|?5O7WcLw?w~_27;5|?5O7WcLw?w~_27;5|?5O7WcLw?w~_27;5|?5O7WcLw?w~_27;5|?5O7WcLw?w~_27;5|?5O7WcLw?wqo믉?q?w|Q_C_?t}>~8,\~83~~}?6|?<|w'?}n??'۟q~{t|?~借˟_?GoϾ3'W۟OG}~GOs8n?/<s+(?9ds{8۟_c?ܟ>\}?n~ }.~E|EU?>̟_ngs{>_Ouu>;?G۟Ͽへ=:>|O诟裃7n~'~ξ|r#ߧss|p7GX pfW2}=m}?1~yO~n~/_~q5wV9__8go?=?#LϿ ~q?n_g~^Y>s}O}]Վ~gnćv}x_&?w??C/yfOjsS;u$?;_\q7ۿ ז~{y{Ϝ7_S?gs2~GsWucۯ!]?㉿~>|??/?m?8/}M3H7~埞^^? ̟iX~wHWgwO~qoϋ3.~'~O?/W:+?FO?4}.~E|Et~'˟_c|3ο/|ѽ~O5˟_?G+~:]{32|s??G~_towM`'WQ_G̹/:-??_]??xX pb{3.~'~O?/W:+?FO?4}.~E|Et~'˟_c|3ο/|ѽ~O5˟_?G+~:]{32|s??G~[\ߑiX?Q\~Gq~NwO~z?^_~o`Oj\}xר׮?#~xYO;y?=/?w_S?g'~q5wV?o>Ok@r_|l }]Տ:O~ok?7wx o|}9g|?O>\}׏zz?75ߏs7}>w>su?{~_~GsWuc|~>Fq}ƚ׹pف?[i??tq6|ѽ~O5/:x~{?uɏ~~s8w?y?'ƚ_a1_~_Gsn]??xX~?ӧ</߰_~ GίO?/ˣﹷ}s?.u?4>Ϗ埿ϳٜs'9~a%;g>Fq:?|?n qgvg|wls͓|\W?Ӓ3n~ϣ~8c> 7ϸ3g3>;g?9}w>~N~_yX}wuFϿgѿuαg|ݙs?3|sd??/<>O|ۣsg߳ߎ:XCM?Y9~O>}_]9}ӟV_r]~fmѹosc?s~_}>ÛܟwCg{7_Ӛ_Y?F$\hnO'~}@_}8.??ts?Oщ9iyz/?+:g۽9~{߄?P?W}_~-;G~Ka98u>ObN~~^^Ɗξa~tor}ߞ߳?ߟX}NjN>g~g0?חrq_}>ÛܟwCg{7_Ӛ_Y?F$\hnO'~}@_}8.??ts?Oщ9iyz/?+:g۽9~{߄?P?W}_~-;G~Kg;|9vӞ~xVzώ>rsデcm?mRO<gk=so=vs?ݸo]9nY~wpps\}~͵C~p/jXǟMgxNyg}[M>8|3~돷9(~p~}?3 K>iۏ?Lϫvtqfsqqñq6϶ac'5㿷Þqw`}9׏n}77,w??88v9߮>?|??85,ۏcqۏӟ|>?q?W_?g8?{>qLy4zz݁矦^?ջq޺s㏇8ܳ988o׸st ~]|?c:Vs;>9N~7.~=/ۮxfA;|wo￷\Po_s:iwus~s0s|}V??\:~os_7G՜_O{0?'?Ӯ˟g>?:>~uά'w|_\>v?enՏ?Nߛ\?ug?W?rgaϏv?.uά?~:u?.os9~`~N]??_?ϗ<3|?;GwۮucӨ79u_|YOx?Ou3_?O??~ rolg~w/g_?\~:߯?v?t?y?ç|{|?OO__?O:~Ǽϼo?__Nro\|>/~ϻϜo?__Nro\|>/~ϻϜo?__Nro\|>/~ϻϜo?__N/oN wug׏ݿuq}lj\ͧ|_>ϯ?sqz?O}8'՟^?%_v矟s_6pOӫ>~K??gWm?O7oV}x}]_~G_K֯|~o?__N/?/8'?{u9׻??~~Oqv?t~|99ӂw~?m??~̳_o~y}.~r֯տo~ooN g?CfY߯ݴ?ˮ>ݷ˧t~|:>7KO??uӯ/9 ?nNv߷.?u?G8߯C9/?_s~xgOuN|&?:?ɹ:_~xG~}8俔}?_:opS &wmoow]~_/pN?o8S?GO]t?qnO>ݷ˧t~|:>7KO??uӯ/9 ?nNv߷.?u?G8߯C9/?_s~xgOuN|&?:?ɹ:_~xG~}8>o~ɿ̳i__to}?_m}{ӂ~۬?FQU:F߷w߷~g?O}8#7?Y~?cu΍oYͿoϿ~pGon,o\q}~~㯟>~3iƥ~^??uӯ/9e9~c3?lg򟯹}xgOuN|#_9~:ύݳ?Ao>j_~?_:op9f\|__ox3>7?v}7q)׆O]t?q:~~q}~~㯟>~3iƥ~^??uӯ/9e9~c3?lg򟯹}xgOuN|#_9~:ύݳ?Ao>jy?~mg>{7eOsaoYk~퟿w}y}wߟ~?cu΍gufu~{7eOsaoYk~퟿w}y}wߟ~?cu΍gufu~_Ϣ/~㯟Ϧ~߷ӣOݟO>[?wg?˄~8L)q2p~yw~:g}:4=߬/}vs~xN>_Ϣ/~㯟Ϧ~߷ӣOݟO>[?wg?˄~8L)q2p~yw~:g}:4=߬/}vs~xN>_Ϣ/~㯟Ϧ~߷ӣOݟO>[?wg?˄~8L)q2p~yw~:g}:4=߬~>>ys~_=}7}>>Շguf}_w8C>gr?r~|efM?g|~_OuaoYsϦ~?n܏真??Ygٿ?pO?nX}w[Vg{n3ۮ7#>~'Y|o?Sw?ۯV]qՙ}ۿ8 g~>>ys~_=}7}>>Շguf}_w8C>gr?r~|efM?g|~_OuaoYsϦ~?n܏真??Ygٿ?pO?]|O?.7?/ѧO1O?ۣ6~?4n~_r~ug s'{xSd3{st8g~O蟱uh/]p?7 E?w.&O?.7?/ѧO1O?ۣ6~?4n~_r~ug s'{xSd3{st8g~O蟱uh/]p?7 E?w.&O?.7?/ѧO1O?ۣ6~?4n~_r~ug s'{xSd3{st8g~O蟱uh/]p?7 E?w.&O?.7?/ѧO1O?ۣ6~?4m~[9?~??egG8ﯧ|~_7߮>w!}>G:qr?r~|eװ~~;ŏq_Onn]~9gf}_w8C|t?Gߏ<˿`ɟw㾾>|?~smp~>>ys^/?<?7?_W}}>3}~w }ۿ8>?Ӌ|}~?\.>_&~y,~o~|gup_83q|?#>~']}{LX}_Ϗ޾7㟏p6g{n?/N.G}sO|x/~Dow~_N;~c_ӯ5g8Թ8~8n_o?~6{2g}~?~̟]?|io9uL}7?g ?ߓoc_|fLۙ߹~:x?=NnfO?ˮf~4?}:]&~>K3sso7߾3&}}~uF^㋐}>/?_N}~K`ɟwsχu>n>_GM: ?>?Bi?7\|t?]}{L[~?/|?ۯqz?iyO'ןOӦ~>_??egq}>3O}N?ϷК}>> }_~3~^/?<|}޾us@~}Ƅ n83韾O|x?_}~_O_~?tӫ4&cO?q>oL}߿װ~~;Źg?w3'~{:=~zve;LPSh&׸nuzB#;Xʪʫʯk鿗G|;ο?}3gt? w"j5)~6@GwJl?>HOׯ۷,OӦˣ߾{}{_sϐ?Ͽ|b]}~zԞ~|y(2I}Ryӡ:7\-R}SW_@‰@?OkT#ƏH=/=,8~4$'uE$LY?_ ^~T㷜o@EA'__z࿔qo9g<"i:P<}@9n$Q ?a_?K6P3]nߟ>`$}_ƾ7~]|dϐ?Ͽ|b]}~zSuOӖ~~,roI D1X9l;:y F tWrSss__^?G'~1'}""^W =ڹWvp?@?g~wbz?@[#zD@1ak[9\Ͽu~>3~,ro>?J)=3}y?8%DMqs_us=T 5swңzˇ@o\8*/,Z <i^F?|>!\%ɉag E{U~Ϥ'?Tw^vV_iq;r~rl~ϊ^9UMc6<<9- ]}8ߦzq~/8;H%} ܏yU}uYO#7(0}&gG=_ᅢ'?_ީ~E[X>^}] yk9~ x?sq?}~*|Ǧ ` e|L1٧Ch$?S~~1.xCm?GJ". Q篟U6r~q3w2 NOqW~߃`_P,Cs1K7D)/湣p|?b_O}9\*}sSsG=.-}n!p#\ r/?|ߟx ??a@x_ ya U\Us>Wwۃ0}8?~wksS>r>]طKŻо:s? sAyYU`Ao@'8G3?snV_`?}' o@}?l;%vWf$'xグ3@rB|0?0@g+]o/|t "<;%Iԩn?༸n}߬_U߿`tsU|_@. j~e~~'<=<Oq08 _| _0 X*dyPs@ @'38qR>r~ ̅ OusϹִ77r᚛""=,0IBW ߿S#}ot?]gq{[~~/oN [tkOAmgq{[~~/oN [tkOAmgq{[~~/oN [tkOAmgq{[~~/oN [tkOAmgq{[~~/oN [tkOAmgq{[~~/oN [tkOAmgq{[~~/oN ۯmzooi뎾u}߶~[oyumA~ۯmzooi뎾u}߶~[oyumA~ۯmzooi뎾u}߶~[oyumA~ۯmzooi뎾u}߶~[oyumA~ۯmzooi뎾u}߶~[oyumA~ۯmzooi뎾u}߶~[oyumA~ۯmzooi뎾u}G㎹>݋us/'p|oq'u/￑4qB?}O˃˟>]Xq=qg۱~ιw}>?n7?=dN8o9>(]vpqs?G˿Zk:?v/=Oׇ\FǾ2_c-?G ?.3.~wMa\n:ߗ>[7߸W~xC:p志8u?>e.i8랸3ؿg\;}>^o?q~߲]}\CG.8̹ߣ߭5s}~_Om_#~_O믱Ë_ß#h`?w|zϷbs}x~-o+?<{!/箿r_7_cF:?g ]?>=Bow>~oߦ|si_o0m[|z09?8o09 aW}V0S\O8~هo+'Wcсι~yOϧi]g}::>}8~_y:7=nƌu~?~~};N{>|{>ŧտL?!8F迮>߶a?p4`s>>pa3s!x->_Naι:6Epq6߹WNs߮NӞ!?^ϷiGuo?u}9Ѵ/냏qu~o>{=}Ϗ7~t v}0}O>Ө?__?ܷ鿿8ۮ.6-iL_k/_qc|rMq?n[Z|_{o4o鿦??믵1O>9&87-oN->x˽ͷK~??~~O7<~uM?oon??IN?~ӋO?wsma_ߦ7u?$ߧMoŧuwoOcs[~[ooӏ~r|?i_4?~ ?O _߮>|?/->ߧߡw/[?m1|տCƿ돁KwËOGdsVO_? o?|uo~{w_~>?yտS}[7|k_~l}l8~ϻ~fA|?/->ߧߡw/[?m1|տCƿ돁KwËOGdsVO_? o?|uo~{w_~>>~9Ϸwg}|<YۈT};n\'3~wϫ/Wvq~ٯ߳n݇ }*~>.^;͗G+8om\`IO?|sA_?F}>G?ANۿ ߯s~nݜ}70$|_kz>?o/ۣwaz>q ϧm˄o׎9|}seQ?J>?_S>~5u=s?}v|?ѻuOO|Ӷs7~p_ۥwgM )?W:ϟ}?>y޺ϧB>sw9㿿N}_8~_\~һ~O\>gݟtnS:d9q~م+gqGw]<Spe>w_;~_:76rs:O<}NY?~wap~J\qux7WOOsx_~F͜N~>SO㟇\>p}}~:~U9S~^?/|c}ߑ~g'=qӨߩ|}OyfGG_w߯t}Ny?׏9~X~_wh߻\t7}>S:d9q~م+gqGw]<Spe>w_;~_:76rs:O<}NY?~wap~J\qux7WOOsx_~F͜N~>SO㟇\>p|8n[7'{WBo=o߻~G?? ?oܝ\=\ >?'~g3~.87arw=pq't}P>F?_os߸~;O?B?sq7'{WBo=o߻~G?? ?oܝ\=\ >?'~g3~.87arw=pq'5~~ZFw}_/ͿC?-?ۣO﻾}?_~ߡѧxq}m~ǟ/voO~~?_gtiw?\~_[_￟qݯ|34?_}mi}_4?7_7_柧|i_o~go~g?O<|wm1~Ϳ^?cw?o.[7#<|wm1~Ϳ^?cw?o.[7#<|wm1~Ϳ^?cw?o.[7#<|wm1~Ϳ^?cw?o.[7#<|wm1~Ϳ^?cw?o.[7#<|wm1~Ϳ^?cw?o.[7#<|wm1~ͯv&o?gxcN8> ~~O?~yr$ߞqkxt#=ޟK?W| ;1<ΦS?'}˘{>3~{qů~c_pt~GW3 #zd;/`_ao|vp74:O'.bN=OgOm?^0޸>/9~ɽӾN>O߼k?w|8}>7ZG;>=H'~{0?,_zwfC>v&o?gxcN8> ~~O?~yr$ߞqkxt#=ޟK?W| ;1<ΦS?'}˘{>3~{qů~c_pt~GW3 #zd;/`_ao|vp74:O'.bN=O:oԸ>_ᛟ){46s돷?6n|!~ݣ8G^^?qC~~m<\Oߟqv8{z@yLjt}\/tGGwtpϔ|=9o7Tn>?n#|}߯H8!??NKH.n/Cg?w޸|sm?~~W:u?!?$;ߩp}17>Shlo?mQCG_ߜp~ .?:y#8g?Wpۿ>Z{]/?.?4͸oy~w飳~ۿC~\tuΨt|n/fEkswؿ}^x䟳|hߡq691ۿ>Z{]/?.?4͸oy~w飳~ۿC~\tuΨt|n/fEkswؿM]owOoןߚ~~i_oO~[?/w柮?_~Ǜ߫/ovy}]柧7u?ݿ^!_~j~w]?=?tqu|}GO)ko~u߻Cz}ۿ8?#?Wu/Ow_GtO>?ߟ_]}>ws3ߍ>ێu~j~w]?=?tqu|}GO)ko~u߻Cz}ۿ8?#?Wu/Ow_GtO>?ߟ_]}>ws3ߍ>ێu~j~w]?=?tqu|}GO)ko~u߻Cz}ۿ8?#?Wu/Ow_GtO>?ߟ_]}>ws3ߍ>ێu~j~w]?=?tqu|}GO)k|x)|;b;oˏ3&~O^IKs;_[8K~9蚼O<]}͔>}7N?'O/C%}~|/܌o냭`%sM^at'tg|G~~؁q ɟ痡cy>N>nF}7r0߹~{&0:}yC_se>O?l@g}MqSd1nt_| 7#>z{9~ o?G=Wa }<ﹲ?ߧÿ߶ \}32gt^x:Ӿ~Mpus0|}NnP|}_O.>w~\}3|t:L~>B~_oO(y>>zlwL.>p̙>:~yz&?W9-ןԟ>醖7MQߏ>pO?u}Nxϫw(;V꿗?ZiG?1~?pb>>[7'ߝF~>v:8?p?9{>lL}[\ekMy}xioޜ~u}q\环7}93~>yn~sƘ 4~s'OaM?zr}oc]pS:w3|?չV`$_G>醖7MQߏ>pO?u}Nxϫw(;V꿗?ZiG?1~?pb>>[7'ߝF~>v:8?p?9{>lL}[\ekMy}xioޜ~u}q\玭ͷƟ?,կ??Fd|}?uk~l~|o\?w|k|N?3]2u>]>:?o6?~7~|>Y|5>N~in}_љ:.OZs_?O]},{_?vӏ~ſL4q7yg>/̝}~~O~έ~㍏߯럧._>Os=~~Oӻobߦ~_뿗fN?'˿GgV\?߯]?\~__ǿ\~~?~q}si=g{ͧO>r~OpNɿ?pO? ۫_Ϯߣ6;{|@3?#Gߏ[o 7}3.;a~uk}q}_~/c~~~~O:ys?;&?e?g|/n>~?8ۯso?oߜ\~?O9nvS'8'Oߟ̸~Sկou| M?-o>no S?s~qr??}S3Z|o'~w;~8~>}zq7}O=O۾Vu~?~|p},޴qq}i~Q:8>S3Z|o'~w;~8~>}zq7}O=O۾Vu~?~|p},޴qq}i~Q:8>S3Z|o'~w;~8~>}zq7}O=O۾Vu~?~|p},޴qq}i~Q:8>S3Z|o'o>/Ӧ)=[|muwO??Ns4:?~W|}~~}V4_i]~]m>?ӯ\rU_,:boտM?|_{wct?ӯ\rU_,:boտM?|_{o8?s?M|ӯg_G_|onS۟~~_?߇?|8#f_8?s?M|ӯg_G_|onS۟~~_?߇?|8#f_8?s?M|ӯg_G_|onS۟~~_?߇?|8#f_8?s?M|ӯg_G_|onS۟~~_?߇?|8#f_8?s?M|ӯg_G_|onS۟~~_?߇?|8#f_8?s?M|ӯg_G_|onS۟~~_?߇?|8#f_8?s?M|ӯg_G_|ocOu7>Q"?>}>p]N?.?_οNo>>>|?GSg}L̵.??,3}{o>>>| E>}~}Mx>~]&?93~>?ߠ||}~:Ӟk~\~GߞX'gtߐ||| G@|Dv};_u=M324_;?/>ۧg?\S'׎ zg C9mۏq}9iw~_|?ۯOmϔ~OgӾˤ6sӧ}!@I~?OӞ~&`KOU󼣮>ϟq9/|уqg_sW]|ܵ?}Q}Tn>?j~_[g~/=^L(돾0 |ts~_? 㳎 8k!}|DY_ӟW_?gsnF_||_/O o/?_vp_9k]~}nm}c~߰8~-rn~޼s}~q]=?|}~eq,'~oݿsӃgп}}i'1|u?\~_^ߏKɟ~ή>7+>ߎW?:g}ŗ~>/&}:9}=gOao?7q#yoGUw便CxshV>;;7| x~ߖ7EDg|ߏKɟ~ή>7+>ߎ[gӯ_7v˗}'DMs߳3.>7+>ߎ[gӯo?w^=ߐqtq5qu]#}Nxw>wOr}!?-j뎻G0~4p|>?8T4k|t4w0KϿ~~9]?:>|_qtq5qu]#}Nxw>wO~?s~.0z3Sv`f9N~Z<;o:oO?Oo?7?wcڟSb~iL4O<}9w~ڟSjO_=xzsg%/SjC@&z?q'*^~;O4+yff?ڟSj1>~}^pcsڟSj 9|' 'ٙi??v_}~~8>[?߯r\udž;7~\|ڮ}^6Wp}~޵q}}?~_{}_X~\~ \~___aq5q}}?~_{}~_?_?x9c=s'<A%x9c=s'<A%x9c=s'<A%x9c=ssχ ~8 c#g2b~X8A˿ S8*z3Yu|.y"?;;L| LQ>"szzOZ]9wJg~OFuS>O>$Vg )Ɋ>GO~OX_`K.)LةΪyg֜Aז\vÄ?|d131G ?_]iw)C=O,ӈ:>x?G7L_>2k6f:ΝfLY/d^GDEKݏS~353&o|xfnx8cdŘ\O\M~OtqDT|>?G7L_>2k6f:ΝfLY/d^GDEKݏS~353&o|xfnx8cdŘ\O\M~OtqDT|>?G7L_>2k6f:ΝfLY/d\{qTgU ~zag5}3sgN&*svr=s,5>qe?߻fkwfMx9c=s ~zag5}3sgN&*svr=s,5>qe?߻fkwfMx9c=sxGO~OX_`K.)DI}DvTϭ8,>sχ ~8 >t |S֗] RO>$Vg +<x9c=s2k6f:ΝfLU2zXk'&'?ثe폘{|p鍙~o}7d׍3?#9l u:̘d̰>NLO W03c3 aÇ6fǩ?fx^7XhO>$Vg +,Q>"szz.vo:''Yϒ_QO>$Vg +,Q>"szz.vo:''Yϒ_QO>$Vg +,Q>"szz.vo:''Yϒ_QO>$Vg +<x|ǟ8e#9l u:̘d̰>NLO W03c3 ^/l|Ll͏S~353&ocϜ26f:ΝfLU2zXk'&'?ثe폘{|p鍙~o}7d׍yP=sq 7|Gs8ٛ':u1V;a|b >aÇ6fǩ?fx^71?C3sgN&*svr=s,5^u:''Yϒ_Q\qw_ԥ x8\])BtON$;*yg֜Aז\vÄ?|d}}##'?,}~fJxu%S>O>$Vg +_0?==acώ?7JPǓ/ʞYu|.y"?;;__r _|q/ٿRI}DvTϭ8,>sχ ~8 s4 wz?󍙹xᎳ_ٓc;9Lɉ*{c8zcflzag5}~|A^/l|Ll͏S~353&ocϜ26f:ΝfLU2zXk'&'?ثe폘{|p鍙~o}7d׍yP=sq 7|Gs8ٛ':u1V;a|b >aÇ6fǩ?fx^71?C3sgN&*svr=s,5ϓU=8p?G7L_>2k<(xfnx8cdX~S'e.Z'D9K#8> R{o<㕟__{|C|D>8\])BtON$;*y:/;Ͼ9YΏG4>GO~OXXsR'D9K#8> R{o<㕟__{|C|D>8\])BtON$;*y:/;Ͼ9YΏG4>GO~OXXsR'D9K#8> R{o<㕟__{|C|D>8\])BtON$;*y:/;Ͼ9YΏG4>GO~OXXsR'D9K#8> R{o<㕟_X=>8cJ?>q 7|Gs8ٛ':u1V;a|b 痃*=O|u/}7d׍yP=s^/'/Y:Tz_ %yx8zңR+wfMx|ǟ8e#9l u:̘d̰>NLO WIN>: _>2k<(xfnx8cdX~S'e.Z'D9K#8> R{o<㕟__{|C|D>8\])BtON$;*y:/;Ͼ9YΏG4>GO~OXXsR'D9K#8> R{o<㕟__{|C|D>8\])BtON$;*y:/;Ͼ9YΏG4>GO~OXXsR'D9K#8> R{o<㕟__{|C|D>8\])BtON$;*y:/;Ͼ9YΏG4>GO~OXXsR'D9K#8> R{o<㕟_X=>8cJ?>q 7|Gs8ٚs3> X~S'erbxc}6_O^t?!Կ@Jx^71?C3N|u>;d̰>NLO WIN>: _>2k<(xfiϞ8μ'uc;9Lɉ*>yx8zңR+wfMx|ǟ8e#9l9ן|w?g)2\91<1>^/'/Y:Tz_ %x:@Վ2zXk'&'?ثe$'JSKdg5}~|Ag:?_0Iש B])BtON$;*y:/;Ͼ9YΏG4sx~s7JPǓ/ʞc8KV~|a~ 'z0_%R'D9K#8> R{o<㕟__{|I'?^/1 w_ԥ g:?_0Iש B])BtON$;*y:/;Ͼ9YΏG4sx~s7JPǓ/ʞc8KV~|a`+<(xfiϞ8μ'uc;9Lɉ*>yx8zң"Wgt3ocϜ26fϾ}wV;a|b 痃*=O>b %}7O1k<(xfiϞ8μ'uc;9Lɉ*>yx8zң"Wgt3ocϜ26fϾ}wV;a|b 痃*=O>b %}7O1k<(xfiϞ8μ'uc;9Lɉ*>yx8zң"Wgt3ocϜ26fϾ}wV;a|b 痃*=O>b %}7O1k<(xfiϞ8μ'uc;9Lׯ\l|x3qJ]2lϽq㯱~(|Ny}u >4_>x::_4ge㌔O7]d{<9_c&9P>9?^} ie|u)Ru9i)wŸn ɳ>xsLs};s /~>~$R|s?;2R?xwAg>}_/}Cw3_}y1IgԥIɧ;/wd 糖&π|οg^:1gQ01>8cK/JϓOv_?`>8KuQMÝ~8u?c/a~c|pƖ_ 'R'_& 1~|q|)뾢 >g:qcsœ._}<ԧOl7z4}<5 /|YqI?sbku >:˗O5)8!v[#Mx8>)#s>aB?ql}\8gf2w4CzW?&Y c_î*O/}R?Wo4ޗҟ=<,ϱg'ぉ:˗O5)8!v[#Mx8>)#s>aB?ql}\8gf2Ř/~38=yg~ ~,ǟٞq???Ǐ_fߣ 덙Q}o~3\"??sZϷ<9.>35~zfoGv~[.y<n=ߌ8>g;눏elO'$:y ˿Ϯ:|ٛ~~ݟKOi;:5ϟ#[1 ?~Þ2뿎3_>ߣ 덙Q}o~3\"??sZϷ<9.>35~zfoGv~[.y<n/祓cјw c>ų>zg?_AOgNXy(G# Ky#'@ǣ19 7}g};E~'>3PF?};GNFc_{s@%o<ϰw鞋}< ?O};=ag07/!/~w,>?SƾӿK'y-a<=!x+<vzaB=o8_B_Y:|~=}?Y>O[>yz/C$\Vy>„{20p8tLz3N~,|y}L^89I|##9d` ?Sӿ$qdf58dX?_Ͼ1l{z~_\]f|xLY}oy褼Oo~E0=".?3_>\xl{Ow6~8ɋ?<7[= oȿ f~ӗ}DEfkGǎl dşKOixǞK_7_3 C˾""35~_6fύ_2b'ǴgE%{/?~ߡ|w~?Ǚ?Q3sgï1gF`z\8%?"Y}?Y|?$V~^c{|w1Y>Ϯg==aB=o8_B] R/Ϋ};q-|">; #Ɋ!}s=a x ~~ȯu_{s@%?o+o$LVyOXPF}pK~E~N~.1 y_;I댘g37/!.A)pgU8d]cxZa{׫=̢"y/#z "34z~8ɊoAo}B|ɘf} }QDOo~_=yw~?Ǚ=~?dg 7پl3iυ>s(^zK瞇<?d|}2buP6_?rfgGDQ/?@=|ߥy`CÞd]f_>>1Y:oC/3 oO"( o0k?.?3GG㌘f7!͗ܙm!w ~~ȯu_rg?Y|?ӄdigz3 #Ɋ!}s=a 'qEO.%._>~ .O;ϧ >gPG| =qCzxpK~E~<>q$?>$V$O;;џ}@W$LVyOX\?\p㏮.|9w9)pgU/x|Iw }8HIvw>>;I댘g3.]D]rrR/Ϋ_S p[Ϯg==as]qÎ>)|Â_+WܾA%'y"Y'yތx?dg:ΝfLY|ɘf} }QR>9ǩ7pay=92oy^|G2bgN&,3iυ>s({`c0~y#Ù1YxᎳ_ٓ_?rfgGDT0y~A\k?<ONy2 zyן̘ lz~9Ӟ~L+Ǟhs&+x)|3~b:9K>x)|3~b:9K>x)|3~b:9K>x)|3~b:9K>x)|3~b:9K>x)|3~b:9K>x^7Xh ~zag5}3sgN&,2zbk|/ 㣏|"ǩ?fx^7Xh ~zag5}3sgN&,2zbk|/ 㣏|"ǩ?fx^7Xh ~zag5}3sgN&,2zbk|/ 㣏|"ǩ?fx^7XhO>$Vg +,Q>"szzOZ]9wJ'D9K#}iyam< |8HO@WX|D??rNsGeO,ӈ:>xGO~OX_`K.)DI}DvTϭ8,>sχ ~8 }q^71?C3sgN&*svr=s,5ϓU|pG2W̚?>q 7|Gs8ٛ':u1V;a|b 痃*=O|u/}7d׍yP=s^/'/Y:Tz_ %yx8zңR+wfMx|ǟ8e#9l u:̘dֽ̰zDI}DvT;ϯ=7}vt/ܿ=aS󘄻/ٿRI}DvT;ϯ=7}vt/ܿ=aS󘄻/ٿRI}DvT;ϯ=7}vt/ܿ=aS󘄻/ٿRI}DvT;ϯ=7}vt/ܿ=aS󘄻/ٿRI}DvT;ϯ=7}vt/ܿ=aS󘄻/ٿRI}DvT;ϯ=7}vt/ܿ=aS󘄻/ٿRI}DvT;ϯ=7}vt,o1x|ǟ8e'ל >x:@Վ2zXk'&'?ثe$'JS؈ _gZ?>q OG~93N|u>;d̰>NLO WIN]K>阵}~|A^s&fϾ}wV;a|b 痃*=O>b %}7O1k<)=8L9ן|w?g)2\91<1>^/'/Y:Tz}u/@Jl X~S'erbxc}6_O^t? _x?Lů w:34g^}O\ sxl<=dQ~AԿ+~^71?Iu?fiϞ8μ'uc;9Lׯ\h't>IOvT;ϯwğ$V;}}##3 .?/Oqy?L@'LsgeC8O<7|IZ拓Ej~XWܿ=aO;S0gד P't>IOvT;ϯwğ$V;}}##3 .?/Oqy?L@'LsgeC8O<7|IZ拓Ej~XWܿ=aO;S0gד P't>IOvT;ϯwğ$V;}}##3 .?/Oqy?L@'LsgeC8O<7|IZ拓Ej~XWܿ=aO;S0gד P't>IOvT;ϯwğ$V;A9_m߀ӟ<п{><~dQ~AԿ+~~gc,_|IOG~93N|ŸɿHSѺ14^ *=O>b %}7O1oy6u?fiϞ8S97||z7B<Ɨ?kÃGRDϳf-?}&=8L9 &#OS?ϞOF_=ǟX?gxpx2t? _x?Lſ31/$'ל >xOߤbbg 翘_N]K>阷{}L>y=I)O\>9Jx3}>M~>x Z\Wܿ/O;S0ϸ/Oqy?L@|sge3}|$|-wA">gٿ_1C;>waןq^::~J=s)g7|IZ拓Ej|ϳ=q__r3=L >4u?u1zϒSϓnQϽfz⾾y| |gz?^} ix~3b($;,''k {>}} #3 /~>gד Q>IOvX;#>OɻO}D+S>}A3Gyf_}y13'?| wF|Owğ$V>}7/ß/y6:O_~ٚs^y|3'/cϿ,i8<:W? d#kI~gc,_|I^RK=~9bMy쎓߇6fx:> 翘_N?ļ+H_mdt94緎??gOGX_=ǟX?gxpx2t~A% _ϭGה|ǟXhx{#͙=qϩ}OǙ14^ +x2W|5$31/$'=}sfioy烪)~<_&?< ]HO|o+_Pϧy穘a~c|pƗ8μ R\>9Jx3}>M~>x Z\Wܿ/O;S0ϸ/Oqy?L@|sge3}|$|-wA">gٿ_1C;>waןq^::~J=s)g7|IZ拓Ej|ϳ=q__r3=L >4u?u1zϒSϓnQϽfz⾾y| |gz?^} ix~3b($;,''k {>}} #3 /~>gד Q>IOvX;#>OɻO}D+S>}늏ώ?{}OǙ14^ +x2W|5$31/$'=}sfioy烪)~<<{><~d_K[ɯ)%?}&^RK=~9bMy쎓߇6fx:> 翘_N?ļ+H_mdt94緎??gOGXR|v;,JS?| 1)wğ$V>}7_c&9P>9?^} ix~3b($;/~#>qJ]'k {>q? >Os9Jx33wd~>x Z\W}Cw3_}y13'?| 1)wğ$V>}7_c&9P>9?^} ix~3b($;/~#>qJ]'k {>q? >Os^RK>}|-P9Jx33wd~>x Z\W}Cw3_}y13'?| 1)wğ$V>}7_c&9P>9?^} ix~3b($;/~#>qJ]'k {>q? >Os9Jx33wd~>x Z\W}Cw3_}y13'?| 1)wğ$V>}7_c&9P>9?^} ix~3b($;/~#>qJ]'k {>G>}|-P^RK>}|-P^RK>}|-P^RK>}|-P^RK>}|-P^RK>}|-P^RK>}|-P}7_c&9P>9?^} ix~$ zϒS?C%.QϽfz~?'ӹ_]G0ϸ//Ğ2R\>9Jx33wd~>x Z\W}Cw3_}y1_&JQ>IOv_F}㌔O}D+S>}㯱~(|Ny}u >4tzJ=s)ϡ|q|IZ拓Ej|ϳ=q\u?c/a~c|pƗO])G%<~c;2R?< ]HO|o+Ls};s /~>I%($;/~#>qJ]'k {>G>}|-Q~N-DOoOD}yV_|y]<s6Vj|~4<:Wļu}O95Yn?vo'J"{xz#?s܀SOҾ%Sɯϟ|_ q'Tg8|9:Qgx7gO&w?͕/ N? q/~ %SM||[:<[҈8<|N?`p'ort''><.M 9+5>?d^ +~A^:@K>I,uFy;|Ó=q=yyY~ytn@_f~`뭕~H?^ȂIoO} 8<}S>^FrdiTxYƗ'_]lG]0̭GGDK~}`ep?ŸG3ǿ#H̒4_>9:e_>ej=O׾2? [>C5;/c>ϗ=GG~~d'xu[*h=L3+Q~ߡ|9py|0>|8<q8;$?ï/NW䏨AaZS$s>g +QFߟ%Gi~0|ruʿ$}GS z|dA$}'>kv_>)}/#9\{24*0s`9ϕOϚC:#`]sa)#s>aB'93_>lxK_p97Nig'\!Cw͑| ׮9f~\ϟ^S6~nyFϳXPI?}ϯ)!?g?\MY 79H|Pdl?fk~ה͏I~?&,_>?yy6z۞g6=</}냟q5~yfLj$Y}||<z3Oyk >ϸٚ_3c?_OɾsK>W?>icl^v̈́h}<5~9]7䏨0zfkRGpHIϡ_?ώ&\%coE|c덙}I"}'>jޟσI>8W?>icl>'O|BWʾg clOC$8C'||<|OO^}i/>ϸٚC I/q~OӮ,_>?yy4:? _*_$/}냟q5>3c?_\Y 79H|Pdifj}8$fLj$Y_9?N~n.s;xz%|Oy~H6f:_-<"b?coElbOYq4roQp`GK?'}L]:~gO8Mv?_;Xz<:4柎W_#? ٚ~G|D_CO`O}ɽsS=gSƗq$}G3Q/OHk| L1tq?|py7~1a~~9]7䏨0zfj# }>ɂ&.?3'_?ώ&^;,=OO_O+\lDt#>["y'0Dӧ>ދcŇéKiu8ߒ>덙|$O5>&s1/E>Sxz%?3}yyRr?}3_<9Q|L2~DP|%>'O|BS>י!O#s5ϏÕ7οY۞1/E>Sxz%?3}yyRr?}3_<9Q|L2~DP|%>'O|BS>י!O#s5ϏÕ7οY۞1/E>Sxz%?3}yyRr?}3_<9Q|L2~DP|%>'O|BS>י!O#s5ϏÕ7οY۞1/E>Sxz%?3}yyR/?|r\l?QC;a(`6s@0K=;Xrv %X 1S3㜾6g?\6?SM꘺2D@B<|^:_i_g?\600L:OʁB޸o=q0fL LHS C]:=g^j)ÝXT!BQc0O oz,]?oO >9]g6F!:_i_g?\6盞c_߈G6?D|⁘@S~)>ƾO|qd1rz*N"zXXo=qO/>I-g4>I爋G6?f51IhnHD AD^!28A$&nI_>N6d -$ ekN r#qk1 zl)r;$ $G]E#33?@\~?.ych}$E#O^ J7.8qy}̰ߟS?sP c!y5σ e?竢\q8) A$ĒtĪI$7|qy}}|>Ih〼E3ɓ;V )'Pș0_XM 0WO,D 2n!x ʼnB$DQ@c$8O xr"8wg \ U>~8>>y$?<3x37ʌ z6{ܵsqCC9><16~&E?r.!=?@@ T Ui 18yB:&&f?Ipe1 zBR;50!s_37˺o߹HD05Zx<17=?e<?8_|3?͇sqdH`<J:e.r?7??7t x&H$B7?IGKa_L  >4?W"g!X?l8ْGlNNq\]%Q:H>/H a[0G%J=+g_ʀݠ%X{g.("y 2HIݮ/?;g? Q?lׁ &]AEVrBP(`\9OLJ ???s=σ'oGw?y9Kæ8;lNq~Ӟ V|?̟sl(,?;~Hc6bFtNp3;X98-3:y )3l5瀞"c+iLJE\}O_şO'<,a6O͝7 r>ߣ i~g>̟OyQky4PNƓ:(u ,?2?_߾}Dwg`zQ:''Yϒ_QǏ,>@bX Į:+&F_8f> T R,'D9K# C(K&q7l8}? PKD5_.,ÄJ0Q})&S@ c})󓀺Υkl~MC }"q4%N$-$  Hٚsss˧s 9;+5^ZWļu}O95YA'>$  Hٚsss˧s 9;+5^ZWļu}O95YA'>$  Hٚsss˧s 9;+5^ZWļu}O95YA'>$  Hٚsss˧s 9;+5^ZWļu}O95YA'>$  Hٚsss˧s 9;+5^ZWļu}O95YA'>$  Hٚsss˧s 9;+5^ZW_s)ۈ *u*츗'8N<|IC88ם4緎=#'>O&y{?|s:gǩ糖&>1~drP{8a?Y2b3\x1Կ'==O}D4Q{%<"Cߙɹ/g1_?'?>8~c~O{;lz2i>_SKyw,E3s _9ǃK_|qc~xwAOAzg_˹b(?=8_>8\YA'>$  Hٛu}ytnH_OY~}OZLK>I,~P|$l\>K_?Ĕ3~=y 3|p.<"<.M 9;+51P|Sɐ ~_)9ş/qJQ8_˞G|gO&_?ؘ>~wSɯϗ8% _O^wF ?O3˧rBNz{oLT?;zd_?Nqgxp/p';#foQ_'ɹ!O?cS v,dz㶹ϨOH}w-}qa/| UQwư2z6,cxǃ>CY8u?A Ɠ]_\o4ǘ}K>rupy7q={̞ '&)91bϐG;kOzl1{r1Rwϵ\|<g|Mk|'a?'z}Lx1س:S> i=!LyԿ3W(=GYwǰl`bcS v,dz㶹ϨOH}w-}qa/| UQwư2z6,cxǃ>CY8u?A Ɠ]_\o4ǘ}K>rupy7q={̞ '&)91bϐG;kOzl1{r{^:onode-temp-0.9.4/package-lock.json000066400000000000000000000731061375236753500166570ustar00rootroot00000000000000{ "name": "temp", "version": "0.9.4", "lockfileVersion": 1, "requires": true, "dependencies": { "ansi-colors": { "version": "3.2.3", "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.3.tgz", "integrity": "sha512-LEHHyuhlPY3TmuUYMh2oz89lTShfvgbmzaBcxve9t/9Wuy7Dwf4yoAKcND7KFT1HAQfqZ12qtc+DUrBMeKF9nw==", "dev": true }, "ansi-regex": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", "dev": true }, "ansi-styles": { "version": "3.2.1", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "dev": true, "requires": { "color-convert": "^1.9.0" } }, "argparse": { "version": "1.0.10", "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", "dev": true, "requires": { "sprintf-js": "~1.0.2" } }, "balanced-match": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=" }, "brace-expansion": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", "requires": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, "browser-stdout": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz", "integrity": "sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==", "dev": true }, "camelcase": { "version": "5.3.1", "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", "dev": true }, "chalk": { "version": "2.4.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "dev": true, "requires": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", "supports-color": "^5.3.0" }, "dependencies": { "supports-color": { "version": "5.5.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", "dev": true, "requires": { "has-flag": "^3.0.0" } } } }, "cliui": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", "dev": true, "requires": { "string-width": "^3.1.0", "strip-ansi": "^5.2.0", "wrap-ansi": "^5.1.0" }, "dependencies": { "ansi-regex": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", "dev": true }, "string-width": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", "dev": true, "requires": { "emoji-regex": "^7.0.1", "is-fullwidth-code-point": "^2.0.0", "strip-ansi": "^5.1.0" } }, "strip-ansi": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", "dev": true, "requires": { "ansi-regex": "^4.1.0" } } } }, "color-convert": { "version": "1.9.3", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", "dev": true, "requires": { "color-name": "1.1.3" } }, "color-name": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", "dev": true }, "concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" }, "debug": { "version": "3.2.6", "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz", "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==", "dev": true, "requires": { "ms": "^2.1.1" } }, "decamelize": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", "dev": true }, "define-properties": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", "dev": true, "requires": { "object-keys": "^1.0.12" } }, "diff": { "version": "3.5.0", "resolved": "https://registry.npmjs.org/diff/-/diff-3.5.0.tgz", "integrity": "sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA==", "dev": true }, "emoji-regex": { "version": "7.0.3", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", "dev": true }, "es-abstract": { "version": "1.17.6", "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.6.tgz", "integrity": "sha512-Fr89bON3WFyUi5EvAeI48QTWX0AyekGgLA8H+c+7fbfCkJwRWRMLd8CQedNEyJuoYYhmtEqY92pgte1FAhBlhw==", "dev": true, "requires": { "es-to-primitive": "^1.2.1", "function-bind": "^1.1.1", "has": "^1.0.3", "has-symbols": "^1.0.1", "is-callable": "^1.2.0", "is-regex": "^1.1.0", "object-inspect": "^1.7.0", "object-keys": "^1.1.1", "object.assign": "^4.1.0", "string.prototype.trimend": "^1.0.1", "string.prototype.trimstart": "^1.0.1" } }, "es-to-primitive": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", "dev": true, "requires": { "is-callable": "^1.1.4", "is-date-object": "^1.0.1", "is-symbol": "^1.0.2" } }, "escape-string-regexp": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", "dev": true }, "esprima": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", "dev": true }, "find-up": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", "dev": true, "requires": { "locate-path": "^3.0.0" } }, "flat": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/flat/-/flat-4.1.0.tgz", "integrity": "sha512-Px/TiLIznH7gEDlPXcUD4KnBusa6kR6ayRUVcnEAbreRIuhkqow/mun59BuRXwoYk7ZQOLW1ZM05ilIvK38hFw==", "dev": true, "requires": { "is-buffer": "~2.0.3" } }, "fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" }, "function-bind": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", "dev": true }, "get-caller-file": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", "dev": true }, "glob": { "version": "7.1.3", "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.3.tgz", "integrity": "sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==", "requires": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^3.0.4", "once": "^1.3.0", "path-is-absolute": "^1.0.0" } }, "growl": { "version": "1.10.5", "resolved": "https://registry.npmjs.org/growl/-/growl-1.10.5.tgz", "integrity": "sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA==", "dev": true }, "has": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", "dev": true, "requires": { "function-bind": "^1.1.1" } }, "has-flag": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", "dev": true }, "has-symbols": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz", "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==", "dev": true }, "he": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", "dev": true }, "inflight": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", "requires": { "once": "^1.3.0", "wrappy": "1" } }, "inherits": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" }, "is-buffer": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.4.tgz", "integrity": "sha512-Kq1rokWXOPXWuaMAqZiJW4XxsmD9zGx9q4aePabbn3qCRGedtH7Cm+zV8WETitMfu1wdh+Rvd6w5egwSngUX2A==", "dev": true }, "is-callable": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.0.tgz", "integrity": "sha512-pyVD9AaGLxtg6srb2Ng6ynWJqkHU9bEM087AKck0w8QwDarTfNcpIYoU8x8Hv2Icm8u6kFJM18Dag8lyqGkviw==", "dev": true }, "is-date-object": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.2.tgz", "integrity": "sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g==", "dev": true }, "is-fullwidth-code-point": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", "dev": true }, "is-regex": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.1.tgz", "integrity": "sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==", "dev": true, "requires": { "has-symbols": "^1.0.1" } }, "is-symbol": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz", "integrity": "sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==", "dev": true, "requires": { "has-symbols": "^1.0.1" } }, "isexe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", "dev": true }, "js-yaml": { "version": "3.13.1", "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz", "integrity": "sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==", "dev": true, "requires": { "argparse": "^1.0.7", "esprima": "^4.0.0" } }, "locate-path": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", "dev": true, "requires": { "p-locate": "^3.0.0", "path-exists": "^3.0.0" } }, "lodash": { "version": "4.17.20", "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz", "integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA==", "dev": true }, "log-symbols": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-2.2.0.tgz", "integrity": "sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==", "dev": true, "requires": { "chalk": "^2.0.1" } }, "minimatch": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", "requires": { "brace-expansion": "^1.1.7" } }, "minimist": { "version": "0.0.8", "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=" }, "mkdirp": { "version": "0.5.1", "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", "requires": { "minimist": "0.0.8" } }, "mocha": { "version": "6.2.3", "resolved": "https://registry.npmjs.org/mocha/-/mocha-6.2.3.tgz", "integrity": "sha512-0R/3FvjIGH3eEuG17ccFPk117XL2rWxatr81a57D+r/x2uTYZRbdZ4oVidEUMh2W2TJDa7MdAb12Lm2/qrKajg==", "dev": true, "requires": { "ansi-colors": "3.2.3", "browser-stdout": "1.3.1", "debug": "3.2.6", "diff": "3.5.0", "escape-string-regexp": "1.0.5", "find-up": "3.0.0", "glob": "7.1.3", "growl": "1.10.5", "he": "1.2.0", "js-yaml": "3.13.1", "log-symbols": "2.2.0", "minimatch": "3.0.4", "mkdirp": "0.5.4", "ms": "2.1.1", "node-environment-flags": "1.0.5", "object.assign": "4.1.0", "strip-json-comments": "2.0.1", "supports-color": "6.0.0", "which": "1.3.1", "wide-align": "1.1.3", "yargs": "13.3.2", "yargs-parser": "13.1.2", "yargs-unparser": "1.6.0" }, "dependencies": { "minimist": { "version": "1.2.5", "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==", "dev": true }, "mkdirp": { "version": "0.5.4", "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.4.tgz", "integrity": "sha512-iG9AK/dJLtJ0XNgTuDbSyNS3zECqDlAhnQW4CsNxBG3LQJBbHmRX1egw39DmtOdCAqY+dKXV+sgPgilNWUKMVw==", "dev": true, "requires": { "minimist": "^1.2.5" } } } }, "ms": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==", "dev": true }, "node-environment-flags": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/node-environment-flags/-/node-environment-flags-1.0.5.tgz", "integrity": "sha512-VNYPRfGfmZLx0Ye20jWzHUjyTW/c+6Wq+iLhDzUI4XmhrDd9l/FozXV3F2xOaXjvp0co0+v1YSR3CMP6g+VvLQ==", "dev": true, "requires": { "object.getownpropertydescriptors": "^2.0.3", "semver": "^5.7.0" } }, "object-inspect": { "version": "1.8.0", "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.8.0.tgz", "integrity": "sha512-jLdtEOB112fORuypAyl/50VRVIBIdVQOSUUGQHzJ4xBSbit81zRarz7GThkEFZy1RceYrWYcPcBFPQwHyAc1gA==", "dev": true }, "object-keys": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", "dev": true }, "object.assign": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.0.tgz", "integrity": "sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w==", "dev": true, "requires": { "define-properties": "^1.1.2", "function-bind": "^1.1.1", "has-symbols": "^1.0.0", "object-keys": "^1.0.11" } }, "object.getownpropertydescriptors": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.0.tgz", "integrity": "sha512-Z53Oah9A3TdLoblT7VKJaTDdXdT+lQO+cNpKVnya5JDe9uLvzu1YyY1yFDFrcxrlRgWrEFH0jJtD/IbuwjcEVg==", "dev": true, "requires": { "define-properties": "^1.1.3", "es-abstract": "^1.17.0-next.1" } }, "once": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", "requires": { "wrappy": "1" } }, "p-limit": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "dev": true, "requires": { "p-try": "^2.0.0" } }, "p-locate": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", "dev": true, "requires": { "p-limit": "^2.0.0" } }, "p-try": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", "dev": true }, "path-exists": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", "dev": true }, "path-is-absolute": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" }, "require-directory": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", "dev": true }, "require-main-filename": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", "dev": true }, "rimraf": { "version": "2.6.2", "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz", "integrity": "sha512-lreewLK/BlghmxtfH36YYVg1i8IAce4TI7oao75I1g245+6BctqTVQiBP3YUJ9C6DQOXJmkYR9X9fCLtCOJc5w==", "requires": { "glob": "^7.0.5" } }, "semver": { "version": "5.7.1", "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", "dev": true }, "set-blocking": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", "dev": true }, "sprintf-js": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", "dev": true }, "string-width": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", "dev": true, "requires": { "is-fullwidth-code-point": "^2.0.0", "strip-ansi": "^4.0.0" } }, "string.prototype.trimend": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.1.tgz", "integrity": "sha512-LRPxFUaTtpqYsTeNKaFOw3R4bxIzWOnbQ837QfBylo8jIxtcbK/A/sMV7Q+OAV/vWo+7s25pOE10KYSjaSO06g==", "dev": true, "requires": { "define-properties": "^1.1.3", "es-abstract": "^1.17.5" } }, "string.prototype.trimstart": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.1.tgz", "integrity": "sha512-XxZn+QpvrBI1FOcg6dIpxUPgWCPuNXvMD72aaRaUQv1eD4e/Qy8i/hFTe0BUmD60p/QA6bh1avmuPTfNjqVWRw==", "dev": true, "requires": { "define-properties": "^1.1.3", "es-abstract": "^1.17.5" } }, "strip-ansi": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", "dev": true, "requires": { "ansi-regex": "^3.0.0" } }, "strip-json-comments": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=", "dev": true }, "supports-color": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.0.0.tgz", "integrity": "sha512-on9Kwidc1IUQo+bQdhi8+Tijpo0e1SS6RoGo2guUwn5vdaxw8RXOF9Vb2ws+ihWOmh4JnCJOvaziZWP1VABaLg==", "dev": true, "requires": { "has-flag": "^3.0.0" } }, "which": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", "dev": true, "requires": { "isexe": "^2.0.0" } }, "which-module": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=", "dev": true }, "wide-align": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz", "integrity": "sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==", "dev": true, "requires": { "string-width": "^1.0.2 || 2" } }, "wrap-ansi": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", "dev": true, "requires": { "ansi-styles": "^3.2.0", "string-width": "^3.0.0", "strip-ansi": "^5.0.0" }, "dependencies": { "ansi-regex": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", "dev": true }, "string-width": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", "dev": true, "requires": { "emoji-regex": "^7.0.1", "is-fullwidth-code-point": "^2.0.0", "strip-ansi": "^5.1.0" } }, "strip-ansi": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", "dev": true, "requires": { "ansi-regex": "^4.1.0" } } } }, "wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" }, "y18n": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz", "integrity": "sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==", "dev": true }, "yargs": { "version": "13.3.2", "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz", "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==", "dev": true, "requires": { "cliui": "^5.0.0", "find-up": "^3.0.0", "get-caller-file": "^2.0.1", "require-directory": "^2.1.1", "require-main-filename": "^2.0.0", "set-blocking": "^2.0.0", "string-width": "^3.0.0", "which-module": "^2.0.0", "y18n": "^4.0.0", "yargs-parser": "^13.1.2" }, "dependencies": { "ansi-regex": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", "dev": true }, "string-width": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", "dev": true, "requires": { "emoji-regex": "^7.0.1", "is-fullwidth-code-point": "^2.0.0", "strip-ansi": "^5.1.0" } }, "strip-ansi": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", "dev": true, "requires": { "ansi-regex": "^4.1.0" } } } }, "yargs-parser": { "version": "13.1.2", "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz", "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", "dev": true, "requires": { "camelcase": "^5.0.0", "decamelize": "^1.2.0" } }, "yargs-unparser": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-1.6.0.tgz", "integrity": "sha512-W9tKgmSn0DpSatfri0nx52Joq5hVXgeLiqR/5G0sZNDoLZFOr/xjBUDcShCOGNsBnEMNo1KAMBkTej1Hm62HTw==", "dev": true, "requires": { "flat": "^4.1.0", "lodash": "^4.17.15", "yargs": "^13.3.0" } } } } node-temp-0.9.4/package.json000066400000000000000000000014551375236753500157270ustar00rootroot00000000000000{ "name": "temp", "description": "Temporary files and directories", "tags": [ "temporary", "temp", "tempfile", "tempdir", "tmpfile", "tmpdir", "security" ], "version": "0.9.4", "author": "Bruce Williams ", "license": "MIT", "directories": { "lib": "lib" }, "engines": { "node": ">=6.0.0" }, "main": "./lib/temp", "dependencies": { "rimraf": "~2.6.2", "mkdirp": "^0.5.1" }, "keywords": [ "temporary", "tmp", "temp", "tempdir", "tempfile", "tmpdir", "tmpfile" ], "files": [ "lib" ], "devDependencies": { "mocha": "6.2.3" }, "repository": { "type": "git", "url": "git://github.com/bruce/node-temp.git" }, "scripts": { "test": "mocha test/temp-test.js" } } node-temp-0.9.4/test/000077500000000000000000000000001375236753500144135ustar00rootroot00000000000000node-temp-0.9.4/test/temp-test.js000066400000000000000000000071701375236753500167000ustar00rootroot00000000000000var fs = require('fs'); var path = require('path'); var util = require('util'); var assert = require('assert'); var existsSync = function(path){ try { fs.statSync(path); return true; } catch (e){ return false; } }; // Use path.exists for 0.6 if necessary var safeExists = fs.exists || path.exists; var temp = require('../lib/temp'); temp.track(); describe("temp", function() { it("mkdir", function(done) { var mkdirPath = null; temp.mkdir('foo', function(err, tpath) { assert.ok(!err, "temp.mkdir did not execute without errors"); assert.ok(path.basename(tpath).slice(0, 3) == 'foo', 'temp.mkdir did not use the prefix'); assert.ok(existsSync(tpath), 'temp.mkdir did not create the directory'); fs.writeFileSync(path.join(tpath, 'a file'), 'a content'); temp.cleanupSync(); assert.ok(!existsSync(tpath), 'temp.cleanupSync did not remove the directory'); mkdirPath = tpath; done(); }); }); it("open", function(done) { var openPath = null; temp.open('bar', function(err, info) { assert.equal('object', typeof(info), "temp.open did not invoke the callback with the err and info object"); assert.equal('number', typeof(info.fd), 'temp.open did not invoke the callback with an fd'); fs.writeSync(info.fd, 'foo'); fs.closeSync(info.fd); assert.equal('string', typeof(info.path), 'temp.open did not invoke the callback with a path'); assert.ok(existsSync(info.path), 'temp.open did not create a file'); temp.cleanupSync(); assert.ok(!existsSync(info.path), 'temp.cleanupSync did not remove the file'); openPath = info.path; done(); }); }); it("stream", function(done) { var stream = temp.createWriteStream('baz'); assert.ok(stream instanceof fs.WriteStream, 'temp.createWriteStream did not invoke the callback with the err and stream object'); stream.write('foo'); stream.end("More text here\nand more...", function() { assert.ok(existsSync(stream.path), 'temp.createWriteStream did not create a file'); var tempDir = temp.mkdirSync("foobar"); assert.ok(existsSync(tempDir), 'temp.mkdirTemp did not create a directory'); // cleanupSync() temp.cleanupSync(); assert.ok(!existsSync(stream.path), 'temp.cleanupSync did not remove the createWriteStream file'); assert.ok(!existsSync(tempDir), 'temp.cleanupSync did not remove the mkdirSync directory'); done(); }); }); it("cleanup", function(done) { // Make a temp file just to cleanup var tempFile = temp.openSync(); fs.writeSync(tempFile.fd, 'foo'); fs.closeSync(tempFile.fd); assert.ok(existsSync(tempFile.path), 'temp.openSync did not create a file for cleanup'); // run cleanup() temp.cleanup(function(err, counts) { assert.ok(!err, 'temp.cleanup did not run without encountering an error'); assert.ok(!existsSync(tempFile.path), 'temp.cleanup did not remove the openSync file for cleanup'); assert.equal(1, counts.files, 'temp.cleanup did not report the correct removal statistics'); done(); }); }); it("path", function() { var tempPath = temp.path(); assert.ok(path.dirname(tempPath) === temp.dir, "temp.path does not work in default os temporary directory"); tempPath = temp.path({dir: process.cwd()}); assert.ok(path.dirname(tempPath) === process.cwd(), "temp.path does not work in user-provided temporary directory"); }); it("singleton", function() { for (var i=0; i <= 10; i++) { temp.openSync(); } assert.equal(process.listeners('exit').length, 1, 'temp created more than one listener for exit'); }); });