diff --git a/check_env.js b/check_env.js new file mode 100644 index 00000000..3ff16736 --- /dev/null +++ b/check_env.js @@ -0,0 +1,22 @@ +// Script to check environment variables +console.log('Checking environment variables for Clarifai keys...'); + +// List all environment variables that might contain Clarifai keys +const possibleKeys = [ + 'CLARIFAI_API_KEY', + 'clarifai_api', + 'new_clarifai_key' +]; + +possibleKeys.forEach(key => { + if (process.env[key]) { + console.log(`Found key ${key}:`); + console.log(`Value: ${process.env[key]}`); + console.log(`Length: ${process.env[key].length}`); + console.log('First 8 chars:', process.env[key].substring(0, 8)); + console.log('---'); + } else { + console.log(`No value found for ${key}`); + console.log('---'); + } +}); diff --git a/check_pat_scopes.js b/check_pat_scopes.js new file mode 100644 index 00000000..c1360843 --- /dev/null +++ b/check_pat_scopes.js @@ -0,0 +1,37 @@ +const { ClarifaiStub, grpc } = require('clarifai-nodejs-grpc'); +const dotenv = require('dotenv'); +dotenv.config(); + +const stub = ClarifaiStub.grpc(); +const metadata = new grpc.Metadata(); +const pat = (process.env.CLARIFAI_PAT || '').trim(); +metadata.set('authorization', `Key ${pat}`); + +async function checkPATScopes() { + return new Promise((resolve, reject) => { + stub.MyScopes( + {}, + metadata, + (err, response) => { + if (err) { + console.error('Error checking PAT scopes:', err); + reject(err); + } else { + console.log('PAT Scopes:', JSON.stringify(response, null, 2)); + resolve(response); + } + } + ); + }); +} + +async function main() { + try { + await checkPATScopes(); + } catch (error) { + console.error('Error in main:', error); + process.exit(1); + } +} + +main(); diff --git a/check_pat_scopes_v2.js b/check_pat_scopes_v2.js new file mode 100644 index 00000000..b4cfb964 --- /dev/null +++ b/check_pat_scopes_v2.js @@ -0,0 +1,109 @@ +const { ClarifaiStub, grpc } = require('clarifai-nodejs-grpc'); +const dotenv = require('dotenv'); +dotenv.config(); + +const stub = ClarifaiStub.grpc(); +const metadata = new grpc.Metadata(); +const pat = (process.env.CLARIFAI_PAT || '').trim(); +metadata.set('authorization', `Key ${pat}`); + +// First get user context from ListApps +async function getUserContext() { + return new Promise((resolve, reject) => { + stub.ListApps( + { + page: 1, + per_page: 1 + }, + metadata, + (err, response) => { + if (err) { + console.error('Error listing apps:', err); + reject(err); + } else { + if (response.apps && response.apps.length > 0) { + const app = response.apps[0]; + const userAppId = { + user_id: app.user_id, + app_id: app.id + }; + console.log('User context retrieved:', userAppId); + resolve(userAppId); + } else { + reject(new Error('No apps found')); + } + } + } + ); + }); +} + +async function checkPATScopes(userAppId) { + return new Promise((resolve, reject) => { + stub.MyScopes( + { + user_app_id: userAppId + }, + metadata, + (err, response) => { + if (err) { + console.error('Error checking PAT scopes:', err); + reject(err); + } else { + console.log('PAT Scopes:', JSON.stringify(response, null, 2)); + resolve(response); + } + } + ); + }); +} + +// Function to check specific endpoint access +async function checkEndpointAccess(userAppId) { + const criticalEndpoints = [ + '/clarifai.api.V2/PostModels', + '/clarifai.api.V2/PostModelVersions', + '/clarifai.api.V2/PostInputs' + ]; + + console.log('\nChecking access to critical endpoints:'); + for (const endpoint of criticalEndpoints) { + try { + const response = await new Promise((resolve, reject) => { + stub.ListScopes( + { + user_app_id: userAppId, + endpoints: [endpoint] + }, + metadata, + (err, response) => { + if (err) { + reject(err); + } else { + resolve(response); + } + } + ); + }); + console.log(`\nEndpoint ${endpoint}:`); + console.log('Access:', JSON.stringify(response, null, 2)); + } catch (error) { + console.error(`Error checking access for ${endpoint}:`, error.message); + } + } +} + +async function main() { + try { + const userAppId = await getUserContext(); + console.log('\nChecking PAT scopes with user context...'); + await checkPATScopes(userAppId); + console.log('\nChecking specific endpoint access...'); + await checkEndpointAccess(userAppId); + } catch (error) { + console.error('Error in main:', error); + process.exit(1); + } +} + +main(); diff --git a/controllers/health.js b/controllers/health.js new file mode 100644 index 00000000..df64d00b --- /dev/null +++ b/controllers/health.js @@ -0,0 +1,3 @@ +exports.check = (req, res) => { + res.json({ status: 'ok' }); +}; diff --git a/controllers/test-images.js b/controllers/test-images.js new file mode 100644 index 00000000..dc655be3 --- /dev/null +++ b/controllers/test-images.js @@ -0,0 +1,30 @@ +const express = require('express'); +const router = express.Router(); +const fs = require('fs'); +const path = require('path'); + +// Endpoint to list available test images +router.get('/list', (req, res) => { + try { + const catsDir = path.join(__dirname, '..', 'static', 'test_images', 'cats'); + const dogsDir = path.join(__dirname, '..', 'static', 'test_images', 'dogs'); + + const catImages = fs.readdirSync(catsDir) + .filter(file => file.endsWith('.jpg')) + .map(file => `/static/test_images/cats/${file}`); + + const dogImages = fs.readdirSync(dogsDir) + .filter(file => file.endsWith('.jpg')) + .map(file => `/static/test_images/dogs/${file}`); + + res.json({ + cats: catImages, + dogs: dogImages + }); + } catch (error) { + console.error('Error listing test images:', error); + res.status(500).json({ error: 'Failed to list test images' }); + } +}); + +module.exports = router; diff --git a/controllers/text.js b/controllers/text.js index b0655ddc..54da1a0e 100644 --- a/controllers/text.js +++ b/controllers/text.js @@ -1,270 +1,141 @@ const axios = require('axios'); -const base_url = "https://api.uclassify.com/v1/"; -const async = require('async'); -// Validate required environment variables -if (!process.env.UCLASSIFY_READ_API_KEY || !process.env.UCLASSIFY_WRITE_API_KEY) { - console.error('UCLASSIFY_READ_API_KEY and UCLASSIFY_WRITE_API_KEY environment variables are required'); - process.exit(1); -} - -const readToken = process.env.UCLASSIFY_READ_API_KEY; -const writeToken = process.env.UCLASSIFY_WRITE_API_KEY; +const uclassifyReadApiKey = process.env.UCLASSIFY_READ_API_KEY; +const uclassifyWriteApiKey = process.env.UCLASSIFY_WRITE_API_KEY; -function health(req, res){ - res.json({message: 'healthy'}); - return; -} - -function getClassifierInformation(req, res) { - var classifier_id = req.body.classifier_id; - let username = req.body.username; - get_classifier_url = base_url + username + "/" + classifier_id; - token_text = "Token " + readToken; - axios.get(get_classifier_url, { - headers: {'Content-Type': 'application/json', 'Authorization': token_text} - }) - .then(response => { - res.json(response.data); - }) - .catch(err => { - res.json({error: err.message}); - }); +if (!uclassifyReadApiKey || !uclassifyWriteApiKey) { + console.warn('Warning: uClassify API keys not found in environment variables'); } -/** - * This allows for adding examples + more training for a classifier. - * This will be called after a classifier has already been created. - */ -function addExamples(req, res) { - let classifier_name = req.body.classifier_name; - let class_name = req.body.class_name; - let training_data = req.body.texts; - var create_url = base_url + "me/" + classifier_name + "/" + class_name + "/train"; - let token_text = 'Token ' + writeToken; - axios.post(create_url, {texts: training_data}, { - headers: {'Content-Type': 'application/json', 'Authorization': token_text} - }) - .then(response => { - console.log(response.status); - res.json(); - }) - .catch(err => { - res.json({error: err.message}); - }); -} +exports.trainAll = async function(req, res) { + try { + const classifierName = req.body.classifier_name; + const trainingData = req.body.training_data; -function createClass(req, res) { - let classifier_name = req.body.classifier_name; - let class_name = req.body.class_name; - var create_url = base_url + "me/" + classifier_name + "/addClass"; - let token_text = 'Token ' + writeToken; - axios.post(create_url, {className: class_name}, { - headers: {'Content-Type': 'application/json', 'Authorization': token_text} - }) - .then(response => { - console.log(response); - res.json(); - }) - .catch(err => { - res.json({error: err.message}); - }); -} + if (!classifierName || !trainingData) { + return res.status(400).json({ error: 'Missing required parameters' }); + } -/** - * User first creates a classifier by choosing a name, create an empty classifier - * so that we can use the above function - * addExamples for both initializing + adding examples later. - */ -function createClassifier(req, res) { - let classifier_name = req.body.classifier_name; - console.log(classifier_name) - var create_url = base_url + "me/"; - let token_text = 'Token ' + writeToken; - axios.post(create_url, {classifierName: classifier_name}, { - headers: {'Content-Type': 'application/json', 'Authorization': token_text} - }) - .then(response => { - console.log(response); - res.json(); - }) - .catch(err => { - res.json({error: err.message}); - }); -} + // Validate classifier name format + if (!/^[a-zA-Z0-9_-]+$/.test(classifierName)) { + return res.status(400).json({ error: 'Classifier name must contain only letters, numbers, underscores and hyphens' }); + } -function delClassifier(req, res) { - let classifier_id = req.body.classifier_id; - var del_url = base_url + "me/" + classifier_id; - let token_text = 'Token ' + writeToken; - axios.delete(del_url, { - headers: {'Content-Type': 'application/json', 'Authorization': token_text} - }) - .then(response => { - res.json(); - }) - .catch(err => { - res.json({error: err.message}); - }); -} + console.log('Training classifier:', classifierName); + console.log('Training data:', trainingData); + + // Train the classifier directly - uClassify creates the classifier automatically + const trainUrl = `https://api.uclassify.com/v1/uclassify/${classifierName}/train`; + console.log('Training classifier at:', trainUrl); + + // Convert training data from {category: [texts]} format to uClassify format + const texts = []; + Object.entries(trainingData).forEach(([className, examples]) => { + if (!Array.isArray(examples)) { + throw new Error(`Training data for class ${className} must be an array`); + } + examples.forEach(text => { + if (typeof text !== 'string' || !text.trim()) { + throw new Error(`Invalid training example in class ${className}: ${text}`); + } + texts.push({ + text: text.trim(), + className: className + }); + }); + }); -function classify(req, res) { - var classifier_id = req.body.classifier_id; - var phrase = req.body.phrase; - var classify_username = req.body.classify_username; - if (classify_username == null) { - classify_username = "" - } + if (texts.length === 0) { + return res.status(400).json({ error: 'No valid training examples provided' }); + } - let classifyURL = base_url+classify_username+'/'+classifier_id+'/classify'; - let token_text = 'Token ' + readToken; + const trainData = { texts }; - axios.post(classifyURL, {texts: [phrase]}, { - headers: {'Content-Type': 'application/json', 'Authorization': token_text} - }) - .then(response => { - res.json(response.data[0].classification); - }) - .catch(err => { - var error = errorHandler(err, response); - res.json({error: error}); - }); -} + console.log('Sending training data:', JSON.stringify(trainData, null, 2)); -function errorHandler(err, httpResponse){ - if(httpResponse.status === 413 || httpResponse.status === 200){ - return 'Request entity too large'; - } if(httpResponse.status === 530){ - return 'uClassify Service Unavailable'; - } if(httpResponse.status === 400){ - return 'Bad Request. Check your text again.'; - } if(httpResponse.status === 500){ - return 'uClassify has an internal server error.'; - } else { - return 'Could not classify the text. uClassify service may be unavailable.'; - } -} + // First create the classifier if it doesn't exist + try { + const createUrl = `https://api.uclassify.com/v1/uclassify/${classifierName}/create`; + await axios.post(createUrl, {}, { + headers: { + 'Authorization': `Token ${uclassifyWriteApiKey}`, + 'Content-Type': 'application/json' + } + }); + } catch (createError) { + // Ignore 409 Conflict error which means classifier already exists + if (createError.response?.status !== 409) { + throw createError; + } + } -function removeClass(req, res){ - let classifier_id = req.body.classifier_name; - let class_name = req.body.class_name; - var del_url = base_url + "me/" + classifier_id + "/" + class_name; - let token_text = 'Token ' + writeToken; - axios.delete(del_url, { - headers: {'Content-Type': 'application/json', 'Authorization': token_text} - }) - .then(response => { - res.json(); - }) - .catch(err => { - res.json({error: err.message}); - }); -} + // Then train the classifier + const trainResponse = await axios.post(trainUrl, trainData, { + headers: { + 'Authorization': `Token ${uclassifyWriteApiKey}`, + 'Content-Type': 'application/json' + } + }); -function untrain(req, res){ - let classifier_name = req.body.classifier_name; - let class_name = req.body.class_name; - let training_data = req.body.training_data; - var untrain_url = base_url + "me/" + classifier_name + "/" + class_name + "/untrain"; - let token_text = 'Token ' + writeToken; - axios.post(untrain_url, {texts: training_data}, { - headers: {'Content-Type': 'application/json', 'Authorization': token_text} - }) - .then(response => { - console.log(response); - res.json(); - }) - .catch(err => { - res.json({error: err.message}); - }); -} + console.log('Training response:', trainResponse.data); + res.json({ message: 'Classifier trained successfully', data: trainResponse.data }); + } catch (error) { + console.error('Training error:', error.response ? { + status: error.response.status, + data: error.response.data, + url: error.response.config?.url, + method: error.response.config?.method, + headers: error.response.config?.headers + } : error.message); + + res.status(error.response?.status || 500).json({ + error: 'Training failed', + details: error.response ? error.response.data : error.message + }); + } +}; -function trainAll(req, res) { - var classifierName = req.body.classifier_name; - var training_data = req.body.training_data; - var functionsToExecute = []; - functionsToExecute.push(getCreateClassifierFunction(writeToken, classifierName)); - Object.keys(training_data).forEach((key) => { - functionsToExecute.push(getTrainLabelFunction(writeToken, classifierName, key, training_data[key])); - }); +exports.classify = async function(req, res) { + try { + const classifierName = req.body.classifier_name; + const text = req.body.text; - async.series(functionsToExecute, (err, results) => { - if (err) { - var errorMessages = []; - results.forEach((result) => { - if (result != null) { - errorMessages.push(result.message); - } - }); - res.json({ error: err.message, errorDetails: errorMessages }); - return; - } - if(results[0] == 400){ - res.json({error: 'Unable to train. Check your inputs or internet and try again.'}); - return; - } else { - res.json("Trained successfully"); + if (!classifierName || !text) { + return res.status(400).json({ error: 'Missing required parameters' }); } - }); -} -function getCreateClassifierFunction(writeAPIKey, classifierName) { - return function (callback) { - var create_url = base_url + "me/"; - let token_text = 'Token ' + writeAPIKey; - axios.post(create_url, {classifierName: classifierName}, { - headers: {'Content-Type': 'application/json', 'Authorization': token_text} - }) - .then(response => { - callback(null, response.status); - }) - .catch(err => { - callback(err, err.response.status); - }); - }; -} + console.log('Classifying text for classifier:', classifierName); + console.log('Text to classify:', text); -function getTrainLabelFunction(writeAPIKey, classifierName, label, labelData) { - return function (callback) { - let class_name = label; - var create_url = base_url + "me/" + classifierName + "/addClass"; - let token_text = 'Token ' + writeAPIKey; - let training_data = labelData; + const url = `https://api.uclassify.com/v1/uclassify/${classifierName}/classify`; + const data = { + texts: [text] + }; - //first create the class - axios.post(create_url, {className: class_name}, { - headers: {'Content-Type': 'application/json', 'Authorization': token_text} - }) - .then(response => { - callback(null, response.status); - }) - .catch(err => { - callback(err, err.response.status); + console.log('Making classification request to:', url); + console.log('With data:', JSON.stringify(data, null, 2)); + + const response = await axios.post(url, data, { + headers: { + 'Authorization': `Token ${uclassifyReadApiKey}`, + 'Content-Type': 'application/json' + } }); - train_url = base_url + "me/" + classifierName + "/" + class_name + "/train"; - //train the label by adding examples - axios.post(train_url, {texts: training_data}, { - headers: {'Content-Type': 'application/json', 'Authorization': token_text} - }) - .then(response => { - callback(null, response.status); - }) - .catch(err => { - callback(err, err.response.status); + console.log('Classification response:', response.data); + res.json(response.data); + } catch (error) { + console.error('Classification error:', error.response ? { + status: error.response.status, + data: error.response.data, + url: error.response.config?.url, + method: error.response.config?.method, + headers: error.response.config?.headers + } : error.message); + + res.status(error.response?.status || 500).json({ + error: 'Classification failed', + details: error.response ? error.response.data : error.message }); } -} - -module.exports = { - getClassifierInformation: getClassifierInformation, - classifyText: classify, - deleteClassifier: delClassifier, - createClassifier: createClassifier, - addExamples: addExamples, - createClass: createClass, - removeClass: removeClass, - untrain: untrain, - trainAll: trainAll, - health: health -} +}; diff --git a/deployment-updates.patch b/deployment-updates.patch new file mode 100644 index 00000000..273f3920 --- /dev/null +++ b/deployment-updates.patch @@ -0,0 +1,19043 @@ +diff --git a/check_uclassify_keys.js b/check_uclassify_keys.js +new file mode 100644 +index 0000000..640e0a6 +--- /dev/null ++++ b/check_uclassify_keys.js +@@ -0,0 +1,29 @@ ++const axios = require('axios'); ++ ++const readToken = " NevFgk0ha0td"; ++const writeToken = "BES0gdWq3hYb"; ++const base_url = "https://api.uclassify.com/v1/"; ++ ++async function checkUClassifyKeys() { ++ try { ++ // Check read key ++ console.log('Checking read key...'); ++ const readResponse = await axios.get(base_url + 'me', { ++ headers: { 'Authorization': 'Token ' + readToken } ++ }); ++ console.log('Read key is valid. User info:', readResponse.data); ++ ++ // Check write key ++ console.log('\nChecking write key...'); ++ const writeResponse = await axios.get(base_url + 'me', { ++ headers: { 'Authorization': 'Token ' + writeToken } ++ }); ++ console.log('Write key is valid. User info:', writeResponse.data); ++ ++ console.log('\nuClassify API keys are valid and working.'); ++ } catch (error) { ++ console.error('Error checking uClassify API keys:', error.response ? error.response.data : error.message); ++ } ++} ++ ++checkUClassifyKeys(); +diff --git a/controllers/clarifai.js b/controllers/clarifai.js +index 898f6f6..06015a7 100644 +--- a/controllers/clarifai.js ++++ b/controllers/clarifai.js +@@ -1,16 +1,24 @@ + const Clarifai = require('clarifai'); + ++let app = null; + if (!process.env.CLARIFAI_API_KEY) { +- console.error('CLARIFAI_API_KEY environment variable is required'); +- process.exit(1); ++ console.warn('CLARIFAI_API_KEY environment variable is missing - vision classification will be disabled'); ++ // Create dummy app with no-op functions ++ app = { ++ models: { ++ create: () => Promise.reject(new Error('Vision classification disabled - missing API key')), ++ delete: () => Promise.reject(new Error('Vision classification disabled - missing API key')), ++ predict: () => Promise.reject(new Error('Vision classification disabled - missing API key')) ++ } ++ }; ++} else { ++ // Initialize Clarifai app once at module level ++ console.log("Initializing Clarifai App with API Key:", process.env.CLARIFAI_API_KEY); ++ app = new Clarifai.App({ ++ apiKey: process.env.CLARIFAI_API_KEY ++ }); + } + +-// Initialize Clarifai app once at module level +-console.log("Initializing Clarifai App with API Key:", process.env.CLARIFAI_API_KEY); +-const app = new Clarifai.App({ +- apiKey: process.env.CLARIFAI_API_KEY +-}); +- + // Export singleton app instance + module.exports.app = app; + +diff --git a/index.js b/index.js +index e1b1eba..8b42f6b 100644 +--- a/index.js ++++ b/index.js +@@ -43,8 +43,8 @@ bb.extend(app, { + + // Validate required environment variables + if (!process.env.CLARIFAI_API_KEY) { +- console.error('CLARIFAI_API_KEY environment variable is required'); +- process.exit(1); ++ console.warn('CLARIFAI_API_KEY is missing, vision classification will be disabled'); ++ // Continue without vision classification + } + + if (!process.env.UCLASSIFY_READ_API_KEY || !process.env.UCLASSIFY_WRITE_API_KEY) { +diff --git a/new-updated-dependencies (1).patch b/new-updated-dependencies (1).patch +deleted file mode 100644 +index 1ac1802..0000000 +--- a/new-updated-dependencies (1).patch ++++ /dev/null +@@ -1,78 +0,0 @@ +-diff --git a/controllers/clarifai.js b/controllers/clarifai.js +-index 19f8a8b..bb65b7c 100644 +---- a/controllers/clarifai.js +-+++ b/controllers/clarifai.js +-@@ -1,14 +1,16 @@ +- const Clarifai = require('clarifai'); +-+const config = require('../config.js'); +- +- function init(api_key) { +-+ console.log("Initializing Clarifai App with API Key:", api_key); +- var app = new Clarifai.App({ +-- apiKey: api_key +-+ apiKey: api_key +- }); +- return app; +- } +- +- function getClassifiersList(req, res) { +-- const apiKey = req.headers.apikey; +-+ const apiKey = config.CLARIFAI_API_KEY; +- const app = init(apiKey); +- app.models.list().then( +- (response) => { +-@@ -32,7 +34,8 @@ function getClassifiersList(req, res) { +- } +- +- function getClassifierInformation(req, res) { +-- const apiKey = req.headers.apikey; +-+ const apiKey = config.CLARIFAI_API_KEY; +-+ console.log("Clarifai API Key:", apiKey); +- const model_id = req.query.classifier_id; +- const app = init(apiKey); +- app.models.get(model_id).then( +-@@ -51,7 +54,7 @@ function getClassifierInformation(req, res) { +- } +- +- function createClassifier(req, res) { +-- const apiKey = req.headers.apikey; +-+ const apiKey = config.CLARIFAI_API_KEY; +- const modelName = req.body.name; +- var data = req.body.training_data; +- const app = init(apiKey); +-@@ -140,7 +143,7 @@ function createClassifier(req, res) { +- } +- +- function deleteClassifier(req, res) { +-- const apiKey = req.headers.apikey; +-+ const apiKey = config.CLARIFAI_API_KEY; +- const model_id = req.query.classifier_id; +- const app = init(apiKey); +- app.models.delete(model_id).then( +-@@ -158,7 +161,7 @@ function deleteClassifier(req, res) { +- } +- +- function classifyImage(req, res) { +-- const apiKey = req.headers.apikey; +-+ const apiKey = config.CLARIFAI_API_KEY; +- var image_data = req.body.image_data; +- if (image_data != undefined) { +- if (image_data.length == 0) { +-@@ -234,7 +237,7 @@ function classifyImage(req, res) { +- } +- +- function classifyURLImage(req, res){ +-- const apiKey = req.headers.apikey; +-+ const apiKey = config.CLARIFAI_API_KEY; +- var image_link = req.body.image_data; +- const model_id = req.body.classifier_id; +- const app = init(apiKey); +-@@ -273,7 +276,7 @@ function classifyURLImage(req, res){ +- +- function updateClassifier(req, res){ +- //info needed for both +-- const apiKey = req.headers.apikey; +-+ const apiKey = config.CLARIFAI_API_KEY; +- const app = init(apiKey); +- const model_id = req.body.classifier_id; +- const images = req.body.images; +diff --git a/simple_text_test.js b/simple_text_test.js +new file mode 100644 +index 0000000..82b305b +--- /dev/null ++++ b/simple_text_test.js +@@ -0,0 +1,51 @@ ++const axios = require('axios'); ++ ++const readToken = " NevFgk0ha0td"; ++const writeToken = "BES0gdWq3hYb"; ++const base_url = "https://api.uclassify.com/v1/"; ++ ++async function testUClassify() { ++ try { ++ // Create a classifier ++ const classifierName = 'TestClassifier' + Date.now(); ++ const createUrl = base_url + "me/"; ++ await axios.post(createUrl, { classifierName }, { ++ headers: { 'Content-Type': 'application/json', 'Authorization': 'Token ' + writeToken } ++ }); ++ console.log('Classifier created:', classifierName); ++ ++ // Add a class ++ const addClass_url = base_url + "me/" + classifierName + "/addClass"; ++ await axios.post(addClass_url, { className: 'positive' }, { ++ headers: { 'Content-Type': 'application/json', 'Authorization': 'Token ' + writeToken } ++ }); ++ console.log('Class added: positive'); ++ ++ // Train the classifier ++ const train_url = base_url + "me/" + classifierName + "/positive/train"; ++ await axios.post(train_url, { texts: ['great', 'awesome', 'fantastic'] }, { ++ headers: { 'Content-Type': 'application/json', 'Authorization': 'Token ' + writeToken } ++ }); ++ console.log('Training examples added'); ++ ++ // Classify text ++ const classify_url = base_url + "me/" + classifierName + "/classify"; ++ const classificationResult = await axios.post(classify_url, { texts: ['This is amazing!'] }, { ++ headers: { 'Content-Type': 'application/json', 'Authorization': 'Token ' + readToken } ++ }); ++ console.log('Classification result:', classificationResult.data); ++ ++ // Clean up ++ const delete_url = base_url + "me/" + classifierName; ++ await axios.delete(delete_url, { ++ headers: { 'Content-Type': 'application/json', 'Authorization': 'Token ' + writeToken } ++ }); ++ console.log('Classifier deleted'); ++ ++ console.log('uClassify API test completed successfully'); ++ } catch (error) { ++ console.error('Error during uClassify API test:', error.response ? error.response.data : error.message); ++ } ++} ++ ++testUClassify(); +diff --git a/static/test_images/cats/cat1.jpg b/static/test_images/cats/cat1.jpg +new file mode 100644 +index 0000000..f3997b2 +Binary files /dev/null and b/static/test_images/cats/cat1.jpg differ +diff --git a/static/test_images/cats/cat10.jpg b/static/test_images/cats/cat10.jpg +new file mode 100644 +index 0000000..95eb8b5 +Binary files /dev/null and b/static/test_images/cats/cat10.jpg differ +diff --git a/static/test_images/cats/cat2.jpg b/static/test_images/cats/cat2.jpg +new file mode 100644 +index 0000000..94d8da7 +Binary files /dev/null and b/static/test_images/cats/cat2.jpg differ +diff --git a/static/test_images/cats/cat3.jpg b/static/test_images/cats/cat3.jpg +new file mode 100644 +index 0000000..e878839 +Binary files /dev/null and b/static/test_images/cats/cat3.jpg differ +diff --git a/static/test_images/cats/cat4.jpg b/static/test_images/cats/cat4.jpg +new file mode 100644 +index 0000000..3eaa18e +Binary files /dev/null and b/static/test_images/cats/cat4.jpg differ +diff --git a/static/test_images/cats/cat5.jpg b/static/test_images/cats/cat5.jpg +new file mode 100644 +index 0000000..875bb7e +Binary files /dev/null and b/static/test_images/cats/cat5.jpg differ +diff --git a/static/test_images/cats/cat6.jpg b/static/test_images/cats/cat6.jpg +new file mode 100644 +index 0000000..355cfbb +Binary files /dev/null and b/static/test_images/cats/cat6.jpg differ +diff --git a/static/test_images/cats/cat7.jpg b/static/test_images/cats/cat7.jpg +new file mode 100644 +index 0000000..cca81ef +Binary files /dev/null and b/static/test_images/cats/cat7.jpg differ +diff --git a/static/test_images/cats/cat8.jpg b/static/test_images/cats/cat8.jpg +new file mode 100644 +index 0000000..4e74245 +Binary files /dev/null and b/static/test_images/cats/cat8.jpg differ +diff --git a/static/test_images/cats/cat9.jpg b/static/test_images/cats/cat9.jpg +new file mode 100644 +index 0000000..4b04ce4 +Binary files /dev/null and b/static/test_images/cats/cat9.jpg differ +diff --git a/static/test_images/dogs/dog1.jpg b/static/test_images/dogs/dog1.jpg +new file mode 100644 +index 0000000..588569f +Binary files /dev/null and b/static/test_images/dogs/dog1.jpg differ +diff --git a/static/test_images/dogs/dog10.jpg b/static/test_images/dogs/dog10.jpg +new file mode 100644 +index 0000000..b9dbdc6 +Binary files /dev/null and b/static/test_images/dogs/dog10.jpg differ +diff --git a/static/test_images/dogs/dog2.jpg b/static/test_images/dogs/dog2.jpg +new file mode 100644 +index 0000000..440ea3d +Binary files /dev/null and b/static/test_images/dogs/dog2.jpg differ +diff --git a/static/test_images/dogs/dog3.jpg b/static/test_images/dogs/dog3.jpg +new file mode 100644 +index 0000000..664de94 +Binary files /dev/null and b/static/test_images/dogs/dog3.jpg differ +diff --git a/static/test_images/dogs/dog4.jpg b/static/test_images/dogs/dog4.jpg +new file mode 100644 +index 0000000..e1eeee6 +Binary files /dev/null and b/static/test_images/dogs/dog4.jpg differ +diff --git a/static/test_images/dogs/dog5.jpg b/static/test_images/dogs/dog5.jpg +new file mode 100644 +index 0000000..96b36e3 +Binary files /dev/null and b/static/test_images/dogs/dog5.jpg differ +diff --git a/static/test_images/dogs/dog6.jpg b/static/test_images/dogs/dog6.jpg +new file mode 100644 +index 0000000..96a473e +Binary files /dev/null and b/static/test_images/dogs/dog6.jpg differ +diff --git a/static/test_images/dogs/dog7.jpg b/static/test_images/dogs/dog7.jpg +new file mode 100644 +index 0000000..2a65188 +Binary files /dev/null and b/static/test_images/dogs/dog7.jpg differ +diff --git a/static/test_images/dogs/dog8.jpg b/static/test_images/dogs/dog8.jpg +new file mode 100644 +index 0000000..efce761 +Binary files /dev/null and b/static/test_images/dogs/dog8.jpg differ +diff --git a/static/test_images/dogs/dog9.jpg b/static/test_images/dogs/dog9.jpg +new file mode 100644 +index 0000000..b212823 +Binary files /dev/null and b/static/test_images/dogs/dog9.jpg differ +diff --git a/test_images/cats/cat1.jpg b/test_images/cats/cat1.jpg +new file mode 100644 +index 0000000..f3997b2 +Binary files /dev/null and b/test_images/cats/cat1.jpg differ +diff --git a/test_images/cats/cat10.jpg b/test_images/cats/cat10.jpg +new file mode 100644 +index 0000000..95eb8b5 +Binary files /dev/null and b/test_images/cats/cat10.jpg differ +diff --git a/test_images/cats/cat2.jpg b/test_images/cats/cat2.jpg +new file mode 100644 +index 0000000..94d8da7 +Binary files /dev/null and b/test_images/cats/cat2.jpg differ +diff --git a/test_images/cats/cat3.jpg b/test_images/cats/cat3.jpg +new file mode 100644 +index 0000000..e878839 +Binary files /dev/null and b/test_images/cats/cat3.jpg differ +diff --git a/test_images/cats/cat4.jpg b/test_images/cats/cat4.jpg +new file mode 100644 +index 0000000..3eaa18e +Binary files /dev/null and b/test_images/cats/cat4.jpg differ +diff --git a/test_images/cats/cat5.jpg b/test_images/cats/cat5.jpg +new file mode 100644 +index 0000000..875bb7e +Binary files /dev/null and b/test_images/cats/cat5.jpg differ +diff --git a/test_images/cats/cat6.jpg b/test_images/cats/cat6.jpg +new file mode 100644 +index 0000000..355cfbb +Binary files /dev/null and b/test_images/cats/cat6.jpg differ +diff --git a/test_images/cats/cat7.jpg b/test_images/cats/cat7.jpg +new file mode 100644 +index 0000000..cca81ef +Binary files /dev/null and b/test_images/cats/cat7.jpg differ +diff --git a/test_images/cats/cat8.jpg b/test_images/cats/cat8.jpg +new file mode 100644 +index 0000000..4e74245 +Binary files /dev/null and b/test_images/cats/cat8.jpg differ +diff --git a/test_images/cats/cat9.jpg b/test_images/cats/cat9.jpg +new file mode 100644 +index 0000000..4b04ce4 +Binary files /dev/null and b/test_images/cats/cat9.jpg differ +diff --git a/test_images/dogs/dog1.jpg b/test_images/dogs/dog1.jpg +new file mode 100644 +index 0000000..588569f +Binary files /dev/null and b/test_images/dogs/dog1.jpg differ +diff --git a/test_images/dogs/dog10.jpg b/test_images/dogs/dog10.jpg +new file mode 100644 +index 0000000..b9dbdc6 +Binary files /dev/null and b/test_images/dogs/dog10.jpg differ +diff --git a/test_images/dogs/dog2.jpg b/test_images/dogs/dog2.jpg +new file mode 100644 +index 0000000..440ea3d +Binary files /dev/null and b/test_images/dogs/dog2.jpg differ +diff --git a/test_images/dogs/dog3.jpg b/test_images/dogs/dog3.jpg +new file mode 100644 +index 0000000..664de94 +Binary files /dev/null and b/test_images/dogs/dog3.jpg differ +diff --git a/test_images/dogs/dog4.jpg b/test_images/dogs/dog4.jpg +new file mode 100644 +index 0000000..e1eeee6 +Binary files /dev/null and b/test_images/dogs/dog4.jpg differ +diff --git a/test_images/dogs/dog5.jpg b/test_images/dogs/dog5.jpg +new file mode 100644 +index 0000000..96b36e3 +Binary files /dev/null and b/test_images/dogs/dog5.jpg differ +diff --git a/test_images/dogs/dog6.jpg b/test_images/dogs/dog6.jpg +new file mode 100644 +index 0000000..96a473e +Binary files /dev/null and b/test_images/dogs/dog6.jpg differ +diff --git a/test_images/dogs/dog7.jpg b/test_images/dogs/dog7.jpg +new file mode 100644 +index 0000000..2a65188 +Binary files /dev/null and b/test_images/dogs/dog7.jpg differ +diff --git a/test_images/dogs/dog8.jpg b/test_images/dogs/dog8.jpg +new file mode 100644 +index 0000000..efce761 +Binary files /dev/null and b/test_images/dogs/dog8.jpg differ +diff --git a/test_images/dogs/dog9.jpg b/test_images/dogs/dog9.jpg +new file mode 100644 +index 0000000..b212823 +Binary files /dev/null and b/test_images/dogs/dog9.jpg differ +diff --git a/test_text_classification.js b/test_text_classification.js +new file mode 100644 +index 0000000..fe2243a +--- /dev/null ++++ b/test_text_classification.js +@@ -0,0 +1,41 @@ ++const axios = require('axios'); ++const textController = require('./controllers/text'); ++ ++// Set up environment variables ++process.env.UCLASSIFY_READ_API_KEY = " NevFgk0ha0td"; ++process.env.UCLASSIFY_WRITE_API_KEY = "BES0gdWq3hYb"; ++ ++async function testTextClassification() { ++ try { ++ // Create a classifier ++ const classifierName = 'TestClassifier' + Date.now(); ++ await new Promise((resolve) => textController.createClassifier({ body: { classifier_name: classifierName } }, { json: resolve })); ++ console.log('Classifier created:', classifierName); ++ ++ // Add classes ++ await new Promise((resolve) => textController.createClass({ body: { classifier_name: classifierName, class_name: 'positive' } }, { json: resolve })); ++ await new Promise((resolve) => textController.createClass({ body: { classifier_name: classifierName, class_name: 'negative' } }, { json: resolve })); ++ console.log('Classes added: positive, negative'); ++ ++ // Train the classifier ++ await new Promise((resolve) => textController.addExamples({ body: { classifier_name: classifierName, class_name: 'positive', texts: ['great', 'awesome', 'fantastic'] } }, { json: resolve })); ++ await new Promise((resolve) => textController.addExamples({ body: { classifier_name: classifierName, class_name: 'negative', texts: ['terrible', 'awful', 'horrible'] } }, { json: resolve })); ++ console.log('Training examples added'); ++ ++ // Classify text ++ const classificationResult = await new Promise((resolve) => { ++ textController.classifyText({ body: { classifier_id: classifierName, phrase: 'This is amazing!' } }, { json: resolve }); ++ }); ++ console.log('Classification result:', classificationResult); ++ ++ // Clean up ++ await new Promise((resolve) => textController.deleteClassifier({ body: { classifier_id: classifierName } }, { json: resolve })); ++ console.log('Classifier deleted'); ++ ++ console.log('Text classification test completed successfully'); ++ } catch (error) { ++ console.error('Error during text classification test:', error.message); ++ } ++} ++ ++testTextClassification(); +diff --git a/update-dependencies.patch b/update-dependencies.patch +deleted file mode 100644 +index 9aba84a..0000000 +--- a/update-dependencies.patch ++++ /dev/null +@@ -1,18546 +0,0 @@ +-diff --git a/controllers/clarifai.js b/controllers/clarifai.js +-index 19f8a8b..bb65b7c 100644 +---- a/controllers/clarifai.js +-+++ b/controllers/clarifai.js +-@@ -1,14 +1,16 @@ +- const Clarifai = require('clarifai'); +-+const config = require('../config.js'); +- +- function init(api_key) { +-+ console.log("Initializing Clarifai App with API Key:", api_key); +- var app = new Clarifai.App({ +-- apiKey: api_key +-+ apiKey: api_key +- }); +- return app; +- } +- +- function getClassifiersList(req, res) { +-- const apiKey = req.headers.apikey; +-+ const apiKey = config.CLARIFAI_API_KEY; +- const app = init(apiKey); +- app.models.list().then( +- (response) => { +-@@ -32,7 +34,8 @@ function getClassifiersList(req, res) { +- } +- +- function getClassifierInformation(req, res) { +-- const apiKey = req.headers.apikey; +-+ const apiKey = config.CLARIFAI_API_KEY; +-+ console.log("Clarifai API Key:", apiKey); +- const model_id = req.query.classifier_id; +- const app = init(apiKey); +- app.models.get(model_id).then( +-@@ -51,7 +54,7 @@ function getClassifierInformation(req, res) { +- } +- +- function createClassifier(req, res) { +-- const apiKey = req.headers.apikey; +-+ const apiKey = config.CLARIFAI_API_KEY; +- const modelName = req.body.name; +- var data = req.body.training_data; +- const app = init(apiKey); +-@@ -140,7 +143,7 @@ function createClassifier(req, res) { +- } +- +- function deleteClassifier(req, res) { +-- const apiKey = req.headers.apikey; +-+ const apiKey = config.CLARIFAI_API_KEY; +- const model_id = req.query.classifier_id; +- const app = init(apiKey); +- app.models.delete(model_id).then( +-@@ -158,7 +161,7 @@ function deleteClassifier(req, res) { +- } +- +- function classifyImage(req, res) { +-- const apiKey = req.headers.apikey; +-+ const apiKey = config.CLARIFAI_API_KEY; +- var image_data = req.body.image_data; +- if (image_data != undefined) { +- if (image_data.length == 0) { +-@@ -234,7 +237,7 @@ function classifyImage(req, res) { +- } +- +- function classifyURLImage(req, res){ +-- const apiKey = req.headers.apikey; +-+ const apiKey = config.CLARIFAI_API_KEY; +- var image_link = req.body.image_data; +- const model_id = req.body.classifier_id; +- const app = init(apiKey); +-@@ -273,7 +276,7 @@ function classifyURLImage(req, res){ +- +- function updateClassifier(req, res){ +- //info needed for both +-- const apiKey = req.headers.apikey; +-+ const apiKey = config.CLARIFAI_API_KEY; +- const app = init(apiKey); +- const model_id = req.body.classifier_id; +- const images = req.body.images; +-diff --git a/controllers/text.js b/controllers/text.js +-index fca8635..ad9d8a9 100644 +---- a/controllers/text.js +-+++ b/controllers/text.js +-@@ -1,4 +1,4 @@ +--const request = require('request'); +-+const axios = require('axios'); +- const base_url = "https://api.uclassify.com/v1/"; +- const async = require('async'); +- +-@@ -8,22 +8,19 @@ function health(req, res){ +- } +- +- function getClassifierInformation(req, res) { +-- let read_token = req.body.read_token +-- var classifier_id = req.body.classifier_id +-+ let read_token = req.body.read_token; +-+ var classifier_id = req.body.classifier_id; +- let username = req.body.username; +- get_classifier_url = base_url + username + "/" + classifier_id; +- token_text = "Token " + read_token; +-- request.get({ +-- url:get_classifier_url, +-- headers: {'Content-Type': 'application/json', 'Authorization': token_text}}, +-- function(err,httpResponse){ +-- if(err){ +-- res.json({error: err.message}); +-- return; +-- } else { +-- res.json(JSON.parse(httpResponse.body)); +-- return; +-- } +-+ axios.get(get_classifier_url, { +-+ headers: {'Content-Type': 'application/json', 'Authorization': token_text} +-+ }) +-+ .then(response => { +-+ res.json(response.data); +-+ }) +-+ .catch(err => { +-+ res.json({error: err.message}); +- }); +- } +- +-@@ -38,19 +35,15 @@ function addExamples(req, res) { +- let training_data = req.body.texts; +- var create_url = base_url + "me/" + classifier_name + "/" + class_name + "/train"; +- let token_text = 'Token ' + write_token; +-- request.post({ +-- url:create_url, +-- headers: {'Content-Type': 'application/json', 'Authorization': token_text}, +-- body: {texts: training_data}, json: true}, +-- function(err, httpResponse){ +-- if(err){ +-- res.json({error: err.message}); +-- return; +-- } else { +-- console.log(httpResponse.statusCode); +-- res.json(); +-- return; +-- } +-+ axios.post(create_url, {texts: training_data}, { +-+ headers: {'Content-Type': 'application/json', 'Authorization': token_text} +-+ }) +-+ .then(response => { +-+ console.log(response.status); +-+ res.json(); +-+ }) +-+ .catch(err => { +-+ res.json({error: err.message}); +- }); +- } +- +-@@ -60,19 +53,15 @@ function createClass(req, res) { +- let class_name = req.body.class_name; +- var create_url = base_url + "me/" + classifier_name + "/addClass"; +- let token_text = 'Token ' + write_token; +-- request.post({ +-- url:create_url, +-- headers: {'Content-Type': 'application/json', 'Authorization': token_text}, +-- body: {className: class_name}, json: true}, +-- function(err, httpResponse){ +-- if(err){ +-- res.json({error: err.message}); +-- return; +-- } else { +-- console.log(httpResponse); +-- res.json(); +-- return; +-- } +-+ axios.post(create_url, {className: class_name}, { +-+ headers: {'Content-Type': 'application/json', 'Authorization': token_text} +-+ }) +-+ .then(response => { +-+ console.log(response); +-+ res.json(); +-+ }) +-+ .catch(err => { +-+ res.json({error: err.message}); +- }); +- } +- +-@@ -87,19 +76,15 @@ function createClassifier(req, res) { +- console.log(classifier_name) +- var create_url = base_url + "me/"; +- let token_text = 'Token ' + write_token; +-- request.post({ +-- url:create_url, +-- headers: {'Content-Type': 'application/json', 'Authorization': token_text}, +-- body: {classifierName: classifier_name}, json: true}, +-- function(err, httpResponse){ +-- if(err){ +-- res.json({error: err.message}); +-- return; +-- } else { +-- console.log(httpResponse); +-- res.json(); +-- return; +-- } +-+ axios.post(create_url, {classifierName: classifier_name}, { +-+ headers: {'Content-Type': 'application/json', 'Authorization': token_text} +-+ }) +-+ .then(response => { +-+ console.log(response); +-+ res.json(); +-+ }) +-+ .catch(err => { +-+ res.json({error: err.message}); +- }); +- } +- +-@@ -108,19 +93,15 @@ function delClassifier(req, res) { +- let write_token = req.body.write_token; +- var del_url = base_url + "me/" + classifier_id; +- let token_text = 'Token ' + write_token; +-- request.delete({ +-- url:del_url, +-- headers: {'Content-Type': 'application/json', 'Authorization': token_text}}, +-- function(err,httpResponse){ +-- if(err){ +-- res.json({error: err.message}); +-- return; +-- } else { +-- // console.log(httpResponse); +-- res.json(); +-- return; +-- } +-- }); +-+ axios.delete(del_url, { +-+ headers: {'Content-Type': 'application/json', 'Authorization': token_text} +-+ }) +-+ .then(response => { +-+ res.json(); +-+ }) +-+ .catch(err => { +-+ res.json({error: err.message}); +-+ }); +- } +- +- function classify(req, res) { +-@@ -135,29 +116,26 @@ function classify(req, res) { +- let classifyURL = base_url+classify_username+'/'+classifier_id+'/classify'; +- let token_text = 'Token ' + token; +- +-- request.post({ +-- url:classifyURL, +-- headers: {'Content-Type': 'application/json', 'Authorization': token_text}, +-- body: {texts: [phrase]}, json: true}, +-- function(err,httpResponse, body){ +-- if(httpResponse.statusCode === 200){ +-- res.json(body[0].classification); +-- return; +-- } else { +-- var error = errorHandler(err, httpResponse, body); +-- res.json({error: error}); +-- } +-+ axios.post(classifyURL, {texts: [phrase]}, { +-+ headers: {'Content-Type': 'application/json', 'Authorization': token_text} +-+ }) +-+ .then(response => { +-+ res.json(response.data[0].classification); +-+ }) +-+ .catch(err => { +-+ var error = errorHandler(err, response); +-+ res.json({error: error}); +- }); +- } +- +- function errorHandler(err, httpResponse){ +-- if(httpResponse.statusCode === 413 || httpResponse.statusCode === 200){ +-+ if(httpResponse.status === 413 || httpResponse.status === 200){ +- return 'Request entity too large'; +-- } if(httpResponse.statusCode === 530){ +-+ } if(httpResponse.status === 530){ +- return 'uClassify Service Unavailable'; +-- } if(httpResponse.statusCode === 400){ +-+ } if(httpResponse.status === 400){ +- return 'Bad Request. Check your text again.'; +-- } if(httpResponse.statusCode === 500){ +-+ } if(httpResponse.status === 500){ +- return 'uClassify has an internal server error.'; +- } else { +- return 'Could not classify the text. uClassify service may be unavailable.'; +-@@ -170,18 +148,15 @@ function removeClass(req, res){ +- let write_token = req.body.write_token; +- var del_url = base_url + "me/" + classifier_id + "/" + class_name; +- let token_text = 'Token ' + write_token; +-- request.delete({ +-- url: del_url, +-- headers: {'Content-Type': 'application/json', 'Authorization': token_text}}, +-- function(err,httpResponse){ +-- if(err){ +-- res.json({error: err.message}); +-- return; +-- } else { +-- res.json(); +-- return; +-- } +-- }); +-+ axios.delete(del_url, { +-+ headers: {'Content-Type': 'application/json', 'Authorization': token_text} +-+ }) +-+ .then(response => { +-+ res.json(); +-+ }) +-+ .catch(err => { +-+ res.json({error: err.message}); +-+ }); +- } +- +- function untrain(req, res){ +-@@ -191,19 +166,15 @@ function untrain(req, res){ +- let training_data = req.body.training_data; +- var untrain_url = base_url + "me/" + classifier_name + "/" + class_name + "/untrain"; +- let token_text = 'Token ' + write_token; +-- request.post({ +-- url: untrain_url, +-- headers: {'Content-Type': 'application/json', 'Authorization': token_text}, +-- body: {texts: training_data}, json: true}, +-- function(err, httpResponse){ +-- if(err){ +-- res.json({error: err.message}); +-- return; +-- } else { +-- console.log(httpResponse); +-- res.json(); +-- return; +-- } +-+ axios.post(untrain_url, {texts: training_data}, { +-+ headers: {'Content-Type': 'application/json', 'Authorization': token_text} +-+ }) +-+ .then(response => { +-+ console.log(response); +-+ res.json(); +-+ }) +-+ .catch(err => { +-+ res.json({error: err.message}); +- }); +- } +- +-@@ -216,7 +187,7 @@ function trainAll(req, res) { +-   Object.keys(training_data).forEach((key) => { +-     functionsToExecute.push(getTrainLabelFunction(writeAPIKey, classifierName, key, training_data[key])); +-   }); +-- +-+ +- async.series(functionsToExecute, (err, results) => { +- if (err) { +- var errorMessages = []; +-@@ -242,57 +213,48 @@ function getCreateClassifierFunction(writeAPIKey, classifierName) { +-   return function (callback) { +- var create_url = base_url + "me/"; +- let token_text = 'Token ' + writeAPIKey; +-- request.post({ +-- url:create_url, +-- headers: {'Content-Type': 'application/json', 'Authorization': token_text}, +-- body: {classifierName: classifierName}, json: true}, +-- function(err, body){ +-- if(err){ +-- callback(err, body.statusCode); +-- return; +-- } else { +-- callback(null, body.statusCode); +-- } +-+ axios.post(create_url, {classifierName: classifierName}, { +-+ headers: {'Content-Type': 'application/json', 'Authorization': token_text} +-+ }) +-+ .then(response => { +-+ callback(null, response.status); +-+ }) +-+ .catch(err => { +-+ callback(err, err.response.status); +- }); +- }; +- } +- +- +- function getTrainLabelFunction(writeAPIKey, classifierName, label, labelData) { +-- return function (callback) { +-+ return function (callback) { +- let class_name = label; +- var create_url = base_url + "me/" + classifierName + "/addClass"; +- let token_text = 'Token ' + writeAPIKey; +- let training_data = labelData; +- +- //first create the class +-- request.post({ +-- url:create_url, +-- headers: {'Content-Type': 'application/json', 'Authorization': token_text}, +-- body: {className: class_name}, json: true}, +-- function(err, body){ +-- if(err){ +-- callback(err, body.statusCode); +-- return; +-- } else { +-- callback(err, body.statusCode); +-- return; +-- } +-+ axios.post(create_url, {className: class_name}, { +-+ headers: {'Content-Type': 'application/json', 'Authorization': token_text} +-+ }) +-+ .then(response => { +-+ callback(null, response.status); +-+ }) +-+ .catch(err => { +-+ callback(err, err.response.status); +- }); +-- +-- train_url = base_url + "me/" + classifierName + "/" + class_name + "/train"; +-+ +-+ train_url = base_url + "me/" + classifierName + "/" + class_name + "/train"; +- //train the label by adding examples +-- request.post({ +-- url:train_url, +-- headers: {'Content-Type': 'application/json', 'Authorization': token_text}, +-- body: {texts: training_data}, json: true}, +-- function(err, body){ +-- if(err){ +-- callback(err, body.statusCode); +-- return; +-- } +-+ axios.post(train_url, {texts: training_data}, { +-+ headers: {'Content-Type': 'application/json', 'Authorization': token_text} +-+ }) +-+ .then(response => { +-+ callback(null, response.status); +-+ }) +-+ .catch(err => { +-+ callback(err, err.response.status); +- }); +-- +- } +- } +- +-diff --git a/index.js b/index.js +-index 83b7a53..e85f56d 100644 +---- a/index.js +-+++ b/index.js +-@@ -8,17 +8,16 @@ const config = require('./config') +- const bb = require('express-busboy') +- const https = require('https') +- const args = require('minimist')(process.argv.slice(2)) +--const expressHandlebars = require('express-handlebars') +-+const { create } = require('express-handlebars') +- +- const app = express() +- app.use(cors()) +- +--app.engine( +-- 'handlebars', +-- expressHandlebars({ +-- defaultLayout: 'main' +-- }) +--) +-+const hbs = create({ +-+ defaultLayout: 'main' +-+}) +-+ +-+app.engine('handlebars', hbs.engine) +- app.set('view engine', 'handlebars') +- +- app.use(express.static(path.join(__dirname, 'static'))) +-@@ -52,4 +51,3 @@ if(args.http == true) { +- console.log(`Server running http://localhost:${config.SERVER_PORT}`) +- }) +- } +-- +-diff --git a/package-lock.json b/package-lock.json +-index cd1f876..e690877 100644 +---- a/package-lock.json +-+++ b/package-lock.json +-@@ -1,130 +1,381 @@ +- { +- "name": "cognimates-web", +- "version": "1.0.0", +-- "lockfileVersion": 1, +-+ "lockfileVersion": 3, +- "requires": true, +-- "dependencies": { +-- "abbrev": { +-+ "packages": { +-+ "": { +-+ "name": "cognimates-web", +-+ "version": "1.0.0", +-+ "license": "ISC", +-+ "dependencies": { +-+ "archiver": "^2.1.1", +-+ "axios": "^1.7.2", +-+ "body-parser": "^1.18.2", +-+ "clarifai": "^2.9.0", +-+ "cors": "^2.8.5", +-+ "csv": "^6.3.9", +-+ "ejs": "^3.1.10", +-+ "express": "^4.16.3", +-+ "express-busboy": "^7.0.0", +-+ "express-handlebars": "^7.1.3", +-+ "localforage": "^1.7.3", +-+ "minimist": "^1.2.0", +-+ "mkdirp": "^0.5.1", +-+ "whirlpool": "0.0.4" +-+ }, +-+ "devDependencies": { +-+ "concurrently": "^8.2.2", +-+ "node-sass": "^9.0.0", +-+ "nodemon": "^3.1.4" +-+ } +-+ }, +-+ "node_modules/@babel/code-frame": { +-+ "version": "7.24.7", +-+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.7.tgz", +-+ "integrity": "sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==", +-+ "dev": true, +-+ "dependencies": { +-+ "@babel/highlight": "^7.24.7", +-+ "picocolors": "^1.0.0" +-+ }, +-+ "engines": { +-+ "node": ">=6.9.0" +-+ } +-+ }, +-+ "node_modules/@babel/helper-validator-identifier": { +-+ "version": "7.24.7", +-+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz", +-+ "integrity": "sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==", +-+ "dev": true, +-+ "engines": { +-+ "node": ">=6.9.0" +-+ } +-+ }, +-+ "node_modules/@babel/highlight": { +-+ "version": "7.24.7", +-+ "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.7.tgz", +-+ "integrity": "sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==", +-+ "dev": true, +-+ "dependencies": { +-+ "@babel/helper-validator-identifier": "^7.24.7", +-+ "chalk": "^2.4.2", +-+ "js-tokens": "^4.0.0", +-+ "picocolors": "^1.0.0" +-+ }, +-+ "engines": { +-+ "node": ">=6.9.0" +-+ } +-+ }, +-+ "node_modules/@babel/highlight/node_modules/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, +-+ "dependencies": { +-+ "ansi-styles": "^3.2.1", +-+ "escape-string-regexp": "^1.0.5", +-+ "supports-color": "^5.3.0" +-+ }, +-+ "engines": { +-+ "node": ">=4" +-+ } +-+ }, +-+ "node_modules/@babel/highlight/node_modules/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, +-+ "dependencies": { +-+ "has-flag": "^3.0.0" +-+ }, +-+ "engines": { +-+ "node": ">=4" +-+ } +-+ }, +-+ "node_modules/@babel/runtime": { +-+ "version": "7.24.7", +-+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.24.7.tgz", +-+ "integrity": "sha512-UwgBRMjJP+xv857DCngvqXI3Iq6J4v0wXmwc6sapg+zyhbwmQX67LUEFrkK5tbyJ30jGuG3ZvWpBiB9LCy1kWw==", +-+ "dev": true, +-+ "dependencies": { +-+ "regenerator-runtime": "^0.14.0" +-+ }, +-+ "engines": { +-+ "node": ">=6.9.0" +-+ } +-+ }, +-+ "node_modules/@gar/promisify": { +-+ "version": "1.1.3", +-+ "resolved": "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.3.tgz", +-+ "integrity": "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==", +-+ "dev": true +-+ }, +-+ "node_modules/@isaacs/cliui": { +-+ "version": "8.0.2", +-+ "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", +-+ "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", +-+ "dependencies": { +-+ "string-width": "^5.1.2", +-+ "string-width-cjs": "npm:string-width@^4.2.0", +-+ "strip-ansi": "^7.0.1", +-+ "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", +-+ "wrap-ansi": "^8.1.0", +-+ "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" +-+ }, +-+ "engines": { +-+ "node": ">=12" +-+ } +-+ }, +-+ "node_modules/@isaacs/cliui/node_modules/ansi-regex": { +-+ "version": "6.0.1", +-+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", +-+ "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", +-+ "engines": { +-+ "node": ">=12" +-+ }, +-+ "funding": { +-+ "url": "https://github.com/chalk/ansi-regex?sponsor=1" +-+ } +-+ }, +-+ "node_modules/@isaacs/cliui/node_modules/emoji-regex": { +-+ "version": "9.2.2", +-+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", +-+ "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" +-+ }, +-+ "node_modules/@isaacs/cliui/node_modules/string-width": { +-+ "version": "5.1.2", +-+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", +-+ "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", +-+ "dependencies": { +-+ "eastasianwidth": "^0.2.0", +-+ "emoji-regex": "^9.2.2", +-+ "strip-ansi": "^7.0.1" +-+ }, +-+ "engines": { +-+ "node": ">=12" +-+ }, +-+ "funding": { +-+ "url": "https://github.com/sponsors/sindresorhus" +-+ } +-+ }, +-+ "node_modules/@isaacs/cliui/node_modules/strip-ansi": { +-+ "version": "7.1.0", +-+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", +-+ "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", +-+ "dependencies": { +-+ "ansi-regex": "^6.0.1" +-+ }, +-+ "engines": { +-+ "node": ">=12" +-+ }, +-+ "funding": { +-+ "url": "https://github.com/chalk/strip-ansi?sponsor=1" +-+ } +-+ }, +-+ "node_modules/@npmcli/fs": { +-+ "version": "2.1.2", +-+ "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-2.1.2.tgz", +-+ "integrity": "sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ==", +-+ "dev": true, +-+ "dependencies": { +-+ "@gar/promisify": "^1.1.3", +-+ "semver": "^7.3.5" +-+ }, +-+ "engines": { +-+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0" +-+ } +-+ }, +-+ "node_modules/@npmcli/fs/node_modules/semver": { +-+ "version": "7.6.2", +-+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", +-+ "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", +-+ "dev": true, +-+ "bin": { +-+ "semver": "bin/semver.js" +-+ }, +-+ "engines": { +-+ "node": ">=10" +-+ } +-+ }, +-+ "node_modules/@npmcli/move-file": { +-+ "version": "2.0.1", +-+ "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-2.0.1.tgz", +-+ "integrity": "sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ==", +-+ "deprecated": "This functionality has been moved to @npmcli/fs", +-+ "dev": true, +-+ "dependencies": { +-+ "mkdirp": "^1.0.4", +-+ "rimraf": "^3.0.2" +-+ }, +-+ "engines": { +-+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0" +-+ } +-+ }, +-+ "node_modules/@npmcli/move-file/node_modules/mkdirp": { +-+ "version": "1.0.4", +-+ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", +-+ "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", +-+ "dev": true, +-+ "bin": { +-+ "mkdirp": "bin/cmd.js" +-+ }, +-+ "engines": { +-+ "node": ">=10" +-+ } +-+ }, +-+ "node_modules/@pkgjs/parseargs": { +-+ "version": "0.11.0", +-+ "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", +-+ "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", +-+ "optional": true, +-+ "engines": { +-+ "node": ">=14" +-+ } +-+ }, +-+ "node_modules/@tootallnate/once": { +-+ "version": "2.0.0", +-+ "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz", +-+ "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==", +-+ "dev": true, +-+ "engines": { +-+ "node": ">= 10" +-+ } +-+ }, +-+ "node_modules/@types/minimist": { +-+ "version": "1.2.5", +-+ "resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.5.tgz", +-+ "integrity": "sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==", +-+ "dev": true +-+ }, +-+ "node_modules/@types/normalize-package-data": { +-+ "version": "2.4.4", +-+ "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz", +-+ "integrity": "sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==", +-+ "dev": true +-+ }, +-+ "node_modules/abbrev": { +- "version": "1.1.1", +- "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", +- "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", +- "dev": true +- }, +-- "accepts": { +-- "version": "1.3.5", +-- "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.5.tgz", +-- "integrity": "sha1-63d99gEXI6OxTopywIBcjoZ0a9I=", +-- "requires": { +-- "mime-types": "~2.1.18", +-- "negotiator": "0.6.1" +-+ "node_modules/accepts": { +-+ "version": "1.3.8", +-+ "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", +-+ "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", +-+ "dependencies": { +-+ "mime-types": "~2.1.34", +-+ "negotiator": "0.6.3" +-+ }, +-+ "engines": { +-+ "node": ">= 0.6" +-+ } +-+ }, +-+ "node_modules/agent-base": { +-+ "version": "6.0.2", +-+ "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", +-+ "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", +-+ "dev": true, +-+ "dependencies": { +-+ "debug": "4" +-+ }, +-+ "engines": { +-+ "node": ">= 6.0.0" +- } +- }, +-- "ajv": { +-- "version": "6.10.0", +-- "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.10.0.tgz", +-- "integrity": "sha512-nffhOpkymDECQyR0mnsUtoCE8RlX38G0rYP+wgLWFyZuUyuuojSSvi/+euOiQBIn63whYwYVIIH1TvE3tu4OEg==", +-- "requires": { +-- "fast-deep-equal": "^2.0.1", +-- "fast-json-stable-stringify": "^2.0.0", +-- "json-schema-traverse": "^0.4.1", +-- "uri-js": "^4.2.2" +-+ "node_modules/agent-base/node_modules/debug": { +-+ "version": "4.3.5", +-+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.5.tgz", +-+ "integrity": "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==", +-+ "dev": true, +-+ "dependencies": { +-+ "ms": "2.1.2" +-+ }, +-+ "engines": { +-+ "node": ">=6.0" +-+ }, +-+ "peerDependenciesMeta": { +-+ "supports-color": { +-+ "optional": true +-+ } +- } +- }, +-- "amdefine": { +-- "version": "1.0.1", +-- "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz", +-- "integrity": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=", +-+ "node_modules/agent-base/node_modules/ms": { +-+ "version": "2.1.2", +-+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", +-+ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", +- "dev": true +- }, +-- "ansi-align": { +-- "version": "2.0.0", +-- "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-2.0.0.tgz", +-- "integrity": "sha1-w2rsy6VjuJzrVW82kPCx2eNUf38=", +-+ "node_modules/agentkeepalive": { +-+ "version": "4.5.0", +-+ "resolved": "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.5.0.tgz", +-+ "integrity": "sha512-5GG/5IbQQpC9FpkRGsSvZI5QYeSCzlJHdpBQntCsuTOxhKD8lqKhrleg2Yi7yvMIf82Ycmmqln9U8V9qwEiJew==", +- "dev": true, +-- "requires": { +-- "string-width": "^2.0.0" +-+ "dependencies": { +-+ "humanize-ms": "^1.2.1" +- }, +-+ "engines": { +-+ "node": ">= 8.0.0" +-+ } +-+ }, +-+ "node_modules/aggregate-error": { +-+ "version": "3.1.0", +-+ "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", +-+ "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", +-+ "dev": true, +- "dependencies": { +-- "ansi-regex": { +-- "version": "3.0.0", +-- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", +-- "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", +-- "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 +-- }, +-- "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" +-- } +-- }, +-- "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" +-- } +-- } +-+ "clean-stack": "^2.0.0", +-+ "indent-string": "^4.0.0" +-+ }, +-+ "engines": { +-+ "node": ">=8" +- } +- }, +-- "ansi-regex": { +-- "version": "2.1.1", +-- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", +-- "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", +-- "dev": true +-+ "node_modules/ansi-regex": { +-+ "version": "5.0.1", +-+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", +-+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", +-+ "engines": { +-+ "node": ">=8" +-+ } +- }, +-- "ansi-styles": { +-+ "node_modules/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": { +-+ "dependencies": { +- "color-convert": "^1.9.0" +-+ }, +-+ "engines": { +-+ "node": ">=4" +- } +- }, +-- "anymatch": { +-- "version": "2.0.0", +-- "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", +-- "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", +-- "dev": true, +-- "requires": { +-- "micromatch": "^3.1.4", +-- "normalize-path": "^2.1.1" +-- }, +-- "dependencies": { +-- "normalize-path": { +-- "version": "2.1.1", +-- "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", +-- "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", +-- "dev": true, +-- "requires": { +-- "remove-trailing-separator": "^1.0.1" +-- } +-- } +-+ "node_modules/anymatch": { +-+ "version": "3.1.3", +-+ "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", +-+ "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", +-+ "dev": true, +-+ "dependencies": { +-+ "normalize-path": "^3.0.0", +-+ "picomatch": "^2.0.4" +-+ }, +-+ "engines": { +-+ "node": ">= 8" +- } +- }, +-- "aproba": { +-- "version": "1.2.0", +-- "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", +-- "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==", +-+ "node_modules/aproba": { +-+ "version": "2.0.0", +-+ "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", +-+ "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==", +- "dev": true +- }, +-- "archiver": { +-+ "node_modules/archiver": { +- "version": "2.1.1", +- "resolved": "https://registry.npmjs.org/archiver/-/archiver-2.1.1.tgz", +- "integrity": "sha1-/2YrSnggFJSj7lRNOjP+dJZQnrw=", +-- "requires": { +-+ "dependencies": { +- "archiver-utils": "^1.3.0", +- "async": "^2.0.0", +- "buffer-crc32": "^0.2.1", +-@@ -133,13 +384,16 @@ +- "readable-stream": "^2.0.0", +- "tar-stream": "^1.5.0", +- "zip-stream": "^1.2.0" +-+ }, +-+ "engines": { +-+ "node": ">= 4" +- } +- }, +-- "archiver-utils": { +-+ "node_modules/archiver-utils": { +- "version": "1.3.0", +- "resolved": "https://registry.npmjs.org/archiver-utils/-/archiver-utils-1.3.0.tgz", +- "integrity": "sha1-5QtMCccL89aA4y/xt5lOn52JUXQ=", +-- "requires": { +-+ "dependencies": { +- "glob": "^7.0.0", +- "graceful-fs": "^4.1.0", +- "lazystream": "^1.0.0", +-@@ -147,3779 +401,3264 @@ +- "normalize-path": "^2.0.0", +- "readable-stream": "^2.0.0" +- }, +-+ "engines": { +-+ "node": ">= 0.10.0" +-+ } +-+ }, +-+ "node_modules/archiver-utils/node_modules/normalize-path": { +-+ "version": "2.1.1", +-+ "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", +-+ "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", +- "dependencies": { +-- "normalize-path": { +-- "version": "2.1.1", +-- "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", +-- "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", +-- "requires": { +-- "remove-trailing-separator": "^1.0.1" +-- } +-- } +-+ "remove-trailing-separator": "^1.0.1" +-+ }, +-+ "engines": { +-+ "node": ">=0.10.0" +- } +- }, +-- "are-we-there-yet": { +-- "version": "1.1.5", +-- "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz", +-- "integrity": "sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w==", +-+ "node_modules/are-we-there-yet": { +-+ "version": "3.0.1", +-+ "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-3.0.1.tgz", +-+ "integrity": "sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==", +-+ "deprecated": "This package is no longer supported.", +- "dev": true, +-- "requires": { +-+ "dependencies": { +- "delegates": "^1.0.0", +-- "readable-stream": "^2.0.6" +-+ "readable-stream": "^3.6.0" +-+ }, +-+ "engines": { +-+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0" +- } +- }, +-- "arr-diff": { +-- "version": "4.0.0", +-- "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", +-- "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=", +-- "dev": true +-- }, +-- "arr-flatten": { +-- "version": "1.1.0", +-- "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", +-- "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", +-- "dev": true +-- }, +-- "arr-union": { +-- "version": "3.1.0", +-- "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", +-- "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=", +-- "dev": true +-- }, +-- "array-find-index": { +-- "version": "1.0.2", +-- "resolved": "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz", +-- "integrity": "sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E=", +-- "dev": true +-+ "node_modules/are-we-there-yet/node_modules/readable-stream": { +-+ "version": "3.6.2", +-+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", +-+ "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", +-+ "dev": true, +-+ "dependencies": { +-+ "inherits": "^2.0.3", +-+ "string_decoder": "^1.1.1", +-+ "util-deprecate": "^1.0.1" +-+ }, +-+ "engines": { +-+ "node": ">= 6" +-+ } +- }, +-- "array-flatten": { +-+ "node_modules/array-flatten": { +- "version": "1.1.1", +- "resolved": "http://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", +- "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=" +- }, +-- "array-unique": { +-- "version": "0.3.2", +-- "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", +-- "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=", +-- "dev": true +-+ "node_modules/arrify": { +-+ "version": "1.0.1", +-+ "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", +-+ "integrity": "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==", +-+ "dev": true, +-+ "engines": { +-+ "node": ">=0.10.0" +-+ } +- }, +-- "asap": { +-+ "node_modules/asap": { +- "version": "2.0.6", +- "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", +- "integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=" +- }, +-- "asn1": { +-- "version": "0.2.4", +-- "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz", +-- "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==", +-- "requires": { +-- "safer-buffer": "~2.1.0" +-- } +-- }, +-- "assert-plus": { +-- "version": "1.0.0", +-- "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", +-- "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" +-- }, +-- "assign-symbols": { +-- "version": "1.0.0", +-- "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", +-- "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=", +-- "dev": true +-- }, +-- "async": { +-- "version": "2.6.2", +-- "resolved": "https://registry.npmjs.org/async/-/async-2.6.2.tgz", +-- "integrity": "sha512-H1qVYh1MYhEEFLsP97cVKqCGo7KfCyTt6uEWqsTBr9SO84oK9Uwbyd/yCW+6rKJLHksBNUVWZDAjfS+Ccx0Bbg==", +-- "requires": { +-- "lodash": "^4.17.11" +-+ "node_modules/async": { +-+ "version": "2.6.4", +-+ "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", +-+ "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", +-+ "dependencies": { +-+ "lodash": "^4.17.14" +- } +- }, +-- "async-each": { +-- "version": "1.0.2", +-- "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.2.tgz", +-- "integrity": "sha512-6xrbvN0MOBKSJDdonmSSz2OwFSgxRaVtBDes26mj9KIGtDo+g9xosFRSC+i1gQh2oAN/tQ62AI/pGZGQjVOiRg==", +-- "dev": true +-- }, +-- "async-foreach": { +-+ "node_modules/async-foreach": { +- "version": "0.1.3", +- "resolved": "https://registry.npmjs.org/async-foreach/-/async-foreach-0.1.3.tgz", +- "integrity": "sha1-NhIfhFwFeBct5Bmpfb6x0W7DRUI=", +-- "dev": true +-+ "dev": true, +-+ "engines": { +-+ "node": "*" +-+ } +- }, +-- "asynckit": { +-+ "node_modules/asynckit": { +- "version": "0.4.0", +- "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", +- "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" +- }, +-- "atob": { +-- "version": "2.1.2", +-- "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", +-- "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", +-- "dev": true +-- }, +-- "aws-sign2": { +-- "version": "0.7.0", +-- "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", +-- "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=" +-- }, +-- "aws4": { +-- "version": "1.8.0", +-- "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.8.0.tgz", +-- "integrity": "sha512-ReZxvNHIOv88FlT7rxcXIIC0fPt4KZqZbOlivyWtXLt8ESx84zd3kMC6iK5jVeS2qt+g7ftS7ye4fi06X5rtRQ==" +-- }, +-- "axios": { +-- "version": "0.11.1", +-- "resolved": "https://registry.npmjs.org/axios/-/axios-0.11.1.tgz", +-- "integrity": "sha1-Oc22WBPixUnRwunDiffjOqZcyiI=", +-- "requires": { +-- "follow-redirects": "0.0.7" +-- }, +-- "dependencies": { +-- "follow-redirects": { +-- "version": "0.0.7", +-- "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-0.0.7.tgz", +-- "integrity": "sha1-NLkLqyqRGqNHVx2pDyK9NuzYqRk=", +-- "requires": { +-- "debug": "^2.2.0", +-- "stream-consume": "^0.1.0" +-- } +-- } +-+ "node_modules/axios": { +-+ "version": "1.7.2", +-+ "resolved": "https://registry.npmjs.org/axios/-/axios-1.7.2.tgz", +-+ "integrity": "sha512-2A8QhOMrbomlDuiLeK9XibIBzuHeRcqqNOHp0Cyp5EoJ1IFDh+XZH3A6BkXtv0K4gFGCI0Y4BM7B1wOEi0Rmgw==", +-+ "dependencies": { +-+ "follow-redirects": "^1.15.6", +-+ "form-data": "^4.0.0", +-+ "proxy-from-env": "^1.1.0" +- } +- }, +-- "base": { +-- "version": "0.11.2", +-- "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", +-- "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", +-- "dev": true, +-- "requires": { +-- "cache-base": "^1.0.1", +-- "class-utils": "^0.3.5", +-- "component-emitter": "^1.2.1", +-- "define-property": "^1.0.0", +-- "isobject": "^3.0.1", +-- "mixin-deep": "^1.2.0", +-- "pascalcase": "^0.1.1" +-- }, +-- "dependencies": { +-- "define-property": { +-- "version": "1.0.0", +-- "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", +-- "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", +-- "dev": true, +-- "requires": { +-- "is-descriptor": "^1.0.0" +-- } +-- }, +-- "is-accessor-descriptor": { +-- "version": "1.0.0", +-- "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", +-- "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", +-- "dev": true, +-- "requires": { +-- "kind-of": "^6.0.0" +-- } +-- }, +-- "is-data-descriptor": { +-- "version": "1.0.0", +-- "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", +-- "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", +-- "dev": true, +-- "requires": { +-- "kind-of": "^6.0.0" +-- } +-- }, +-- "is-descriptor": { +-- "version": "1.0.2", +-- "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", +-- "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", +-- "dev": true, +-- "requires": { +-- "is-accessor-descriptor": "^1.0.0", +-- "is-data-descriptor": "^1.0.0", +-- "kind-of": "^6.0.2" +-- } +-- } +-+ "node_modules/axios/node_modules/form-data": { +-+ "version": "4.0.0", +-+ "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", +-+ "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", +-+ "dependencies": { +-+ "asynckit": "^0.4.0", +-+ "combined-stream": "^1.0.8", +-+ "mime-types": "^2.1.12" +-+ }, +-+ "engines": { +-+ "node": ">= 6" +- } +- }, +-- "base64-js": { +-+ "node_modules/balanced-match": { +-+ "version": "1.0.2", +-+ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", +-+ "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" +-+ }, +-+ "node_modules/base64-js": { +- "version": "1.3.0", +- "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.3.0.tgz", +- "integrity": "sha512-ccav/yGvoa80BQDljCxsmmQ3Xvx60/UpBIij5QN21W3wBi/hhIC9OoO+KLpu9IJTS9j4DRVJ3aDDF9cMSoa2lw==" +- }, +-- "bcrypt-pbkdf": { +-- "version": "1.0.2", +-- "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", +-- "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", +-- "requires": { +-- "tweetnacl": "^0.14.3" +-+ "node_modules/binary-extensions": { +-+ "version": "2.3.0", +-+ "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", +-+ "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", +-+ "dev": true, +-+ "engines": { +-+ "node": ">=8" +-+ }, +-+ "funding": { +-+ "url": "https://github.com/sponsors/sindresorhus" +- } +- }, +-- "binary-extensions": { +-- "version": "1.13.0", +-- "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.0.tgz", +-- "integrity": "sha512-EgmjVLMn22z7eGGv3kcnHwSnJXmFHjISTY9E/S5lIcTD3Oxw05QTcBLNkJFzcb3cNueUdF/IN4U+d78V0zO8Hw==", +-- "dev": true +-- }, +-- "bl": { +-- "version": "1.2.2", +-- "resolved": "http://registry.npmjs.org/bl/-/bl-1.2.2.tgz", +-- "integrity": "sha512-e8tQYnZodmebYDWGH7KMRvtzKXaJHx3BbilrgZCfvyLUYdKpK1t5PSPmpkny/SgiTSCnjfLW7v5rlONXVFkQEA==", +-- "requires": { +-+ "node_modules/bl": { +-+ "version": "1.2.3", +-+ "resolved": "https://registry.npmjs.org/bl/-/bl-1.2.3.tgz", +-+ "integrity": "sha512-pvcNpa0UU69UT341rO6AYy4FVAIkUHuZXRIWbq+zHnsVcRzDDjIAhGuuYoi0d//cwIwtt4pkpKycWEfjdV+vww==", +-+ "dependencies": { +- "readable-stream": "^2.3.5", +- "safe-buffer": "^5.1.1" +- } +- }, +-- "block-stream": { +-- "version": "0.0.9", +-- "resolved": "https://registry.npmjs.org/block-stream/-/block-stream-0.0.9.tgz", +-- "integrity": "sha1-E+v+d4oDIFz+A3UUgeu0szAMEmo=", +-- "dev": true, +-- "requires": { +-- "inherits": "~2.0.0" +-- } +-- }, +-- "body": { +-+ "node_modules/body": { +- "version": "5.1.0", +- "resolved": "https://registry.npmjs.org/body/-/body-5.1.0.tgz", +- "integrity": "sha1-5LoM5BCkaTYyM2dgnstOZVMSUGk=", +-- "requires": { +-+ "dependencies": { +- "continuable-cache": "^0.3.1", +- "error": "^7.0.0", +- "raw-body": "~1.1.0", +- "safe-json-parse": "~1.0.1" +-- }, +-- "dependencies": { +-- "bytes": { +-- "version": "1.0.0", +-- "resolved": "https://registry.npmjs.org/bytes/-/bytes-1.0.0.tgz", +-- "integrity": "sha1-NWnt6Lo0MV+rmcPpLLBMciDeH6g=" +-- }, +-- "raw-body": { +-- "version": "1.1.7", +-- "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-1.1.7.tgz", +-- "integrity": "sha1-HQJ8K/oRasxmI7yo8AAWVyqH1CU=", +-- "requires": { +-- "bytes": "1", +-- "string_decoder": "0.10" +-- } +-- }, +-- "string_decoder": { +-- "version": "0.10.31", +-- "resolved": "http://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", +-- "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=" +-- } +- } +- }, +-- "body-parser": { +-- "version": "1.18.3", +-- "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.18.3.tgz", +-- "integrity": "sha1-WykhmP/dVTs6DyDe0FkrlWlVyLQ=", +-- "requires": { +-- "bytes": "3.0.0", +-- "content-type": "~1.0.4", +-+ "node_modules/body-parser": { +-+ "version": "1.20.2", +-+ "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.2.tgz", +-+ "integrity": "sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==", +-+ "dependencies": { +-+ "bytes": "3.1.2", +-+ "content-type": "~1.0.5", +- "debug": "2.6.9", +-- "depd": "~1.1.2", +-- "http-errors": "~1.6.3", +-- "iconv-lite": "0.4.23", +-- "on-finished": "~2.3.0", +-- "qs": "6.5.2", +-- "raw-body": "2.3.3", +-- "type-is": "~1.6.16" +-- }, +-- "dependencies": { +-- "qs": { +-- "version": "6.5.2", +-- "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", +-- "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==" +-- } +-+ "depd": "2.0.0", +-+ "destroy": "1.2.0", +-+ "http-errors": "2.0.0", +-+ "iconv-lite": "0.4.24", +-+ "on-finished": "2.4.1", +-+ "qs": "6.11.0", +-+ "raw-body": "2.5.2", +-+ "type-is": "~1.6.18", +-+ "unpipe": "1.0.0" +-+ }, +-+ "engines": { +-+ "node": ">= 0.8", +-+ "npm": "1.2.8000 || >= 1.4.16" +- } +- }, +-- "boxen": { +-- "version": "1.3.0", +-- "resolved": "https://registry.npmjs.org/boxen/-/boxen-1.3.0.tgz", +-- "integrity": "sha512-TNPjfTr432qx7yOjQyaXm3dSR0MH9vXp7eT1BFSl/C51g+EFnOR9hTg1IreahGBmDNCehscshe45f+C1TBZbLw==", +-- "dev": true, +-- "requires": { +-- "ansi-align": "^2.0.0", +-- "camelcase": "^4.0.0", +-- "chalk": "^2.0.1", +-- "cli-boxes": "^1.0.0", +-- "string-width": "^2.0.0", +-- "term-size": "^1.2.0", +-- "widest-line": "^2.0.0" +-- }, +-- "dependencies": { +-- "ansi-regex": { +-- "version": "3.0.0", +-- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", +-- "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", +-- "dev": true +-- }, +-- "camelcase": { +-- "version": "4.1.0", +-- "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz", +-- "integrity": "sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=", +-- "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" +-- } +-- }, +-- "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 +-- }, +-- "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" +-- } +-- }, +-- "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" +-- } +-- }, +-- "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" +-- } +-- } +-+ "node_modules/body/node_modules/bytes": { +-+ "version": "1.0.0", +-+ "resolved": "https://registry.npmjs.org/bytes/-/bytes-1.0.0.tgz", +-+ "integrity": "sha1-NWnt6Lo0MV+rmcPpLLBMciDeH6g=" +-+ }, +-+ "node_modules/body/node_modules/raw-body": { +-+ "version": "1.1.7", +-+ "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-1.1.7.tgz", +-+ "integrity": "sha1-HQJ8K/oRasxmI7yo8AAWVyqH1CU=", +-+ "dependencies": { +-+ "bytes": "1", +-+ "string_decoder": "0.10" +-+ }, +-+ "engines": { +-+ "node": ">= 0.8.0" +- } +- }, +-- "brace-expansion": { +-+ "node_modules/body/node_modules/string_decoder": { +-+ "version": "0.10.31", +-+ "resolved": "http://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", +-+ "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=" +-+ }, +-+ "node_modules/brace-expansion": { +- "version": "1.1.11", +- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", +- "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", +-- "requires": { +-+ "dependencies": { +- "balanced-match": "^1.0.0", +- "concat-map": "0.0.1" +-- }, +-- "dependencies": { +-- "balanced-match": { +-- "version": "1.0.0", +-- "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", +-- "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=" +-- } +- } +- }, +-- "braces": { +-- "version": "2.3.2", +-- "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", +-- "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", +-- "dev": true, +-- "requires": { +-- "arr-flatten": "^1.1.0", +-- "array-unique": "^0.3.2", +-- "extend-shallow": "^2.0.1", +-- "fill-range": "^4.0.0", +-- "isobject": "^3.0.1", +-- "repeat-element": "^1.1.2", +-- "snapdragon": "^0.8.1", +-- "snapdragon-node": "^2.0.1", +-- "split-string": "^3.0.2", +-- "to-regex": "^3.0.1" +-- }, +-- "dependencies": { +-- "extend-shallow": { +-- "version": "2.0.1", +-- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", +-- "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", +-- "dev": true, +-- "requires": { +-- "is-extendable": "^0.1.0" +-- } +-- } +-+ "node_modules/braces": { +-+ "version": "3.0.3", +-+ "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", +-+ "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", +-+ "dev": true, +-+ "dependencies": { +-+ "fill-range": "^7.1.1" +-+ }, +-+ "engines": { +-+ "node": ">=8" +- } +- }, +-- "buffer-alloc": { +-+ "node_modules/buffer-alloc": { +- "version": "1.2.0", +- "resolved": "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz", +- "integrity": "sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==", +-- "requires": { +-+ "dependencies": { +- "buffer-alloc-unsafe": "^1.1.0", +- "buffer-fill": "^1.0.0" +- } +- }, +-- "buffer-alloc-unsafe": { +-+ "node_modules/buffer-alloc-unsafe": { +- "version": "1.1.0", +- "resolved": "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz", +- "integrity": "sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==" +- }, +-- "buffer-crc32": { +-+ "node_modules/buffer-crc32": { +- "version": "0.2.13", +- "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", +-- "integrity": "sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI=" +-+ "integrity": "sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI=", +-+ "engines": { +-+ "node": "*" +-+ } +- }, +-- "buffer-fill": { +-+ "node_modules/buffer-fill": { +- "version": "1.0.0", +- "resolved": "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz", +- "integrity": "sha1-+PeLdniYiO858gXNY39o5wISKyw=" +- }, +-- "busboy": { +-- "version": "0.3.0", +-- "resolved": "https://registry.npmjs.org/busboy/-/busboy-0.3.0.tgz", +-- "integrity": "sha512-e+kzZRAbbvJPLjQz2z+zAyr78BSi9IFeBTyLwF76g78Q2zRt/RZ1NtS3MS17v2yLqYfLz69zHdC+1L4ja8PwqQ==", +-- "requires": { +-- "dicer": "0.3.0" +-+ "node_modules/busboy": { +-+ "version": "1.6.0", +-+ "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", +-+ "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", +-+ "dependencies": { +-+ "streamsearch": "^1.1.0" +-+ }, +-+ "engines": { +-+ "node": ">=10.16.0" +- } +- }, +-- "bytes": { +-- "version": "3.0.0", +-- "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", +-- "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=" +-- }, +-- "cache-base": { +-- "version": "1.0.1", +-- "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", +-- "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", +-- "dev": true, +-- "requires": { +-- "collection-visit": "^1.0.0", +-- "component-emitter": "^1.2.1", +-- "get-value": "^2.0.6", +-- "has-value": "^1.0.0", +-- "isobject": "^3.0.1", +-- "set-value": "^2.0.0", +-- "to-object-path": "^0.3.0", +-- "union-value": "^1.0.0", +-- "unset-value": "^1.0.0" +-- } +-- }, +-- "camelcase": { +-- "version": "2.1.1", +-- "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz", +-- "integrity": "sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8=", +-- "dev": true +-+ "node_modules/bytes": { +-+ "version": "3.1.2", +-+ "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", +-+ "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", +-+ "engines": { +-+ "node": ">= 0.8" +-+ } +- }, +-- "camelcase-keys": { +-- "version": "2.1.0", +-- "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz", +-- "integrity": "sha1-MIvur/3ygRkFHvodkyITyRuPkuc=", +-+ "node_modules/cacache": { +-+ "version": "16.1.3", +-+ "resolved": "https://registry.npmjs.org/cacache/-/cacache-16.1.3.tgz", +-+ "integrity": "sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ==", +- "dev": true, +-- "requires": { +-- "camelcase": "^2.0.0", +-- "map-obj": "^1.0.0" +-+ "dependencies": { +-+ "@npmcli/fs": "^2.1.0", +-+ "@npmcli/move-file": "^2.0.0", +-+ "chownr": "^2.0.0", +-+ "fs-minipass": "^2.1.0", +-+ "glob": "^8.0.1", +-+ "infer-owner": "^1.0.4", +-+ "lru-cache": "^7.7.1", +-+ "minipass": "^3.1.6", +-+ "minipass-collect": "^1.0.2", +-+ "minipass-flush": "^1.0.5", +-+ "minipass-pipeline": "^1.2.4", +-+ "mkdirp": "^1.0.4", +-+ "p-map": "^4.0.0", +-+ "promise-inflight": "^1.0.1", +-+ "rimraf": "^3.0.2", +-+ "ssri": "^9.0.0", +-+ "tar": "^6.1.11", +-+ "unique-filename": "^2.0.0" +-+ }, +-+ "engines": { +-+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0" +- } +- }, +-- "capture-stack-trace": { +-- "version": "1.0.1", +-- "resolved": "https://registry.npmjs.org/capture-stack-trace/-/capture-stack-trace-1.0.1.tgz", +-- "integrity": "sha512-mYQLZnx5Qt1JgB1WEiMCf2647plpGeQ2NMR/5L0HNZzGQo4fuSPnK+wjfPnKZV0aiJDgzmWqqkV/g7JD+DW0qw==", +-- "dev": true +-+ "node_modules/cacache/node_modules/brace-expansion": { +-+ "version": "2.0.1", +-+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", +-+ "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", +-+ "dev": true, +-+ "dependencies": { +-+ "balanced-match": "^1.0.0" +-+ } +- }, +-- "caseless": { +-- "version": "0.12.0", +-- "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", +-- "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=" +-+ "node_modules/cacache/node_modules/glob": { +-+ "version": "8.1.0", +-+ "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", +-+ "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", +-+ "deprecated": "Glob versions prior to v9 are no longer supported", +-+ "dev": true, +-+ "dependencies": { +-+ "fs.realpath": "^1.0.0", +-+ "inflight": "^1.0.4", +-+ "inherits": "2", +-+ "minimatch": "^5.0.1", +-+ "once": "^1.3.0" +-+ }, +-+ "engines": { +-+ "node": ">=12" +-+ }, +-+ "funding": { +-+ "url": "https://github.com/sponsors/isaacs" +-+ } +- }, +-- "chalk": { +-- "version": "1.1.3", +-- "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", +-- "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", +-- "dev": true, +-- "requires": { +-- "ansi-styles": "^2.2.1", +-- "escape-string-regexp": "^1.0.2", +-- "has-ansi": "^2.0.0", +-- "strip-ansi": "^3.0.0", +-- "supports-color": "^2.0.0" +-- }, +-- "dependencies": { +-- "ansi-styles": { +-- "version": "2.2.1", +-- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", +-- "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", +-- "dev": true +-- } +-+ "node_modules/cacache/node_modules/lru-cache": { +-+ "version": "7.18.3", +-+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", +-+ "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", +-+ "dev": true, +-+ "engines": { +-+ "node": ">=12" +- } +- }, +-- "chokidar": { +-- "version": "2.1.2", +-- "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.2.tgz", +-- "integrity": "sha512-IwXUx0FXc5ibYmPC2XeEj5mpXoV66sR+t3jqu2NS2GYwCktt3KF1/Qqjws/NkegajBA4RbZ5+DDwlOiJsxDHEg==", +-- "dev": true, +-- "requires": { +-- "anymatch": "^2.0.0", +-- "async-each": "^1.0.1", +-- "braces": "^2.3.2", +-- "fsevents": "^1.2.7", +-- "glob-parent": "^3.1.0", +-- "inherits": "^2.0.3", +-- "is-binary-path": "^1.0.0", +-- "is-glob": "^4.0.0", +-- "normalize-path": "^3.0.0", +-- "path-is-absolute": "^1.0.0", +-- "readdirp": "^2.2.1", +-- "upath": "^1.1.0" +-+ "node_modules/cacache/node_modules/minimatch": { +-+ "version": "5.1.6", +-+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", +-+ "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", +-+ "dev": true, +-+ "dependencies": { +-+ "brace-expansion": "^2.0.1" +-+ }, +-+ "engines": { +-+ "node": ">=10" +- } +- }, +-- "ci-info": { +-- "version": "1.6.0", +-- "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-1.6.0.tgz", +-- "integrity": "sha512-vsGdkwSCDpWmP80ncATX7iea5DWQemg1UgCW5J8tqjU3lYw4FBYuj89J0CTVomA7BEfvSZd84GmHko+MxFQU2A==", +-- "dev": true +-+ "node_modules/cacache/node_modules/mkdirp": { +-+ "version": "1.0.4", +-+ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", +-+ "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", +-+ "dev": true, +-+ "bin": { +-+ "mkdirp": "bin/cmd.js" +-+ }, +-+ "engines": { +-+ "node": ">=10" +-+ } +- }, +-- "clarifai": { +-- "version": "2.9.0", +-- "resolved": "https://registry.npmjs.org/clarifai/-/clarifai-2.9.0.tgz", +-- "integrity": "sha512-u7Ip+D0pWXUc36p1c9OT/n3geSxKzx1mJdrPNz/ruhX9xqqtooUBJXF7Z/dNIqQLFTnr8fIQZsZxWhliOF91uQ==", +-- "requires": { +-- "axios": "^0.11.1", +-- "form-data": "^0.2.0", +-- "promise": "^7.1.1", +-- "valid-url": "^1.0.9" +-+ "node_modules/call-bind": { +-+ "version": "1.0.7", +-+ "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", +-+ "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", +-+ "dependencies": { +-+ "es-define-property": "^1.0.0", +-+ "es-errors": "^1.3.0", +-+ "function-bind": "^1.1.2", +-+ "get-intrinsic": "^1.2.4", +-+ "set-function-length": "^1.2.1" +-+ }, +-+ "engines": { +-+ "node": ">= 0.4" +- }, +-+ "funding": { +-+ "url": "https://github.com/sponsors/ljharb" +-+ } +-+ }, +-+ "node_modules/camelcase": { +-+ "version": "5.3.1", +-+ "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", +-+ "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", +-+ "dev": true, +-+ "engines": { +-+ "node": ">=6" +-+ } +-+ }, +-+ "node_modules/camelcase-keys": { +-+ "version": "6.2.2", +-+ "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-6.2.2.tgz", +-+ "integrity": "sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==", +-+ "dev": true, +- "dependencies": { +-- "async": { +-- "version": "0.9.2", +-- "resolved": "https://registry.npmjs.org/async/-/async-0.9.2.tgz", +-- "integrity": "sha1-rqdNXmHB+JlhO/ZL2mbUx48v0X0=" +-- }, +-- "combined-stream": { +-- "version": "0.0.7", +-- "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-0.0.7.tgz", +-- "integrity": "sha1-ATfmV7qlp1QcV6w3rF/AfXO03B8=", +-- "requires": { +-- "delayed-stream": "0.0.5" +-- } +-- }, +-- "delayed-stream": { +-- "version": "0.0.5", +-- "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-0.0.5.tgz", +-- "integrity": "sha1-1LH0OpPoKW3+AmlPRoC8N6MTxz8=" +-- }, +-- "form-data": { +-- "version": "0.2.0", +-- "resolved": "https://registry.npmjs.org/form-data/-/form-data-0.2.0.tgz", +-- "integrity": "sha1-Jvi8JtpkQOKZy9z7aQNcT3em5GY=", +-- "requires": { +-- "async": "~0.9.0", +-- "combined-stream": "~0.0.4", +-- "mime-types": "~2.0.3" +-- } +-- }, +-- "mime-db": { +-- "version": "1.12.0", +-- "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.12.0.tgz", +-- "integrity": "sha1-PQxjGA9FjrENMlqqN9fFiuMS6dc=" +-- }, +-- "mime-types": { +-- "version": "2.0.14", +-- "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.0.14.tgz", +-- "integrity": "sha1-MQ4VnbI+B3+Lsit0jav6SVcUCqY=", +-- "requires": { +-- "mime-db": "~1.12.0" +-- } +-- } +-+ "camelcase": "^5.3.1", +-+ "map-obj": "^4.0.0", +-+ "quick-lru": "^4.0.1" +-+ }, +-+ "engines": { +-+ "node": ">=8" +-+ }, +-+ "funding": { +-+ "url": "https://github.com/sponsors/sindresorhus" +-+ } +-+ }, +-+ "node_modules/chalk": { +-+ "version": "4.1.2", +-+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", +-+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", +-+ "dependencies": { +-+ "ansi-styles": "^4.1.0", +-+ "supports-color": "^7.1.0" +-+ }, +-+ "engines": { +-+ "node": ">=10" +-+ }, +-+ "funding": { +-+ "url": "https://github.com/chalk/chalk?sponsor=1" +-+ } +-+ }, +-+ "node_modules/chalk/node_modules/ansi-styles": { +-+ "version": "4.3.0", +-+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", +-+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", +-+ "dependencies": { +-+ "color-convert": "^2.0.1" +-+ }, +-+ "engines": { +-+ "node": ">=8" +-+ }, +-+ "funding": { +-+ "url": "https://github.com/chalk/ansi-styles?sponsor=1" +-+ } +-+ }, +-+ "node_modules/chalk/node_modules/color-convert": { +-+ "version": "2.0.1", +-+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", +-+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", +-+ "dependencies": { +-+ "color-name": "~1.1.4" +-+ }, +-+ "engines": { +-+ "node": ">=7.0.0" +- } +- }, +-- "class-utils": { +-- "version": "0.3.6", +-- "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", +-- "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", +-+ "node_modules/chalk/node_modules/color-name": { +-+ "version": "1.1.4", +-+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", +-+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" +-+ }, +-+ "node_modules/chokidar": { +-+ "version": "3.6.0", +-+ "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", +-+ "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", +- "dev": true, +-- "requires": { +-- "arr-union": "^3.1.0", +-- "define-property": "^0.2.5", +-- "isobject": "^3.0.0", +-- "static-extend": "^0.1.1" +-+ "dependencies": { +-+ "anymatch": "~3.1.2", +-+ "braces": "~3.0.2", +-+ "glob-parent": "~5.1.2", +-+ "is-binary-path": "~2.1.0", +-+ "is-glob": "~4.0.1", +-+ "normalize-path": "~3.0.0", +-+ "readdirp": "~3.6.0" +-+ }, +-+ "engines": { +-+ "node": ">= 8.10.0" +-+ }, +-+ "funding": { +-+ "url": "https://paulmillr.com/funding/" +- }, +-+ "optionalDependencies": { +-+ "fsevents": "~2.3.2" +-+ } +-+ }, +-+ "node_modules/chownr": { +-+ "version": "2.0.0", +-+ "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", +-+ "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", +-+ "dev": true, +-+ "engines": { +-+ "node": ">=10" +-+ } +-+ }, +-+ "node_modules/clarifai": { +-+ "version": "2.9.1", +-+ "resolved": "https://registry.npmjs.org/clarifai/-/clarifai-2.9.1.tgz", +-+ "integrity": "sha512-xUxl0bNhBTRn93BBjzYG3nQ/BRZI5VcAZOn1hsukTEFgE31grtegztMT26AbFdmWkCJin1dM6TaC4APSHYs/Ug==", +- "dependencies": { +-- "define-property": { +-- "version": "0.2.5", +-- "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", +-- "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", +-- "dev": true, +-- "requires": { +-- "is-descriptor": "^0.1.0" +-- } +-- } +-+ "axios": ">=0.11.1 <2", +-+ "promise": "^7.1.1", +-+ "valid-url": "^1.0.9" +- } +- }, +-- "cli-boxes": { +-- "version": "1.0.0", +-- "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-1.0.0.tgz", +-- "integrity": "sha1-T6kXw+WclKAEzWH47lCdplFocUM=", +-- "dev": true +-+ "node_modules/clean-stack": { +-+ "version": "2.2.0", +-+ "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", +-+ "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", +-+ "dev": true, +-+ "engines": { +-+ "node": ">=6" +-+ } +-+ }, +-+ "node_modules/cliui": { +-+ "version": "8.0.1", +-+ "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", +-+ "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", +-+ "dev": true, +-+ "dependencies": { +-+ "string-width": "^4.2.0", +-+ "strip-ansi": "^6.0.1", +-+ "wrap-ansi": "^7.0.0" +-+ }, +-+ "engines": { +-+ "node": ">=12" +-+ } +- }, +-- "cliui": { +-- "version": "3.2.0", +-- "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", +-- "integrity": "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=", +-+ "node_modules/cliui/node_modules/ansi-styles": { +-+ "version": "4.3.0", +-+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", +-+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", +- "dev": true, +-- "requires": { +-- "string-width": "^1.0.1", +-- "strip-ansi": "^3.0.1", +-- "wrap-ansi": "^2.0.0" +-+ "dependencies": { +-+ "color-convert": "^2.0.1" +-+ }, +-+ "engines": { +-+ "node": ">=8" +-+ }, +-+ "funding": { +-+ "url": "https://github.com/chalk/ansi-styles?sponsor=1" +- } +- }, +-- "code-point-at": { +-- "version": "1.1.0", +-- "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", +-- "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=", +-+ "node_modules/cliui/node_modules/color-convert": { +-+ "version": "2.0.1", +-+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", +-+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", +-+ "dev": true, +-+ "dependencies": { +-+ "color-name": "~1.1.4" +-+ }, +-+ "engines": { +-+ "node": ">=7.0.0" +-+ } +-+ }, +-+ "node_modules/cliui/node_modules/color-name": { +-+ "version": "1.1.4", +-+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", +-+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", +- "dev": true +- }, +-- "collection-visit": { +-- "version": "1.0.0", +-- "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", +-- "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=", +-+ "node_modules/cliui/node_modules/wrap-ansi": { +-+ "version": "7.0.0", +-+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", +-+ "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", +- "dev": true, +-- "requires": { +-- "map-visit": "^1.0.0", +-- "object-visit": "^1.0.0" +-+ "dependencies": { +-+ "ansi-styles": "^4.0.0", +-+ "string-width": "^4.1.0", +-+ "strip-ansi": "^6.0.0" +-+ }, +-+ "engines": { +-+ "node": ">=10" +-+ }, +-+ "funding": { +-+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1" +- } +- }, +-- "color-convert": { +-+ "node_modules/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": { +-+ "dependencies": { +- "color-name": "1.1.3" +- } +- }, +-- "color-name": { +-+ "node_modules/color-name": { +- "version": "1.1.3", +- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", +- "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", +- "dev": true +- }, +-- "combined-stream": { +-- "version": "1.0.7", +-- "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.7.tgz", +-- "integrity": "sha512-brWl9y6vOB1xYPZcpZde3N9zDByXTosAeMDo4p1wzo6UMOX4vumB+TP1RZ76sfE6Md68Q0NJSrE/gbezd4Ul+w==", +-- "requires": { +-- "delayed-stream": "~1.0.0" +-+ "node_modules/color-support": { +-+ "version": "1.1.3", +-+ "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", +-+ "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", +-+ "dev": true, +-+ "bin": { +-+ "color-support": "bin.js" +- } +- }, +-- "component-emitter": { +-- "version": "1.2.1", +-- "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz", +-- "integrity": "sha1-E3kY1teCg/ffemt8WmPhQOaUJeY=", +-- "dev": true +-+ "node_modules/combined-stream": { +-+ "version": "1.0.8", +-+ "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", +-+ "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", +-+ "dependencies": { +-+ "delayed-stream": "~1.0.0" +-+ }, +-+ "engines": { +-+ "node": ">= 0.8" +-+ } +- }, +-- "compress-commons": { +-+ "node_modules/compress-commons": { +- "version": "1.2.2", +- "resolved": "https://registry.npmjs.org/compress-commons/-/compress-commons-1.2.2.tgz", +- "integrity": "sha1-UkqfEJA/OoEzibAiXSfEi7dRiQ8=", +-- "requires": { +-+ "dependencies": { +- "buffer-crc32": "^0.2.1", +- "crc32-stream": "^2.0.0", +- "normalize-path": "^2.0.0", +- "readable-stream": "^2.0.0" +- }, +-+ "engines": { +-+ "node": ">= 0.10.0" +-+ } +-+ }, +-+ "node_modules/compress-commons/node_modules/normalize-path": { +-+ "version": "2.1.1", +-+ "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", +-+ "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", +- "dependencies": { +-- "normalize-path": { +-- "version": "2.1.1", +-- "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", +-- "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", +-- "requires": { +-- "remove-trailing-separator": "^1.0.1" +-- } +-- } +-+ "remove-trailing-separator": "^1.0.1" +-+ }, +-+ "engines": { +-+ "node": ">=0.10.0" +- } +- }, +-- "concat-map": { +-+ "node_modules/concat-map": { +- "version": "0.0.1", +- "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", +- "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" +- }, +-- "concurrently": { +-- "version": "4.1.0", +-- "resolved": "https://registry.npmjs.org/concurrently/-/concurrently-4.1.0.tgz", +-- "integrity": "sha512-pwzXCE7qtOB346LyO9eFWpkFJVO3JQZ/qU/feGeaAHiX1M3Rw3zgXKc5cZ8vSH5DGygkjzLFDzA/pwoQDkRNGg==", +-- "dev": true, +-- "requires": { +-- "chalk": "^2.4.1", +-- "date-fns": "^1.23.0", +-- "lodash": "^4.17.10", +-- "read-pkg": "^4.0.1", +-- "rxjs": "^6.3.3", +-- "spawn-command": "^0.0.2-1", +-- "supports-color": "^4.5.0", +-- "tree-kill": "^1.1.0", +-- "yargs": "^12.0.1" +-- }, +-- "dependencies": { +-- "ansi-regex": { +-- "version": "3.0.0", +-- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", +-- "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", +-- "dev": true +-- }, +-- "camelcase": { +-- "version": "5.2.0", +-- "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.2.0.tgz", +-- "integrity": "sha512-IXFsBS2pC+X0j0N/GE7Dm7j3bsEBp+oTpb7F50dwEVX7rf3IgwO9XatnegTsDtniKCUtEJH4fSU6Asw7uoVLfQ==", +-- "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": "4.1.0", +-- "resolved": "https://registry.npmjs.org/cliui/-/cliui-4.1.0.tgz", +-- "integrity": "sha512-4FG+RSG9DL7uEwRUZXZn3SS34DiDPfzP0VOiEwtUWlE+AR2EIg+hSyvrIgUUfhdgR/UkAeW2QHgeP+hWrXs7jQ==", +-- "dev": true, +-- "requires": { +-- "string-width": "^2.1.1", +-- "strip-ansi": "^4.0.0", +-- "wrap-ansi": "^2.0.0" +-- } +-- }, +-- "cross-spawn": { +-- "version": "6.0.5", +-- "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", +-- "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", +-- "dev": true, +-- "requires": { +-- "nice-try": "^1.0.4", +-- "path-key": "^2.0.1", +-- "semver": "^5.5.0", +-- "shebang-command": "^1.2.0", +-- "which": "^1.2.9" +-- } +-- }, +-- "execa": { +-- "version": "1.0.0", +-- "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", +-- "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", +-- "dev": true, +-- "requires": { +-- "cross-spawn": "^6.0.0", +-- "get-stream": "^4.0.0", +-- "is-stream": "^1.1.0", +-- "npm-run-path": "^2.0.0", +-- "p-finally": "^1.0.0", +-- "signal-exit": "^3.0.0", +-- "strip-eof": "^1.0.0" +-- } +-- }, +-- "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" +-- } +-- }, +-- "get-stream": { +-- "version": "4.1.0", +-- "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", +-- "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", +-- "dev": true, +-- "requires": { +-- "pump": "^3.0.0" +-- } +-- }, +-- "invert-kv": { +-- "version": "2.0.0", +-- "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-2.0.0.tgz", +-- "integrity": "sha512-wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA==", +-- "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 +-- }, +-- "lcid": { +-- "version": "2.0.0", +-- "resolved": "https://registry.npmjs.org/lcid/-/lcid-2.0.0.tgz", +-- "integrity": "sha512-avPEb8P8EGnwXKClwsNUgryVjllcRqtMYa49NTsbQagYuT1DcXnl1915oxWjoyGrXR6zH/Y0Zc96xWsPcoDKeA==", +-- "dev": true, +-- "requires": { +-- "invert-kv": "^2.0.0" +-- } +-- }, +-- "os-locale": { +-- "version": "3.1.0", +-- "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-3.1.0.tgz", +-- "integrity": "sha512-Z8l3R4wYWM40/52Z+S265okfFj8Kt2cC2MKY+xNi3kFs+XGI7WXu/I309QQQYbRW4ijiZ+yxs9pqEhJh0DqW3Q==", +-- "dev": true, +-- "requires": { +-- "execa": "^1.0.0", +-- "lcid": "^2.0.0", +-- "mem": "^4.0.0" +-- } +-- }, +-- "parse-json": { +-- "version": "4.0.0", +-- "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", +-- "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", +-- "dev": true, +-- "requires": { +-- "error-ex": "^1.3.1", +-- "json-parse-better-errors": "^1.0.1" +-- } +-- }, +-- "pify": { +-- "version": "3.0.0", +-- "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", +-- "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", +-- "dev": true +-- }, +-- "read-pkg": { +-- "version": "4.0.1", +-- "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-4.0.1.tgz", +-- "integrity": "sha1-ljYlN48+HE1IyFhytabsfV0JMjc=", +-- "dev": true, +-- "requires": { +-- "normalize-package-data": "^2.3.2", +-- "parse-json": "^4.0.0", +-- "pify": "^3.0.0" +-- } +-- }, +-- "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" +-- } +-- }, +-- "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" +-- } +-- }, +-- "supports-color": { +-- "version": "4.5.0", +-- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-4.5.0.tgz", +-- "integrity": "sha1-vnoN5ITexcXN34s9WRJQRJEvY1s=", +-- "dev": true, +-- "requires": { +-- "has-flag": "^2.0.0" +-- }, +-- "dependencies": { +-- "has-flag": { +-- "version": "2.0.0", +-- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-2.0.0.tgz", +-- "integrity": "sha1-6CB68cx7MNRGzHC3NLXovhj4jVE=", +-- "dev": true +-- } +-- } +-- }, +-- "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 +-- }, +-- "yargs": { +-- "version": "12.0.5", +-- "resolved": "https://registry.npmjs.org/yargs/-/yargs-12.0.5.tgz", +-- "integrity": "sha512-Lhz8TLaYnxq/2ObqHDql8dX8CJi97oHxrjUcYtzKbbykPtVW9WB+poxI+NM2UIzsMgNCZTIf0AQwsjK5yMAqZw==", +-- "dev": true, +-- "requires": { +-- "cliui": "^4.0.0", +-- "decamelize": "^1.2.0", +-- "find-up": "^3.0.0", +-- "get-caller-file": "^1.0.1", +-- "os-locale": "^3.0.0", +-- "require-directory": "^2.1.1", +-- "require-main-filename": "^1.0.1", +-- "set-blocking": "^2.0.0", +-- "string-width": "^2.0.0", +-- "which-module": "^2.0.0", +-- "y18n": "^3.2.1 || ^4.0.0", +-- "yargs-parser": "^11.1.1" +-- } +-- }, +-- "yargs-parser": { +-- "version": "11.1.1", +-- "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-11.1.1.tgz", +-- "integrity": "sha512-C6kB/WJDiaxONLJQnF8ccx9SEeoTTLek8RVbaOIsrAUS8VrBEXfmeSnCZxygc+XC2sNMBIwOOnfcxiynjHsVSQ==", +-- "dev": true, +-- "requires": { +-- "camelcase": "^5.0.0", +-- "decamelize": "^1.2.0" +-- } +-- } +-+ "node_modules/concurrently": { +-+ "version": "8.2.2", +-+ "resolved": "https://registry.npmjs.org/concurrently/-/concurrently-8.2.2.tgz", +-+ "integrity": "sha512-1dP4gpXFhei8IOtlXRE/T/4H88ElHgTiUzh71YUmtjTEHMSRS2Z/fgOxHSxxusGHogsRfxNq1vyAwxSC+EVyDg==", +-+ "dev": true, +-+ "dependencies": { +-+ "chalk": "^4.1.2", +-+ "date-fns": "^2.30.0", +-+ "lodash": "^4.17.21", +-+ "rxjs": "^7.8.1", +-+ "shell-quote": "^1.8.1", +-+ "spawn-command": "0.0.2", +-+ "supports-color": "^8.1.1", +-+ "tree-kill": "^1.2.2", +-+ "yargs": "^17.7.2" +-+ }, +-+ "bin": { +-+ "conc": "dist/bin/concurrently.js", +-+ "concurrently": "dist/bin/concurrently.js" +-+ }, +-+ "engines": { +-+ "node": "^14.13.0 || >=16.0.0" +-+ }, +-+ "funding": { +-+ "url": "https://github.com/open-cli-tools/concurrently?sponsor=1" +- } +- }, +-- "configstore": { +-- "version": "3.1.2", +-- "resolved": "https://registry.npmjs.org/configstore/-/configstore-3.1.2.tgz", +-- "integrity": "sha512-vtv5HtGjcYUgFrXc6Kx747B83MRRVS5R1VTEQoXvuP+kMI+if6uywV0nDGoiydJRy4yk7h9od5Og0kxx4zUXmw==", +-+ "node_modules/concurrently/node_modules/has-flag": { +-+ "version": "4.0.0", +-+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", +-+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", +-+ "dev": true, +-+ "engines": { +-+ "node": ">=8" +-+ } +-+ }, +-+ "node_modules/concurrently/node_modules/supports-color": { +-+ "version": "8.1.1", +-+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", +-+ "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", +- "dev": true, +-- "requires": { +-- "dot-prop": "^4.1.0", +-- "graceful-fs": "^4.1.2", +-- "make-dir": "^1.0.0", +-- "unique-string": "^1.0.0", +-- "write-file-atomic": "^2.0.0", +-- "xdg-basedir": "^3.0.0" +-+ "dependencies": { +-+ "has-flag": "^4.0.0" +-+ }, +-+ "engines": { +-+ "node": ">=10" +-+ }, +-+ "funding": { +-+ "url": "https://github.com/chalk/supports-color?sponsor=1" +- } +- }, +-- "connect-busboy": { +-+ "node_modules/connect-busboy": { +- "version": "0.0.2", +- "resolved": "https://registry.npmjs.org/connect-busboy/-/connect-busboy-0.0.2.tgz", +- "integrity": "sha1-rFyclmchcYheV2xmsr/ZXTuxEJc=", +-- "requires": { +-+ "dependencies": { +- "busboy": "*" +-+ }, +-+ "engines": { +-+ "node": ">=0.8.0" +- } +- }, +-- "console-control-strings": { +-+ "node_modules/console-control-strings": { +- "version": "1.1.0", +- "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", +-- "integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=", +-+ "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==", +- "dev": true +- }, +-- "content-disposition": { +-- "version": "0.5.2", +-- "resolved": "http://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz", +-- "integrity": "sha1-DPaLud318r55YcOoUXjLhdunjLQ=" +-+ "node_modules/content-disposition": { +-+ "version": "0.5.4", +-+ "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", +-+ "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", +-+ "dependencies": { +-+ "safe-buffer": "5.2.1" +-+ }, +-+ "engines": { +-+ "node": ">= 0.6" +-+ } +-+ }, +-+ "node_modules/content-disposition/node_modules/safe-buffer": { +-+ "version": "5.2.1", +-+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", +-+ "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", +-+ "funding": [ +-+ { +-+ "type": "github", +-+ "url": "https://github.com/sponsors/feross" +-+ }, +-+ { +-+ "type": "patreon", +-+ "url": "https://www.patreon.com/feross" +-+ }, +-+ { +-+ "type": "consulting", +-+ "url": "https://feross.org/support" +-+ } +-+ ] +- }, +-- "content-type": { +-- "version": "1.0.4", +-- "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", +-- "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==" +-+ "node_modules/content-type": { +-+ "version": "1.0.5", +-+ "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", +-+ "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", +-+ "engines": { +-+ "node": ">= 0.6" +-+ } +- }, +-- "continuable-cache": { +-+ "node_modules/continuable-cache": { +- "version": "0.3.1", +- "resolved": "https://registry.npmjs.org/continuable-cache/-/continuable-cache-0.3.1.tgz", +- "integrity": "sha1-vXJ6f67XfnH/OYWskzUakSczrQ8=" +- }, +-- "cookie": { +-- "version": "0.3.1", +-- "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz", +-- "integrity": "sha1-5+Ch+e9DtMi6klxcWpboBtFoc7s=" +-+ "node_modules/cookie": { +-+ "version": "0.6.0", +-+ "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz", +-+ "integrity": "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==", +-+ "engines": { +-+ "node": ">= 0.6" +-+ } +- }, +-- "cookie-signature": { +-+ "node_modules/cookie-signature": { +- "version": "1.0.6", +- "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", +- "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=" +- }, +-- "copy-descriptor": { +-- "version": "0.1.1", +-- "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", +-- "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=", +-- "dev": true +-- }, +-- "core-util-is": { +-+ "node_modules/core-util-is": { +- "version": "1.0.2", +- "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", +- "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" +- }, +-- "cors": { +-+ "node_modules/cors": { +- "version": "2.8.5", +- "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", +- "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", +-- "requires": { +-+ "dependencies": { +- "object-assign": "^4", +- "vary": "^1" +-+ }, +-+ "engines": { +-+ "node": ">= 0.10" +- } +- }, +-- "crc": { +-+ "node_modules/crc": { +- "version": "3.8.0", +- "resolved": "https://registry.npmjs.org/crc/-/crc-3.8.0.tgz", +- "integrity": "sha512-iX3mfgcTMIq3ZKLIsVFAbv7+Mc10kxabAGQb8HvjA1o3T1PIYprbakQ65d3I+2HGHt6nSKkM9PYjgoJO2KcFBQ==", +-- "requires": { +-+ "dependencies": { +- "buffer": "^5.1.0" +-- }, +-+ } +-+ }, +-+ "node_modules/crc/node_modules/buffer": { +-+ "version": "5.2.1", +-+ "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.2.1.tgz", +-+ "integrity": "sha512-c+Ko0loDaFfuPWiL02ls9Xd3GO3cPVmUobQ6t3rXNUk304u6hGq+8N/kFi+QEIKhzK3uwolVhLzszmfLmMLnqg==", +- "dependencies": { +-- "buffer": { +-- "version": "5.2.1", +-- "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.2.1.tgz", +-- "integrity": "sha512-c+Ko0loDaFfuPWiL02ls9Xd3GO3cPVmUobQ6t3rXNUk304u6hGq+8N/kFi+QEIKhzK3uwolVhLzszmfLmMLnqg==", +-- "requires": { +-- "base64-js": "^1.0.2", +-- "ieee754": "^1.1.4" +-- } +-- } +-+ "base64-js": "^1.0.2", +-+ "ieee754": "^1.1.4" +- } +- }, +-- "crc32-stream": { +-+ "node_modules/crc32-stream": { +- "version": "2.0.0", +- "resolved": "https://registry.npmjs.org/crc32-stream/-/crc32-stream-2.0.0.tgz", +- "integrity": "sha1-483TtN8xaN10494/u8t7KX/pCPQ=", +-- "requires": { +-+ "dependencies": { +- "crc": "^3.4.4", +- "readable-stream": "^2.0.0" +-+ }, +-+ "engines": { +-+ "node": ">= 0.10.0" +- } +- }, +-- "create-error-class": { +-- "version": "3.0.2", +-- "resolved": "https://registry.npmjs.org/create-error-class/-/create-error-class-3.0.2.tgz", +-- "integrity": "sha1-Br56vvlHo/FKMP1hBnHUAbyot7Y=", +-- "dev": true, +-- "requires": { +-- "capture-stack-trace": "^1.0.0" +-+ "node_modules/cross-spawn": { +-+ "version": "7.0.3", +-+ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", +-+ "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", +-+ "dependencies": { +-+ "path-key": "^3.1.0", +-+ "shebang-command": "^2.0.0", +-+ "which": "^2.0.1" +-+ }, +-+ "engines": { +-+ "node": ">= 8" +- } +- }, +-- "cross-spawn": { +-- "version": "3.0.1", +-- "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-3.0.1.tgz", +-- "integrity": "sha1-ElYDfsufDF9549bvE14wdwGEuYI=", +-- "dev": true, +-- "requires": { +-- "lru-cache": "^4.0.1", +-- "which": "^1.2.9" +-+ "node_modules/cross-spawn/node_modules/path-key": { +-+ "version": "3.1.1", +-+ "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", +-+ "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", +-+ "engines": { +-+ "node": ">=8" +- } +- }, +-- "crypto-random-string": { +-- "version": "1.0.0", +-- "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-1.0.0.tgz", +-- "integrity": "sha1-ojD2T1aDEOFJgAmUB5DsmVRbyn4=", +-- "dev": true +-- }, +-- "csv": { +-- "version": "3.1.0", +-- "resolved": "https://registry.npmjs.org/csv/-/csv-3.1.0.tgz", +-- "integrity": "sha512-SfnePMkhjljB7ehvubZESGjgrnM7V/gBe5ubZWKxeKwgmTl/HtVCdfSaGRgH/i/vG7qJaSLMpP0krNbAuunRBg==", +-- "requires": { +-- "csv-generate": "^2.0.2", +-- "csv-parse": "^2.4.0", +-- "csv-stringify": "^3.0.0", +-- "stream-transform": "^1.0.2" +-+ "node_modules/cross-spawn/node_modules/shebang-command": { +-+ "version": "2.0.0", +-+ "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", +-+ "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", +-+ "dependencies": { +-+ "shebang-regex": "^3.0.0" +-+ }, +-+ "engines": { +-+ "node": ">=8" +- } +- }, +-- "csv-generate": { +-- "version": "2.2.2", +-- "resolved": "https://registry.npmjs.org/csv-generate/-/csv-generate-2.2.2.tgz", +-- "integrity": "sha512-ETG8JGG0xOt2f1JzxrAcQONVc4+7srUdXeyLnow60ntBr+qiNCFTqi+ME6g0vZ4hMCbrwNrDPJPOYVznAeDDHQ==" +-- }, +-- "csv-parse": { +-- "version": "2.5.0", +-- "resolved": "https://registry.npmjs.org/csv-parse/-/csv-parse-2.5.0.tgz", +-- "integrity": "sha512-4OcjOJQByI0YDU5COYw9HAqjo8/MOLLmT9EKyMCXUzgvh30vS1SlMK+Ho84IH5exN44cSnrYecw/7Zpu2m4lkA==" +-- }, +-- "csv-stringify": { +-- "version": "3.1.1", +-- "resolved": "https://registry.npmjs.org/csv-stringify/-/csv-stringify-3.1.1.tgz", +-- "integrity": "sha512-Ni9r/BdQM2cGnWzwAP09zp12LVOAMHLJ86azNHGC7s4OUo2WidGfcM3QwYEjD8c4ELCL/a4AzfIsVCzroeys+g==", +-- "requires": { +-- "lodash.get": "~4.4.2" +-+ "node_modules/cross-spawn/node_modules/shebang-regex": { +-+ "version": "3.0.0", +-+ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", +-+ "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", +-+ "engines": { +-+ "node": ">=8" +- } +- }, +-- "currently-unhandled": { +-- "version": "0.4.1", +-- "resolved": "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz", +-- "integrity": "sha1-mI3zP+qxke95mmE2nddsF635V+o=", +-- "dev": true, +-- "requires": { +-- "array-find-index": "^1.0.1" +-+ "node_modules/cross-spawn/node_modules/which": { +-+ "version": "2.0.2", +-+ "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", +-+ "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", +-+ "dependencies": { +-+ "isexe": "^2.0.0" +-+ }, +-+ "bin": { +-+ "node-which": "bin/node-which" +-+ }, +-+ "engines": { +-+ "node": ">= 8" +- } +- }, +-- "dashdash": { +-- "version": "1.14.1", +-- "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", +-- "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", +-- "requires": { +-- "assert-plus": "^1.0.0" +-- }, +-+ "node_modules/csv": { +-+ "version": "6.3.9", +-+ "resolved": "https://registry.npmjs.org/csv/-/csv-6.3.9.tgz", +-+ "integrity": "sha512-eiN+Qu8NwSLxZYia6WzB8xlX/rAQ/8EgK5A4dIF7Bz96mzcr5dW1jlcNmjG0QWySWKfPdCerH3RQ96ZqqsE8cA==", +- "dependencies": { +-- "assert-plus": { +-- "version": "1.0.0", +-- "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", +-- "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" +-- } +-+ "csv-generate": "^4.4.1", +-+ "csv-parse": "^5.5.6", +-+ "csv-stringify": "^6.5.0", +-+ "stream-transform": "^3.3.2" +-+ }, +-+ "engines": { +-+ "node": ">= 0.1.90" +- } +- }, +-- "date-fns": { +-- "version": "1.30.1", +-- "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-1.30.1.tgz", +-- "integrity": "sha512-hBSVCvSmWC+QypYObzwGOd9wqdDpOt+0wl0KbU+R+uuZBS1jN8VsD1ss3irQDknRj5NvxiTF6oj/nDRnN/UQNw==", +-- "dev": true +-+ "node_modules/csv-generate": { +-+ "version": "4.4.1", +-+ "resolved": "https://registry.npmjs.org/csv-generate/-/csv-generate-4.4.1.tgz", +-+ "integrity": "sha512-O/einO0v4zPmXaOV+sYqGa02VkST4GP5GLpWBNHEouIU7pF3kpGf3D0kCCvX82ydIY4EKkOK+R8b1BYsRXravg==" +-+ }, +-+ "node_modules/csv-parse": { +-+ "version": "5.5.6", +-+ "resolved": "https://registry.npmjs.org/csv-parse/-/csv-parse-5.5.6.tgz", +-+ "integrity": "sha512-uNpm30m/AGSkLxxy7d9yRXpJQFrZzVWLFBkS+6ngPcZkw/5k3L/jjFuj7tVnEpRn+QgmiXr21nDlhCiUK4ij2A==" +-+ }, +-+ "node_modules/csv-stringify": { +-+ "version": "6.5.0", +-+ "resolved": "https://registry.npmjs.org/csv-stringify/-/csv-stringify-6.5.0.tgz", +-+ "integrity": "sha512-edlXFVKcUx7r8Vx5zQucsuMg4wb/xT6qyz+Sr1vnLrdXqlLD1+UKyWNyZ9zn6mUW1ewmGxrpVwAcChGF0HQ/2Q==" +-+ }, +-+ "node_modules/date-fns": { +-+ "version": "2.30.0", +-+ "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.30.0.tgz", +-+ "integrity": "sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==", +-+ "dev": true, +-+ "dependencies": { +-+ "@babel/runtime": "^7.21.0" +-+ }, +-+ "engines": { +-+ "node": ">=0.11" +-+ }, +-+ "funding": { +-+ "type": "opencollective", +-+ "url": "https://opencollective.com/date-fns" +-+ } +- }, +-- "debug": { +-+ "node_modules/debug": { +- "version": "2.6.9", +- "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", +- "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", +-- "requires": { +-+ "dependencies": { +- "ms": "2.0.0" +- } +- }, +-- "decamelize": { +-+ "node_modules/decamelize": { +- "version": "1.2.0", +- "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", +- "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", +-- "dev": true +-- }, +-- "decode-uri-component": { +-- "version": "0.2.0", +-- "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", +-- "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=", +-- "dev": true +-+ "dev": true, +-+ "engines": { +-+ "node": ">=0.10.0" +-+ } +- }, +-- "deep-extend": { +-- "version": "0.6.0", +-- "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", +-- "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", +-- "dev": true +-+ "node_modules/decamelize-keys": { +-+ "version": "1.1.1", +-+ "resolved": "https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.1.tgz", +-+ "integrity": "sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==", +-+ "dev": true, +-+ "dependencies": { +-+ "decamelize": "^1.1.0", +-+ "map-obj": "^1.0.0" +-+ }, +-+ "engines": { +-+ "node": ">=0.10.0" +-+ }, +-+ "funding": { +-+ "url": "https://github.com/sponsors/sindresorhus" +-+ } +- }, +-- "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==", +-- "requires": { +-- "object-keys": "^1.0.12" +-+ "node_modules/decamelize-keys/node_modules/map-obj": { +-+ "version": "1.0.1", +-+ "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", +-+ "integrity": "sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==", +-+ "dev": true, +-+ "engines": { +-+ "node": ">=0.10.0" +- } +- }, +-- "define-property": { +-- "version": "2.0.2", +-- "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", +-- "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", +-- "dev": true, +-- "requires": { +-- "is-descriptor": "^1.0.2", +-- "isobject": "^3.0.1" +-- }, +-- "dependencies": { +-- "is-accessor-descriptor": { +-- "version": "1.0.0", +-- "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", +-- "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", +-- "dev": true, +-- "requires": { +-- "kind-of": "^6.0.0" +-- } +-- }, +-- "is-data-descriptor": { +-- "version": "1.0.0", +-- "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", +-- "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", +-- "dev": true, +-- "requires": { +-- "kind-of": "^6.0.0" +-- } +-- }, +-- "is-descriptor": { +-- "version": "1.0.2", +-- "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", +-- "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", +-- "dev": true, +-- "requires": { +-- "is-accessor-descriptor": "^1.0.0", +-- "is-data-descriptor": "^1.0.0", +-- "kind-of": "^6.0.2" +-- } +-- } +-+ "node_modules/define-data-property": { +-+ "version": "1.1.4", +-+ "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", +-+ "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", +-+ "dependencies": { +-+ "es-define-property": "^1.0.0", +-+ "es-errors": "^1.3.0", +-+ "gopd": "^1.0.1" +-+ }, +-+ "engines": { +-+ "node": ">= 0.4" +-+ }, +-+ "funding": { +-+ "url": "https://github.com/sponsors/ljharb" +- } +- }, +-- "delayed-stream": { +-+ "node_modules/delayed-stream": { +- "version": "1.0.0", +- "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", +-- "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=" +-+ "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=", +-+ "engines": { +-+ "node": ">=0.4.0" +-+ } +- }, +-- "delegates": { +-+ "node_modules/delegates": { +- "version": "1.0.0", +- "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", +-- "integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=", +-+ "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==", +- "dev": true +- }, +-- "depd": { +-- "version": "1.1.2", +-- "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", +-- "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=" +-- }, +-- "destroy": { +-- "version": "1.0.4", +-- "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", +-- "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=" +-+ "node_modules/depd": { +-+ "version": "2.0.0", +-+ "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", +-+ "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", +-+ "engines": { +-+ "node": ">= 0.8" +-+ } +- }, +-- "dicer": { +-- "version": "0.3.0", +-- "resolved": "https://registry.npmjs.org/dicer/-/dicer-0.3.0.tgz", +-- "integrity": "sha512-MdceRRWqltEG2dZqO769g27N/3PXfcKl04VhYnBlo2YhH7zPi88VebsjTKclaOyiuMaGU72hTfw3VkUitGcVCA==", +-- "requires": { +-- "streamsearch": "0.1.2" +-+ "node_modules/destroy": { +-+ "version": "1.2.0", +-+ "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", +-+ "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", +-+ "engines": { +-+ "node": ">= 0.8", +-+ "npm": "1.2.8000 || >= 1.4.16" +- } +- }, +-- "dot-prop": { +-- "version": "4.2.0", +-- "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-4.2.0.tgz", +-- "integrity": "sha512-tUMXrxlExSW6U2EXiiKGSBVdYgtV8qlHL+C10TsW4PURY/ic+eaysnSkwB4kA/mBlCyy/IKDJ+Lc3wbWeaXtuQ==", +-- "dev": true, +-- "requires": { +-- "is-obj": "^1.0.0" +-- } +-- }, +-- "duplexer3": { +-- "version": "0.1.4", +-- "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz", +-- "integrity": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=", +-- "dev": true +-- }, +-- "ecc-jsbn": { +-- "version": "0.1.2", +-- "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", +-- "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", +-- "requires": { +-- "jsbn": "~0.1.0", +-- "safer-buffer": "^2.1.0" +-- } +-+ "node_modules/eastasianwidth": { +-+ "version": "0.2.0", +-+ "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", +-+ "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==" +- }, +-- "ee-first": { +-+ "node_modules/ee-first": { +- "version": "1.1.1", +- "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", +-- "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" +-+ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" +-+ }, +-+ "node_modules/ejs": { +-+ "version": "3.1.10", +-+ "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.10.tgz", +-+ "integrity": "sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==", +-+ "dependencies": { +-+ "jake": "^10.8.5" +-+ }, +-+ "bin": { +-+ "ejs": "bin/cli.js" +-+ }, +-+ "engines": { +-+ "node": ">=0.10.0" +-+ } +- }, +-- "ejs": { +-- "version": "2.6.1", +-- "resolved": "https://registry.npmjs.org/ejs/-/ejs-2.6.1.tgz", +-- "integrity": "sha512-0xy4A/twfrRCnkhfk8ErDi5DqdAsAqeGxht4xkCUrsvhhbQNs7E+4jV0CN7+NKIY0aHE72+XvqtBIXzD31ZbXQ==" +-+ "node_modules/emoji-regex": { +-+ "version": "8.0.0", +-+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", +-+ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" +- }, +-- "encodeurl": { +-+ "node_modules/encodeurl": { +- "version": "1.0.2", +- "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", +-- "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=" +-+ "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", +-+ "engines": { +-+ "node": ">= 0.8" +-+ } +- }, +-- "end-of-stream": { +-+ "node_modules/encoding": { +-+ "version": "0.1.13", +-+ "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", +-+ "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", +-+ "dev": true, +-+ "optional": true, +-+ "dependencies": { +-+ "iconv-lite": "^0.6.2" +-+ } +-+ }, +-+ "node_modules/encoding/node_modules/iconv-lite": { +-+ "version": "0.6.3", +-+ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", +-+ "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", +-+ "dev": true, +-+ "optional": true, +-+ "dependencies": { +-+ "safer-buffer": ">= 2.1.2 < 3.0.0" +-+ }, +-+ "engines": { +-+ "node": ">=0.10.0" +-+ } +-+ }, +-+ "node_modules/end-of-stream": { +- "version": "1.4.1", +- "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.1.tgz", +- "integrity": "sha512-1MkrZNvWTKCaigbn+W15elq2BB/L22nqrSY5DKlo3X6+vclJm8Bb5djXJBmEX6fS3+zCh/F4VBK5Z2KxJt4s2Q==", +-- "requires": { +-+ "dependencies": { +- "once": "^1.4.0" +- } +- }, +-- "error": { +-+ "node_modules/env-paths": { +-+ "version": "2.2.1", +-+ "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", +-+ "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", +-+ "dev": true, +-+ "engines": { +-+ "node": ">=6" +-+ } +-+ }, +-+ "node_modules/err-code": { +-+ "version": "2.0.3", +-+ "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz", +-+ "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==", +-+ "dev": true +-+ }, +-+ "node_modules/error": { +- "version": "7.0.2", +- "resolved": "https://registry.npmjs.org/error/-/error-7.0.2.tgz", +- "integrity": "sha1-pfdf/02ZJhJt2sDqXcOOaJFTywI=", +-- "requires": { +-+ "dependencies": { +- "string-template": "~0.2.1", +- "xtend": "~4.0.0" +- } +- }, +-- "error-ex": { +-+ "node_modules/error-ex": { +- "version": "1.3.2", +- "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", +- "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", +- "dev": true, +-- "requires": { +-+ "dependencies": { +- "is-arrayish": "^0.2.1" +- } +- }, +-- "escape-html": { +-+ "node_modules/es-define-property": { +-+ "version": "1.0.0", +-+ "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", +-+ "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", +-+ "dependencies": { +-+ "get-intrinsic": "^1.2.4" +-+ }, +-+ "engines": { +-+ "node": ">= 0.4" +-+ } +-+ }, +-+ "node_modules/es-errors": { +-+ "version": "1.3.0", +-+ "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", +-+ "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", +-+ "engines": { +-+ "node": ">= 0.4" +-+ } +-+ }, +-+ "node_modules/escalade": { +-+ "version": "3.1.2", +-+ "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", +-+ "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", +-+ "dev": true, +-+ "engines": { +-+ "node": ">=6" +-+ } +-+ }, +-+ "node_modules/escape-html": { +- "version": "1.0.3", +- "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", +-- "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=" +-+ "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" +- }, +-- "escape-string-regexp": { +-+ "node_modules/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 +-+ "dev": true, +-+ "engines": { +-+ "node": ">=0.8.0" +-+ } +- }, +-- "etag": { +-+ "node_modules/etag": { +- "version": "1.8.1", +- "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", +-- "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=" +-- }, +-- "execa": { +-- "version": "0.7.0", +-- "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz", +-- "integrity": "sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c=", +-- "dev": true, +-- "requires": { +-- "cross-spawn": "^5.0.1", +-- "get-stream": "^3.0.0", +-- "is-stream": "^1.1.0", +-- "npm-run-path": "^2.0.0", +-- "p-finally": "^1.0.0", +-- "signal-exit": "^3.0.0", +-- "strip-eof": "^1.0.0" +-- }, +-- "dependencies": { +-- "cross-spawn": { +-- "version": "5.1.0", +-- "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", +-- "integrity": "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=", +-- "dev": true, +-- "requires": { +-- "lru-cache": "^4.0.1", +-- "shebang-command": "^1.2.0", +-- "which": "^1.2.9" +-- } +-- } +-- } +-- }, +-- "expand-brackets": { +-- "version": "2.1.4", +-- "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", +-- "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", +-- "dev": true, +-- "requires": { +-- "debug": "^2.3.3", +-- "define-property": "^0.2.5", +-- "extend-shallow": "^2.0.1", +-- "posix-character-classes": "^0.1.0", +-- "regex-not": "^1.0.0", +-- "snapdragon": "^0.8.1", +-- "to-regex": "^3.0.1" +-- }, +-- "dependencies": { +-- "define-property": { +-- "version": "0.2.5", +-- "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", +-- "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", +-- "dev": true, +-- "requires": { +-- "is-descriptor": "^0.1.0" +-- } +-- }, +-- "extend-shallow": { +-- "version": "2.0.1", +-- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", +-- "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", +-- "dev": true, +-- "requires": { +-- "is-extendable": "^0.1.0" +-- } +-- } +-+ "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", +-+ "engines": { +-+ "node": ">= 0.6" +- } +- }, +-- "express": { +-- "version": "4.16.4", +-- "resolved": "https://registry.npmjs.org/express/-/express-4.16.4.tgz", +-- "integrity": "sha512-j12Uuyb4FMrd/qQAm6uCHAkPtO8FDTRJZBDd5D2KOL2eLaz1yUNdUB/NOIyq0iU4q4cFarsUCrnFDPBcnksuOg==", +-- "requires": { +-- "accepts": "~1.3.5", +-+ "node_modules/express": { +-+ "version": "4.19.2", +-+ "resolved": "https://registry.npmjs.org/express/-/express-4.19.2.tgz", +-+ "integrity": "sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==", +-+ "dependencies": { +-+ "accepts": "~1.3.8", +- "array-flatten": "1.1.1", +-- "body-parser": "1.18.3", +-- "content-disposition": "0.5.2", +-+ "body-parser": "1.20.2", +-+ "content-disposition": "0.5.4", +- "content-type": "~1.0.4", +-- "cookie": "0.3.1", +-+ "cookie": "0.6.0", +- "cookie-signature": "1.0.6", +- "debug": "2.6.9", +-- "depd": "~1.1.2", +-+ "depd": "2.0.0", +- "encodeurl": "~1.0.2", +- "escape-html": "~1.0.3", +- "etag": "~1.8.1", +-- "finalhandler": "1.1.1", +-+ "finalhandler": "1.2.0", +- "fresh": "0.5.2", +-+ "http-errors": "2.0.0", +- "merge-descriptors": "1.0.1", +- "methods": "~1.1.2", +-- "on-finished": "~2.3.0", +-- "parseurl": "~1.3.2", +-+ "on-finished": "2.4.1", +-+ "parseurl": "~1.3.3", +- "path-to-regexp": "0.1.7", +-- "proxy-addr": "~2.0.4", +-- "qs": "6.5.2", +-- "range-parser": "~1.2.0", +-- "safe-buffer": "5.1.2", +-- "send": "0.16.2", +-- "serve-static": "1.13.2", +-- "setprototypeof": "1.1.0", +-- "statuses": "~1.4.0", +-- "type-is": "~1.6.16", +-+ "proxy-addr": "~2.0.7", +-+ "qs": "6.11.0", +-+ "range-parser": "~1.2.1", +-+ "safe-buffer": "5.2.1", +-+ "send": "0.18.0", +-+ "serve-static": "1.15.0", +-+ "setprototypeof": "1.2.0", +-+ "statuses": "2.0.1", +-+ "type-is": "~1.6.18", +- "utils-merge": "1.0.1", +- "vary": "~1.1.2" +- }, +-- "dependencies": { +-- "qs": { +-- "version": "6.5.2", +-- "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", +-- "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==" +-- } +-+ "engines": { +-+ "node": ">= 0.10.0" +- } +- }, +-- "express-busboy": { +-+ "node_modules/express-busboy": { +- "version": "7.0.1", +- "resolved": "https://registry.npmjs.org/express-busboy/-/express-busboy-7.0.1.tgz", +- "integrity": "sha512-ZMR9uUJp4Rx6y7YBML2Cxr5C314WECIClslfu+zgDqANx0aDyPcqesVLef0bjlQKD7X+va6p1xX0/G5WK+9JbA==", +-- "requires": { +-+ "dependencies": { +- "body": "~5.1.0", +- "connect-busboy": "~0.0.1", +- "mkdirp": "~0.5.0", +- "qs": "^6.4.0", +- "uuid": "~1.4.1" +-- }, +-- "dependencies": { +-- "uuid": { +-- "version": "1.4.2", +-- "resolved": "http://registry.npmjs.org/uuid/-/uuid-1.4.2.tgz", +-- "integrity": "sha1-RTAZ9oaWam34PNxSROfJkOzDMvw=" +-- } +- } +- }, +-- "express-handlebars": { +-- "version": "3.0.2", +-- "resolved": "https://registry.npmjs.org/express-handlebars/-/express-handlebars-3.0.2.tgz", +-- "integrity": "sha512-rPaSqR8xPnSqfvWvI8Mhtn7nifaMmySq6yhWkjH07Ks/nuDaRngJyf7eDN2I7PBkNVdZHf0Bz+1rY1yrZFdx8g==", +-- "requires": { +-- "glob": "^7.1.3", +-- "graceful-fs": "^4.1.2", +-- "handlebars": "^4.0.13", +-- "object.assign": "^4.1.0", +-- "promise": "^8.0.2" +-- }, +-- "dependencies": { +-- "promise": { +-- "version": "8.0.2", +-- "resolved": "https://registry.npmjs.org/promise/-/promise-8.0.2.tgz", +-- "integrity": "sha512-EIyzM39FpVOMbqgzEHhxdrEhtOSDOtjMZQ0M6iVfCE+kWNgCkAyOdnuCWqfmflylftfadU6FkiMgHZA2kUzwRw==", +-- "requires": { +-- "asap": "~2.0.6" +-- } +-- } +-+ "node_modules/express-busboy/node_modules/uuid": { +-+ "version": "1.4.2", +-+ "resolved": "http://registry.npmjs.org/uuid/-/uuid-1.4.2.tgz", +-+ "integrity": "sha1-RTAZ9oaWam34PNxSROfJkOzDMvw=", +-+ "deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details." +-+ }, +-+ "node_modules/express-handlebars": { +-+ "version": "7.1.3", +-+ "resolved": "https://registry.npmjs.org/express-handlebars/-/express-handlebars-7.1.3.tgz", +-+ "integrity": "sha512-O0W4n14iQ8+iFIDdiMh9HRI2nbVQJ/h1qndlD1TXWxxcfbKjKoqJh+ti2tROkyx4C4VQrt0y3bANBQ5auQAiew==", +-+ "dependencies": { +-+ "glob": "^10.4.2", +-+ "graceful-fs": "^4.2.11", +-+ "handlebars": "^4.7.8" +-+ }, +-+ "engines": { +-+ "node": ">=v16" +- } +- }, +-- "extend": { +-- "version": "3.0.2", +-- "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", +-- "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" +-+ "node_modules/express-handlebars/node_modules/brace-expansion": { +-+ "version": "2.0.1", +-+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", +-+ "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", +-+ "dependencies": { +-+ "balanced-match": "^1.0.0" +-+ } +- }, +-- "extend-shallow": { +-- "version": "3.0.2", +-- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", +-- "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", +-- "dev": true, +-- "requires": { +-- "assign-symbols": "^1.0.0", +-- "is-extendable": "^1.0.1" +-- }, +-- "dependencies": { +-- "is-extendable": { +-- "version": "1.0.1", +-- "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", +-- "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", +-- "dev": true, +-- "requires": { +-- "is-plain-object": "^2.0.4" +-- } +-- } +-+ "node_modules/express-handlebars/node_modules/glob": { +-+ "version": "10.4.2", +-+ "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.2.tgz", +-+ "integrity": "sha512-GwMlUF6PkPo3Gk21UxkCohOv0PLcIXVtKyLlpEI28R/cO/4eNOdmLk3CMW1wROV/WR/EsZOWAfBbBOqYvs88/w==", +-+ "dependencies": { +-+ "foreground-child": "^3.1.0", +-+ "jackspeak": "^3.1.2", +-+ "minimatch": "^9.0.4", +-+ "minipass": "^7.1.2", +-+ "package-json-from-dist": "^1.0.0", +-+ "path-scurry": "^1.11.1" +-+ }, +-+ "bin": { +-+ "glob": "dist/esm/bin.mjs" +-+ }, +-+ "engines": { +-+ "node": ">=16 || 14 >=14.18" +-+ }, +-+ "funding": { +-+ "url": "https://github.com/sponsors/isaacs" +- } +- }, +-- "extglob": { +-- "version": "2.0.4", +-- "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", +-- "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", +-- "dev": true, +-- "requires": { +-- "array-unique": "^0.3.2", +-- "define-property": "^1.0.0", +-- "expand-brackets": "^2.1.4", +-- "extend-shallow": "^2.0.1", +-- "fragment-cache": "^0.2.1", +-- "regex-not": "^1.0.0", +-- "snapdragon": "^0.8.1", +-- "to-regex": "^3.0.1" +-- }, +-- "dependencies": { +-- "define-property": { +-- "version": "1.0.0", +-- "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", +-- "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", +-- "dev": true, +-- "requires": { +-- "is-descriptor": "^1.0.0" +-- } +-- }, +-- "extend-shallow": { +-- "version": "2.0.1", +-- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", +-- "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", +-- "dev": true, +-- "requires": { +-- "is-extendable": "^0.1.0" +-- } +-- }, +-- "is-accessor-descriptor": { +-- "version": "1.0.0", +-- "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", +-- "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", +-- "dev": true, +-- "requires": { +-- "kind-of": "^6.0.0" +-- } +-+ "node_modules/express-handlebars/node_modules/minimatch": { +-+ "version": "9.0.5", +-+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", +-+ "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", +-+ "dependencies": { +-+ "brace-expansion": "^2.0.1" +-+ }, +-+ "engines": { +-+ "node": ">=16 || 14 >=14.17" +-+ }, +-+ "funding": { +-+ "url": "https://github.com/sponsors/isaacs" +-+ } +-+ }, +-+ "node_modules/express-handlebars/node_modules/minipass": { +-+ "version": "7.1.2", +-+ "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", +-+ "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", +-+ "engines": { +-+ "node": ">=16 || 14 >=14.17" +-+ } +-+ }, +-+ "node_modules/express/node_modules/safe-buffer": { +-+ "version": "5.2.1", +-+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", +-+ "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", +-+ "funding": [ +-+ { +-+ "type": "github", +-+ "url": "https://github.com/sponsors/feross" +- }, +-- "is-data-descriptor": { +-- "version": "1.0.0", +-- "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", +-- "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", +-- "dev": true, +-- "requires": { +-- "kind-of": "^6.0.0" +-- } +-+ { +-+ "type": "patreon", +-+ "url": "https://www.patreon.com/feross" +- }, +-- "is-descriptor": { +-- "version": "1.0.2", +-- "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", +-- "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", +-- "dev": true, +-- "requires": { +-- "is-accessor-descriptor": "^1.0.0", +-- "is-data-descriptor": "^1.0.0", +-- "kind-of": "^6.0.2" +-- } +-+ { +-+ "type": "consulting", +-+ "url": "https://feross.org/support" +- } +-- } +-+ ] +- }, +-- "extsprintf": { +-- "version": "1.3.0", +-- "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", +-- "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=" +-+ "node_modules/filelist": { +-+ "version": "1.0.4", +-+ "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz", +-+ "integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==", +-+ "dependencies": { +-+ "minimatch": "^5.0.1" +-+ } +- }, +-- "fast-deep-equal": { +-+ "node_modules/filelist/node_modules/brace-expansion": { +- "version": "2.0.1", +-- "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz", +-- "integrity": "sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk=" +-+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", +-+ "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", +-+ "dependencies": { +-+ "balanced-match": "^1.0.0" +-+ } +- }, +-- "fast-json-stable-stringify": { +-- "version": "2.0.0", +-- "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz", +-- "integrity": "sha1-1RQsDK7msRifh9OnYREGT4bIu/I=" +-+ "node_modules/filelist/node_modules/minimatch": { +-+ "version": "5.1.6", +-+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", +-+ "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", +-+ "dependencies": { +-+ "brace-expansion": "^2.0.1" +-+ }, +-+ "engines": { +-+ "node": ">=10" +-+ } +- }, +-- "fill-range": { +-- "version": "4.0.0", +-- "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", +-- "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", +-- "dev": true, +-- "requires": { +-- "extend-shallow": "^2.0.1", +-- "is-number": "^3.0.0", +-- "repeat-string": "^1.6.1", +-- "to-regex-range": "^2.1.0" +-- }, +-- "dependencies": { +-- "extend-shallow": { +-- "version": "2.0.1", +-- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", +-- "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", +-- "dev": true, +-- "requires": { +-- "is-extendable": "^0.1.0" +-- } +-- } +-+ "node_modules/fill-range": { +-+ "version": "7.1.1", +-+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", +-+ "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", +-+ "dev": true, +-+ "dependencies": { +-+ "to-regex-range": "^5.0.1" +-+ }, +-+ "engines": { +-+ "node": ">=8" +- } +- }, +-- "finalhandler": { +-- "version": "1.1.1", +-- "resolved": "http://registry.npmjs.org/finalhandler/-/finalhandler-1.1.1.tgz", +-- "integrity": "sha512-Y1GUDo39ez4aHAw7MysnUD5JzYX+WaIj8I57kO3aEPT1fFRL4sr7mjei97FgnwhAyyzRYmQZaTHb2+9uZ1dPtg==", +-- "requires": { +-+ "node_modules/finalhandler": { +-+ "version": "1.2.0", +-+ "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", +-+ "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", +-+ "dependencies": { +- "debug": "2.6.9", +- "encodeurl": "~1.0.2", +- "escape-html": "~1.0.3", +-- "on-finished": "~2.3.0", +-- "parseurl": "~1.3.2", +-- "statuses": "~1.4.0", +-+ "on-finished": "2.4.1", +-+ "parseurl": "~1.3.3", +-+ "statuses": "2.0.1", +- "unpipe": "~1.0.0" +-+ }, +-+ "engines": { +-+ "node": ">= 0.8" +- } +- }, +-- "find-up": { +-- "version": "1.1.2", +-- "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", +-- "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", +-+ "node_modules/find-up": { +-+ "version": "4.1.0", +-+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", +-+ "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", +- "dev": true, +-- "requires": { +-- "path-exists": "^2.0.0", +-- "pinkie-promise": "^2.0.0" +-+ "dependencies": { +-+ "locate-path": "^5.0.0", +-+ "path-exists": "^4.0.0" +-+ }, +-+ "engines": { +-+ "node": ">=8" +- } +- }, +-- "for-in": { +-- "version": "1.0.2", +-- "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", +-- "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=", +-- "dev": true +-+ "node_modules/find-up/node_modules/locate-path": { +-+ "version": "5.0.0", +-+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", +-+ "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", +-+ "dev": true, +-+ "dependencies": { +-+ "p-locate": "^4.1.0" +-+ }, +-+ "engines": { +-+ "node": ">=8" +-+ } +- }, +-- "forever-agent": { +-- "version": "0.6.1", +-- "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", +-- "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=" +-+ "node_modules/find-up/node_modules/p-locate": { +-+ "version": "4.1.0", +-+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", +-+ "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", +-+ "dev": true, +-+ "dependencies": { +-+ "p-limit": "^2.2.0" +-+ }, +-+ "engines": { +-+ "node": ">=8" +-+ } +-+ }, +-+ "node_modules/follow-redirects": { +-+ "version": "1.15.6", +-+ "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.6.tgz", +-+ "integrity": "sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==", +-+ "funding": [ +-+ { +-+ "type": "individual", +-+ "url": "https://github.com/sponsors/RubenVerborgh" +-+ } +-+ ], +-+ "engines": { +-+ "node": ">=4.0" +-+ }, +-+ "peerDependenciesMeta": { +-+ "debug": { +-+ "optional": true +-+ } +-+ } +- }, +-- "form-data": { +-- "version": "2.3.3", +-- "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", +-- "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", +-- "requires": { +-- "asynckit": "^0.4.0", +-- "combined-stream": "^1.0.6", +-- "mime-types": "^2.1.12" +-+ "node_modules/foreground-child": { +-+ "version": "3.2.1", +-+ "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.2.1.tgz", +-+ "integrity": "sha512-PXUUyLqrR2XCWICfv6ukppP96sdFwWbNEnfEMt7jNsISjMsvaLNinAHNDYyvkyU+SZG2BTSbT5NjG+vZslfGTA==", +-+ "dependencies": { +-+ "cross-spawn": "^7.0.0", +-+ "signal-exit": "^4.0.1" +-+ }, +-+ "engines": { +-+ "node": ">=14" +-+ }, +-+ "funding": { +-+ "url": "https://github.com/sponsors/isaacs" +- } +- }, +-- "forwarded": { +-- "version": "0.1.2", +-- "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz", +-- "integrity": "sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ=" +-+ "node_modules/foreground-child/node_modules/signal-exit": { +-+ "version": "4.1.0", +-+ "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", +-+ "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", +-+ "engines": { +-+ "node": ">=14" +-+ }, +-+ "funding": { +-+ "url": "https://github.com/sponsors/isaacs" +-+ } +- }, +-- "fragment-cache": { +-- "version": "0.2.1", +-- "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", +-- "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=", +-- "dev": true, +-- "requires": { +-- "map-cache": "^0.2.2" +-+ "node_modules/forwarded": { +-+ "version": "0.2.0", +-+ "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", +-+ "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", +-+ "engines": { +-+ "node": ">= 0.6" +- } +- }, +-- "fresh": { +-+ "node_modules/fresh": { +- "version": "0.5.2", +- "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", +-- "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=" +-+ "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", +-+ "engines": { +-+ "node": ">= 0.6" +-+ } +- }, +-- "fs-constants": { +-+ "node_modules/fs-constants": { +- "version": "1.0.0", +- "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", +- "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==" +- }, +-- "fs.realpath": { +-+ "node_modules/fs-minipass": { +-+ "version": "2.1.0", +-+ "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", +-+ "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", +-+ "dev": true, +-+ "dependencies": { +-+ "minipass": "^3.0.0" +-+ }, +-+ "engines": { +-+ "node": ">= 8" +-+ } +-+ }, +-+ "node_modules/fs.realpath": { +- "version": "1.0.0", +- "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", +- "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" +- }, +-- "fsevents": { +-- "version": "1.2.7", +-- "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.7.tgz", +-- "integrity": "sha512-Pxm6sI2MeBD7RdD12RYsqaP0nMiwx8eZBXCa6z2L+mRHm2DYrOYwihmhjpkdjUHwQhslWQjRpEgNq4XvBmaAuw==", +-+ "node_modules/fsevents": { +-+ "version": "2.3.3", +-+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", +-+ "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", +- "dev": true, +-+ "hasInstallScript": true, +- "optional": true, +-- "requires": { +-- "nan": "^2.9.2", +-- "node-pre-gyp": "^0.10.0" +-- }, +-- "dependencies": { +-- "abbrev": { +-- "version": "1.1.1", +-- "bundled": true, +-- "dev": true, +-- "optional": true +-- }, +-- "ansi-regex": { +-- "version": "2.1.1", +-- "bundled": true, +-- "dev": true +-- }, +-- "aproba": { +-- "version": "1.2.0", +-- "bundled": true, +-- "dev": true, +-- "optional": true +-- }, +-- "are-we-there-yet": { +-- "version": "1.1.5", +-- "bundled": true, +-- "dev": true, +-- "optional": true, +-- "requires": { +-- "delegates": "^1.0.0", +-- "readable-stream": "^2.0.6" +-- } +-- }, +-- "balanced-match": { +-- "version": "1.0.0", +-- "bundled": true, +-- "dev": true +-- }, +-- "brace-expansion": { +-- "version": "1.1.11", +-- "bundled": true, +-- "dev": true, +-- "requires": { +-- "balanced-match": "^1.0.0", +-- "concat-map": "0.0.1" +-- } +-- }, +-- "chownr": { +-- "version": "1.1.1", +-- "bundled": true, +-- "dev": true, +-- "optional": true +-- }, +-- "code-point-at": { +-- "version": "1.1.0", +-- "bundled": true, +-- "dev": true +-- }, +-- "concat-map": { +-- "version": "0.0.1", +-- "bundled": true, +-- "dev": true +-- }, +-- "console-control-strings": { +-- "version": "1.1.0", +-- "bundled": true, +-- "dev": true +-- }, +-- "core-util-is": { +-- "version": "1.0.2", +-- "bundled": true, +-- "dev": true, +-- "optional": true +-- }, +-- "debug": { +-- "version": "2.6.9", +-- "bundled": true, +-- "dev": true, +-- "optional": true, +-- "requires": { +-- "ms": "2.0.0" +-- } +-- }, +-- "deep-extend": { +-- "version": "0.6.0", +-- "bundled": true, +-- "dev": true, +-- "optional": true +-- }, +-- "delegates": { +-- "version": "1.0.0", +-- "bundled": true, +-- "dev": true, +-- "optional": true +-- }, +-- "detect-libc": { +-- "version": "1.0.3", +-- "bundled": true, +-- "dev": true, +-- "optional": true +-- }, +-- "fs-minipass": { +-- "version": "1.2.5", +-- "bundled": true, +-- "dev": true, +-- "optional": true, +-- "requires": { +-- "minipass": "^2.2.1" +-- } +-- }, +-- "fs.realpath": { +-- "version": "1.0.0", +-- "bundled": true, +-- "dev": true, +-- "optional": true +-- }, +-- "gauge": { +-- "version": "2.7.4", +-- "bundled": true, +-- "dev": true, +-- "optional": true, +-- "requires": { +-- "aproba": "^1.0.3", +-- "console-control-strings": "^1.0.0", +-- "has-unicode": "^2.0.0", +-- "object-assign": "^4.1.0", +-- "signal-exit": "^3.0.0", +-- "string-width": "^1.0.1", +-- "strip-ansi": "^3.0.1", +-- "wide-align": "^1.1.0" +-- } +-- }, +-- "glob": { +-- "version": "7.1.3", +-- "bundled": true, +-- "dev": true, +-- "optional": true, +-- "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" +-- } +-- }, +-- "has-unicode": { +-- "version": "2.0.1", +-- "bundled": true, +-- "dev": true, +-- "optional": true +-- }, +-- "iconv-lite": { +-- "version": "0.4.24", +-- "bundled": true, +-- "dev": true, +-- "optional": true, +-- "requires": { +-- "safer-buffer": ">= 2.1.2 < 3" +-- } +-- }, +-- "ignore-walk": { +-- "version": "3.0.1", +-- "bundled": true, +-- "dev": true, +-- "optional": true, +-- "requires": { +-- "minimatch": "^3.0.4" +-- } +-- }, +-- "inflight": { +-- "version": "1.0.6", +-- "bundled": true, +-- "dev": true, +-- "optional": true, +-- "requires": { +-- "once": "^1.3.0", +-- "wrappy": "1" +-- } +-- }, +-- "inherits": { +-- "version": "2.0.3", +-- "bundled": true, +-- "dev": true +-- }, +-- "ini": { +-- "version": "1.3.5", +-- "bundled": true, +-- "dev": true, +-- "optional": true +-- }, +-- "is-fullwidth-code-point": { +-- "version": "1.0.0", +-- "bundled": true, +-- "dev": true, +-- "requires": { +-- "number-is-nan": "^1.0.0" +-- } +-- }, +-- "isarray": { +-- "version": "1.0.0", +-- "bundled": true, +-- "dev": true, +-- "optional": true +-- }, +-- "minimatch": { +-- "version": "3.0.4", +-- "bundled": true, +-- "dev": true, +-- "requires": { +-- "brace-expansion": "^1.1.7" +-- } +-- }, +-- "minimist": { +-- "version": "0.0.8", +-- "bundled": true, +-- "dev": true +-- }, +-- "minipass": { +-- "version": "2.3.5", +-- "bundled": true, +-- "dev": true, +-- "requires": { +-- "safe-buffer": "^5.1.2", +-- "yallist": "^3.0.0" +-- } +-- }, +-- "minizlib": { +-- "version": "1.2.1", +-- "bundled": true, +-- "dev": true, +-- "optional": true, +-- "requires": { +-- "minipass": "^2.2.1" +-- } +-- }, +-- "mkdirp": { +-- "version": "0.5.1", +-- "bundled": true, +-- "dev": true, +-- "requires": { +-- "minimist": "0.0.8" +-- } +-- }, +-- "ms": { +-- "version": "2.0.0", +-- "bundled": true, +-- "dev": true, +-- "optional": true +-- }, +-- "needle": { +-- "version": "2.2.4", +-- "bundled": true, +-- "dev": true, +-- "optional": true, +-- "requires": { +-- "debug": "^2.1.2", +-- "iconv-lite": "^0.4.4", +-- "sax": "^1.2.4" +-- } +-- }, +-- "node-pre-gyp": { +-- "version": "0.10.3", +-- "bundled": true, +-- "dev": true, +-- "optional": true, +-- "requires": { +-- "detect-libc": "^1.0.2", +-- "mkdirp": "^0.5.1", +-- "needle": "^2.2.1", +-- "nopt": "^4.0.1", +-- "npm-packlist": "^1.1.6", +-- "npmlog": "^4.0.2", +-- "rc": "^1.2.7", +-- "rimraf": "^2.6.1", +-- "semver": "^5.3.0", +-- "tar": "^4" +-- } +-- }, +-- "nopt": { +-- "version": "4.0.1", +-- "bundled": true, +-- "dev": true, +-- "optional": true, +-- "requires": { +-- "abbrev": "1", +-- "osenv": "^0.1.4" +-- } +-- }, +-- "npm-bundled": { +-- "version": "1.0.5", +-- "bundled": true, +-- "dev": true, +-- "optional": true +-- }, +-- "npm-packlist": { +-- "version": "1.2.0", +-- "bundled": true, +-- "dev": true, +-- "optional": true, +-- "requires": { +-- "ignore-walk": "^3.0.1", +-- "npm-bundled": "^1.0.1" +-- } +-- }, +-- "npmlog": { +-- "version": "4.1.2", +-- "bundled": true, +-- "dev": true, +-- "optional": true, +-- "requires": { +-- "are-we-there-yet": "~1.1.2", +-- "console-control-strings": "~1.1.0", +-- "gauge": "~2.7.3", +-- "set-blocking": "~2.0.0" +-- } +-- }, +-- "number-is-nan": { +-- "version": "1.0.1", +-- "bundled": true, +-- "dev": true +-- }, +-- "object-assign": { +-- "version": "4.1.1", +-- "bundled": true, +-- "dev": true, +-- "optional": true +-- }, +-- "once": { +-- "version": "1.4.0", +-- "bundled": true, +-- "dev": true, +-- "requires": { +-- "wrappy": "1" +-- } +-- }, +-- "os-homedir": { +-- "version": "1.0.2", +-- "bundled": true, +-- "dev": true, +-- "optional": true +-- }, +-- "os-tmpdir": { +-- "version": "1.0.2", +-- "bundled": true, +-- "dev": true, +-- "optional": true +-- }, +-- "osenv": { +-- "version": "0.1.5", +-- "bundled": true, +-- "dev": true, +-- "optional": true, +-- "requires": { +-- "os-homedir": "^1.0.0", +-- "os-tmpdir": "^1.0.0" +-- } +-- }, +-- "path-is-absolute": { +-- "version": "1.0.1", +-- "bundled": true, +-- "dev": true, +-- "optional": true +-- }, +-- "process-nextick-args": { +-- "version": "2.0.0", +-- "bundled": true, +-- "dev": true, +-- "optional": true +-- }, +-- "rc": { +-- "version": "1.2.8", +-- "bundled": true, +-- "dev": true, +-- "optional": true, +-- "requires": { +-- "deep-extend": "^0.6.0", +-- "ini": "~1.3.0", +-- "minimist": "^1.2.0", +-- "strip-json-comments": "~2.0.1" +-- }, +-- "dependencies": { +-- "minimist": { +-- "version": "1.2.0", +-- "bundled": true, +-- "dev": true, +-- "optional": true +-- } +-- } +-- }, +-- "readable-stream": { +-- "version": "2.3.6", +-- "bundled": true, +-- "dev": true, +-- "optional": true, +-- "requires": { +-- "core-util-is": "~1.0.0", +-- "inherits": "~2.0.3", +-- "isarray": "~1.0.0", +-- "process-nextick-args": "~2.0.0", +-- "safe-buffer": "~5.1.1", +-- "string_decoder": "~1.1.1", +-- "util-deprecate": "~1.0.1" +-- } +-- }, +-- "rimraf": { +-- "version": "2.6.3", +-- "bundled": true, +-- "dev": true, +-- "optional": true, +-- "requires": { +-- "glob": "^7.1.3" +-- } +-- }, +-- "safe-buffer": { +-- "version": "5.1.2", +-- "bundled": true, +-- "dev": true +-- }, +-- "safer-buffer": { +-- "version": "2.1.2", +-- "bundled": true, +-- "dev": true, +-- "optional": true +-- }, +-- "sax": { +-- "version": "1.2.4", +-- "bundled": true, +-- "dev": true, +-- "optional": true +-- }, +-- "semver": { +-- "version": "5.6.0", +-- "bundled": true, +-- "dev": true, +-- "optional": true +-- }, +-- "set-blocking": { +-- "version": "2.0.0", +-- "bundled": true, +-- "dev": true, +-- "optional": true +-- }, +-- "signal-exit": { +-- "version": "3.0.2", +-- "bundled": true, +-- "dev": true, +-- "optional": true +-- }, +-- "string-width": { +-- "version": "1.0.2", +-- "bundled": true, +-- "dev": true, +-- "requires": { +-- "code-point-at": "^1.0.0", +-- "is-fullwidth-code-point": "^1.0.0", +-- "strip-ansi": "^3.0.0" +-- } +-- }, +-- "string_decoder": { +-- "version": "1.1.1", +-- "bundled": true, +-- "dev": true, +-- "optional": true, +-- "requires": { +-- "safe-buffer": "~5.1.0" +-- } +-- }, +-- "strip-ansi": { +-- "version": "3.0.1", +-- "bundled": true, +-- "dev": true, +-- "requires": { +-- "ansi-regex": "^2.0.0" +-- } +-- }, +-- "strip-json-comments": { +-- "version": "2.0.1", +-- "bundled": true, +-- "dev": true, +-- "optional": true +-- }, +-- "tar": { +-- "version": "4.4.8", +-- "bundled": true, +-- "dev": true, +-- "optional": true, +-- "requires": { +-- "chownr": "^1.1.1", +-- "fs-minipass": "^1.2.5", +-- "minipass": "^2.3.4", +-- "minizlib": "^1.1.1", +-- "mkdirp": "^0.5.0", +-- "safe-buffer": "^5.1.2", +-- "yallist": "^3.0.2" +-- } +-- }, +-- "util-deprecate": { +-- "version": "1.0.2", +-- "bundled": true, +-- "dev": true, +-- "optional": true +-- }, +-- "wide-align": { +-- "version": "1.1.3", +-- "bundled": true, +-- "dev": true, +-- "optional": true, +-- "requires": { +-- "string-width": "^1.0.2 || 2" +-- } +-- }, +-- "wrappy": { +-- "version": "1.0.2", +-- "bundled": true, +-- "dev": true +-- }, +-- "yallist": { +-- "version": "3.0.3", +-- "bundled": true, +-- "dev": true +-- } +-+ "os": [ +-+ "darwin" +-+ ], +-+ "engines": { +-+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0" +-+ } +-+ }, +-+ "node_modules/function-bind": { +-+ "version": "1.1.2", +-+ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", +-+ "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", +-+ "funding": { +-+ "url": "https://github.com/sponsors/ljharb" +- } +- }, +-- "fstream": { +-- "version": "1.0.11", +-- "resolved": "https://registry.npmjs.org/fstream/-/fstream-1.0.11.tgz", +-- "integrity": "sha1-XB+x8RdHcRTwYyoOtLcbPLD9MXE=", +-+ "node_modules/gauge": { +-+ "version": "4.0.4", +-+ "resolved": "https://registry.npmjs.org/gauge/-/gauge-4.0.4.tgz", +-+ "integrity": "sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==", +-+ "deprecated": "This package is no longer supported.", +- "dev": true, +-- "requires": { +-- "graceful-fs": "^4.1.2", +-- "inherits": "~2.0.0", +-- "mkdirp": ">=0.5 0", +-- "rimraf": "2" +-+ "dependencies": { +-+ "aproba": "^1.0.3 || ^2.0.0", +-+ "color-support": "^1.1.3", +-+ "console-control-strings": "^1.1.0", +-+ "has-unicode": "^2.0.1", +-+ "signal-exit": "^3.0.7", +-+ "string-width": "^4.2.3", +-+ "strip-ansi": "^6.0.1", +-+ "wide-align": "^1.1.5" +-+ }, +-+ "engines": { +-+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0" +- } +- }, +-- "function-bind": { +-- "version": "1.1.1", +-- "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", +-- "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" +-- }, +-- "gauge": { +-- "version": "2.7.4", +-- "resolved": "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz", +-- "integrity": "sha1-LANAXHU4w51+s3sxcCLjJfsBi/c=", +-- "dev": true, +-- "requires": { +-- "aproba": "^1.0.3", +-- "console-control-strings": "^1.0.0", +-- "has-unicode": "^2.0.0", +-- "object-assign": "^4.1.0", +-- "signal-exit": "^3.0.0", +-- "string-width": "^1.0.1", +-- "strip-ansi": "^3.0.1", +-- "wide-align": "^1.1.0" +-- } +-- }, +-- "gaze": { +-+ "node_modules/gaze": { +- "version": "1.1.3", +- "resolved": "https://registry.npmjs.org/gaze/-/gaze-1.1.3.tgz", +- "integrity": "sha512-BRdNm8hbWzFzWHERTrejLqwHDfS4GibPoq5wjTPIoJHoBtKGPg3xAFfxmM+9ztbXelxcf2hwQcaz1PtmFeue8g==", +- "dev": true, +-- "requires": { +-+ "dependencies": { +- "globule": "^1.0.0" +-+ }, +-+ "engines": { +-+ "node": ">= 4.0.0" +- } +- }, +-- "get-caller-file": { +-- "version": "1.0.3", +-- "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz", +-- "integrity": "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==", +-- "dev": true +-+ "node_modules/get-intrinsic": { +-+ "version": "1.2.4", +-+ "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", +-+ "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", +-+ "dependencies": { +-+ "es-errors": "^1.3.0", +-+ "function-bind": "^1.1.2", +-+ "has-proto": "^1.0.1", +-+ "has-symbols": "^1.0.3", +-+ "hasown": "^2.0.0" +-+ }, +-+ "engines": { +-+ "node": ">= 0.4" +-+ }, +-+ "funding": { +-+ "url": "https://github.com/sponsors/ljharb" +-+ } +- }, +-- "get-stdin": { +-+ "node_modules/get-stdin": { +- "version": "4.0.1", +- "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz", +-- "integrity": "sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4=", +-- "dev": true +-- }, +-- "get-stream": { +-- "version": "3.0.0", +-- "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", +-- "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=", +-- "dev": true +-- }, +-- "get-value": { +-- "version": "2.0.6", +-- "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", +-- "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=", +-- "dev": true +-- }, +-- "getpass": { +-- "version": "0.1.7", +-- "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", +-- "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", +-- "requires": { +-- "assert-plus": "^1.0.0" +-- }, +-- "dependencies": { +-- "assert-plus": { +-- "version": "1.0.0", +-- "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", +-- "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" +-- } +-+ "integrity": "sha512-F5aQMywwJ2n85s4hJPTT9RPxGmubonuB10MNYo17/xph174n2MIR33HRguhzVag10O/npM7SPk73LMZNP+FaWw==", +-+ "dev": true, +-+ "engines": { +-+ "node": ">=0.10.0" +- } +- }, +-- "glob": { +-+ "node_modules/glob": { +- "version": "7.1.3", +- "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.3.tgz", +- "integrity": "sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==", +-- "requires": { +-+ "deprecated": "Glob versions prior to v9 are no longer supported", +-+ "dependencies": { +- "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" +-+ }, +-+ "engines": { +-+ "node": "*" +- } +- }, +-- "glob-parent": { +-- "version": "3.1.0", +-- "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", +-- "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", +-- "dev": true, +-- "requires": { +-- "is-glob": "^3.1.0", +-- "path-dirname": "^1.0.0" +-- }, +-- "dependencies": { +-- "is-glob": { +-- "version": "3.1.0", +-- "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", +-- "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", +-- "dev": true, +-- "requires": { +-- "is-extglob": "^2.1.0" +-- } +-- } +-- } +-- }, +-- "global-dirs": { +-- "version": "0.1.1", +-- "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-0.1.1.tgz", +-- "integrity": "sha1-sxnA3UYH81PzvpzKTHL8FIxJ9EU=", +-+ "node_modules/glob-parent": { +-+ "version": "5.1.2", +-+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", +-+ "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", +- "dev": true, +-- "requires": { +-- "ini": "^1.3.4" +-+ "dependencies": { +-+ "is-glob": "^4.0.1" +-+ }, +-+ "engines": { +-+ "node": ">= 6" +- } +- }, +-- "globule": { +-+ "node_modules/globule": { +- "version": "1.2.1", +- "resolved": "https://registry.npmjs.org/globule/-/globule-1.2.1.tgz", +- "integrity": "sha512-g7QtgWF4uYSL5/dn71WxubOrS7JVGCnFPEnoeChJmBnyR9Mw8nGoEwOgJL/RC2Te0WhbsEUCejfH8SZNJ+adYQ==", +- "dev": true, +-- "requires": { +-+ "dependencies": { +- "glob": "~7.1.1", +- "lodash": "~4.17.10", +- "minimatch": "~3.0.2" +-+ }, +-+ "engines": { +-+ "node": ">= 0.10" +- } +- }, +-- "got": { +-- "version": "6.7.1", +-- "resolved": "https://registry.npmjs.org/got/-/got-6.7.1.tgz", +-- "integrity": "sha1-JAzQV4WpoY5WHcG0S0HHY+8ejbA=", +-- "dev": true, +-- "requires": { +-- "create-error-class": "^3.0.0", +-- "duplexer3": "^0.1.4", +-- "get-stream": "^3.0.0", +-- "is-redirect": "^1.0.0", +-- "is-retry-allowed": "^1.0.0", +-- "is-stream": "^1.0.0", +-- "lowercase-keys": "^1.0.0", +-- "safe-buffer": "^5.0.1", +-- "timed-out": "^4.0.0", +-- "unzip-response": "^2.0.1", +-- "url-parse-lax": "^1.0.0" +-+ "node_modules/gopd": { +-+ "version": "1.0.1", +-+ "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", +-+ "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", +-+ "dependencies": { +-+ "get-intrinsic": "^1.1.3" +-+ }, +-+ "funding": { +-+ "url": "https://github.com/sponsors/ljharb" +- } +- }, +-- "graceful-fs": { +-- "version": "4.1.15", +-- "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.15.tgz", +-- "integrity": "sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA==" +-+ "node_modules/graceful-fs": { +-+ "version": "4.2.11", +-+ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", +-+ "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" +- }, +-- "handlebars": { +-- "version": "4.1.0", +-- "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.1.0.tgz", +-- "integrity": "sha512-l2jRuU1NAWK6AW5qqcTATWQJvNPEwkM7NEKSiv/gqOsoSQbVoWyqVEY5GS+XPQ88zLNmqASRpzfdm8d79hJS+w==", +-- "requires": { +-- "async": "^2.5.0", +-- "optimist": "^0.6.1", +-+ "node_modules/handlebars": { +-+ "version": "4.7.8", +-+ "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.8.tgz", +-+ "integrity": "sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==", +-+ "dependencies": { +-+ "minimist": "^1.2.5", +-+ "neo-async": "^2.6.2", +- "source-map": "^0.6.1", +-- "uglify-js": "^3.1.4" +-+ "wordwrap": "^1.0.0" +- }, +-- "dependencies": { +-- "source-map": { +-- "version": "0.6.1", +-- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", +-- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" +-- } +-- } +-- }, +-- "har-schema": { +-- "version": "2.0.0", +-- "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", +-- "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=" +-- }, +-- "har-validator": { +-- "version": "5.1.3", +-- "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.3.tgz", +-- "integrity": "sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g==", +-- "requires": { +-- "ajv": "^6.5.5", +-- "har-schema": "^2.0.0" +-+ "bin": { +-+ "handlebars": "bin/handlebars" +-+ }, +-+ "engines": { +-+ "node": ">=0.4.7" +-+ }, +-+ "optionalDependencies": { +-+ "uglify-js": "^3.1.4" +- } +- }, +-- "has-ansi": { +-- "version": "2.0.0", +-- "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", +-- "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", +-+ "node_modules/hard-rejection": { +-+ "version": "2.1.0", +-+ "resolved": "https://registry.npmjs.org/hard-rejection/-/hard-rejection-2.1.0.tgz", +-+ "integrity": "sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==", +- "dev": true, +-- "requires": { +-- "ansi-regex": "^2.0.0" +-+ "engines": { +-+ "node": ">=6" +- } +- }, +-- "has-flag": { +-+ "node_modules/has-flag": { +- "version": "3.0.0", +- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", +- "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", +-- "dev": true +-+ "dev": true, +-+ "engines": { +-+ "node": ">=4" +-+ } +- }, +-- "has-symbols": { +-- "version": "1.0.0", +-- "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.0.tgz", +-- "integrity": "sha1-uhqPGvKg/DllD1yFA2dwQSIGO0Q=" +-+ "node_modules/has-property-descriptors": { +-+ "version": "1.0.2", +-+ "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", +-+ "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", +-+ "dependencies": { +-+ "es-define-property": "^1.0.0" +-+ }, +-+ "funding": { +-+ "url": "https://github.com/sponsors/ljharb" +-+ } +-+ }, +-+ "node_modules/has-proto": { +-+ "version": "1.0.3", +-+ "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", +-+ "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", +-+ "engines": { +-+ "node": ">= 0.4" +-+ }, +-+ "funding": { +-+ "url": "https://github.com/sponsors/ljharb" +-+ } +-+ }, +-+ "node_modules/has-symbols": { +-+ "version": "1.0.3", +-+ "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", +-+ "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", +-+ "engines": { +-+ "node": ">= 0.4" +-+ }, +-+ "funding": { +-+ "url": "https://github.com/sponsors/ljharb" +-+ } +- }, +-- "has-unicode": { +-+ "node_modules/has-unicode": { +- "version": "2.0.1", +- "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", +-- "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=", +-+ "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==", +- "dev": true +- }, +-- "has-value": { +-- "version": "1.0.0", +-- "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", +-- "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=", +-+ "node_modules/hasown": { +-+ "version": "2.0.2", +-+ "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", +-+ "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", +-+ "dependencies": { +-+ "function-bind": "^1.1.2" +-+ }, +-+ "engines": { +-+ "node": ">= 0.4" +-+ } +-+ }, +-+ "node_modules/hosted-git-info": { +-+ "version": "2.8.9", +-+ "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", +-+ "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", +-+ "dev": true +-+ }, +-+ "node_modules/http-cache-semantics": { +-+ "version": "4.1.1", +-+ "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", +-+ "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==", +-+ "dev": true +-+ }, +-+ "node_modules/http-errors": { +-+ "version": "2.0.0", +-+ "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", +-+ "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", +-+ "dependencies": { +-+ "depd": "2.0.0", +-+ "inherits": "2.0.4", +-+ "setprototypeof": "1.2.0", +-+ "statuses": "2.0.1", +-+ "toidentifier": "1.0.1" +-+ }, +-+ "engines": { +-+ "node": ">= 0.8" +-+ } +-+ }, +-+ "node_modules/http-proxy-agent": { +-+ "version": "5.0.0", +-+ "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz", +-+ "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==", +- "dev": true, +-- "requires": { +-- "get-value": "^2.0.6", +-- "has-values": "^1.0.0", +-- "isobject": "^3.0.0" +-+ "dependencies": { +-+ "@tootallnate/once": "2", +-+ "agent-base": "6", +-+ "debug": "4" +-+ }, +-+ "engines": { +-+ "node": ">= 6" +- } +- }, +-- "has-values": { +-- "version": "1.0.0", +-- "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", +-- "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=", +-- "dev": true, +-- "requires": { +-- "is-number": "^3.0.0", +-- "kind-of": "^4.0.0" +-- }, +-- "dependencies": { +-- "kind-of": { +-- "version": "4.0.0", +-- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", +-- "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", +-- "dev": true, +-- "requires": { +-- "is-buffer": "^1.1.5" +-- } +-+ "node_modules/http-proxy-agent/node_modules/debug": { +-+ "version": "4.3.5", +-+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.5.tgz", +-+ "integrity": "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==", +-+ "dev": true, +-+ "dependencies": { +-+ "ms": "2.1.2" +-+ }, +-+ "engines": { +-+ "node": ">=6.0" +-+ }, +-+ "peerDependenciesMeta": { +-+ "supports-color": { +-+ "optional": true +- } +- } +- }, +-- "hosted-git-info": { +-- "version": "2.7.1", +-- "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.7.1.tgz", +-- "integrity": "sha512-7T/BxH19zbcCTa8XkMlbK5lTo1WtgkFi3GvdWEyNuc4Vex7/9Dqbnpsf4JMydcfj9HCg4zUWFTL3Za6lapg5/w==", +-+ "node_modules/http-proxy-agent/node_modules/ms": { +-+ "version": "2.1.2", +-+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", +-+ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", +- "dev": true +- }, +-- "http-errors": { +-- "version": "1.6.3", +-- "resolved": "http://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", +-- "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=", +-- "requires": { +-- "depd": "~1.1.2", +-- "inherits": "2.0.3", +-- "setprototypeof": "1.1.0", +-- "statuses": ">= 1.4.0 < 2" +-+ "node_modules/https-proxy-agent": { +-+ "version": "5.0.1", +-+ "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", +-+ "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", +-+ "dev": true, +-+ "dependencies": { +-+ "agent-base": "6", +-+ "debug": "4" +-+ }, +-+ "engines": { +-+ "node": ">= 6" +- } +- }, +-- "http-signature": { +-- "version": "1.2.0", +-- "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", +-- "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", +-- "requires": { +-- "assert-plus": "^1.0.0", +-- "jsprim": "^1.2.2", +-- "sshpk": "^1.7.0" +-- } +-- }, +-- "iconv-lite": { +-- "version": "0.4.23", +-- "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.23.tgz", +-- "integrity": "sha512-neyTUVFtahjf0mB3dZT77u+8O0QB89jFdnBkd5P1JgYPbPaia3gXXOVL2fq8VyU2gMMD7SaN7QukTB/pmXYvDA==", +-- "requires": { +-+ "node_modules/https-proxy-agent/node_modules/debug": { +-+ "version": "4.3.5", +-+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.5.tgz", +-+ "integrity": "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==", +-+ "dev": true, +-+ "dependencies": { +-+ "ms": "2.1.2" +-+ }, +-+ "engines": { +-+ "node": ">=6.0" +-+ }, +-+ "peerDependenciesMeta": { +-+ "supports-color": { +-+ "optional": true +-+ } +-+ } +-+ }, +-+ "node_modules/https-proxy-agent/node_modules/ms": { +-+ "version": "2.1.2", +-+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", +-+ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", +-+ "dev": true +-+ }, +-+ "node_modules/humanize-ms": { +-+ "version": "1.2.1", +-+ "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz", +-+ "integrity": "sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==", +-+ "dev": true, +-+ "dependencies": { +-+ "ms": "^2.0.0" +-+ } +-+ }, +-+ "node_modules/iconv-lite": { +-+ "version": "0.4.24", +-+ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", +-+ "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", +-+ "dependencies": { +- "safer-buffer": ">= 2.1.2 < 3" +-+ }, +-+ "engines": { +-+ "node": ">=0.10.0" +- } +- }, +-- "ieee754": { +-+ "node_modules/ieee754": { +- "version": "1.1.12", +- "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.12.tgz", +- "integrity": "sha512-GguP+DRY+pJ3soyIiGPTvdiVXjZ+DbXOxGpXn3eMvNW4x4irjqXm4wHKscC+TfxSJ0yw/S1F24tqdMNsMZTiLA==" +- }, +-- "ignore-by-default": { +-+ "node_modules/ignore-by-default": { +- "version": "1.0.1", +- "resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz", +- "integrity": "sha1-SMptcvbGo68Aqa1K5odr44ieKwk=", +- "dev": true +- }, +-- "immediate": { +-+ "node_modules/immediate": { +- "version": "3.0.6", +- "resolved": "https://registry.npmjs.org/immediate/-/immediate-3.0.6.tgz", +- "integrity": "sha1-nbHb0Pr43m++D13V5Wu2BigN5ps=" +- }, +-- "import-lazy": { +-- "version": "2.1.0", +-- "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz", +-- "integrity": "sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM=", +-- "dev": true +-- }, +-- "imurmurhash": { +-+ "node_modules/imurmurhash": { +- "version": "0.1.4", +- "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", +- "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", +-- "dev": true +-- }, +-- "in-publish": { +-- "version": "2.0.0", +-- "resolved": "https://registry.npmjs.org/in-publish/-/in-publish-2.0.0.tgz", +-- "integrity": "sha1-4g/146KvwmkDILbcVSaCqcf631E=", +-- "dev": true +-+ "dev": true, +-+ "engines": { +-+ "node": ">=0.8.19" +-+ } +- }, +-- "indent-string": { +-- "version": "2.1.0", +-- "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz", +-- "integrity": "sha1-ji1INIdCEhtKghi3oTfppSBJ3IA=", +-+ "node_modules/indent-string": { +-+ "version": "4.0.0", +-+ "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", +-+ "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", +- "dev": true, +-- "requires": { +-- "repeating": "^2.0.0" +-+ "engines": { +-+ "node": ">=8" +- } +- }, +-- "inflight": { +-+ "node_modules/infer-owner": { +-+ "version": "1.0.4", +-+ "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", +-+ "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==", +-+ "dev": true +-+ }, +-+ "node_modules/inflight": { +- "version": "1.0.6", +- "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", +- "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", +-- "requires": { +-+ "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", +-+ "dependencies": { +- "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=" +-- }, +-- "ini": { +-- "version": "1.3.5", +-- "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz", +-- "integrity": "sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==", +-- "dev": true +-- }, +-- "invert-kv": { +-- "version": "1.0.0", +-- "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz", +-- "integrity": "sha1-EEqOSqym09jNFXqO+L+rLXo//bY=", +-- "dev": true +-- }, +-- "ipaddr.js": { +-- "version": "1.8.0", +-- "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.8.0.tgz", +-- "integrity": "sha1-6qM9bd16zo9/b+DJygRA5wZzix4=" +-+ "node_modules/inherits": { +-+ "version": "2.0.4", +-+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", +-+ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" +- }, +-- "is-accessor-descriptor": { +-- "version": "0.1.6", +-- "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", +-- "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", +-+ "node_modules/ip-address": { +-+ "version": "9.0.5", +-+ "resolved": "https://registry.npmjs.org/ip-address/-/ip-address-9.0.5.tgz", +-+ "integrity": "sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==", +- "dev": true, +-- "requires": { +-- "kind-of": "^3.0.2" +-- }, +- "dependencies": { +-- "kind-of": { +-- "version": "3.2.2", +-- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", +-- "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", +-- "dev": true, +-- "requires": { +-- "is-buffer": "^1.1.5" +-- } +-- } +-+ "jsbn": "1.1.0", +-+ "sprintf-js": "^1.1.3" +-+ }, +-+ "engines": { +-+ "node": ">= 12" +- } +- }, +-- "is-arrayish": { +-- "version": "0.2.1", +-- "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", +-- "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", +-+ "node_modules/ip-address/node_modules/jsbn": { +-+ "version": "1.1.0", +-+ "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-1.1.0.tgz", +-+ "integrity": "sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==", +- "dev": true +- }, +-- "is-binary-path": { +-- "version": "1.0.1", +-- "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", +-- "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", +-- "dev": true, +-- "requires": { +-- "binary-extensions": "^1.0.0" +-+ "node_modules/ipaddr.js": { +-+ "version": "1.9.1", +-+ "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", +-+ "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", +-+ "engines": { +-+ "node": ">= 0.10" +- } +- }, +-- "is-buffer": { +-- "version": "1.1.6", +-- "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", +-- "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", +-+ "node_modules/is-arrayish": { +-+ "version": "0.2.1", +-+ "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", +-+ "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", +- "dev": true +- }, +-- "is-ci": { +-- "version": "1.2.1", +-- "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-1.2.1.tgz", +-- "integrity": "sha512-s6tfsaQaQi3JNciBH6shVqEDvhGut0SUXr31ag8Pd8BBbVVlcGfWhpPmEOoM6RJ5TFhbypvf5yyRw/VXW1IiWg==", +-- "dev": true, +-- "requires": { +-- "ci-info": "^1.5.0" +-- } +-- }, +-- "is-data-descriptor": { +-- "version": "0.1.4", +-- "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", +-- "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", +-+ "node_modules/is-binary-path": { +-+ "version": "2.1.0", +-+ "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", +-+ "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", +- "dev": true, +-- "requires": { +-- "kind-of": "^3.0.2" +-- }, +- "dependencies": { +-- "kind-of": { +-- "version": "3.2.2", +-- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", +-- "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", +-- "dev": true, +-- "requires": { +-- "is-buffer": "^1.1.5" +-- } +-- } +-+ "binary-extensions": "^2.0.0" +-+ }, +-+ "engines": { +-+ "node": ">=8" +- } +- }, +-- "is-descriptor": { +-- "version": "0.1.6", +-- "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", +-- "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", +-+ "node_modules/is-core-module": { +-+ "version": "2.14.0", +-+ "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.14.0.tgz", +-+ "integrity": "sha512-a5dFJih5ZLYlRtDc0dZWP7RiKr6xIKzmn/oAYCDvdLThadVgyJwlaoQPmRtMSpz+rk0OGAgIu+TcM9HUF0fk1A==", +- "dev": true, +-- "requires": { +-- "is-accessor-descriptor": "^0.1.6", +-- "is-data-descriptor": "^0.1.4", +-- "kind-of": "^5.0.0" +-- }, +- "dependencies": { +-- "kind-of": { +-- "version": "5.1.0", +-- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", +-- "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", +-- "dev": true +-- } +-+ "hasown": "^2.0.2" +-+ }, +-+ "engines": { +-+ "node": ">= 0.4" +-+ }, +-+ "funding": { +-+ "url": "https://github.com/sponsors/ljharb" +- } +- }, +-- "is-extendable": { +-- "version": "0.1.1", +-- "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", +-- "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", +-- "dev": true +-- }, +-- "is-extglob": { +-+ "node_modules/is-extglob": { +- "version": "2.1.1", +- "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", +-- "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", +-- "dev": true +-- }, +-- "is-finite": { +-- "version": "1.0.2", +-- "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz", +-- "integrity": "sha1-zGZ3aVYCvlUO8R6LSqYwU0K20Ko=", +-+ "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", +- "dev": true, +-- "requires": { +-- "number-is-nan": "^1.0.0" +-+ "engines": { +-+ "node": ">=0.10.0" +- } +- }, +-- "is-fullwidth-code-point": { +-- "version": "1.0.0", +-- "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", +-- "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", +-- "dev": true, +-- "requires": { +-- "number-is-nan": "^1.0.0" +-+ "node_modules/is-fullwidth-code-point": { +-+ "version": "3.0.0", +-+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", +-+ "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", +-+ "engines": { +-+ "node": ">=8" +- } +- }, +-- "is-glob": { +-- "version": "4.0.0", +-- "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.0.tgz", +-- "integrity": "sha1-lSHHaEXMJhCoUgPd8ICpWML/q8A=", +-+ "node_modules/is-glob": { +-+ "version": "4.0.3", +-+ "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", +-+ "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", +- "dev": true, +-- "requires": { +-+ "dependencies": { +- "is-extglob": "^2.1.1" +-- } +-- }, +-- "is-installed-globally": { +-- "version": "0.1.0", +-- "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.1.0.tgz", +-- "integrity": "sha1-Df2Y9akRFxbdU13aZJL2e/PSWoA=", +-- "dev": true, +-- "requires": { +-- "global-dirs": "^0.1.0", +-- "is-path-inside": "^1.0.0" +-- } +-- }, +-- "is-npm": { +-- "version": "1.0.0", +-- "resolved": "https://registry.npmjs.org/is-npm/-/is-npm-1.0.0.tgz", +-- "integrity": "sha1-8vtjpl5JBbQGyGBydloaTceTufQ=", +-- "dev": true +-- }, +-- "is-number": { +-- "version": "3.0.0", +-- "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", +-- "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", +-- "dev": true, +-- "requires": { +-- "kind-of": "^3.0.2" +- }, +-- "dependencies": { +-- "kind-of": { +-- "version": "3.2.2", +-- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", +-- "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", +-- "dev": true, +-- "requires": { +-- "is-buffer": "^1.1.5" +-- } +-- } +-+ "engines": { +-+ "node": ">=0.10.0" +- } +- }, +-- "is-obj": { +-+ "node_modules/is-lambda": { +- "version": "1.0.1", +-- "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz", +-- "integrity": "sha1-PkcprB9f3gJc19g6iW2rn09n2w8=", +-+ "resolved": "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz", +-+ "integrity": "sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==", +- "dev": true +- }, +-- "is-path-inside": { +-- "version": "1.0.1", +-- "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.1.tgz", +-- "integrity": "sha1-jvW33lBDej/cprToZe96pVy0gDY=", +-+ "node_modules/is-number": { +-+ "version": "7.0.0", +-+ "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", +-+ "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", +- "dev": true, +-- "requires": { +-- "path-is-inside": "^1.0.1" +-+ "engines": { +-+ "node": ">=0.12.0" +- } +- }, +-- "is-plain-object": { +-- "version": "2.0.4", +-- "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", +-- "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", +-+ "node_modules/is-plain-obj": { +-+ "version": "1.1.0", +-+ "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", +-+ "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", +- "dev": true, +-- "requires": { +-- "isobject": "^3.0.1" +-+ "engines": { +-+ "node": ">=0.10.0" +- } +- }, +-- "is-redirect": { +-- "version": "1.0.0", +-- "resolved": "https://registry.npmjs.org/is-redirect/-/is-redirect-1.0.0.tgz", +-- "integrity": "sha1-HQPd7VO9jbDzDCbk+V02/HyH3CQ=", +-- "dev": true +-- }, +-- "is-retry-allowed": { +-- "version": "1.1.0", +-- "resolved": "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz", +-- "integrity": "sha1-EaBgVotnM5REAz0BJaYaINVk+zQ=", +-- "dev": true +-- }, +-- "is-stream": { +-- "version": "1.1.0", +-- "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", +-- "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", +-- "dev": true +-- }, +-- "is-typedarray": { +-- "version": "1.0.0", +-- "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", +-- "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" +-- }, +-- "is-utf8": { +-- "version": "0.2.1", +-- "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", +-- "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=", +-- "dev": true +-- }, +-- "is-windows": { +-- "version": "1.0.2", +-- "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", +-- "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", +-- "dev": true +-- }, +-- "isarray": { +-+ "node_modules/isarray": { +- "version": "1.0.0", +- "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", +- "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" +- }, +-- "isexe": { +-+ "node_modules/isexe": { +- "version": "2.0.0", +- "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", +-- "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", +-- "dev": true +-+ "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=" +- }, +-- "isobject": { +-- "version": "3.0.1", +-- "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", +-- "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", +-- "dev": true +-+ "node_modules/jackspeak": { +-+ "version": "3.4.0", +-+ "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.0.tgz", +-+ "integrity": "sha512-JVYhQnN59LVPFCEcVa2C3CrEKYacvjRfqIQl+h8oi91aLYQVWRYbxjPcv1bUiUy/kLmQaANrYfNMCO3kuEDHfw==", +-+ "dependencies": { +-+ "@isaacs/cliui": "^8.0.2" +-+ }, +-+ "engines": { +-+ "node": ">=14" +-+ }, +-+ "funding": { +-+ "url": "https://github.com/sponsors/isaacs" +-+ }, +-+ "optionalDependencies": { +-+ "@pkgjs/parseargs": "^0.11.0" +-+ } +- }, +-- "isstream": { +-- "version": "0.1.2", +-- "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", +-- "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=" +-+ "node_modules/jake": { +-+ "version": "10.9.1", +-+ "resolved": "https://registry.npmjs.org/jake/-/jake-10.9.1.tgz", +-+ "integrity": "sha512-61btcOHNnLnsOdtLgA5efqQWjnSi/vow5HbI7HMdKKWqvrKR1bLK3BPlJn9gcSaP2ewuamUSMB5XEy76KUIS2w==", +-+ "dependencies": { +-+ "async": "^3.2.3", +-+ "chalk": "^4.0.2", +-+ "filelist": "^1.0.4", +-+ "minimatch": "^3.1.2" +-+ }, +-+ "bin": { +-+ "jake": "bin/cli.js" +-+ }, +-+ "engines": { +-+ "node": ">=10" +-+ } +- }, +-- "js-base64": { +-- "version": "2.5.1", +-- "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.5.1.tgz", +-- "integrity": "sha512-M7kLczedRMYX4L8Mdh4MzyAMM9O5osx+4FcOQuTvr3A9F2D9S5JXheN0ewNbrvK2UatkTRhL5ejGmGSjNMiZuw==", +-- "dev": true +-+ "node_modules/jake/node_modules/async": { +-+ "version": "3.2.5", +-+ "resolved": "https://registry.npmjs.org/async/-/async-3.2.5.tgz", +-+ "integrity": "sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==" +- }, +-- "jsbn": { +-- "version": "0.1.1", +-- "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", +-- "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=" +-+ "node_modules/jake/node_modules/minimatch": { +-+ "version": "3.1.2", +-+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", +-+ "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", +-+ "dependencies": { +-+ "brace-expansion": "^1.1.7" +-+ }, +-+ "engines": { +-+ "node": "*" +-+ } +- }, +-- "json-parse-better-errors": { +-- "version": "1.0.2", +-- "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", +-- "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", +-+ "node_modules/js-base64": { +-+ "version": "2.6.4", +-+ "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.6.4.tgz", +-+ "integrity": "sha512-pZe//GGmwJndub7ZghVHz7vjb2LgC1m8B07Au3eYqeqv9emhESByMXxaEgkUkEqJe87oBbSniGYoQNIBklc7IQ==", +- "dev": true +- }, +-- "json-schema": { +-- "version": "0.2.3", +-- "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", +-- "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=" +-- }, +-- "json-schema-traverse": { +-- "version": "0.4.1", +-- "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", +-- "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" +-- }, +-- "json-stringify-safe": { +-- "version": "5.0.1", +-- "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", +-- "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" +-- }, +-- "jsprim": { +-- "version": "1.4.1", +-- "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", +-- "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", +-- "requires": { +-- "assert-plus": "1.0.0", +-- "extsprintf": "1.3.0", +-- "json-schema": "0.2.3", +-- "verror": "1.10.0" +-- }, +-- "dependencies": { +-- "assert-plus": { +-- "version": "1.0.0", +-- "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", +-- "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" +-- } +-- } +-+ "node_modules/js-tokens": { +-+ "version": "4.0.0", +-+ "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", +-+ "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", +-+ "dev": true +- }, +-- "kind-of": { +-- "version": "6.0.2", +-- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", +-- "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==", +-+ "node_modules/json-parse-even-better-errors": { +-+ "version": "2.3.1", +-+ "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", +-+ "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", +- "dev": true +- }, +-- "latest-version": { +-- "version": "3.1.0", +-- "resolved": "https://registry.npmjs.org/latest-version/-/latest-version-3.1.0.tgz", +-- "integrity": "sha1-ogU4P+oyKzO1rjsYq+4NwvNW7hU=", +-+ "node_modules/kind-of": { +-+ "version": "6.0.3", +-+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", +-+ "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", +- "dev": true, +-- "requires": { +-- "package-json": "^4.0.0" +-+ "engines": { +-+ "node": ">=0.10.0" +- } +- }, +-- "lazystream": { +-+ "node_modules/lazystream": { +- "version": "1.0.0", +- "resolved": "https://registry.npmjs.org/lazystream/-/lazystream-1.0.0.tgz", +- "integrity": "sha1-9plf4PggOS9hOWvolGJAe7dxaOQ=", +-- "requires": { +-+ "dependencies": { +- "readable-stream": "^2.0.5" +-+ }, +-+ "engines": { +-+ "node": ">= 0.6.3" +- } +- }, +-- "lcid": { +-- "version": "1.0.0", +-- "resolved": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz", +-- "integrity": "sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU=", +-- "dev": true, +-- "requires": { +-- "invert-kv": "^1.0.0" +-- } +-- }, +-- "lie": { +-+ "node_modules/lie": { +- "version": "3.1.1", +- "resolved": "https://registry.npmjs.org/lie/-/lie-3.1.1.tgz", +- "integrity": "sha1-mkNrLMd0bKWd56QfpGmz77dr2H4=", +-- "requires": { +-+ "dependencies": { +- "immediate": "~3.0.5" +- } +- }, +-- "load-json-file": { +-- "version": "1.1.0", +-- "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", +-- "integrity": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=", +-- "dev": true, +-- "requires": { +-- "graceful-fs": "^4.1.2", +-- "parse-json": "^2.2.0", +-- "pify": "^2.0.0", +-- "pinkie-promise": "^2.0.0", +-- "strip-bom": "^2.0.0" +-- } +-+ "node_modules/lines-and-columns": { +-+ "version": "1.2.4", +-+ "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", +-+ "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", +-+ "dev": true +- }, +-- "localforage": { +-+ "node_modules/localforage": { +- "version": "1.7.3", +- "resolved": "https://registry.npmjs.org/localforage/-/localforage-1.7.3.tgz", +- "integrity": "sha512-1TulyYfc4udS7ECSBT2vwJksWbkwwTX8BzeUIiq8Y07Riy7bDAAnxDaPU/tWyOVmQAcWJIEIFP9lPfBGqVoPgQ==", +-- "requires": { +-+ "dependencies": { +- "lie": "3.1.1" +- } +- }, +-- "locate-path": { +-- "version": "3.0.0", +-- "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", +-- "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", +-+ "node_modules/lodash": { +-+ "version": "4.17.21", +-+ "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", +-+ "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" +-+ }, +-+ "node_modules/lru-cache": { +-+ "version": "10.3.0", +-+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.3.0.tgz", +-+ "integrity": "sha512-CQl19J/g+Hbjbv4Y3mFNNXFEL/5t/KCg8POCuUqd4rMKjGG+j1ybER83hxV58zL+dFI1PTkt3GNFSHRt+d8qEQ==", +-+ "engines": { +-+ "node": "14 || >=16.14" +-+ } +-+ }, +-+ "node_modules/make-fetch-happen": { +-+ "version": "10.2.1", +-+ "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-10.2.1.tgz", +-+ "integrity": "sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w==", +- "dev": true, +-- "requires": { +-- "p-locate": "^3.0.0", +-- "path-exists": "^3.0.0" +-- }, +- "dependencies": { +-- "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 +-- } +-+ "agentkeepalive": "^4.2.1", +-+ "cacache": "^16.1.0", +-+ "http-cache-semantics": "^4.1.0", +-+ "http-proxy-agent": "^5.0.0", +-+ "https-proxy-agent": "^5.0.0", +-+ "is-lambda": "^1.0.1", +-+ "lru-cache": "^7.7.1", +-+ "minipass": "^3.1.6", +-+ "minipass-collect": "^1.0.2", +-+ "minipass-fetch": "^2.0.3", +-+ "minipass-flush": "^1.0.5", +-+ "minipass-pipeline": "^1.2.4", +-+ "negotiator": "^0.6.3", +-+ "promise-retry": "^2.0.1", +-+ "socks-proxy-agent": "^7.0.0", +-+ "ssri": "^9.0.0" +-+ }, +-+ "engines": { +-+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0" +- } +- }, +-- "lodash": { +-- "version": "4.17.11", +-- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.11.tgz", +-- "integrity": "sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg==" +-+ "node_modules/make-fetch-happen/node_modules/lru-cache": { +-+ "version": "7.18.3", +-+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", +-+ "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", +-+ "dev": true, +-+ "engines": { +-+ "node": ">=12" +-+ } +- }, +-- "lodash.assign": { +-- "version": "4.2.0", +-- "resolved": "https://registry.npmjs.org/lodash.assign/-/lodash.assign-4.2.0.tgz", +-- "integrity": "sha1-DZnzzNem0mHRm9rrkkUAXShYCOc=", +-- "dev": true +-+ "node_modules/map-obj": { +-+ "version": "4.3.0", +-+ "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-4.3.0.tgz", +-+ "integrity": "sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==", +-+ "dev": true, +-+ "engines": { +-+ "node": ">=8" +-+ }, +-+ "funding": { +-+ "url": "https://github.com/sponsors/sindresorhus" +-+ } +- }, +-- "lodash.clonedeep": { +-- "version": "4.5.0", +-- "resolved": "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz", +-- "integrity": "sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8=", +-- "dev": true +-+ "node_modules/media-typer": { +-+ "version": "0.3.0", +-+ "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", +-+ "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", +-+ "engines": { +-+ "node": ">= 0.6" +-+ } +-+ }, +-+ "node_modules/meow": { +-+ "version": "9.0.0", +-+ "resolved": "https://registry.npmjs.org/meow/-/meow-9.0.0.tgz", +-+ "integrity": "sha512-+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ==", +-+ "dev": true, +-+ "dependencies": { +-+ "@types/minimist": "^1.2.0", +-+ "camelcase-keys": "^6.2.2", +-+ "decamelize": "^1.2.0", +-+ "decamelize-keys": "^1.1.0", +-+ "hard-rejection": "^2.1.0", +-+ "minimist-options": "4.1.0", +-+ "normalize-package-data": "^3.0.0", +-+ "read-pkg-up": "^7.0.1", +-+ "redent": "^3.0.0", +-+ "trim-newlines": "^3.0.0", +-+ "type-fest": "^0.18.0", +-+ "yargs-parser": "^20.2.3" +-+ }, +-+ "engines": { +-+ "node": ">=10" +-+ }, +-+ "funding": { +-+ "url": "https://github.com/sponsors/sindresorhus" +-+ } +-+ }, +-+ "node_modules/meow/node_modules/hosted-git-info": { +-+ "version": "4.1.0", +-+ "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", +-+ "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", +-+ "dev": true, +-+ "dependencies": { +-+ "lru-cache": "^6.0.0" +-+ }, +-+ "engines": { +-+ "node": ">=10" +-+ } +-+ }, +-+ "node_modules/meow/node_modules/lru-cache": { +-+ "version": "6.0.0", +-+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", +-+ "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", +-+ "dev": true, +-+ "dependencies": { +-+ "yallist": "^4.0.0" +-+ }, +-+ "engines": { +-+ "node": ">=10" +-+ } +- }, +-- "lodash.get": { +-- "version": "4.4.2", +-- "resolved": "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz", +-- "integrity": "sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk=" +-+ "node_modules/meow/node_modules/normalize-package-data": { +-+ "version": "3.0.3", +-+ "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz", +-+ "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", +-+ "dev": true, +-+ "dependencies": { +-+ "hosted-git-info": "^4.0.1", +-+ "is-core-module": "^2.5.0", +-+ "semver": "^7.3.4", +-+ "validate-npm-package-license": "^3.0.1" +-+ }, +-+ "engines": { +-+ "node": ">=10" +-+ } +- }, +-- "lodash.mergewith": { +-- "version": "4.6.1", +-- "resolved": "https://registry.npmjs.org/lodash.mergewith/-/lodash.mergewith-4.6.1.tgz", +-- "integrity": "sha512-eWw5r+PYICtEBgrBE5hhlT6aAa75f411bgDz/ZL2KZqYV03USvucsxcHUIlGTDTECs1eunpI7HOV7U+WLDvNdQ==", +-+ "node_modules/meow/node_modules/semver": { +-+ "version": "7.6.2", +-+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", +-+ "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", +-+ "dev": true, +-+ "bin": { +-+ "semver": "bin/semver.js" +-+ }, +-+ "engines": { +-+ "node": ">=10" +-+ } +-+ }, +-+ "node_modules/meow/node_modules/yallist": { +-+ "version": "4.0.0", +-+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", +-+ "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", +- "dev": true +- }, +-- "loud-rejection": { +-+ "node_modules/merge-descriptors": { +-+ "version": "1.0.1", +-+ "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", +-+ "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=" +-+ }, +-+ "node_modules/methods": { +-+ "version": "1.1.2", +-+ "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", +-+ "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=", +-+ "engines": { +-+ "node": ">= 0.6" +-+ } +-+ }, +-+ "node_modules/mime": { +- "version": "1.6.0", +-- "resolved": "https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz", +-- "integrity": "sha1-W0b4AUft7leIcPCG0Eghz5mOVR8=", +-- "dev": true, +-- "requires": { +-- "currently-unhandled": "^0.4.1", +-- "signal-exit": "^3.0.0" +-+ "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", +-+ "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", +-+ "bin": { +-+ "mime": "cli.js" +-+ }, +-+ "engines": { +-+ "node": ">=4" +-+ } +-+ }, +-+ "node_modules/mime-db": { +-+ "version": "1.52.0", +-+ "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", +-+ "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", +-+ "engines": { +-+ "node": ">= 0.6" +- } +- }, +-- "lowercase-keys": { +-+ "node_modules/mime-types": { +-+ "version": "2.1.35", +-+ "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", +-+ "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", +-+ "dependencies": { +-+ "mime-db": "1.52.0" +-+ }, +-+ "engines": { +-+ "node": ">= 0.6" +-+ } +-+ }, +-+ "node_modules/min-indent": { +- "version": "1.0.1", +-- "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", +-- "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==", +-- "dev": true +-+ "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", +-+ "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", +-+ "dev": true, +-+ "engines": { +-+ "node": ">=4" +-+ } +- }, +-- "lru-cache": { +-- "version": "4.1.5", +-- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", +-- "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", +-+ "node_modules/minimatch": { +-+ "version": "3.0.8", +-+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.8.tgz", +-+ "integrity": "sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q==", +-+ "dependencies": { +-+ "brace-expansion": "^1.1.7" +-+ }, +-+ "engines": { +-+ "node": "*" +-+ } +-+ }, +-+ "node_modules/minimist": { +-+ "version": "1.2.8", +-+ "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", +-+ "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", +-+ "funding": { +-+ "url": "https://github.com/sponsors/ljharb" +-+ } +-+ }, +-+ "node_modules/minimist-options": { +-+ "version": "4.1.0", +-+ "resolved": "https://registry.npmjs.org/minimist-options/-/minimist-options-4.1.0.tgz", +-+ "integrity": "sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==", +- "dev": true, +-- "requires": { +-- "pseudomap": "^1.0.2", +-- "yallist": "^2.1.2" +-+ "dependencies": { +-+ "arrify": "^1.0.1", +-+ "is-plain-obj": "^1.1.0", +-+ "kind-of": "^6.0.3" +-+ }, +-+ "engines": { +-+ "node": ">= 6" +- } +- }, +-- "make-dir": { +-- "version": "1.3.0", +-- "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", +-- "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", +-+ "node_modules/minipass": { +-+ "version": "3.3.6", +-+ "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", +-+ "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", +- "dev": true, +-- "requires": { +-- "pify": "^3.0.0" +-+ "dependencies": { +-+ "yallist": "^4.0.0" +- }, +-+ "engines": { +-+ "node": ">=8" +-+ } +-+ }, +-+ "node_modules/minipass-collect": { +-+ "version": "1.0.2", +-+ "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", +-+ "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", +-+ "dev": true, +- "dependencies": { +-- "pify": { +-- "version": "3.0.0", +-- "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", +-- "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", +-- "dev": true +-- } +-+ "minipass": "^3.0.0" +-+ }, +-+ "engines": { +-+ "node": ">= 8" +- } +- }, +-- "map-age-cleaner": { +-- "version": "0.1.3", +-- "resolved": "https://registry.npmjs.org/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz", +-- "integrity": "sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==", +-+ "node_modules/minipass-fetch": { +-+ "version": "2.1.2", +-+ "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-2.1.2.tgz", +-+ "integrity": "sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA==", +- "dev": true, +-- "requires": { +-- "p-defer": "^1.0.0" +-+ "dependencies": { +-+ "minipass": "^3.1.6", +-+ "minipass-sized": "^1.0.3", +-+ "minizlib": "^2.1.2" +-+ }, +-+ "engines": { +-+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0" +-+ }, +-+ "optionalDependencies": { +-+ "encoding": "^0.1.13" +- } +- }, +-- "map-cache": { +-- "version": "0.2.2", +-- "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", +-- "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=", +-- "dev": true +-+ "node_modules/minipass-flush": { +-+ "version": "1.0.5", +-+ "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", +-+ "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", +-+ "dev": true, +-+ "dependencies": { +-+ "minipass": "^3.0.0" +-+ }, +-+ "engines": { +-+ "node": ">= 8" +-+ } +- }, +-- "map-obj": { +-- "version": "1.0.1", +-- "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", +-- "integrity": "sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=", +-- "dev": true +-+ "node_modules/minipass-pipeline": { +-+ "version": "1.2.4", +-+ "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", +-+ "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", +-+ "dev": true, +-+ "dependencies": { +-+ "minipass": "^3.0.0" +-+ }, +-+ "engines": { +-+ "node": ">=8" +-+ } +- }, +-- "map-visit": { +-- "version": "1.0.0", +-- "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", +-- "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=", +-+ "node_modules/minipass-sized": { +-+ "version": "1.0.3", +-+ "resolved": "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz", +-+ "integrity": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==", +- "dev": true, +-- "requires": { +-- "object-visit": "^1.0.0" +-+ "dependencies": { +-+ "minipass": "^3.0.0" +-+ }, +-+ "engines": { +-+ "node": ">=8" +- } +- }, +-- "media-typer": { +-- "version": "0.3.0", +-- "resolved": "http://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", +-- "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=" +-+ "node_modules/minipass/node_modules/yallist": { +-+ "version": "4.0.0", +-+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", +-+ "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", +-+ "dev": true +- }, +-- "mem": { +-- "version": "4.2.0", +-- "resolved": "https://registry.npmjs.org/mem/-/mem-4.2.0.tgz", +-- "integrity": "sha512-5fJxa68urlY0Ir8ijatKa3eRz5lwXnRCTvo9+TbTGAuTFJOwpGcY0X05moBd0nW45965Njt4CDI2GFQoG8DvqA==", +-- "dev": true, +-- "requires": { +-- "map-age-cleaner": "^0.1.1", +-- "mimic-fn": "^2.0.0", +-- "p-is-promise": "^2.0.0" +-- } +-- }, +-- "meow": { +-- "version": "3.7.0", +-- "resolved": "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz", +-- "integrity": "sha1-cstmi0JSKCkKu/qFaJJYcwioAfs=", +-- "dev": true, +-- "requires": { +-- "camelcase-keys": "^2.0.0", +-- "decamelize": "^1.1.2", +-- "loud-rejection": "^1.0.0", +-- "map-obj": "^1.0.1", +-- "minimist": "^1.1.3", +-- "normalize-package-data": "^2.3.4", +-- "object-assign": "^4.0.1", +-- "read-pkg-up": "^1.0.1", +-- "redent": "^1.0.0", +-- "trim-newlines": "^1.0.0" +-- } +-- }, +-- "merge-descriptors": { +-- "version": "1.0.1", +-- "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", +-- "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=" +-+ "node_modules/minizlib": { +-+ "version": "2.1.2", +-+ "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", +-+ "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", +-+ "dev": true, +-+ "dependencies": { +-+ "minipass": "^3.0.0", +-+ "yallist": "^4.0.0" +-+ }, +-+ "engines": { +-+ "node": ">= 8" +-+ } +- }, +-- "methods": { +-- "version": "1.1.2", +-- "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", +-- "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=" +-+ "node_modules/minizlib/node_modules/yallist": { +-+ "version": "4.0.0", +-+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", +-+ "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", +-+ "dev": true +- }, +-- "micromatch": { +-- "version": "3.1.10", +-- "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", +-- "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", +-- "dev": true, +-- "requires": { +-- "arr-diff": "^4.0.0", +-- "array-unique": "^0.3.2", +-- "braces": "^2.3.1", +-- "define-property": "^2.0.2", +-- "extend-shallow": "^3.0.2", +-- "extglob": "^2.0.4", +-- "fragment-cache": "^0.2.1", +-- "kind-of": "^6.0.2", +-- "nanomatch": "^1.2.9", +-- "object.pick": "^1.3.0", +-- "regex-not": "^1.0.0", +-- "snapdragon": "^0.8.1", +-- "to-regex": "^3.0.2" +-- } +-- }, +-- "mime-db": { +-- "version": "1.38.0", +-- "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.38.0.tgz", +-- "integrity": "sha512-bqVioMFFzc2awcdJZIzR3HjZFX20QhilVS7hytkKrv7xFAn8bM1gzc/FOX2awLISvWe0PV8ptFKcon+wZ5qYkg==" +-- }, +-- "mime-types": { +-- "version": "2.1.22", +-- "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.22.tgz", +-- "integrity": "sha512-aGl6TZGnhm/li6F7yx82bJiBZwgiEa4Hf6CNr8YO+r5UHr53tSTYZb102zyU50DOWWKeOv0uQLRL0/9EiKWCog==", +-- "requires": { +-- "mime-db": "~1.38.0" +-- } +-- }, +-- "mimic-fn": { +-+ "node_modules/mkdirp": { +-+ "version": "0.5.6", +-+ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", +-+ "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", +-+ "dependencies": { +-+ "minimist": "^1.2.6" +-+ }, +-+ "bin": { +-+ "mkdirp": "bin/cmd.js" +-+ } +-+ }, +-+ "node_modules/ms": { +- "version": "2.0.0", +-- "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.0.0.tgz", +-- "integrity": "sha512-jbex9Yd/3lmICXwYT6gA/j2mNQGU48wCh/VzRd+/Y/PjYQtlg1gLMdZqvu9s/xH7qKvngxRObl56XZR609IMbA==", +-+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", +-+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" +-+ }, +-+ "node_modules/nan": { +-+ "version": "2.20.0", +-+ "resolved": "https://registry.npmjs.org/nan/-/nan-2.20.0.tgz", +-+ "integrity": "sha512-bk3gXBZDGILuuo/6sKtr0DQmSThYHLtNCdSdXk9YkxD/jK6X2vmCyyXBBxyqZ4XcnzTyYEAThfX3DCEnLf6igw==", +- "dev": true +- }, +-- "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" +-+ "node_modules/negotiator": { +-+ "version": "0.6.3", +-+ "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", +-+ "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", +-+ "engines": { +-+ "node": ">= 0.6" +- } +- }, +-- "minimist": { +-- "version": "1.2.0", +-- "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", +-- "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=" +-- }, +-- "mixin-deep": { +-- "version": "1.3.1", +-- "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.1.tgz", +-- "integrity": "sha512-8ZItLHeEgaqEvd5lYBXfm4EZSFCX29Jb9K+lAHhDKzReKBQKj3R+7NOF6tjqYi9t4oI8VUfaWITJQm86wnXGNQ==", +-- "dev": true, +-- "requires": { +-- "for-in": "^1.0.2", +-- "is-extendable": "^1.0.1" +-- }, +-- "dependencies": { +-- "is-extendable": { +-- "version": "1.0.1", +-- "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", +-- "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", +-- "dev": true, +-- "requires": { +-- "is-plain-object": "^2.0.4" +-- } +-- } +-+ "node_modules/neo-async": { +-+ "version": "2.6.2", +-+ "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", +-+ "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" +-+ }, +-+ "node_modules/node-gyp": { +-+ "version": "8.4.1", +-+ "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-8.4.1.tgz", +-+ "integrity": "sha512-olTJRgUtAb/hOXG0E93wZDs5YiJlgbXxTwQAFHyNlRsXQnYzUaF2aGgujZbw+hR8aF4ZG/rST57bWMWD16jr9w==", +-+ "dev": true, +-+ "dependencies": { +-+ "env-paths": "^2.2.0", +-+ "glob": "^7.1.4", +-+ "graceful-fs": "^4.2.6", +-+ "make-fetch-happen": "^9.1.0", +-+ "nopt": "^5.0.0", +-+ "npmlog": "^6.0.0", +-+ "rimraf": "^3.0.2", +-+ "semver": "^7.3.5", +-+ "tar": "^6.1.2", +-+ "which": "^2.0.2" +-+ }, +-+ "bin": { +-+ "node-gyp": "bin/node-gyp.js" +-+ }, +-+ "engines": { +-+ "node": ">= 10.12.0" +- } +- }, +-- "mkdirp": { +-- "version": "0.5.1", +-- "resolved": "http://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", +-- "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", +-- "requires": { +-- "minimist": "0.0.8" +-+ "node_modules/node-gyp/node_modules/@npmcli/fs": { +-+ "version": "1.1.1", +-+ "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-1.1.1.tgz", +-+ "integrity": "sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==", +-+ "dev": true, +-+ "dependencies": { +-+ "@gar/promisify": "^1.0.1", +-+ "semver": "^7.3.5" +-+ } +-+ }, +-+ "node_modules/node-gyp/node_modules/@npmcli/move-file": { +-+ "version": "1.1.2", +-+ "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz", +-+ "integrity": "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==", +-+ "deprecated": "This functionality has been moved to @npmcli/fs", +-+ "dev": true, +-+ "dependencies": { +-+ "mkdirp": "^1.0.4", +-+ "rimraf": "^3.0.2" +-+ }, +-+ "engines": { +-+ "node": ">=10" +-+ } +-+ }, +-+ "node_modules/node-gyp/node_modules/@tootallnate/once": { +-+ "version": "1.1.2", +-+ "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", +-+ "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", +-+ "dev": true, +-+ "engines": { +-+ "node": ">= 6" +-+ } +-+ }, +-+ "node_modules/node-gyp/node_modules/cacache": { +-+ "version": "15.3.0", +-+ "resolved": "https://registry.npmjs.org/cacache/-/cacache-15.3.0.tgz", +-+ "integrity": "sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==", +-+ "dev": true, +-+ "dependencies": { +-+ "@npmcli/fs": "^1.0.0", +-+ "@npmcli/move-file": "^1.0.1", +-+ "chownr": "^2.0.0", +-+ "fs-minipass": "^2.0.0", +-+ "glob": "^7.1.4", +-+ "infer-owner": "^1.0.4", +-+ "lru-cache": "^6.0.0", +-+ "minipass": "^3.1.1", +-+ "minipass-collect": "^1.0.2", +-+ "minipass-flush": "^1.0.5", +-+ "minipass-pipeline": "^1.2.2", +-+ "mkdirp": "^1.0.3", +-+ "p-map": "^4.0.0", +-+ "promise-inflight": "^1.0.1", +-+ "rimraf": "^3.0.2", +-+ "ssri": "^8.0.1", +-+ "tar": "^6.0.2", +-+ "unique-filename": "^1.1.1" +- }, +-+ "engines": { +-+ "node": ">= 10" +-+ } +-+ }, +-+ "node_modules/node-gyp/node_modules/debug": { +-+ "version": "4.3.5", +-+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.5.tgz", +-+ "integrity": "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==", +-+ "dev": true, +- "dependencies": { +-- "minimist": { +-- "version": "0.0.8", +-- "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", +-- "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=" +-+ "ms": "2.1.2" +-+ }, +-+ "engines": { +-+ "node": ">=6.0" +-+ }, +-+ "peerDependenciesMeta": { +-+ "supports-color": { +-+ "optional": true +- } +- } +- }, +-- "ms": { +-- "version": "2.0.0", +-- "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", +-- "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" +-+ "node_modules/node-gyp/node_modules/glob": { +-+ "version": "7.2.3", +-+ "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", +-+ "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", +-+ "deprecated": "Glob versions prior to v9 are no longer supported", +-+ "dev": true, +-+ "dependencies": { +-+ "fs.realpath": "^1.0.0", +-+ "inflight": "^1.0.4", +-+ "inherits": "2", +-+ "minimatch": "^3.1.1", +-+ "once": "^1.3.0", +-+ "path-is-absolute": "^1.0.0" +-+ }, +-+ "engines": { +-+ "node": "*" +-+ }, +-+ "funding": { +-+ "url": "https://github.com/sponsors/isaacs" +-+ } +- }, +-- "nan": { +-- "version": "2.12.1", +-- "resolved": "https://registry.npmjs.org/nan/-/nan-2.12.1.tgz", +-- "integrity": "sha512-JY7V6lRkStKcKTvHO5NVSQRv+RV+FIL5pvDoLiAtSL9pKlC5x9PKQcZDsq7m4FO4d57mkhC6Z+QhAh3Jdk5JFw==", +-- "dev": true +-+ "node_modules/node-gyp/node_modules/http-proxy-agent": { +-+ "version": "4.0.1", +-+ "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", +-+ "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", +-+ "dev": true, +-+ "dependencies": { +-+ "@tootallnate/once": "1", +-+ "agent-base": "6", +-+ "debug": "4" +-+ }, +-+ "engines": { +-+ "node": ">= 6" +-+ } +- }, +-- "nanomatch": { +-- "version": "1.2.13", +-- "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", +-- "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", +-- "dev": true, +-- "requires": { +-- "arr-diff": "^4.0.0", +-- "array-unique": "^0.3.2", +-- "define-property": "^2.0.2", +-- "extend-shallow": "^3.0.2", +-- "fragment-cache": "^0.2.1", +-- "is-windows": "^1.0.2", +-- "kind-of": "^6.0.2", +-- "object.pick": "^1.3.0", +-- "regex-not": "^1.0.0", +-- "snapdragon": "^0.8.1", +-- "to-regex": "^3.0.1" +-- } +-- }, +-- "negotiator": { +-- "version": "0.6.1", +-- "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.1.tgz", +-- "integrity": "sha1-KzJxhOiZIQEXeyhWP7XnECrNDKk=" +-+ "node_modules/node-gyp/node_modules/lru-cache": { +-+ "version": "6.0.0", +-+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", +-+ "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", +-+ "dev": true, +-+ "dependencies": { +-+ "yallist": "^4.0.0" +-+ }, +-+ "engines": { +-+ "node": ">=10" +-+ } +- }, +-- "nice-try": { +-- "version": "1.0.5", +-- "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", +-- "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", +-+ "node_modules/node-gyp/node_modules/make-fetch-happen": { +-+ "version": "9.1.0", +-+ "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-9.1.0.tgz", +-+ "integrity": "sha512-+zopwDy7DNknmwPQplem5lAZX/eCOzSvSNNcSKm5eVwTkOBzoktEfXsa9L23J/GIRhxRsaxzkPEhrJEpE2F4Gg==", +-+ "dev": true, +-+ "dependencies": { +-+ "agentkeepalive": "^4.1.3", +-+ "cacache": "^15.2.0", +-+ "http-cache-semantics": "^4.1.0", +-+ "http-proxy-agent": "^4.0.1", +-+ "https-proxy-agent": "^5.0.0", +-+ "is-lambda": "^1.0.1", +-+ "lru-cache": "^6.0.0", +-+ "minipass": "^3.1.3", +-+ "minipass-collect": "^1.0.2", +-+ "minipass-fetch": "^1.3.2", +-+ "minipass-flush": "^1.0.5", +-+ "minipass-pipeline": "^1.2.4", +-+ "negotiator": "^0.6.2", +-+ "promise-retry": "^2.0.1", +-+ "socks-proxy-agent": "^6.0.0", +-+ "ssri": "^8.0.0" +-+ }, +-+ "engines": { +-+ "node": ">= 10" +-+ } +-+ }, +-+ "node_modules/node-gyp/node_modules/minimatch": { +-+ "version": "3.1.2", +-+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", +-+ "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", +-+ "dev": true, +-+ "dependencies": { +-+ "brace-expansion": "^1.1.7" +-+ }, +-+ "engines": { +-+ "node": "*" +-+ } +-+ }, +-+ "node_modules/node-gyp/node_modules/minipass-fetch": { +-+ "version": "1.4.1", +-+ "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-1.4.1.tgz", +-+ "integrity": "sha512-CGH1eblLq26Y15+Azk7ey4xh0J/XfJfrCox5LDJiKqI2Q2iwOLOKrlmIaODiSQS8d18jalF6y2K2ePUm0CmShw==", +-+ "dev": true, +-+ "dependencies": { +-+ "minipass": "^3.1.0", +-+ "minipass-sized": "^1.0.3", +-+ "minizlib": "^2.0.0" +-+ }, +-+ "engines": { +-+ "node": ">=8" +-+ }, +-+ "optionalDependencies": { +-+ "encoding": "^0.1.12" +-+ } +-+ }, +-+ "node_modules/node-gyp/node_modules/mkdirp": { +-+ "version": "1.0.4", +-+ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", +-+ "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", +-+ "dev": true, +-+ "bin": { +-+ "mkdirp": "bin/cmd.js" +-+ }, +-+ "engines": { +-+ "node": ">=10" +-+ } +-+ }, +-+ "node_modules/node-gyp/node_modules/ms": { +-+ "version": "2.1.2", +-+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", +-+ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", +- "dev": true +- }, +-- "node-gyp": { +-- "version": "3.8.0", +-- "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-3.8.0.tgz", +-- "integrity": "sha512-3g8lYefrRRzvGeSowdJKAKyks8oUpLEd/DyPV4eMhVlhJ0aNaZqIrNUIPuEWWTAoPqyFkfGrM67MC69baqn6vA==", +-+ "node_modules/node-gyp/node_modules/semver": { +-+ "version": "7.6.2", +-+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", +-+ "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", +- "dev": true, +-- "requires": { +-- "fstream": "^1.0.0", +-- "glob": "^7.0.3", +-- "graceful-fs": "^4.1.2", +-- "mkdirp": "^0.5.0", +-- "nopt": "2 || 3", +-- "npmlog": "0 || 1 || 2 || 3 || 4", +-- "osenv": "0", +-- "request": "^2.87.0", +-- "rimraf": "2", +-- "semver": "~5.3.0", +-- "tar": "^2.0.0", +-- "which": "1" +-- }, +-- "dependencies": { +-- "semver": { +-- "version": "5.3.0", +-- "resolved": "https://registry.npmjs.org/semver/-/semver-5.3.0.tgz", +-- "integrity": "sha1-myzl094C0XxgEq0yaqa00M9U+U8=", +-- "dev": true +-- } +-+ "bin": { +-+ "semver": "bin/semver.js" +-+ }, +-+ "engines": { +-+ "node": ">=10" +- } +- }, +-- "node-sass": { +-- "version": "4.11.0", +-- "resolved": "https://registry.npmjs.org/node-sass/-/node-sass-4.11.0.tgz", +-- "integrity": "sha512-bHUdHTphgQJZaF1LASx0kAviPH7sGlcyNhWade4eVIpFp6tsn7SV8xNMTbsQFpEV9VXpnwTTnNYlfsZXgGgmkA==", +-+ "node_modules/node-gyp/node_modules/socks-proxy-agent": { +-+ "version": "6.2.1", +-+ "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-6.2.1.tgz", +-+ "integrity": "sha512-a6KW9G+6B3nWZ1yB8G7pJwL3ggLy1uTzKAgCb7ttblwqdz9fMGJUuTy3uFzEP48FAs9FLILlmzDlE2JJhVQaXQ==", +- "dev": true, +-- "requires": { +-+ "dependencies": { +-+ "agent-base": "^6.0.2", +-+ "debug": "^4.3.3", +-+ "socks": "^2.6.2" +-+ }, +-+ "engines": { +-+ "node": ">= 10" +-+ } +-+ }, +-+ "node_modules/node-gyp/node_modules/ssri": { +-+ "version": "8.0.1", +-+ "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz", +-+ "integrity": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==", +-+ "dev": true, +-+ "dependencies": { +-+ "minipass": "^3.1.1" +-+ }, +-+ "engines": { +-+ "node": ">= 8" +-+ } +-+ }, +-+ "node_modules/node-gyp/node_modules/unique-filename": { +-+ "version": "1.1.1", +-+ "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz", +-+ "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==", +-+ "dev": true, +-+ "dependencies": { +-+ "unique-slug": "^2.0.0" +-+ } +-+ }, +-+ "node_modules/node-gyp/node_modules/unique-slug": { +-+ "version": "2.0.2", +-+ "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz", +-+ "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==", +-+ "dev": true, +-+ "dependencies": { +-+ "imurmurhash": "^0.1.4" +-+ } +-+ }, +-+ "node_modules/node-gyp/node_modules/which": { +-+ "version": "2.0.2", +-+ "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", +-+ "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", +-+ "dev": true, +-+ "dependencies": { +-+ "isexe": "^2.0.0" +-+ }, +-+ "bin": { +-+ "node-which": "bin/node-which" +-+ }, +-+ "engines": { +-+ "node": ">= 8" +-+ } +-+ }, +-+ "node_modules/node-gyp/node_modules/yallist": { +-+ "version": "4.0.0", +-+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", +-+ "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", +-+ "dev": true +-+ }, +-+ "node_modules/node-sass": { +-+ "version": "9.0.0", +-+ "resolved": "https://registry.npmjs.org/node-sass/-/node-sass-9.0.0.tgz", +-+ "integrity": "sha512-yltEuuLrfH6M7Pq2gAj5B6Zm7m+gdZoG66wTqG6mIZV/zijq3M2OO2HswtT6oBspPyFhHDcaxWpsBm0fRNDHPg==", +-+ "dev": true, +-+ "hasInstallScript": true, +-+ "dependencies": { +- "async-foreach": "^0.1.3", +-- "chalk": "^1.1.1", +-- "cross-spawn": "^3.0.0", +-+ "chalk": "^4.1.2", +-+ "cross-spawn": "^7.0.3", +- "gaze": "^1.0.0", +- "get-stdin": "^4.0.1", +- "glob": "^7.0.3", +-- "in-publish": "^2.0.0", +-- "lodash.assign": "^4.2.0", +-- "lodash.clonedeep": "^4.3.2", +-- "lodash.mergewith": "^4.6.0", +-- "meow": "^3.7.0", +-- "mkdirp": "^0.5.1", +-- "nan": "^2.10.0", +-- "node-gyp": "^3.8.0", +-- "npmlog": "^4.0.0", +-- "request": "^2.88.0", +-- "sass-graph": "^2.2.4", +-+ "lodash": "^4.17.15", +-+ "make-fetch-happen": "^10.0.4", +-+ "meow": "^9.0.0", +-+ "nan": "^2.17.0", +-+ "node-gyp": "^8.4.1", +-+ "sass-graph": "^4.0.1", +- "stdout-stream": "^1.4.0", +-- "true-case-path": "^1.0.2" +-+ "true-case-path": "^2.2.1" +-+ }, +-+ "bin": { +-+ "node-sass": "bin/node-sass" +-+ }, +-+ "engines": { +-+ "node": ">=16" +- } +- }, +-- "nodemon": { +-- "version": "1.18.10", +-- "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-1.18.10.tgz", +-- "integrity": "sha512-we51yBb1TfEvZamFchRgcfLbVYgg0xlGbyXmOtbBzDwxwgewYS/YbZ5tnlnsH51+AoSTTsT3A2E/FloUbtH8cQ==", +-+ "node_modules/nodemon": { +-+ "version": "3.1.4", +-+ "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-3.1.4.tgz", +-+ "integrity": "sha512-wjPBbFhtpJwmIeY2yP7QF+UKzPfltVGtfce1g/bB15/8vCGZj8uxD62b/b9M9/WVgme0NZudpownKN+c0plXlQ==", +- "dev": true, +-- "requires": { +-- "chokidar": "^2.1.0", +-- "debug": "^3.1.0", +-+ "dependencies": { +-+ "chokidar": "^3.5.2", +-+ "debug": "^4", +- "ignore-by-default": "^1.0.1", +-- "minimatch": "^3.0.4", +-- "pstree.remy": "^1.1.6", +-- "semver": "^5.5.0", +-- "supports-color": "^5.2.0", +-+ "minimatch": "^3.1.2", +-+ "pstree.remy": "^1.1.8", +-+ "semver": "^7.5.3", +-+ "simple-update-notifier": "^2.0.0", +-+ "supports-color": "^5.5.0", +- "touch": "^3.1.0", +-- "undefsafe": "^2.0.2", +-- "update-notifier": "^2.5.0" +-+ "undefsafe": "^2.0.5" +- }, +-+ "bin": { +-+ "nodemon": "bin/nodemon.js" +-+ }, +-+ "engines": { +-+ "node": ">=10" +-+ }, +-+ "funding": { +-+ "type": "opencollective", +-+ "url": "https://opencollective.com/nodemon" +-+ } +-+ }, +-+ "node_modules/nodemon/node_modules/debug": { +-+ "version": "4.3.5", +-+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.5.tgz", +-+ "integrity": "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==", +-+ "dev": true, +- "dependencies": { +-- "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" +-- } +-- }, +-- "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 +-- }, +-+ "ms": "2.1.2" +-+ }, +-+ "engines": { +-+ "node": ">=6.0" +-+ }, +-+ "peerDependenciesMeta": { +- "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" +-- } +-+ "optional": true +- } +- } +- }, +-- "nopt": { +-- "version": "3.0.6", +-- "resolved": "https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz", +-- "integrity": "sha1-xkZdvwirzU2zWTF/eaxopkayj/k=", +-+ "node_modules/nodemon/node_modules/minimatch": { +-+ "version": "3.1.2", +-+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", +-+ "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", +-+ "dev": true, +-+ "dependencies": { +-+ "brace-expansion": "^1.1.7" +-+ }, +-+ "engines": { +-+ "node": "*" +-+ } +-+ }, +-+ "node_modules/nodemon/node_modules/ms": { +-+ "version": "2.1.2", +-+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", +-+ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", +-+ "dev": true +-+ }, +-+ "node_modules/nodemon/node_modules/semver": { +-+ "version": "7.6.2", +-+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", +-+ "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", +- "dev": true, +-- "requires": { +-+ "bin": { +-+ "semver": "bin/semver.js" +-+ }, +-+ "engines": { +-+ "node": ">=10" +-+ } +-+ }, +-+ "node_modules/nodemon/node_modules/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, +-+ "dependencies": { +-+ "has-flag": "^3.0.0" +-+ }, +-+ "engines": { +-+ "node": ">=4" +-+ } +-+ }, +-+ "node_modules/nopt": { +-+ "version": "5.0.0", +-+ "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz", +-+ "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==", +-+ "dev": true, +-+ "dependencies": { +- "abbrev": "1" +-+ }, +-+ "bin": { +-+ "nopt": "bin/nopt.js" +-+ }, +-+ "engines": { +-+ "node": ">=6" +- } +- }, +-- "normalize-package-data": { +-+ "node_modules/normalize-package-data": { +- "version": "2.5.0", +- "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", +- "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", +- "dev": true, +-- "requires": { +-+ "dependencies": { +- "hosted-git-info": "^2.1.4", +- "resolve": "^1.10.0", +- "semver": "2 || 3 || 4 || 5", +- "validate-npm-package-license": "^3.0.1" +- } +- }, +-- "normalize-path": { +-+ "node_modules/normalize-path": { +- "version": "3.0.0", +- "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", +- "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", +-- "dev": true +-- }, +-- "npm-run-path": { +-- "version": "2.0.2", +-- "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", +-- "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", +- "dev": true, +-- "requires": { +-- "path-key": "^2.0.0" +-+ "engines": { +-+ "node": ">=0.10.0" +- } +- }, +-- "npmlog": { +-- "version": "4.1.2", +-- "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz", +-- "integrity": "sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==", +-- "dev": true, +-- "requires": { +-- "are-we-there-yet": "~1.1.2", +-- "console-control-strings": "~1.1.0", +-- "gauge": "~2.7.3", +-- "set-blocking": "~2.0.0" +-- } +-- }, +-- "number-is-nan": { +-- "version": "1.0.1", +-- "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", +-- "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=", +-- "dev": true +-- }, +-- "oauth-sign": { +-- "version": "0.9.0", +-- "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", +-- "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==" +-- }, +-- "object-assign": { +-- "version": "4.1.1", +-- "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", +-- "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" +-- }, +-- "object-copy": { +-- "version": "0.1.0", +-- "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", +-- "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=", +-- "dev": true, +-- "requires": { +-- "copy-descriptor": "^0.1.0", +-- "define-property": "^0.2.5", +-- "kind-of": "^3.0.3" +-- }, +-- "dependencies": { +-- "define-property": { +-- "version": "0.2.5", +-- "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", +-- "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", +-- "dev": true, +-- "requires": { +-- "is-descriptor": "^0.1.0" +-- } +-- }, +-- "kind-of": { +-- "version": "3.2.2", +-- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", +-- "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", +-- "dev": true, +-- "requires": { +-- "is-buffer": "^1.1.5" +-- } +-- } +-- } +-- }, +-- "object-keys": { +-- "version": "1.1.0", +-- "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.0.tgz", +-- "integrity": "sha512-6OO5X1+2tYkNyNEx6TsCxEqFfRWaqx6EtMiSbGrw8Ob8v9Ne+Hl8rBAgLBZn5wjEz3s/s6U1WXFUFOcxxAwUpg==" +-- }, +-- "object-visit": { +-- "version": "1.0.1", +-- "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", +-- "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=", +-+ "node_modules/npmlog": { +-+ "version": "6.0.2", +-+ "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-6.0.2.tgz", +-+ "integrity": "sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==", +-+ "deprecated": "This package is no longer supported.", +- "dev": true, +-- "requires": { +-- "isobject": "^3.0.0" +-+ "dependencies": { +-+ "are-we-there-yet": "^3.0.0", +-+ "console-control-strings": "^1.1.0", +-+ "gauge": "^4.0.3", +-+ "set-blocking": "^2.0.0" +-+ }, +-+ "engines": { +-+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0" +- } +- }, +-- "object.assign": { +-- "version": "4.1.0", +-- "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.0.tgz", +-- "integrity": "sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w==", +-- "requires": { +-- "define-properties": "^1.1.2", +-- "function-bind": "^1.1.1", +-- "has-symbols": "^1.0.0", +-- "object-keys": "^1.0.11" +-+ "node_modules/object-assign": { +-+ "version": "4.1.1", +-+ "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", +-+ "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", +-+ "engines": { +-+ "node": ">=0.10.0" +- } +- }, +-- "object.pick": { +-- "version": "1.3.0", +-- "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", +-- "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=", +-- "dev": true, +-- "requires": { +-- "isobject": "^3.0.1" +-+ "node_modules/object-inspect": { +-+ "version": "1.13.2", +-+ "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.2.tgz", +-+ "integrity": "sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==", +-+ "engines": { +-+ "node": ">= 0.4" +-+ }, +-+ "funding": { +-+ "url": "https://github.com/sponsors/ljharb" +- } +- }, +-- "on-finished": { +-- "version": "2.3.0", +-- "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", +-- "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", +-- "requires": { +-+ "node_modules/on-finished": { +-+ "version": "2.4.1", +-+ "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", +-+ "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", +-+ "dependencies": { +- "ee-first": "1.1.1" +-+ }, +-+ "engines": { +-+ "node": ">= 0.8" +- } +- }, +-- "once": { +-+ "node_modules/once": { +- "version": "1.4.0", +- "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", +- "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", +-- "requires": { +-- "wrappy": "1" +-- } +-- }, +-- "optimist": { +-- "version": "0.6.1", +-- "resolved": "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz", +-- "integrity": "sha1-2j6nRob6IaGaERwybpDrFaAZZoY=", +-- "requires": { +-- "minimist": "~0.0.1", +-- "wordwrap": "~0.0.2" +-- }, +- "dependencies": { +-- "minimist": { +-- "version": "0.0.10", +-- "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz", +-- "integrity": "sha1-3j+YVD2/lggr5IrRoMfNqDYwHc8=" +-- }, +-- "wordwrap": { +-- "version": "0.0.3", +-- "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz", +-- "integrity": "sha1-o9XabNXAvAAI03I0u68b7WMFkQc=" +-- } +-- } +-- }, +-- "os-homedir": { +-- "version": "1.0.2", +-- "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", +-- "integrity": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M=", +-- "dev": true +-- }, +-- "os-locale": { +-- "version": "1.4.0", +-- "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz", +-- "integrity": "sha1-IPnxeuKe00XoveWDsT0gCYA8FNk=", +-- "dev": true, +-- "requires": { +-- "lcid": "^1.0.0" +-- } +-- }, +-- "os-tmpdir": { +-- "version": "1.0.2", +-- "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", +-- "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=", +-- "dev": true +-- }, +-- "osenv": { +-- "version": "0.1.5", +-- "resolved": "https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz", +-- "integrity": "sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==", +-- "dev": true, +-- "requires": { +-- "os-homedir": "^1.0.0", +-- "os-tmpdir": "^1.0.0" +-+ "wrappy": "1" +- } +- }, +-- "p-defer": { +-- "version": "1.0.0", +-- "resolved": "https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz", +-- "integrity": "sha1-n26xgvbJqozXQwBKfU+WsZaw+ww=", +-- "dev": true +-- }, +-- "p-finally": { +-- "version": "1.0.0", +-- "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", +-- "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=", +-- "dev": true +-- }, +-- "p-is-promise": { +-- "version": "2.0.0", +-- "resolved": "https://registry.npmjs.org/p-is-promise/-/p-is-promise-2.0.0.tgz", +-- "integrity": "sha512-pzQPhYMCAgLAKPWD2jC3Se9fEfrD9npNos0y150EeqZll7akhEgGhTW/slB6lHku8AvYGiJ+YJ5hfHKePPgFWg==", +-- "dev": true +-- }, +-- "p-limit": { +-+ "node_modules/p-limit": { +- "version": "2.2.0", +- "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.2.0.tgz", +- "integrity": "sha512-pZbTJpoUsCzV48Mc9Nh51VbwO0X9cuPFE8gYwx9BTCt9SF8/b7Zljd2fVgOxhIF/HDTKgpVzs+GPhyKfjLLFRQ==", +- "dev": true, +-- "requires": { +-+ "dependencies": { +- "p-try": "^2.0.0" +-+ }, +-+ "engines": { +-+ "node": ">=6" +- } +- }, +-- "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==", +-+ "node_modules/p-map": { +-+ "version": "4.0.0", +-+ "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", +-+ "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", +- "dev": true, +-- "requires": { +-- "p-limit": "^2.0.0" +-+ "dependencies": { +-+ "aggregate-error": "^3.0.0" +-+ }, +-+ "engines": { +-+ "node": ">=10" +-+ }, +-+ "funding": { +-+ "url": "https://github.com/sponsors/sindresorhus" +- } +- }, +-- "p-try": { +-+ "node_modules/p-try": { +- "version": "2.1.0", +- "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.1.0.tgz", +- "integrity": "sha512-H2RyIJ7+A3rjkwKC2l5GGtU4H1vkxKCAGsWasNVd0Set+6i4znxbWy6/j16YDPJDWxhsgZiKAstMEP8wCdSpjA==", +-- "dev": true +-- }, +-- "package-json": { +-- "version": "4.0.1", +-- "resolved": "https://registry.npmjs.org/package-json/-/package-json-4.0.1.tgz", +-- "integrity": "sha1-iGmgQBJTZhxMTKPabCEh7VVfXu0=", +- "dev": true, +-- "requires": { +-- "got": "^6.7.1", +-- "registry-auth-token": "^3.0.1", +-- "registry-url": "^3.0.3", +-- "semver": "^5.1.0" +-+ "engines": { +-+ "node": ">=6" +- } +- }, +-- "parse-json": { +-- "version": "2.2.0", +-- "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", +-- "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=", +-+ "node_modules/package-json-from-dist": { +-+ "version": "1.0.0", +-+ "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.0.tgz", +-+ "integrity": "sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==" +-+ }, +-+ "node_modules/parse-json": { +-+ "version": "5.2.0", +-+ "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", +-+ "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", +- "dev": true, +-- "requires": { +-- "error-ex": "^1.2.0" +-+ "dependencies": { +-+ "@babel/code-frame": "^7.0.0", +-+ "error-ex": "^1.3.1", +-+ "json-parse-even-better-errors": "^2.3.0", +-+ "lines-and-columns": "^1.1.6" +-+ }, +-+ "engines": { +-+ "node": ">=8" +-+ }, +-+ "funding": { +-+ "url": "https://github.com/sponsors/sindresorhus" +- } +- }, +-- "parseurl": { +-- "version": "1.3.2", +-- "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.2.tgz", +-- "integrity": "sha1-/CidTtiZMRlGDBViUyYs3I3mW/M=" +-- }, +-- "pascalcase": { +-- "version": "0.1.1", +-- "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", +-- "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=", +-- "dev": true +-- }, +-- "path-dirname": { +-- "version": "1.0.2", +-- "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", +-- "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=", +-- "dev": true +-+ "node_modules/parseurl": { +-+ "version": "1.3.3", +-+ "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", +-+ "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", +-+ "engines": { +-+ "node": ">= 0.8" +-+ } +- }, +-- "path-exists": { +-- "version": "2.1.0", +-- "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", +-- "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", +-+ "node_modules/path-exists": { +-+ "version": "4.0.0", +-+ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", +-+ "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", +- "dev": true, +-- "requires": { +-- "pinkie-promise": "^2.0.0" +-+ "engines": { +-+ "node": ">=8" +- } +- }, +-- "path-is-absolute": { +-+ "node_modules/path-is-absolute": { +- "version": "1.0.1", +- "resolved": "http://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", +-- "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" +-+ "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", +-+ "engines": { +-+ "node": ">=0.10.0" +-+ } +- }, +-- "path-is-inside": { +-- "version": "1.0.2", +-- "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", +-- "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=", +-+ "node_modules/path-parse": { +-+ "version": "1.0.7", +-+ "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", +-+ "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", +- "dev": true +- }, +-- "path-key": { +-- "version": "2.0.1", +-- "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", +-- "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", +-- "dev": true +-+ "node_modules/path-scurry": { +-+ "version": "1.11.1", +-+ "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", +-+ "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", +-+ "dependencies": { +-+ "lru-cache": "^10.2.0", +-+ "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" +-+ }, +-+ "engines": { +-+ "node": ">=16 || 14 >=14.18" +-+ }, +-+ "funding": { +-+ "url": "https://github.com/sponsors/isaacs" +-+ } +- }, +-- "path-parse": { +-- "version": "1.0.6", +-- "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz", +-- "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==", +-- "dev": true +-+ "node_modules/path-scurry/node_modules/minipass": { +-+ "version": "7.1.2", +-+ "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", +-+ "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", +-+ "engines": { +-+ "node": ">=16 || 14 >=14.17" +-+ } +- }, +-- "path-to-regexp": { +-+ "node_modules/path-to-regexp": { +- "version": "0.1.7", +- "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", +- "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=" +- }, +-- "path-type": { +-- "version": "1.1.0", +-- "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", +-- "integrity": "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=", +-- "dev": true, +-- "requires": { +-- "graceful-fs": "^4.1.2", +-- "pify": "^2.0.0", +-- "pinkie-promise": "^2.0.0" +-- } +-- }, +-- "performance-now": { +-- "version": "2.1.0", +-- "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", +-- "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=" +-- }, +-- "pify": { +-- "version": "2.3.0", +-- "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", +-- "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", +-- "dev": true +-- }, +-- "pinkie": { +-- "version": "2.0.4", +-- "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", +-- "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=", +-+ "node_modules/picocolors": { +-+ "version": "1.0.1", +-+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.1.tgz", +-+ "integrity": "sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==", +- "dev": true +- }, +-- "pinkie-promise": { +-- "version": "2.0.1", +-- "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", +-- "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", +-+ "node_modules/picomatch": { +-+ "version": "2.3.1", +-+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", +-+ "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", +- "dev": true, +-- "requires": { +-- "pinkie": "^2.0.0" +-+ "engines": { +-+ "node": ">=8.6" +-+ }, +-+ "funding": { +-+ "url": "https://github.com/sponsors/jonschlinkert" +- } +- }, +-- "posix-character-classes": { +-- "version": "0.1.1", +-- "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", +-- "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=", +-- "dev": true +-- }, +-- "prepend-http": { +-- "version": "1.0.4", +-- "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz", +-- "integrity": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=", +-- "dev": true +-- }, +-- "process-nextick-args": { +-+ "node_modules/process-nextick-args": { +- "version": "2.0.0", +- "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz", +- "integrity": "sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw==" +- }, +-- "promise": { +-+ "node_modules/promise": { +- "version": "7.3.1", +- "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz", +- "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==", +-- "requires": { +-+ "dependencies": { +- "asap": "~2.0.3" +- } +- }, +-- "proxy-addr": { +-- "version": "2.0.4", +-- "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.4.tgz", +-- "integrity": "sha512-5erio2h9jp5CHGwcybmxmVqHmnCBZeewlfJ0pex+UW7Qny7OOZXTtH56TGNyBizkgiOwhJtMKrVzDTeKcySZwA==", +-- "requires": { +-- "forwarded": "~0.1.2", +-- "ipaddr.js": "1.8.0" +-+ "node_modules/promise-inflight": { +-+ "version": "1.0.1", +-+ "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", +-+ "integrity": "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==", +-+ "dev": true +-+ }, +-+ "node_modules/promise-retry": { +-+ "version": "2.0.1", +-+ "resolved": "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz", +-+ "integrity": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==", +-+ "dev": true, +-+ "dependencies": { +-+ "err-code": "^2.0.2", +-+ "retry": "^0.12.0" +-+ }, +-+ "engines": { +-+ "node": ">=10" +- } +- }, +-- "pseudomap": { +-- "version": "1.0.2", +-- "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", +-- "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=", +-- "dev": true +-+ "node_modules/proxy-addr": { +-+ "version": "2.0.7", +-+ "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", +-+ "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", +-+ "dependencies": { +-+ "forwarded": "0.2.0", +-+ "ipaddr.js": "1.9.1" +-+ }, +-+ "engines": { +-+ "node": ">= 0.10" +-+ } +- }, +-- "psl": { +-- "version": "1.1.31", +-- "resolved": "https://registry.npmjs.org/psl/-/psl-1.1.31.tgz", +-- "integrity": "sha512-/6pt4+C+T+wZUieKR620OpzN/LlnNKuWjy1iFLQ/UG35JqHlR/89MP1d96dUfkf6Dne3TuLQzOYEYshJ+Hx8mw==" +-+ "node_modules/proxy-from-env": { +-+ "version": "1.1.0", +-+ "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", +-+ "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" +- }, +-- "pstree.remy": { +-- "version": "1.1.6", +-- "resolved": "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.6.tgz", +-- "integrity": "sha512-NdF35+QsqD7EgNEI5mkI/X+UwaxVEbQaz9f4IooEmMUv6ZPmlTQYGjBPJGgrlzNdjSvIy4MWMg6Q6vCgBO2K+w==", +-+ "node_modules/pstree.remy": { +-+ "version": "1.1.8", +-+ "resolved": "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.8.tgz", +-+ "integrity": "sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==", +- "dev": true +- }, +-- "pump": { +-- "version": "3.0.0", +-- "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", +-- "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", +-- "dev": true, +-- "requires": { +-- "end-of-stream": "^1.1.0", +-- "once": "^1.3.1" +-+ "node_modules/qs": { +-+ "version": "6.11.0", +-+ "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", +-+ "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", +-+ "dependencies": { +-+ "side-channel": "^1.0.4" +-+ }, +-+ "engines": { +-+ "node": ">=0.6" +-+ }, +-+ "funding": { +-+ "url": "https://github.com/sponsors/ljharb" +- } +- }, +-- "punycode": { +-- "version": "1.4.1", +-- "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", +-- "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=" +-- }, +-- "qs": { +-- "version": "6.4.0", +-- "resolved": "https://registry.npmjs.org/qs/-/qs-6.4.0.tgz", +-- "integrity": "sha1-E+JtKK1rD/qpExLNO/cI7TUecjM=" +-+ "node_modules/quick-lru": { +-+ "version": "4.0.1", +-+ "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-4.0.1.tgz", +-+ "integrity": "sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==", +-+ "dev": true, +-+ "engines": { +-+ "node": ">=8" +-+ } +- }, +-- "range-parser": { +-- "version": "1.2.0", +-- "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.0.tgz", +-- "integrity": "sha1-9JvmtIeJTdxA3MlKMi9hEJLgDV4=" +-+ "node_modules/range-parser": { +-+ "version": "1.2.1", +-+ "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", +-+ "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", +-+ "engines": { +-+ "node": ">= 0.6" +-+ } +- }, +-- "raw-body": { +-- "version": "2.3.3", +-- "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.3.3.tgz", +-- "integrity": "sha512-9esiElv1BrZoI3rCDuOuKCBRbuApGGaDPQfjSflGxdy4oyzqghxu6klEkkVIvBje+FF0BX9coEv8KqW6X/7njw==", +-- "requires": { +-- "bytes": "3.0.0", +-- "http-errors": "1.6.3", +-- "iconv-lite": "0.4.23", +-+ "node_modules/raw-body": { +-+ "version": "2.5.2", +-+ "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", +-+ "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", +-+ "dependencies": { +-+ "bytes": "3.1.2", +-+ "http-errors": "2.0.0", +-+ "iconv-lite": "0.4.24", +- "unpipe": "1.0.0" +-+ }, +-+ "engines": { +-+ "node": ">= 0.8" +- } +- }, +-- "rc": { +-- "version": "1.2.8", +-- "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", +-- "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", +-+ "node_modules/read-pkg": { +-+ "version": "5.2.0", +-+ "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", +-+ "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", +- "dev": true, +-- "requires": { +-- "deep-extend": "^0.6.0", +-- "ini": "~1.3.0", +-- "minimist": "^1.2.0", +-- "strip-json-comments": "~2.0.1" +-+ "dependencies": { +-+ "@types/normalize-package-data": "^2.4.0", +-+ "normalize-package-data": "^2.5.0", +-+ "parse-json": "^5.0.0", +-+ "type-fest": "^0.6.0" +-+ }, +-+ "engines": { +-+ "node": ">=8" +- } +- }, +-- "read-pkg": { +-- "version": "1.1.0", +-- "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", +-- "integrity": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=", +-+ "node_modules/read-pkg-up": { +-+ "version": "7.0.1", +-+ "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", +-+ "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", +- "dev": true, +-- "requires": { +-- "load-json-file": "^1.0.0", +-- "normalize-package-data": "^2.3.2", +-- "path-type": "^1.0.0" +-+ "dependencies": { +-+ "find-up": "^4.1.0", +-+ "read-pkg": "^5.2.0", +-+ "type-fest": "^0.8.1" +-+ }, +-+ "engines": { +-+ "node": ">=8" +-+ }, +-+ "funding": { +-+ "url": "https://github.com/sponsors/sindresorhus" +- } +- }, +-- "read-pkg-up": { +-- "version": "1.0.1", +-- "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", +-- "integrity": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=", +-+ "node_modules/read-pkg-up/node_modules/type-fest": { +-+ "version": "0.8.1", +-+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", +-+ "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", +- "dev": true, +-- "requires": { +-- "find-up": "^1.0.0", +-- "read-pkg": "^1.0.0" +-+ "engines": { +-+ "node": ">=8" +- } +- }, +-- "readable-stream": { +-+ "node_modules/read-pkg/node_modules/type-fest": { +-+ "version": "0.6.0", +-+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", +-+ "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", +-+ "dev": true, +-+ "engines": { +-+ "node": ">=8" +-+ } +-+ }, +-+ "node_modules/readable-stream": { +- "version": "2.3.6", +- "resolved": "http://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", +- "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", +-- "requires": { +-+ "dependencies": { +- "core-util-is": "~1.0.0", +- "inherits": "~2.0.3", +- "isarray": "~1.0.0", +-@@ -3929,669 +3668,551 @@ +- "util-deprecate": "~1.0.1" +- } +- }, +-- "readdirp": { +-- "version": "2.2.1", +-- "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", +-- "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", +-- "dev": true, +-- "requires": { +-- "graceful-fs": "^4.1.11", +-- "micromatch": "^3.1.10", +-- "readable-stream": "^2.0.2" +-- } +-- }, +-- "redent": { +-- "version": "1.0.0", +-- "resolved": "https://registry.npmjs.org/redent/-/redent-1.0.0.tgz", +-- "integrity": "sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94=", +-- "dev": true, +-- "requires": { +-- "indent-string": "^2.1.0", +-- "strip-indent": "^1.0.1" +-- } +-- }, +-- "regex-not": { +-- "version": "1.0.2", +-- "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", +-- "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", +-+ "node_modules/readdirp": { +-+ "version": "3.6.0", +-+ "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", +-+ "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", +- "dev": true, +-- "requires": { +-- "extend-shallow": "^3.0.2", +-- "safe-regex": "^1.1.0" +-+ "dependencies": { +-+ "picomatch": "^2.2.1" +-+ }, +-+ "engines": { +-+ "node": ">=8.10.0" +- } +- }, +-- "registry-auth-token": { +-- "version": "3.3.2", +-- "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-3.3.2.tgz", +-- "integrity": "sha512-JL39c60XlzCVgNrO+qq68FoNb56w/m7JYvGR2jT5iR1xBrUA3Mfx5Twk5rqTThPmQKMWydGmq8oFtDlxfrmxnQ==", +-+ "node_modules/redent": { +-+ "version": "3.0.0", +-+ "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", +-+ "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", +- "dev": true, +-- "requires": { +-- "rc": "^1.1.6", +-- "safe-buffer": "^5.0.1" +-+ "dependencies": { +-+ "indent-string": "^4.0.0", +-+ "strip-indent": "^3.0.0" +-+ }, +-+ "engines": { +-+ "node": ">=8" +- } +- }, +-- "registry-url": { +-- "version": "3.1.0", +-- "resolved": "https://registry.npmjs.org/registry-url/-/registry-url-3.1.0.tgz", +-- "integrity": "sha1-PU74cPc93h138M+aOBQyRE4XSUI=", +-- "dev": true, +-- "requires": { +-- "rc": "^1.0.1" +-- } +-+ "node_modules/regenerator-runtime": { +-+ "version": "0.14.1", +-+ "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", +-+ "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==", +-+ "dev": true +- }, +-- "remove-trailing-separator": { +-+ "node_modules/remove-trailing-separator": { +- "version": "1.1.0", +- "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", +- "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=" +- }, +-- "repeat-element": { +-- "version": "1.1.3", +-- "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz", +-- "integrity": "sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==", +-- "dev": true +-- }, +-- "repeat-string": { +-- "version": "1.6.1", +-- "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", +-- "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", +-- "dev": true +-- }, +-- "repeating": { +-- "version": "2.0.1", +-- "resolved": "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz", +-- "integrity": "sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=", +-- "dev": true, +-- "requires": { +-- "is-finite": "^1.0.0" +-- } +-- }, +-- "request": { +-- "version": "2.88.0", +-- "resolved": "https://registry.npmjs.org/request/-/request-2.88.0.tgz", +-- "integrity": "sha512-NAqBSrijGLZdM0WZNsInLJpkJokL72XYjUpnB0iwsRgxh7dB6COrHnTBNwN0E+lHDAJzu7kLAkDeY08z2/A0hg==", +-- "requires": { +-- "aws-sign2": "~0.7.0", +-- "aws4": "^1.8.0", +-- "caseless": "~0.12.0", +-- "combined-stream": "~1.0.6", +-- "extend": "~3.0.2", +-- "forever-agent": "~0.6.1", +-- "form-data": "~2.3.2", +-- "har-validator": "~5.1.0", +-- "http-signature": "~1.2.0", +-- "is-typedarray": "~1.0.0", +-- "isstream": "~0.1.2", +-- "json-stringify-safe": "~5.0.1", +-- "mime-types": "~2.1.19", +-- "oauth-sign": "~0.9.0", +-- "performance-now": "^2.1.0", +-- "qs": "~6.5.2", +-- "safe-buffer": "^5.1.2", +-- "tough-cookie": "~2.4.3", +-- "tunnel-agent": "^0.6.0", +-- "uuid": "^3.3.2" +-- }, +-- "dependencies": { +-- "qs": { +-- "version": "6.5.2", +-- "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", +-- "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==" +-- } +-- } +-- }, +-- "require-directory": { +-+ "node_modules/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": "1.0.1", +-- "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz", +-- "integrity": "sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=", +-- "dev": true +-+ "dev": true, +-+ "engines": { +-+ "node": ">=0.10.0" +-+ } +- }, +-- "resolve": { +-+ "node_modules/resolve": { +- "version": "1.10.0", +- "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.10.0.tgz", +- "integrity": "sha512-3sUr9aq5OfSg2S9pNtPA9hL1FVEAjvfOC4leW0SNf/mpnaakz2a9femSd6LqAww2RaFctwyf1lCqnTHuF1rxDg==", +- "dev": true, +-- "requires": { +-+ "dependencies": { +- "path-parse": "^1.0.6" +- } +- }, +-- "resolve-url": { +-- "version": "0.2.1", +-- "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", +-- "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=", +-- "dev": true +-- }, +-- "ret": { +-- "version": "0.1.15", +-- "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", +-- "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", +-- "dev": true +-+ "node_modules/retry": { +-+ "version": "0.12.0", +-+ "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", +-+ "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==", +-+ "dev": true, +-+ "engines": { +-+ "node": ">= 4" +-+ } +- }, +-- "rimraf": { +-- "version": "2.6.3", +-- "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", +-- "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", +-+ "node_modules/rimraf": { +-+ "version": "3.0.2", +-+ "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", +-+ "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", +-+ "deprecated": "Rimraf versions prior to v4 are no longer supported", +- "dev": true, +-- "requires": { +-+ "dependencies": { +- "glob": "^7.1.3" +-+ }, +-+ "bin": { +-+ "rimraf": "bin.js" +-+ }, +-+ "funding": { +-+ "url": "https://github.com/sponsors/isaacs" +- } +- }, +-- "rxjs": { +-- "version": "6.4.0", +-- "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.4.0.tgz", +-- "integrity": "sha512-Z9Yfa11F6B9Sg/BK9MnqnQ+aQYicPLtilXBp2yUtDt2JRCE0h26d33EnfO3ZxoNxG0T92OUucP3Ct7cpfkdFfw==", +-+ "node_modules/rxjs": { +-+ "version": "7.8.1", +-+ "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz", +-+ "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==", +- "dev": true, +-- "requires": { +-- "tslib": "^1.9.0" +-+ "dependencies": { +-+ "tslib": "^2.1.0" +- } +- }, +-- "safe-buffer": { +-+ "node_modules/safe-buffer": { +- "version": "5.1.2", +- "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", +- "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" +- }, +-- "safe-json-parse": { +-+ "node_modules/safe-json-parse": { +- "version": "1.0.1", +- "resolved": "https://registry.npmjs.org/safe-json-parse/-/safe-json-parse-1.0.1.tgz", +- "integrity": "sha1-PnZyPjjf3aE8mx0poeB//uSzC1c=" +- }, +-- "safe-regex": { +-- "version": "1.1.0", +-- "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", +-- "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=", +-- "dev": true, +-- "requires": { +-- "ret": "~0.1.10" +-- } +-- }, +-- "safer-buffer": { +-+ "node_modules/safer-buffer": { +- "version": "2.1.2", +- "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", +- "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" +- }, +-- "sass-graph": { +-- "version": "2.2.4", +-- "resolved": "https://registry.npmjs.org/sass-graph/-/sass-graph-2.2.4.tgz", +-- "integrity": "sha1-E/vWPNHK8JCLn9k0dq1DpR0eC0k=", +-+ "node_modules/sass-graph": { +-+ "version": "4.0.1", +-+ "resolved": "https://registry.npmjs.org/sass-graph/-/sass-graph-4.0.1.tgz", +-+ "integrity": "sha512-5YCfmGBmxoIRYHnKK2AKzrAkCoQ8ozO+iumT8K4tXJXRVCPf+7s1/9KxTSW3Rbvf+7Y7b4FR3mWyLnQr3PHocA==", +- "dev": true, +-- "requires": { +-+ "dependencies": { +- "glob": "^7.0.0", +-- "lodash": "^4.0.0", +-- "scss-tokenizer": "^0.2.3", +-- "yargs": "^7.0.0" +-+ "lodash": "^4.17.11", +-+ "scss-tokenizer": "^0.4.3", +-+ "yargs": "^17.2.1" +-+ }, +-+ "bin": { +-+ "sassgraph": "bin/sassgraph" +-+ }, +-+ "engines": { +-+ "node": ">=12" +- } +- }, +-- "scss-tokenizer": { +-- "version": "0.2.3", +-- "resolved": "https://registry.npmjs.org/scss-tokenizer/-/scss-tokenizer-0.2.3.tgz", +-- "integrity": "sha1-jrBtualyMzOCTT9VMGQRSYR85dE=", +-+ "node_modules/scss-tokenizer": { +-+ "version": "0.4.3", +-+ "resolved": "https://registry.npmjs.org/scss-tokenizer/-/scss-tokenizer-0.4.3.tgz", +-+ "integrity": "sha512-raKLgf1LI5QMQnG+RxHz6oK0sL3x3I4FN2UDLqgLOGO8hodECNnNh5BXn7fAyBxrA8zVzdQizQ6XjNJQ+uBwMw==", +- "dev": true, +-- "requires": { +-- "js-base64": "^2.1.8", +-- "source-map": "^0.4.2" +-- }, +- "dependencies": { +-- "source-map": { +-- "version": "0.4.4", +-- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz", +-- "integrity": "sha1-66T12pwNyZneaAMti092FzZSA2s=", +-- "dev": true, +-- "requires": { +-- "amdefine": ">=0.0.4" +-- } +-- } +-+ "js-base64": "^2.4.9", +-+ "source-map": "^0.7.3" +- } +- }, +-- "semver": { +-- "version": "5.6.0", +-- "resolved": "https://registry.npmjs.org/semver/-/semver-5.6.0.tgz", +-- "integrity": "sha512-RS9R6R35NYgQn++fkDWaOmqGoj4Ek9gGs+DPxNUZKuwE183xjJroKvyo1IzVFeXvUrvmALy6FWD5xrdJT25gMg==", +-- "dev": true +-+ "node_modules/scss-tokenizer/node_modules/source-map": { +-+ "version": "0.7.4", +-+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", +-+ "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", +-+ "dev": true, +-+ "engines": { +-+ "node": ">= 8" +-+ } +- }, +-- "semver-diff": { +-- "version": "2.1.0", +-- "resolved": "https://registry.npmjs.org/semver-diff/-/semver-diff-2.1.0.tgz", +-- "integrity": "sha1-S7uEN8jTfksM8aaP1ybsbWRdbTY=", +-+ "node_modules/semver": { +-+ "version": "5.7.2", +-+ "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", +-+ "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", +- "dev": true, +-- "requires": { +-- "semver": "^5.0.3" +-+ "bin": { +-+ "semver": "bin/semver" +- } +- }, +-- "send": { +-- "version": "0.16.2", +-- "resolved": "https://registry.npmjs.org/send/-/send-0.16.2.tgz", +-- "integrity": "sha512-E64YFPUssFHEFBvpbbjr44NCLtI1AohxQ8ZSiJjQLskAdKuriYEP6VyGEsRDH8ScozGpkaX1BGvhanqCwkcEZw==", +-- "requires": { +-+ "node_modules/send": { +-+ "version": "0.18.0", +-+ "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", +-+ "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", +-+ "dependencies": { +- "debug": "2.6.9", +-- "depd": "~1.1.2", +-- "destroy": "~1.0.4", +-+ "depd": "2.0.0", +-+ "destroy": "1.2.0", +- "encodeurl": "~1.0.2", +- "escape-html": "~1.0.3", +- "etag": "~1.8.1", +- "fresh": "0.5.2", +-- "http-errors": "~1.6.2", +-- "mime": "1.4.1", +-- "ms": "2.0.0", +-- "on-finished": "~2.3.0", +-- "range-parser": "~1.2.0", +-- "statuses": "~1.4.0" +-- }, +-- "dependencies": { +-- "mime": { +-- "version": "1.4.1", +-- "resolved": "https://registry.npmjs.org/mime/-/mime-1.4.1.tgz", +-- "integrity": "sha512-KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ==" +-- } +-+ "http-errors": "2.0.0", +-+ "mime": "1.6.0", +-+ "ms": "2.1.3", +-+ "on-finished": "2.4.1", +-+ "range-parser": "~1.2.1", +-+ "statuses": "2.0.1" +-+ }, +-+ "engines": { +-+ "node": ">= 0.8.0" +- } +- }, +-- "serve-static": { +-- "version": "1.13.2", +-- "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.13.2.tgz", +-- "integrity": "sha512-p/tdJrO4U387R9oMjb1oj7qSMaMfmOyd4j9hOFoxZe2baQszgHcSWjuya/CiT5kgZZKRudHNOA0pYXOl8rQ5nw==", +-- "requires": { +-+ "node_modules/send/node_modules/ms": { +-+ "version": "2.1.3", +-+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", +-+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" +-+ }, +-+ "node_modules/serve-static": { +-+ "version": "1.15.0", +-+ "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", +-+ "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", +-+ "dependencies": { +- "encodeurl": "~1.0.2", +- "escape-html": "~1.0.3", +-- "parseurl": "~1.3.2", +-- "send": "0.16.2" +-+ "parseurl": "~1.3.3", +-+ "send": "0.18.0" +-+ }, +-+ "engines": { +-+ "node": ">= 0.8.0" +- } +- }, +-- "set-blocking": { +-+ "node_modules/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 +- }, +-- "set-value": { +-- "version": "2.0.0", +-- "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.0.tgz", +-- "integrity": "sha512-hw0yxk9GT/Hr5yJEYnHNKYXkIA8mVJgd9ditYZCe16ZczcaELYYcfvaXesNACk2O8O0nTiPQcQhGUQj8JLzeeg==", +-- "dev": true, +-- "requires": { +-- "extend-shallow": "^2.0.1", +-- "is-extendable": "^0.1.1", +-- "is-plain-object": "^2.0.3", +-- "split-string": "^3.0.1" +-- }, +-- "dependencies": { +-- "extend-shallow": { +-- "version": "2.0.1", +-- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", +-- "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", +-- "dev": true, +-- "requires": { +-- "is-extendable": "^0.1.0" +-- } +-- } +-+ "node_modules/set-function-length": { +-+ "version": "1.2.2", +-+ "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", +-+ "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", +-+ "dependencies": { +-+ "define-data-property": "^1.1.4", +-+ "es-errors": "^1.3.0", +-+ "function-bind": "^1.1.2", +-+ "get-intrinsic": "^1.2.4", +-+ "gopd": "^1.0.1", +-+ "has-property-descriptors": "^1.0.2" +-+ }, +-+ "engines": { +-+ "node": ">= 0.4" +- } +- }, +-- "setprototypeof": { +-- "version": "1.1.0", +-- "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", +-- "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==" +-- }, +-- "shebang-command": { +-+ "node_modules/setprototypeof": { +- "version": "1.2.0", +-- "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", +-- "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", +-+ "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", +-+ "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" +-+ }, +-+ "node_modules/shell-quote": { +-+ "version": "1.8.1", +-+ "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.1.tgz", +-+ "integrity": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==", +- "dev": true, +-- "requires": { +-- "shebang-regex": "^1.0.0" +-+ "funding": { +-+ "url": "https://github.com/sponsors/ljharb" +- } +- }, +-- "shebang-regex": { +-- "version": "1.0.0", +-- "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", +-- "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", +-- "dev": true +-+ "node_modules/side-channel": { +-+ "version": "1.0.6", +-+ "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", +-+ "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", +-+ "dependencies": { +-+ "call-bind": "^1.0.7", +-+ "es-errors": "^1.3.0", +-+ "get-intrinsic": "^1.2.4", +-+ "object-inspect": "^1.13.1" +-+ }, +-+ "engines": { +-+ "node": ">= 0.4" +-+ }, +-+ "funding": { +-+ "url": "https://github.com/sponsors/ljharb" +-+ } +- }, +-- "signal-exit": { +-- "version": "3.0.2", +-- "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz", +-- "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=", +-+ "node_modules/signal-exit": { +-+ "version": "3.0.7", +-+ "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", +-+ "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", +- "dev": true +- }, +-- "snapdragon": { +-- "version": "0.8.2", +-- "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", +-- "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", +-- "dev": true, +-- "requires": { +-- "base": "^0.11.1", +-- "debug": "^2.2.0", +-- "define-property": "^0.2.5", +-- "extend-shallow": "^2.0.1", +-- "map-cache": "^0.2.2", +-- "source-map": "^0.5.6", +-- "source-map-resolve": "^0.5.0", +-- "use": "^3.1.0" +-- }, +-- "dependencies": { +-- "define-property": { +-- "version": "0.2.5", +-- "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", +-- "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", +-- "dev": true, +-- "requires": { +-- "is-descriptor": "^0.1.0" +-- } +-- }, +-- "extend-shallow": { +-- "version": "2.0.1", +-- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", +-- "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", +-- "dev": true, +-- "requires": { +-- "is-extendable": "^0.1.0" +-- } +-- } +-+ "node_modules/simple-update-notifier": { +-+ "version": "2.0.0", +-+ "resolved": "https://registry.npmjs.org/simple-update-notifier/-/simple-update-notifier-2.0.0.tgz", +-+ "integrity": "sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==", +-+ "dev": true, +-+ "dependencies": { +-+ "semver": "^7.5.3" +-+ }, +-+ "engines": { +-+ "node": ">=10" +- } +- }, +-- "snapdragon-node": { +-- "version": "2.1.1", +-- "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", +-- "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", +-- "dev": true, +-- "requires": { +-- "define-property": "^1.0.0", +-- "isobject": "^3.0.0", +-- "snapdragon-util": "^3.0.1" +-- }, +-- "dependencies": { +-- "define-property": { +-- "version": "1.0.0", +-- "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", +-- "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", +-- "dev": true, +-- "requires": { +-- "is-descriptor": "^1.0.0" +-- } +-- }, +-- "is-accessor-descriptor": { +-- "version": "1.0.0", +-- "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", +-- "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", +-- "dev": true, +-- "requires": { +-- "kind-of": "^6.0.0" +-- } +-- }, +-- "is-data-descriptor": { +-- "version": "1.0.0", +-- "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", +-- "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", +-- "dev": true, +-- "requires": { +-- "kind-of": "^6.0.0" +-- } +-- }, +-- "is-descriptor": { +-- "version": "1.0.2", +-- "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", +-- "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", +-- "dev": true, +-- "requires": { +-- "is-accessor-descriptor": "^1.0.0", +-- "is-data-descriptor": "^1.0.0", +-- "kind-of": "^6.0.2" +-- } +-- } +-+ "node_modules/simple-update-notifier/node_modules/semver": { +-+ "version": "7.6.2", +-+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", +-+ "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", +-+ "dev": true, +-+ "bin": { +-+ "semver": "bin/semver.js" +-+ }, +-+ "engines": { +-+ "node": ">=10" +- } +- }, +-- "snapdragon-util": { +-- "version": "3.0.1", +-- "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", +-- "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", +-+ "node_modules/smart-buffer": { +-+ "version": "4.2.0", +-+ "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", +-+ "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", +-+ "dev": true, +-+ "engines": { +-+ "node": ">= 6.0.0", +-+ "npm": ">= 3.0.0" +-+ } +-+ }, +-+ "node_modules/socks": { +-+ "version": "2.8.3", +-+ "resolved": "https://registry.npmjs.org/socks/-/socks-2.8.3.tgz", +-+ "integrity": "sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==", +-+ "dev": true, +-+ "dependencies": { +-+ "ip-address": "^9.0.5", +-+ "smart-buffer": "^4.2.0" +-+ }, +-+ "engines": { +-+ "node": ">= 10.0.0", +-+ "npm": ">= 3.0.0" +-+ } +-+ }, +-+ "node_modules/socks-proxy-agent": { +-+ "version": "7.0.0", +-+ "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-7.0.0.tgz", +-+ "integrity": "sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==", +- "dev": true, +-- "requires": { +-- "kind-of": "^3.2.0" +-+ "dependencies": { +-+ "agent-base": "^6.0.2", +-+ "debug": "^4.3.3", +-+ "socks": "^2.6.2" +- }, +-+ "engines": { +-+ "node": ">= 10" +-+ } +-+ }, +-+ "node_modules/socks-proxy-agent/node_modules/debug": { +-+ "version": "4.3.5", +-+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.5.tgz", +-+ "integrity": "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==", +-+ "dev": true, +- "dependencies": { +-- "kind-of": { +-- "version": "3.2.2", +-- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", +-- "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", +-- "dev": true, +-- "requires": { +-- "is-buffer": "^1.1.5" +-- } +-+ "ms": "2.1.2" +-+ }, +-+ "engines": { +-+ "node": ">=6.0" +-+ }, +-+ "peerDependenciesMeta": { +-+ "supports-color": { +-+ "optional": true +- } +- } +- }, +-- "source-map": { +-- "version": "0.5.7", +-- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", +-- "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", +-+ "node_modules/socks-proxy-agent/node_modules/ms": { +-+ "version": "2.1.2", +-+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", +-+ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", +- "dev": true +- }, +-- "source-map-resolve": { +-- "version": "0.5.2", +-- "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.2.tgz", +-- "integrity": "sha512-MjqsvNwyz1s0k81Goz/9vRBe9SZdB09Bdw+/zYyO+3CuPk6fouTaxscHkgtE8jKvf01kVfl8riHzERQ/kefaSA==", +-- "dev": true, +-- "requires": { +-- "atob": "^2.1.1", +-- "decode-uri-component": "^0.2.0", +-- "resolve-url": "^0.2.1", +-- "source-map-url": "^0.4.0", +-- "urix": "^0.1.0" +-+ "node_modules/source-map": { +-+ "version": "0.6.1", +-+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", +-+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", +-+ "engines": { +-+ "node": ">=0.10.0" +- } +- }, +-- "source-map-url": { +-- "version": "0.4.0", +-- "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz", +-- "integrity": "sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=", +-- "dev": true +-- }, +-- "spawn-command": { +-- "version": "0.0.2-1", +-- "resolved": "https://registry.npmjs.org/spawn-command/-/spawn-command-0.0.2-1.tgz", +-- "integrity": "sha1-YvXpRmmBwbeW3Fkpk34RycaSG9A=", +-+ "node_modules/spawn-command": { +-+ "version": "0.0.2", +-+ "resolved": "https://registry.npmjs.org/spawn-command/-/spawn-command-0.0.2.tgz", +-+ "integrity": "sha512-zC8zGoGkmc8J9ndvml8Xksr1Amk9qBujgbF0JAIWO7kXr43w0h/0GJNM/Vustixu+YE8N/MTrQ7N31FvHUACxQ==", +- "dev": true +- }, +-- "spdx-correct": { +-+ "node_modules/spdx-correct": { +- "version": "3.1.0", +- "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.0.tgz", +- "integrity": "sha512-lr2EZCctC2BNR7j7WzJ2FpDznxky1sjfxvvYEyzxNyb6lZXHODmEoJeFu4JupYlkfha1KZpJyoqiJ7pgA1qq8Q==", +- "dev": true, +-- "requires": { +-+ "dependencies": { +- "spdx-expression-parse": "^3.0.0", +- "spdx-license-ids": "^3.0.0" +- } +- }, +-- "spdx-exceptions": { +-+ "node_modules/spdx-exceptions": { +- "version": "2.2.0", +- "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz", +- "integrity": "sha512-2XQACfElKi9SlVb1CYadKDXvoajPgBVPn/gOQLrTvHdElaVhr7ZEbqJaRnJLVNeaI4cMEAgVCeBMKF6MWRDCRA==", +- "dev": true +- }, +-- "spdx-expression-parse": { +-+ "node_modules/spdx-expression-parse": { +- "version": "3.0.0", +- "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz", +- "integrity": "sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg==", +- "dev": true, +-- "requires": { +-+ "dependencies": { +- "spdx-exceptions": "^2.1.0", +- "spdx-license-ids": "^3.0.0" +- } +- }, +-- "spdx-license-ids": { +-+ "node_modules/spdx-license-ids": { +- "version": "3.0.3", +- "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.3.tgz", +- "integrity": "sha512-uBIcIl3Ih6Phe3XHK1NqboJLdGfwr1UN3k6wSD1dZpmPsIkb8AGNbZYJ1fOBk834+Gxy8rpfDxrS6XLEMZMY2g==", +- "dev": true +- }, +-- "split-string": { +-- "version": "3.1.0", +-- "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", +-- "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", +-- "dev": true, +-- "requires": { +-- "extend-shallow": "^3.0.0" +-- } +-- }, +-- "sshpk": { +-- "version": "1.16.1", +-- "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz", +-- "integrity": "sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==", +-- "requires": { +-- "asn1": "~0.2.3", +-- "assert-plus": "^1.0.0", +-- "bcrypt-pbkdf": "^1.0.0", +-- "dashdash": "^1.12.0", +-- "ecc-jsbn": "~0.1.1", +-- "getpass": "^0.1.1", +-- "jsbn": "~0.1.0", +-- "safer-buffer": "^2.0.2", +-- "tweetnacl": "~0.14.0" +-- }, +-- "dependencies": { +-- "assert-plus": { +-- "version": "1.0.0", +-- "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", +-- "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" +-- } +-- } +-+ "node_modules/sprintf-js": { +-+ "version": "1.1.3", +-+ "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.3.tgz", +-+ "integrity": "sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==", +-+ "dev": true +- }, +-- "static-extend": { +-- "version": "0.1.2", +-- "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", +-- "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=", +-+ "node_modules/ssri": { +-+ "version": "9.0.1", +-+ "resolved": "https://registry.npmjs.org/ssri/-/ssri-9.0.1.tgz", +-+ "integrity": "sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q==", +- "dev": true, +-- "requires": { +-- "define-property": "^0.2.5", +-- "object-copy": "^0.1.0" +-- }, +- "dependencies": { +-- "define-property": { +-- "version": "0.2.5", +-- "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", +-- "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", +-- "dev": true, +-- "requires": { +-- "is-descriptor": "^0.1.0" +-- } +-- } +-+ "minipass": "^3.1.1" +-+ }, +-+ "engines": { +-+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0" +- } +- }, +-- "statuses": { +-- "version": "1.4.0", +-- "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.4.0.tgz", +-- "integrity": "sha512-zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew==" +-+ "node_modules/statuses": { +-+ "version": "2.0.1", +-+ "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", +-+ "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", +-+ "engines": { +-+ "node": ">= 0.8" +-+ } +- }, +-- "stdout-stream": { +-+ "node_modules/stdout-stream": { +- "version": "1.4.1", +- "resolved": "https://registry.npmjs.org/stdout-stream/-/stdout-stream-1.4.1.tgz", +- "integrity": "sha512-j4emi03KXqJWcIeF8eIXkjMFN1Cmb8gUlDYGeBALLPo5qdyTfA9bOtl8m33lRoC+vFMkP3gl0WsDr6+gzxbbTA==", +- "dev": true, +-- "requires": { +-+ "dependencies": { +- "readable-stream": "^2.0.1" +- } +- }, +-- "stream-consume": { +-- "version": "0.1.1", +-- "resolved": "https://registry.npmjs.org/stream-consume/-/stream-consume-0.1.1.tgz", +-- "integrity": "sha512-tNa3hzgkjEP7XbCkbRXe1jpg+ievoa0O4SCFlMOYEscGSS4JJsckGL8swUyAa/ApGU3Ae4t6Honor4HhL+tRyg==" +-+ "node_modules/stream-transform": { +-+ "version": "3.3.2", +-+ "resolved": "https://registry.npmjs.org/stream-transform/-/stream-transform-3.3.2.tgz", +-+ "integrity": "sha512-v64PUnPy9Qw94NGuaEMo+9RHQe4jTBYf+NkTtqkCgeuiNo8NlL0LtLR7fkKWNVFtp3RhIm5Dlxkgm5uz7TDimQ==" +- }, +-- "stream-transform": { +-- "version": "1.0.8", +-- "resolved": "https://registry.npmjs.org/stream-transform/-/stream-transform-1.0.8.tgz", +-- "integrity": "sha512-1q+dL790Ps0NV33rISMq9OLtfDA9KMJZdo1PHZXE85orrWsM4FAh8CVyAOTHO0rhyeM138KNPngBPrx33bFsxw==" +-+ "node_modules/streamsearch": { +-+ "version": "1.1.0", +-+ "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", +-+ "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==", +-+ "engines": { +-+ "node": ">=10.0.0" +-+ } +- }, +-- "streamsearch": { +-- "version": "0.1.2", +-- "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-0.1.2.tgz", +-- "integrity": "sha1-gIudDlb8Jz2Am6VzOOkpkZoanxo=" +-+ "node_modules/string_decoder": { +-+ "version": "1.1.1", +-+ "resolved": "http://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", +-+ "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", +-+ "dependencies": { +-+ "safe-buffer": "~5.1.0" +-+ } +- }, +-- "string-template": { +-+ "node_modules/string-template": { +- "version": "0.2.1", +- "resolved": "https://registry.npmjs.org/string-template/-/string-template-0.2.1.tgz", +- "integrity": "sha1-QpMuWYo1LQH8IuwzZ9nYTuxsmt0=" +- }, +-- "string-width": { +-- "version": "1.0.2", +-- "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", +-- "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", +-- "dev": true, +-- "requires": { +-- "code-point-at": "^1.0.0", +-- "is-fullwidth-code-point": "^1.0.0", +-- "strip-ansi": "^3.0.0" +-+ "node_modules/string-width": { +-+ "version": "4.2.3", +-+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", +-+ "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", +-+ "dependencies": { +-+ "emoji-regex": "^8.0.0", +-+ "is-fullwidth-code-point": "^3.0.0", +-+ "strip-ansi": "^6.0.1" +-+ }, +-+ "engines": { +-+ "node": ">=8" +- } +- }, +-- "string_decoder": { +-- "version": "1.1.1", +-- "resolved": "http://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", +-- "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", +-- "requires": { +-- "safe-buffer": "~5.1.0" +-+ "node_modules/string-width-cjs": { +-+ "name": "string-width", +-+ "version": "4.2.3", +-+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", +-+ "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", +-+ "dependencies": { +-+ "emoji-regex": "^8.0.0", +-+ "is-fullwidth-code-point": "^3.0.0", +-+ "strip-ansi": "^6.0.1" +-+ }, +-+ "engines": { +-+ "node": ">=8" +- } +- }, +-- "strip-ansi": { +-- "version": "3.0.1", +-- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", +-- "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", +-- "dev": true, +-- "requires": { +-- "ansi-regex": "^2.0.0" +-+ "node_modules/strip-ansi": { +-+ "version": "6.0.1", +-+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", +-+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", +-+ "dependencies": { +-+ "ansi-regex": "^5.0.1" +-+ }, +-+ "engines": { +-+ "node": ">=8" +- } +- }, +-- "strip-bom": { +-- "version": "2.0.0", +-- "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", +-- "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", +-- "dev": true, +-- "requires": { +-- "is-utf8": "^0.2.0" +-+ "node_modules/strip-ansi-cjs": { +-+ "name": "strip-ansi", +-+ "version": "6.0.1", +-+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", +-+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", +-+ "dependencies": { +-+ "ansi-regex": "^5.0.1" +-+ }, +-+ "engines": { +-+ "node": ">=8" +- } +- }, +-- "strip-eof": { +-- "version": "1.0.0", +-- "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", +-- "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=", +-- "dev": true +-- }, +-- "strip-indent": { +-- "version": "1.0.1", +-- "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz", +-- "integrity": "sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI=", +-+ "node_modules/strip-indent": { +-+ "version": "3.0.0", +-+ "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", +-+ "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", +- "dev": true, +-- "requires": { +-- "get-stdin": "^4.0.1" +-+ "dependencies": { +-+ "min-indent": "^1.0.0" +-+ }, +-+ "engines": { +-+ "node": ">=8" +- } +- }, +-- "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 +-+ "node_modules/supports-color": { +-+ "version": "7.2.0", +-+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", +-+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", +-+ "dependencies": { +-+ "has-flag": "^4.0.0" +-+ }, +-+ "engines": { +-+ "node": ">=8" +-+ } +- }, +-- "supports-color": { +-- "version": "2.0.0", +-- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", +-- "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", +-- "dev": true +-+ "node_modules/supports-color/node_modules/has-flag": { +-+ "version": "4.0.0", +-+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", +-+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", +-+ "engines": { +-+ "node": ">=8" +-+ } +- }, +-- "tar": { +-- "version": "2.2.1", +-- "resolved": "https://registry.npmjs.org/tar/-/tar-2.2.1.tgz", +-- "integrity": "sha1-jk0qJWwOIYXGsYrWlK7JaLg8sdE=", +-+ "node_modules/tar": { +-+ "version": "6.2.1", +-+ "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.1.tgz", +-+ "integrity": "sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==", +- "dev": true, +-- "requires": { +-- "block-stream": "*", +-- "fstream": "^1.0.2", +-- "inherits": "2" +-+ "dependencies": { +-+ "chownr": "^2.0.0", +-+ "fs-minipass": "^2.0.0", +-+ "minipass": "^5.0.0", +-+ "minizlib": "^2.1.1", +-+ "mkdirp": "^1.0.3", +-+ "yallist": "^4.0.0" +-+ }, +-+ "engines": { +-+ "node": ">=10" +- } +- }, +-- "tar-stream": { +-+ "node_modules/tar-stream": { +- "version": "1.6.2", +- "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-1.6.2.tgz", +- "integrity": "sha512-rzS0heiNf8Xn7/mpdSVVSMAWAoy9bfb1WOTYC78Z0UQKeKa/CWS8FOq0lKGNa8DWKAn9gxjCvMLYc5PGXYlK2A==", +-- "requires": { +-+ "dependencies": { +- "bl": "^1.0.0", +- "buffer-alloc": "^1.2.0", +- "end-of-stream": "^1.0.0", +-@@ -4599,585 +4220,452 @@ +- "readable-stream": "^2.3.0", +- "to-buffer": "^1.1.1", +- "xtend": "^4.0.0" +-+ }, +-+ "engines": { +-+ "node": ">= 0.8.0" +- } +- }, +-- "term-size": { +-- "version": "1.2.0", +-- "resolved": "https://registry.npmjs.org/term-size/-/term-size-1.2.0.tgz", +-- "integrity": "sha1-RYuDiH8oj8Vtb/+/rSYuJmOO+mk=", +-+ "node_modules/tar/node_modules/minipass": { +-+ "version": "5.0.0", +-+ "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", +-+ "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", +- "dev": true, +-- "requires": { +-- "execa": "^0.7.0" +-+ "engines": { +-+ "node": ">=8" +- } +- }, +-- "timed-out": { +-- "version": "4.0.1", +-- "resolved": "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz", +-- "integrity": "sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8=", +-+ "node_modules/tar/node_modules/mkdirp": { +-+ "version": "1.0.4", +-+ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", +-+ "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", +-+ "dev": true, +-+ "bin": { +-+ "mkdirp": "bin/cmd.js" +-+ }, +-+ "engines": { +-+ "node": ">=10" +-+ } +-+ }, +-+ "node_modules/tar/node_modules/yallist": { +-+ "version": "4.0.0", +-+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", +-+ "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", +- "dev": true +- }, +-- "to-buffer": { +-+ "node_modules/to-buffer": { +- "version": "1.1.1", +- "resolved": "https://registry.npmjs.org/to-buffer/-/to-buffer-1.1.1.tgz", +- "integrity": "sha512-lx9B5iv7msuFYE3dytT+KE5tap+rNYw+K4jVkb9R/asAb+pbBSM17jtunHplhBe6RRJdZx3Pn2Jph24O32mOVg==" +- }, +-- "to-object-path": { +-- "version": "0.3.0", +-- "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", +-- "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=", +-+ "node_modules/to-regex-range": { +-+ "version": "5.0.1", +-+ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", +-+ "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", +- "dev": true, +-- "requires": { +-- "kind-of": "^3.0.2" +-- }, +- "dependencies": { +-- "kind-of": { +-- "version": "3.2.2", +-- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", +-- "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", +-- "dev": true, +-- "requires": { +-- "is-buffer": "^1.1.5" +-- } +-- } +-- } +-- }, +-- "to-regex": { +-- "version": "3.0.2", +-- "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", +-- "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", +-- "dev": true, +-- "requires": { +-- "define-property": "^2.0.2", +-- "extend-shallow": "^3.0.2", +-- "regex-not": "^1.0.2", +-- "safe-regex": "^1.1.0" +-+ "is-number": "^7.0.0" +-+ }, +-+ "engines": { +-+ "node": ">=8.0" +- } +- }, +-- "to-regex-range": { +-- "version": "2.1.1", +-- "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", +-- "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", +-- "dev": true, +-- "requires": { +-- "is-number": "^3.0.0", +-- "repeat-string": "^1.6.1" +-+ "node_modules/toidentifier": { +-+ "version": "1.0.1", +-+ "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", +-+ "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", +-+ "engines": { +-+ "node": ">=0.6" +- } +- }, +-- "touch": { +-+ "node_modules/touch": { +- "version": "3.1.0", +- "resolved": "https://registry.npmjs.org/touch/-/touch-3.1.0.tgz", +- "integrity": "sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA==", +- "dev": true, +-- "requires": { +-+ "dependencies": { +- "nopt": "~1.0.10" +- }, +-+ "bin": { +-+ "nodetouch": "bin/nodetouch.js" +-+ } +-+ }, +-+ "node_modules/touch/node_modules/nopt": { +-+ "version": "1.0.10", +-+ "resolved": "https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz", +-+ "integrity": "sha1-bd0hvSoxQXuScn3Vhfim83YI6+4=", +-+ "dev": true, +- "dependencies": { +-- "nopt": { +-- "version": "1.0.10", +-- "resolved": "https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz", +-- "integrity": "sha1-bd0hvSoxQXuScn3Vhfim83YI6+4=", +-- "dev": true, +-- "requires": { +-- "abbrev": "1" +-- } +-- } +-+ "abbrev": "1" +-+ }, +-+ "bin": { +-+ "nopt": "bin/nopt.js" +-+ }, +-+ "engines": { +-+ "node": "*" +-+ } +-+ }, +-+ "node_modules/tree-kill": { +-+ "version": "1.2.2", +-+ "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz", +-+ "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==", +-+ "dev": true, +-+ "bin": { +-+ "tree-kill": "cli.js" +- } +- }, +-- "tough-cookie": { +-- "version": "2.4.3", +-- "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.4.3.tgz", +-- "integrity": "sha512-Q5srk/4vDM54WJsJio3XNn6K2sCG+CQ8G5Wz6bZhRZoAe/+TxjWB/GlFAnYEbkYVlON9FMk/fE3h2RLpPXo4lQ==", +-- "requires": { +-- "psl": "^1.1.24", +-- "punycode": "^1.4.1" +-+ "node_modules/trim-newlines": { +-+ "version": "3.0.1", +-+ "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.1.tgz", +-+ "integrity": "sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==", +-+ "dev": true, +-+ "engines": { +-+ "node": ">=8" +- } +- }, +-- "tree-kill": { +-- "version": "1.2.1", +-- "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.1.tgz", +-- "integrity": "sha512-4hjqbObwlh2dLyW4tcz0Ymw0ggoaVDMveUB9w8kFSQScdRLo0gxO9J7WFcUBo+W3C1TLdFIEwNOWebgZZ0RH9Q==", +-+ "node_modules/true-case-path": { +-+ "version": "2.2.1", +-+ "resolved": "https://registry.npmjs.org/true-case-path/-/true-case-path-2.2.1.tgz", +-+ "integrity": "sha512-0z3j8R7MCjy10kc/g+qg7Ln3alJTodw9aDuVWZa3uiWqfuBMKeAeP2ocWcxoyM3D73yz3Jt/Pu4qPr4wHSdB/Q==", +- "dev": true +- }, +-- "trim-newlines": { +-- "version": "1.0.0", +-- "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz", +-- "integrity": "sha1-WIeWa7WCpFA6QetST301ARgVphM=", +-+ "node_modules/tslib": { +-+ "version": "2.6.3", +-+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz", +-+ "integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==", +- "dev": true +- }, +-- "true-case-path": { +-- "version": "1.0.3", +-- "resolved": "https://registry.npmjs.org/true-case-path/-/true-case-path-1.0.3.tgz", +-- "integrity": "sha512-m6s2OdQe5wgpFMC+pAJ+q9djG82O2jcHPOI6RNg1yy9rCYR+WD6Nbpl32fDpfC56nirdRy+opFa/Vk7HYhqaew==", +-+ "node_modules/type-fest": { +-+ "version": "0.18.1", +-+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz", +-+ "integrity": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==", +- "dev": true, +-- "requires": { +-- "glob": "^7.1.2" +-+ "engines": { +-+ "node": ">=10" +-+ }, +-+ "funding": { +-+ "url": "https://github.com/sponsors/sindresorhus" +- } +- }, +-- "tslib": { +-- "version": "1.9.3", +-- "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.9.3.tgz", +-- "integrity": "sha512-4krF8scpejhaOgqzBEcGM7yDIEfi0/8+8zDRZhNZZ2kjmHJ4hv3zCbQWxoJGz1iw5U0Jl0nma13xzHXcncMavQ==", +-- "dev": true +-- }, +-- "tunnel-agent": { +-- "version": "0.6.0", +-- "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", +-- "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", +-- "requires": { +-- "safe-buffer": "^5.0.1" +-- } +-- }, +-- "tweetnacl": { +-- "version": "0.14.5", +-- "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", +-- "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=" +-- }, +-- "type-is": { +-- "version": "1.6.16", +-- "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.16.tgz", +-- "integrity": "sha512-HRkVv/5qY2G6I8iab9cI7v1bOIdhm94dVjQCPFElW9W+3GeDOSHmy2EBYe4VTApuzolPcmgFTN3ftVJRKR2J9Q==", +-- "requires": { +-+ "node_modules/type-is": { +-+ "version": "1.6.18", +-+ "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", +-+ "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", +-+ "dependencies": { +- "media-typer": "0.3.0", +-- "mime-types": "~2.1.18" +-+ "mime-types": "~2.1.24" +-+ }, +-+ "engines": { +-+ "node": ">= 0.6" +- } +- }, +-- "uglify-js": { +-- "version": "3.4.9", +-- "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.4.9.tgz", +-- "integrity": "sha512-8CJsbKOtEbnJsTyv6LE6m6ZKniqMiFWmm9sRbopbkGs3gMPPfd3Fh8iIA4Ykv5MgaTbqHr4BaoGLJLZNhsrW1Q==", +-+ "node_modules/uglify-js": { +-+ "version": "3.18.0", +-+ "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.18.0.tgz", +-+ "integrity": "sha512-SyVVbcNBCk0dzr9XL/R/ySrmYf0s372K6/hFklzgcp2lBFyXtw4I7BOdDjlLhE1aVqaI/SHWXWmYdlZxuyF38A==", +- "optional": true, +-- "requires": { +-- "commander": "~2.17.1", +-- "source-map": "~0.6.1" +-+ "bin": { +-+ "uglifyjs": "bin/uglifyjs" +- }, +-- "dependencies": { +-- "commander": { +-- "version": "2.17.1", +-- "resolved": "https://registry.npmjs.org/commander/-/commander-2.17.1.tgz", +-- "integrity": "sha512-wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg==", +-- "optional": true +-- }, +-- "source-map": { +-- "version": "0.6.1", +-- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", +-- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", +-- "optional": true +-- } +-- } +-- }, +-- "undefsafe": { +-- "version": "2.0.2", +-- "resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.2.tgz", +-- "integrity": "sha1-Il9rngM3Zj4Njnz9aG/Cg2zKznY=", +-- "dev": true, +-- "requires": { +-- "debug": "^2.2.0" +-- } +-- }, +-- "union-value": { +-- "version": "1.0.0", +-- "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.0.tgz", +-- "integrity": "sha1-XHHDTLW61dzr4+oM0IIHulqhrqQ=", +-- "dev": true, +-- "requires": { +-- "arr-union": "^3.1.0", +-- "get-value": "^2.0.6", +-- "is-extendable": "^0.1.1", +-- "set-value": "^0.4.3" +-- }, +-- "dependencies": { +-- "extend-shallow": { +-- "version": "2.0.1", +-- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", +-- "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", +-- "dev": true, +-- "requires": { +-- "is-extendable": "^0.1.0" +-- } +-- }, +-- "set-value": { +-- "version": "0.4.3", +-- "resolved": "https://registry.npmjs.org/set-value/-/set-value-0.4.3.tgz", +-- "integrity": "sha1-fbCPnT0i3H945Trzw79GZuzfzPE=", +-- "dev": true, +-- "requires": { +-- "extend-shallow": "^2.0.1", +-- "is-extendable": "^0.1.1", +-- "is-plain-object": "^2.0.1", +-- "to-object-path": "^0.3.0" +-- } +-- } +-- } +-- }, +-- "unique-string": { +-- "version": "1.0.0", +-- "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-1.0.0.tgz", +-- "integrity": "sha1-nhBXzKhRq7kzmPizOuGHuZyuwRo=", +-- "dev": true, +-- "requires": { +-- "crypto-random-string": "^1.0.0" +-- } +-- }, +-- "unpipe": { +-- "version": "1.0.0", +-- "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", +-- "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=" +-- }, +-- "unset-value": { +-- "version": "1.0.0", +-- "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", +-- "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=", +-- "dev": true, +-- "requires": { +-- "has-value": "^0.3.1", +-- "isobject": "^3.0.0" +-- }, +-- "dependencies": { +-- "has-value": { +-- "version": "0.3.1", +-- "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", +-- "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=", +-- "dev": true, +-- "requires": { +-- "get-value": "^2.0.3", +-- "has-values": "^0.1.4", +-- "isobject": "^2.0.0" +-- }, +-- "dependencies": { +-- "isobject": { +-- "version": "2.1.0", +-- "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", +-- "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", +-- "dev": true, +-- "requires": { +-- "isarray": "1.0.0" +-- } +-- } +-- } +-- }, +-- "has-values": { +-- "version": "0.1.4", +-- "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", +-- "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=", +-- "dev": true +-- } +-+ "engines": { +-+ "node": ">=0.8.0" +- } +- }, +-- "unzip-response": { +-- "version": "2.0.1", +-- "resolved": "https://registry.npmjs.org/unzip-response/-/unzip-response-2.0.1.tgz", +-- "integrity": "sha1-0vD3N9FrBhXnKmk17QQhRXLVb5c=", +-- "dev": true +-- }, +-- "upath": { +-- "version": "1.1.2", +-- "resolved": "https://registry.npmjs.org/upath/-/upath-1.1.2.tgz", +-- "integrity": "sha512-kXpym8nmDmlCBr7nKdIx8P2jNBa+pBpIUFRnKJ4dr8htyYGJFokkr2ZvERRtUN+9SY+JqXouNgUPtv6JQva/2Q==", +-+ "node_modules/undefsafe": { +-+ "version": "2.0.5", +-+ "resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.5.tgz", +-+ "integrity": "sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==", +- "dev": true +- }, +-- "update-notifier": { +-- "version": "2.5.0", +-- "resolved": "https://registry.npmjs.org/update-notifier/-/update-notifier-2.5.0.tgz", +-- "integrity": "sha512-gwMdhgJHGuj/+wHJJs9e6PcCszpxR1b236igrOkUofGhqJuG+amlIKwApH1IW1WWl7ovZxsX49lMBWLxSdm5Dw==", +-- "dev": true, +-- "requires": { +-- "boxen": "^1.2.1", +-- "chalk": "^2.0.1", +-- "configstore": "^3.0.0", +-- "import-lazy": "^2.1.0", +-- "is-ci": "^1.0.10", +-- "is-installed-globally": "^0.1.0", +-- "is-npm": "^1.0.0", +-- "latest-version": "^3.0.0", +-- "semver-diff": "^2.0.0", +-- "xdg-basedir": "^3.0.0" +-- }, +-- "dependencies": { +-- "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" +-- } +-- }, +-- "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" +-- } +-- } +-+ "node_modules/unique-filename": { +-+ "version": "2.0.1", +-+ "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-2.0.1.tgz", +-+ "integrity": "sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A==", +-+ "dev": true, +-+ "dependencies": { +-+ "unique-slug": "^3.0.0" +-+ }, +-+ "engines": { +-+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0" +- } +- }, +-- "uri-js": { +-- "version": "4.2.2", +-- "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz", +-- "integrity": "sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==", +-- "requires": { +-- "punycode": "^2.1.0" +-- }, +-+ "node_modules/unique-slug": { +-+ "version": "3.0.0", +-+ "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-3.0.0.tgz", +-+ "integrity": "sha512-8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w==", +-+ "dev": true, +- "dependencies": { +-- "punycode": { +-- "version": "2.1.1", +-- "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", +-- "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" +-- } +-+ "imurmurhash": "^0.1.4" +-+ }, +-+ "engines": { +-+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0" +- } +- }, +-- "urix": { +-- "version": "0.1.0", +-- "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", +-- "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=", +-- "dev": true +-- }, +-- "url-parse-lax": { +-+ "node_modules/unpipe": { +- "version": "1.0.0", +-- "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-1.0.0.tgz", +-- "integrity": "sha1-evjzA2Rem9eaJy56FKxovAYJ2nM=", +-- "dev": true, +-- "requires": { +-- "prepend-http": "^1.0.1" +-+ "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", +-+ "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", +-+ "engines": { +-+ "node": ">= 0.8" +- } +- }, +-- "use": { +-- "version": "3.1.1", +-- "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", +-- "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", +-- "dev": true +-- }, +-- "util-deprecate": { +-+ "node_modules/util-deprecate": { +- "version": "1.0.2", +- "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", +- "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" +- }, +-- "utils-merge": { +-+ "node_modules/utils-merge": { +- "version": "1.0.1", +- "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", +-- "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=" +-- }, +-- "uuid": { +-- "version": "3.3.2", +-- "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.3.2.tgz", +-- "integrity": "sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==" +-+ "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=", +-+ "engines": { +-+ "node": ">= 0.4.0" +-+ } +- }, +-- "valid-url": { +-+ "node_modules/valid-url": { +- "version": "1.0.9", +- "resolved": "https://registry.npmjs.org/valid-url/-/valid-url-1.0.9.tgz", +- "integrity": "sha1-HBRHm0DxOXp1eC8RXkCGRHQzogA=" +- }, +-- "validate-npm-package-license": { +-+ "node_modules/validate-npm-package-license": { +- "version": "3.0.4", +- "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", +- "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", +- "dev": true, +-- "requires": { +-+ "dependencies": { +- "spdx-correct": "^3.0.0", +- "spdx-expression-parse": "^3.0.0" +- } +- }, +-- "vary": { +-+ "node_modules/vary": { +- "version": "1.1.2", +- "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", +-- "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=" +-+ "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=", +-+ "engines": { +-+ "node": ">= 0.8" +-+ } +- }, +-- "verror": { +-- "version": "1.10.0", +-- "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", +-- "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", +-- "requires": { +-- "assert-plus": "^1.0.0", +-- "core-util-is": "1.0.2", +-- "extsprintf": "^1.2.0" +-- }, +-- "dependencies": { +-- "assert-plus": { +-- "version": "1.0.0", +-- "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", +-- "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" +-- } +-+ "node_modules/whirlpool": { +-+ "version": "0.0.4", +-+ "resolved": "https://registry.npmjs.org/whirlpool/-/whirlpool-0.0.4.tgz", +-+ "integrity": "sha1-lA5+gG0tP3xB98VCYQRqBvT06Qo=", +-+ "hasInstallScript": true, +-+ "engines": { +-+ "node": ">=0.7.0" +- } +- }, +-- "which": { +-- "version": "1.3.1", +-- "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", +-- "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", +-+ "node_modules/wide-align": { +-+ "version": "1.1.5", +-+ "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", +-+ "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", +- "dev": true, +-- "requires": { +-- "isexe": "^2.0.0" +-+ "dependencies": { +-+ "string-width": "^1.0.2 || 2 || 3 || 4" +- } +- }, +-- "which-module": { +-+ "node_modules/wordwrap": { +- "version": "1.0.0", +-- "resolved": "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz", +-- "integrity": "sha1-u6Y8qGGUiZT/MHc2CJ47lgJsKk8=", +-- "dev": true +-+ "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", +-+ "integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==" +- }, +-- "whirlpool": { +-- "version": "0.0.4", +-- "resolved": "https://registry.npmjs.org/whirlpool/-/whirlpool-0.0.4.tgz", +-- "integrity": "sha1-lA5+gG0tP3xB98VCYQRqBvT06Qo=" +-+ "node_modules/wrap-ansi": { +-+ "version": "8.1.0", +-+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", +-+ "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", +-+ "dependencies": { +-+ "ansi-styles": "^6.1.0", +-+ "string-width": "^5.0.1", +-+ "strip-ansi": "^7.0.1" +-+ }, +-+ "engines": { +-+ "node": ">=12" +-+ }, +-+ "funding": { +-+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1" +-+ } +- }, +-- "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" +-+ "node_modules/wrap-ansi-cjs": { +-+ "name": "wrap-ansi", +-+ "version": "7.0.0", +-+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", +-+ "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", +-+ "dependencies": { +-+ "ansi-styles": "^4.0.0", +-+ "string-width": "^4.1.0", +-+ "strip-ansi": "^6.0.0" +-+ }, +-+ "engines": { +-+ "node": ">=10" +-+ }, +-+ "funding": { +-+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1" +-+ } +-+ }, +-+ "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { +-+ "version": "4.3.0", +-+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", +-+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", +-+ "dependencies": { +-+ "color-convert": "^2.0.1" +-+ }, +-+ "engines": { +-+ "node": ">=8" +-+ }, +-+ "funding": { +-+ "url": "https://github.com/chalk/ansi-styles?sponsor=1" +- } +- }, +-- "widest-line": { +-+ "node_modules/wrap-ansi-cjs/node_modules/color-convert": { +- "version": "2.0.1", +-- "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-2.0.1.tgz", +-- "integrity": "sha512-Ba5m9/Fa4Xt9eb2ELXt77JxVDV8w7qQrH0zS/TWSJdLyAwQjWoOzpzj5lwVftDz6n/EOu3tNACS84v509qwnJA==", +-- "dev": true, +-- "requires": { +-- "string-width": "^2.1.1" +-+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", +-+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", +-+ "dependencies": { +-+ "color-name": "~1.1.4" +-+ }, +-+ "engines": { +-+ "node": ">=7.0.0" +-+ } +-+ }, +-+ "node_modules/wrap-ansi-cjs/node_modules/color-name": { +-+ "version": "1.1.4", +-+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", +-+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" +-+ }, +-+ "node_modules/wrap-ansi/node_modules/ansi-regex": { +-+ "version": "6.0.1", +-+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", +-+ "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", +-+ "engines": { +-+ "node": ">=12" +-+ }, +-+ "funding": { +-+ "url": "https://github.com/chalk/ansi-regex?sponsor=1" +-+ } +-+ }, +-+ "node_modules/wrap-ansi/node_modules/ansi-styles": { +-+ "version": "6.2.1", +-+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", +-+ "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", +-+ "engines": { +-+ "node": ">=12" +- }, +-+ "funding": { +-+ "url": "https://github.com/chalk/ansi-styles?sponsor=1" +-+ } +-+ }, +-+ "node_modules/wrap-ansi/node_modules/emoji-regex": { +-+ "version": "9.2.2", +-+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", +-+ "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" +-+ }, +-+ "node_modules/wrap-ansi/node_modules/string-width": { +-+ "version": "5.1.2", +-+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", +-+ "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", +- "dependencies": { +-- "ansi-regex": { +-- "version": "3.0.0", +-- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", +-- "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", +-- "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 +-- }, +-- "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" +-- } +-- }, +-- "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" +-- } +-- } +-+ "eastasianwidth": "^0.2.0", +-+ "emoji-regex": "^9.2.2", +-+ "strip-ansi": "^7.0.1" +-+ }, +-+ "engines": { +-+ "node": ">=12" +-+ }, +-+ "funding": { +-+ "url": "https://github.com/sponsors/sindresorhus" +- } +- }, +-- "wrap-ansi": { +-- "version": "2.1.0", +-- "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", +-- "integrity": "sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=", +-- "dev": true, +-- "requires": { +-- "string-width": "^1.0.1", +-- "strip-ansi": "^3.0.1" +-+ "node_modules/wrap-ansi/node_modules/strip-ansi": { +-+ "version": "7.1.0", +-+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", +-+ "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", +-+ "dependencies": { +-+ "ansi-regex": "^6.0.1" +-+ }, +-+ "engines": { +-+ "node": ">=12" +-+ }, +-+ "funding": { +-+ "url": "https://github.com/chalk/strip-ansi?sponsor=1" +- } +- }, +-- "wrappy": { +-+ "node_modules/wrappy": { +- "version": "1.0.2", +- "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", +- "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" +- }, +-- "write-file-atomic": { +-- "version": "2.4.2", +-- "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.2.tgz", +-- "integrity": "sha512-s0b6vB3xIVRLWywa6X9TOMA7k9zio0TMOsl9ZnDkliA/cfJlpHXAscj0gbHVJiTdIuAYpIyqS5GW91fqm6gG5g==", +-- "dev": true, +-- "requires": { +-- "graceful-fs": "^4.1.11", +-- "imurmurhash": "^0.1.4", +-- "signal-exit": "^3.0.2" +-- } +-- }, +-- "xdg-basedir": { +-- "version": "3.0.0", +-- "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-3.0.0.tgz", +-- "integrity": "sha1-SWsswQnsqNus/i3HK2A8F8WHCtQ=", +-- "dev": true +-- }, +-- "xtend": { +-+ "node_modules/xtend": { +- "version": "4.0.1", +- "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", +-- "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=" +-+ "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=", +-+ "engines": { +-+ "node": ">=0.4" +-+ } +- }, +-- "y18n": { +-- "version": "3.2.1", +-- "resolved": "https://registry.npmjs.org/y18n/-/y18n-3.2.1.tgz", +-- "integrity": "sha1-bRX7qITAhnnA136I53WegR4H+kE=", +-- "dev": true +-+ "node_modules/yargs": { +-+ "version": "17.7.2", +-+ "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", +-+ "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", +-+ "dev": true, +-+ "dependencies": { +-+ "cliui": "^8.0.1", +-+ "escalade": "^3.1.1", +-+ "get-caller-file": "^2.0.5", +-+ "require-directory": "^2.1.1", +-+ "string-width": "^4.2.3", +-+ "y18n": "^5.0.5", +-+ "yargs-parser": "^21.1.1" +-+ }, +-+ "engines": { +-+ "node": ">=12" +-+ } +- }, +-- "yallist": { +-- "version": "2.1.2", +-- "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", +-- "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=", +-- "dev": true +-+ "node_modules/yargs-parser": { +-+ "version": "20.2.9", +-+ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", +-+ "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", +-+ "dev": true, +-+ "engines": { +-+ "node": ">=10" +-+ } +- }, +-- "yargs": { +-- "version": "7.1.0", +-- "resolved": "https://registry.npmjs.org/yargs/-/yargs-7.1.0.tgz", +-- "integrity": "sha1-a6MY6xaWFyf10oT46gA+jWFU0Mg=", +-- "dev": true, +-- "requires": { +-- "camelcase": "^3.0.0", +-- "cliui": "^3.2.0", +-- "decamelize": "^1.1.1", +-- "get-caller-file": "^1.0.1", +-- "os-locale": "^1.4.0", +-- "read-pkg-up": "^1.0.1", +-- "require-directory": "^2.1.1", +-- "require-main-filename": "^1.0.1", +-- "set-blocking": "^2.0.0", +-- "string-width": "^1.0.2", +-- "which-module": "^1.0.0", +-- "y18n": "^3.2.1", +-- "yargs-parser": "^5.0.0" +-- }, +-- "dependencies": { +-- "camelcase": { +-- "version": "3.0.0", +-- "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", +-- "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=", +-- "dev": true +-- } +-+ "node_modules/yargs/node_modules/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, +-+ "engines": { +-+ "node": "6.* || 8.* || >= 10.*" +- } +- }, +-- "yargs-parser": { +-- "version": "5.0.0", +-- "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-5.0.0.tgz", +-- "integrity": "sha1-J17PDX/+Bcd+ZOfIbkzZS/DhIoo=", +-+ "node_modules/yargs/node_modules/y18n": { +-+ "version": "5.0.8", +-+ "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", +-+ "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", +- "dev": true, +-- "requires": { +-- "camelcase": "^3.0.0" +-- }, +-- "dependencies": { +-- "camelcase": { +-- "version": "3.0.0", +-- "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", +-- "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=", +-- "dev": true +-- } +-+ "engines": { +-+ "node": ">=10" +-+ } +-+ }, +-+ "node_modules/yargs/node_modules/yargs-parser": { +-+ "version": "21.1.1", +-+ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", +-+ "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", +-+ "dev": true, +-+ "engines": { +-+ "node": ">=12" +- } +- }, +-- "zip-stream": { +-+ "node_modules/zip-stream": { +- "version": "1.2.0", +- "resolved": "https://registry.npmjs.org/zip-stream/-/zip-stream-1.2.0.tgz", +- "integrity": "sha1-qLxF9MG0lpnGuQGYuqyqzbzUugQ=", +-- "requires": { +-+ "dependencies": { +- "archiver-utils": "^1.3.0", +- "compress-commons": "^1.2.0", +- "lodash": "^4.8.0", +- "readable-stream": "^2.0.0" +-+ }, +-+ "engines": { +-+ "node": ">= 0.10.0" +- } +- } +- } +-diff --git a/package.json b/package.json +-index c3d80ac..b3ab9c4 100644 +---- a/package.json +-+++ b/package.json +-@@ -14,23 +14,23 @@ +- "license": "ISC", +- "dependencies": { +- "archiver": "^2.1.1", +-+ "axios": "^1.7.2", +- "body-parser": "^1.18.2", +- "clarifai": "^2.9.0", +- "cors": "^2.8.5", +-- "csv": "^3.0.2", +-- "ejs": "^2.6.1", +-+ "csv": "^6.3.9", +-+ "ejs": "^3.1.10", +- "express": "^4.16.3", +- "express-busboy": "^7.0.0", +-- "express-handlebars": "^3.0.2", +-+ "express-handlebars": "^7.1.3", +- "localforage": "^1.7.3", +- "minimist": "^1.2.0", +- "mkdirp": "^0.5.1", +-- "request": "^2.88.0", +- "whirlpool": "0.0.4" +- }, +- "devDependencies": { +-- "concurrently": "^4.1.0", +-- "node-sass": "^4.11.0", +-- "nodemon": "^1.18.10" +-+ "concurrently": "^8.2.2", +-+ "node-sass": "^9.0.0", +-+ "nodemon": "^3.1.4" +- } +- } +-diff --git a/update-dependencies.patch b/update-dependencies.patch +-new file mode 100644 +-index 0000000..9f3b117 +---- /dev/null +-+++ b/update-dependencies.patch +-@@ -0,0 +1,9231 @@ +-+diff --git a/controllers/text.js b/controllers/text.js +-+index fca8635..ad9d8a9 100644 +-+--- a/controllers/text.js +-++++ b/controllers/text.js +-+@@ -1,4 +1,4 @@ +-+-const request = require('request'); +-++const axios = require('axios'); +-+ const base_url = "https://api.uclassify.com/v1/"; +-+ const async = require('async'); +-+ +-+@@ -8,22 +8,19 @@ function health(req, res){ +-+ } +-+ +-+ function getClassifierInformation(req, res) { +-+- let read_token = req.body.read_token +-+- var classifier_id = req.body.classifier_id +-++ let read_token = req.body.read_token; +-++ var classifier_id = req.body.classifier_id; +-+ let username = req.body.username; +-+ get_classifier_url = base_url + username + "/" + classifier_id; +-+ token_text = "Token " + read_token; +-+- request.get({ +-+- url:get_classifier_url, +-+- headers: {'Content-Type': 'application/json', 'Authorization': token_text}}, +-+- function(err,httpResponse){ +-+- if(err){ +-+- res.json({error: err.message}); +-+- return; +-+- } else { +-+- res.json(JSON.parse(httpResponse.body)); +-+- return; +-+- } +-++ axios.get(get_classifier_url, { +-++ headers: {'Content-Type': 'application/json', 'Authorization': token_text} +-++ }) +-++ .then(response => { +-++ res.json(response.data); +-++ }) +-++ .catch(err => { +-++ res.json({error: err.message}); +-+ }); +-+ } +-+ +-+@@ -38,19 +35,15 @@ function addExamples(req, res) { +-+ let training_data = req.body.texts; +-+ var create_url = base_url + "me/" + classifier_name + "/" + class_name + "/train"; +-+ let token_text = 'Token ' + write_token; +-+- request.post({ +-+- url:create_url, +-+- headers: {'Content-Type': 'application/json', 'Authorization': token_text}, +-+- body: {texts: training_data}, json: true}, +-+- function(err, httpResponse){ +-+- if(err){ +-+- res.json({error: err.message}); +-+- return; +-+- } else { +-+- console.log(httpResponse.statusCode); +-+- res.json(); +-+- return; +-+- } +-++ axios.post(create_url, {texts: training_data}, { +-++ headers: {'Content-Type': 'application/json', 'Authorization': token_text} +-++ }) +-++ .then(response => { +-++ console.log(response.status); +-++ res.json(); +-++ }) +-++ .catch(err => { +-++ res.json({error: err.message}); +-+ }); +-+ } +-+ +-+@@ -60,19 +53,15 @@ function createClass(req, res) { +-+ let class_name = req.body.class_name; +-+ var create_url = base_url + "me/" + classifier_name + "/addClass"; +-+ let token_text = 'Token ' + write_token; +-+- request.post({ +-+- url:create_url, +-+- headers: {'Content-Type': 'application/json', 'Authorization': token_text}, +-+- body: {className: class_name}, json: true}, +-+- function(err, httpResponse){ +-+- if(err){ +-+- res.json({error: err.message}); +-+- return; +-+- } else { +-+- console.log(httpResponse); +-+- res.json(); +-+- return; +-+- } +-++ axios.post(create_url, {className: class_name}, { +-++ headers: {'Content-Type': 'application/json', 'Authorization': token_text} +-++ }) +-++ .then(response => { +-++ console.log(response); +-++ res.json(); +-++ }) +-++ .catch(err => { +-++ res.json({error: err.message}); +-+ }); +-+ } +-+ +-+@@ -87,19 +76,15 @@ function createClassifier(req, res) { +-+ console.log(classifier_name) +-+ var create_url = base_url + "me/"; +-+ let token_text = 'Token ' + write_token; +-+- request.post({ +-+- url:create_url, +-+- headers: {'Content-Type': 'application/json', 'Authorization': token_text}, +-+- body: {classifierName: classifier_name}, json: true}, +-+- function(err, httpResponse){ +-+- if(err){ +-+- res.json({error: err.message}); +-+- return; +-+- } else { +-+- console.log(httpResponse); +-+- res.json(); +-+- return; +-+- } +-++ axios.post(create_url, {classifierName: classifier_name}, { +-++ headers: {'Content-Type': 'application/json', 'Authorization': token_text} +-++ }) +-++ .then(response => { +-++ console.log(response); +-++ res.json(); +-++ }) +-++ .catch(err => { +-++ res.json({error: err.message}); +-+ }); +-+ } +-+ +-+@@ -108,19 +93,15 @@ function delClassifier(req, res) { +-+ let write_token = req.body.write_token; +-+ var del_url = base_url + "me/" + classifier_id; +-+ let token_text = 'Token ' + write_token; +-+- request.delete({ +-+- url:del_url, +-+- headers: {'Content-Type': 'application/json', 'Authorization': token_text}}, +-+- function(err,httpResponse){ +-+- if(err){ +-+- res.json({error: err.message}); +-+- return; +-+- } else { +-+- // console.log(httpResponse); +-+- res.json(); +-+- return; +-+- } +-+- }); +-++ axios.delete(del_url, { +-++ headers: {'Content-Type': 'application/json', 'Authorization': token_text} +-++ }) +-++ .then(response => { +-++ res.json(); +-++ }) +-++ .catch(err => { +-++ res.json({error: err.message}); +-++ }); +-+ } +-+ +-+ function classify(req, res) { +-+@@ -135,29 +116,26 @@ function classify(req, res) { +-+ let classifyURL = base_url+classify_username+'/'+classifier_id+'/classify'; +-+ let token_text = 'Token ' + token; +-+ +-+- request.post({ +-+- url:classifyURL, +-+- headers: {'Content-Type': 'application/json', 'Authorization': token_text}, +-+- body: {texts: [phrase]}, json: true}, +-+- function(err,httpResponse, body){ +-+- if(httpResponse.statusCode === 200){ +-+- res.json(body[0].classification); +-+- return; +-+- } else { +-+- var error = errorHandler(err, httpResponse, body); +-+- res.json({error: error}); +-+- } +-++ axios.post(classifyURL, {texts: [phrase]}, { +-++ headers: {'Content-Type': 'application/json', 'Authorization': token_text} +-++ }) +-++ .then(response => { +-++ res.json(response.data[0].classification); +-++ }) +-++ .catch(err => { +-++ var error = errorHandler(err, response); +-++ res.json({error: error}); +-+ }); +-+ } +-+ +-+ function errorHandler(err, httpResponse){ +-+- if(httpResponse.statusCode === 413 || httpResponse.statusCode === 200){ +-++ if(httpResponse.status === 413 || httpResponse.status === 200){ +-+ return 'Request entity too large'; +-+- } if(httpResponse.statusCode === 530){ +-++ } if(httpResponse.status === 530){ +-+ return 'uClassify Service Unavailable'; +-+- } if(httpResponse.statusCode === 400){ +-++ } if(httpResponse.status === 400){ +-+ return 'Bad Request. Check your text again.'; +-+- } if(httpResponse.statusCode === 500){ +-++ } if(httpResponse.status === 500){ +-+ return 'uClassify has an internal server error.'; +-+ } else { +-+ return 'Could not classify the text. uClassify service may be unavailable.'; +-+@@ -170,18 +148,15 @@ function removeClass(req, res){ +-+ let write_token = req.body.write_token; +-+ var del_url = base_url + "me/" + classifier_id + "/" + class_name; +-+ let token_text = 'Token ' + write_token; +-+- request.delete({ +-+- url: del_url, +-+- headers: {'Content-Type': 'application/json', 'Authorization': token_text}}, +-+- function(err,httpResponse){ +-+- if(err){ +-+- res.json({error: err.message}); +-+- return; +-+- } else { +-+- res.json(); +-+- return; +-+- } +-+- }); +-++ axios.delete(del_url, { +-++ headers: {'Content-Type': 'application/json', 'Authorization': token_text} +-++ }) +-++ .then(response => { +-++ res.json(); +-++ }) +-++ .catch(err => { +-++ res.json({error: err.message}); +-++ }); +-+ } +-+ +-+ function untrain(req, res){ +-+@@ -191,19 +166,15 @@ function untrain(req, res){ +-+ let training_data = req.body.training_data; +-+ var untrain_url = base_url + "me/" + classifier_name + "/" + class_name + "/untrain"; +-+ let token_text = 'Token ' + write_token; +-+- request.post({ +-+- url: untrain_url, +-+- headers: {'Content-Type': 'application/json', 'Authorization': token_text}, +-+- body: {texts: training_data}, json: true}, +-+- function(err, httpResponse){ +-+- if(err){ +-+- res.json({error: err.message}); +-+- return; +-+- } else { +-+- console.log(httpResponse); +-+- res.json(); +-+- return; +-+- } +-++ axios.post(untrain_url, {texts: training_data}, { +-++ headers: {'Content-Type': 'application/json', 'Authorization': token_text} +-++ }) +-++ .then(response => { +-++ console.log(response); +-++ res.json(); +-++ }) +-++ .catch(err => { +-++ res.json({error: err.message}); +-+ }); +-+ } +-+ +-+@@ -216,7 +187,7 @@ function trainAll(req, res) { +-+   Object.keys(training_data).forEach((key) => { +-+     functionsToExecute.push(getTrainLabelFunction(writeAPIKey, classifierName, key, training_data[key])); +-+   }); +-+- +-++ +-+ async.series(functionsToExecute, (err, results) => { +-+ if (err) { +-+ var errorMessages = []; +-+@@ -242,57 +213,48 @@ function getCreateClassifierFunction(writeAPIKey, classifierName) { +-+   return function (callback) { +-+ var create_url = base_url + "me/"; +-+ let token_text = 'Token ' + writeAPIKey; +-+- request.post({ +-+- url:create_url, +-+- headers: {'Content-Type': 'application/json', 'Authorization': token_text}, +-+- body: {classifierName: classifierName}, json: true}, +-+- function(err, body){ +-+- if(err){ +-+- callback(err, body.statusCode); +-+- return; +-+- } else { +-+- callback(null, body.statusCode); +-+- } +-++ axios.post(create_url, {classifierName: classifierName}, { +-++ headers: {'Content-Type': 'application/json', 'Authorization': token_text} +-++ }) +-++ .then(response => { +-++ callback(null, response.status); +-++ }) +-++ .catch(err => { +-++ callback(err, err.response.status); +-+ }); +-+ }; +-+ } +-+ +-+ +-+ function getTrainLabelFunction(writeAPIKey, classifierName, label, labelData) { +-+- return function (callback) { +-++ return function (callback) { +-+ let class_name = label; +-+ var create_url = base_url + "me/" + classifierName + "/addClass"; +-+ let token_text = 'Token ' + writeAPIKey; +-+ let training_data = labelData; +-+ +-+ //first create the class +-+- request.post({ +-+- url:create_url, +-+- headers: {'Content-Type': 'application/json', 'Authorization': token_text}, +-+- body: {className: class_name}, json: true}, +-+- function(err, body){ +-+- if(err){ +-+- callback(err, body.statusCode); +-+- return; +-+- } else { +-+- callback(err, body.statusCode); +-+- return; +-+- } +-++ axios.post(create_url, {className: class_name}, { +-++ headers: {'Content-Type': 'application/json', 'Authorization': token_text} +-++ }) +-++ .then(response => { +-++ callback(null, response.status); +-++ }) +-++ .catch(err => { +-++ callback(err, err.response.status); +-+ }); +-+- +-+- train_url = base_url + "me/" + classifierName + "/" + class_name + "/train"; +-++ +-++ train_url = base_url + "me/" + classifierName + "/" + class_name + "/train"; +-+ //train the label by adding examples +-+- request.post({ +-+- url:train_url, +-+- headers: {'Content-Type': 'application/json', 'Authorization': token_text}, +-+- body: {texts: training_data}, json: true}, +-+- function(err, body){ +-+- if(err){ +-+- callback(err, body.statusCode); +-+- return; +-+- } +-++ axios.post(train_url, {texts: training_data}, { +-++ headers: {'Content-Type': 'application/json', 'Authorization': token_text} +-++ }) +-++ .then(response => { +-++ callback(null, response.status); +-++ }) +-++ .catch(err => { +-++ callback(err, err.response.status); +-+ }); +-+- +-+ } +-+ } +-+ +-+diff --git a/index.js b/index.js +-+index 83b7a53..e85f56d 100644 +-+--- a/index.js +-++++ b/index.js +-+@@ -8,17 +8,16 @@ const config = require('./config') +-+ const bb = require('express-busboy') +-+ const https = require('https') +-+ const args = require('minimist')(process.argv.slice(2)) +-+-const expressHandlebars = require('express-handlebars') +-++const { create } = require('express-handlebars') +-+ +-+ const app = express() +-+ app.use(cors()) +-+ +-+-app.engine( +-+- 'handlebars', +-+- expressHandlebars({ +-+- defaultLayout: 'main' +-+- }) +-+-) +-++const hbs = create({ +-++ defaultLayout: 'main' +-++}) +-++ +-++app.engine('handlebars', hbs.engine) +-+ app.set('view engine', 'handlebars') +-+ +-+ app.use(express.static(path.join(__dirname, 'static'))) +-+@@ -52,4 +51,3 @@ if(args.http == true) { +-+ console.log(`Server running http://localhost:${config.SERVER_PORT}`) +-+ }) +-+ } +-+- +-+diff --git a/package-lock.json b/package-lock.json +-+index cd1f876..e690877 100644 +-+--- a/package-lock.json +-++++ b/package-lock.json +-+@@ -1,130 +1,381 @@ +-+ { +-+ "name": "cognimates-web", +-+ "version": "1.0.0", +-+- "lockfileVersion": 1, +-++ "lockfileVersion": 3, +-+ "requires": true, +-+- "dependencies": { +-+- "abbrev": { +-++ "packages": { +-++ "": { +-++ "name": "cognimates-web", +-++ "version": "1.0.0", +-++ "license": "ISC", +-++ "dependencies": { +-++ "archiver": "^2.1.1", +-++ "axios": "^1.7.2", +-++ "body-parser": "^1.18.2", +-++ "clarifai": "^2.9.0", +-++ "cors": "^2.8.5", +-++ "csv": "^6.3.9", +-++ "ejs": "^3.1.10", +-++ "express": "^4.16.3", +-++ "express-busboy": "^7.0.0", +-++ "express-handlebars": "^7.1.3", +-++ "localforage": "^1.7.3", +-++ "minimist": "^1.2.0", +-++ "mkdirp": "^0.5.1", +-++ "whirlpool": "0.0.4" +-++ }, +-++ "devDependencies": { +-++ "concurrently": "^8.2.2", +-++ "node-sass": "^9.0.0", +-++ "nodemon": "^3.1.4" +-++ } +-++ }, +-++ "node_modules/@babel/code-frame": { +-++ "version": "7.24.7", +-++ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.7.tgz", +-++ "integrity": "sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==", +-++ "dev": true, +-++ "dependencies": { +-++ "@babel/highlight": "^7.24.7", +-++ "picocolors": "^1.0.0" +-++ }, +-++ "engines": { +-++ "node": ">=6.9.0" +-++ } +-++ }, +-++ "node_modules/@babel/helper-validator-identifier": { +-++ "version": "7.24.7", +-++ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz", +-++ "integrity": "sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==", +-++ "dev": true, +-++ "engines": { +-++ "node": ">=6.9.0" +-++ } +-++ }, +-++ "node_modules/@babel/highlight": { +-++ "version": "7.24.7", +-++ "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.7.tgz", +-++ "integrity": "sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==", +-++ "dev": true, +-++ "dependencies": { +-++ "@babel/helper-validator-identifier": "^7.24.7", +-++ "chalk": "^2.4.2", +-++ "js-tokens": "^4.0.0", +-++ "picocolors": "^1.0.0" +-++ }, +-++ "engines": { +-++ "node": ">=6.9.0" +-++ } +-++ }, +-++ "node_modules/@babel/highlight/node_modules/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, +-++ "dependencies": { +-++ "ansi-styles": "^3.2.1", +-++ "escape-string-regexp": "^1.0.5", +-++ "supports-color": "^5.3.0" +-++ }, +-++ "engines": { +-++ "node": ">=4" +-++ } +-++ }, +-++ "node_modules/@babel/highlight/node_modules/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, +-++ "dependencies": { +-++ "has-flag": "^3.0.0" +-++ }, +-++ "engines": { +-++ "node": ">=4" +-++ } +-++ }, +-++ "node_modules/@babel/runtime": { +-++ "version": "7.24.7", +-++ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.24.7.tgz", +-++ "integrity": "sha512-UwgBRMjJP+xv857DCngvqXI3Iq6J4v0wXmwc6sapg+zyhbwmQX67LUEFrkK5tbyJ30jGuG3ZvWpBiB9LCy1kWw==", +-++ "dev": true, +-++ "dependencies": { +-++ "regenerator-runtime": "^0.14.0" +-++ }, +-++ "engines": { +-++ "node": ">=6.9.0" +-++ } +-++ }, +-++ "node_modules/@gar/promisify": { +-++ "version": "1.1.3", +-++ "resolved": "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.3.tgz", +-++ "integrity": "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==", +-++ "dev": true +-++ }, +-++ "node_modules/@isaacs/cliui": { +-++ "version": "8.0.2", +-++ "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", +-++ "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", +-++ "dependencies": { +-++ "string-width": "^5.1.2", +-++ "string-width-cjs": "npm:string-width@^4.2.0", +-++ "strip-ansi": "^7.0.1", +-++ "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", +-++ "wrap-ansi": "^8.1.0", +-++ "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" +-++ }, +-++ "engines": { +-++ "node": ">=12" +-++ } +-++ }, +-++ "node_modules/@isaacs/cliui/node_modules/ansi-regex": { +-++ "version": "6.0.1", +-++ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", +-++ "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", +-++ "engines": { +-++ "node": ">=12" +-++ }, +-++ "funding": { +-++ "url": "https://github.com/chalk/ansi-regex?sponsor=1" +-++ } +-++ }, +-++ "node_modules/@isaacs/cliui/node_modules/emoji-regex": { +-++ "version": "9.2.2", +-++ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", +-++ "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" +-++ }, +-++ "node_modules/@isaacs/cliui/node_modules/string-width": { +-++ "version": "5.1.2", +-++ "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", +-++ "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", +-++ "dependencies": { +-++ "eastasianwidth": "^0.2.0", +-++ "emoji-regex": "^9.2.2", +-++ "strip-ansi": "^7.0.1" +-++ }, +-++ "engines": { +-++ "node": ">=12" +-++ }, +-++ "funding": { +-++ "url": "https://github.com/sponsors/sindresorhus" +-++ } +-++ }, +-++ "node_modules/@isaacs/cliui/node_modules/strip-ansi": { +-++ "version": "7.1.0", +-++ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", +-++ "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", +-++ "dependencies": { +-++ "ansi-regex": "^6.0.1" +-++ }, +-++ "engines": { +-++ "node": ">=12" +-++ }, +-++ "funding": { +-++ "url": "https://github.com/chalk/strip-ansi?sponsor=1" +-++ } +-++ }, +-++ "node_modules/@npmcli/fs": { +-++ "version": "2.1.2", +-++ "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-2.1.2.tgz", +-++ "integrity": "sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ==", +-++ "dev": true, +-++ "dependencies": { +-++ "@gar/promisify": "^1.1.3", +-++ "semver": "^7.3.5" +-++ }, +-++ "engines": { +-++ "node": "^12.13.0 || ^14.15.0 || >=16.0.0" +-++ } +-++ }, +-++ "node_modules/@npmcli/fs/node_modules/semver": { +-++ "version": "7.6.2", +-++ "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", +-++ "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", +-++ "dev": true, +-++ "bin": { +-++ "semver": "bin/semver.js" +-++ }, +-++ "engines": { +-++ "node": ">=10" +-++ } +-++ }, +-++ "node_modules/@npmcli/move-file": { +-++ "version": "2.0.1", +-++ "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-2.0.1.tgz", +-++ "integrity": "sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ==", +-++ "deprecated": "This functionality has been moved to @npmcli/fs", +-++ "dev": true, +-++ "dependencies": { +-++ "mkdirp": "^1.0.4", +-++ "rimraf": "^3.0.2" +-++ }, +-++ "engines": { +-++ "node": "^12.13.0 || ^14.15.0 || >=16.0.0" +-++ } +-++ }, +-++ "node_modules/@npmcli/move-file/node_modules/mkdirp": { +-++ "version": "1.0.4", +-++ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", +-++ "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", +-++ "dev": true, +-++ "bin": { +-++ "mkdirp": "bin/cmd.js" +-++ }, +-++ "engines": { +-++ "node": ">=10" +-++ } +-++ }, +-++ "node_modules/@pkgjs/parseargs": { +-++ "version": "0.11.0", +-++ "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", +-++ "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", +-++ "optional": true, +-++ "engines": { +-++ "node": ">=14" +-++ } +-++ }, +-++ "node_modules/@tootallnate/once": { +-++ "version": "2.0.0", +-++ "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz", +-++ "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==", +-++ "dev": true, +-++ "engines": { +-++ "node": ">= 10" +-++ } +-++ }, +-++ "node_modules/@types/minimist": { +-++ "version": "1.2.5", +-++ "resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.5.tgz", +-++ "integrity": "sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==", +-++ "dev": true +-++ }, +-++ "node_modules/@types/normalize-package-data": { +-++ "version": "2.4.4", +-++ "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz", +-++ "integrity": "sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==", +-++ "dev": true +-++ }, +-++ "node_modules/abbrev": { +-+ "version": "1.1.1", +-+ "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", +-+ "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", +-+ "dev": true +-+ }, +-+- "accepts": { +-+- "version": "1.3.5", +-+- "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.5.tgz", +-+- "integrity": "sha1-63d99gEXI6OxTopywIBcjoZ0a9I=", +-+- "requires": { +-+- "mime-types": "~2.1.18", +-+- "negotiator": "0.6.1" +-++ "node_modules/accepts": { +-++ "version": "1.3.8", +-++ "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", +-++ "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", +-++ "dependencies": { +-++ "mime-types": "~2.1.34", +-++ "negotiator": "0.6.3" +-++ }, +-++ "engines": { +-++ "node": ">= 0.6" +-++ } +-++ }, +-++ "node_modules/agent-base": { +-++ "version": "6.0.2", +-++ "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", +-++ "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", +-++ "dev": true, +-++ "dependencies": { +-++ "debug": "4" +-++ }, +-++ "engines": { +-++ "node": ">= 6.0.0" +-+ } +-+ }, +-+- "ajv": { +-+- "version": "6.10.0", +-+- "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.10.0.tgz", +-+- "integrity": "sha512-nffhOpkymDECQyR0mnsUtoCE8RlX38G0rYP+wgLWFyZuUyuuojSSvi/+euOiQBIn63whYwYVIIH1TvE3tu4OEg==", +-+- "requires": { +-+- "fast-deep-equal": "^2.0.1", +-+- "fast-json-stable-stringify": "^2.0.0", +-+- "json-schema-traverse": "^0.4.1", +-+- "uri-js": "^4.2.2" +-++ "node_modules/agent-base/node_modules/debug": { +-++ "version": "4.3.5", +-++ "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.5.tgz", +-++ "integrity": "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==", +-++ "dev": true, +-++ "dependencies": { +-++ "ms": "2.1.2" +-++ }, +-++ "engines": { +-++ "node": ">=6.0" +-++ }, +-++ "peerDependenciesMeta": { +-++ "supports-color": { +-++ "optional": true +-++ } +-+ } +-+ }, +-+- "amdefine": { +-+- "version": "1.0.1", +-+- "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz", +-+- "integrity": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=", +-++ "node_modules/agent-base/node_modules/ms": { +-++ "version": "2.1.2", +-++ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", +-++ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", +-+ "dev": true +-+ }, +-+- "ansi-align": { +-+- "version": "2.0.0", +-+- "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-2.0.0.tgz", +-+- "integrity": "sha1-w2rsy6VjuJzrVW82kPCx2eNUf38=", +-++ "node_modules/agentkeepalive": { +-++ "version": "4.5.0", +-++ "resolved": "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.5.0.tgz", +-++ "integrity": "sha512-5GG/5IbQQpC9FpkRGsSvZI5QYeSCzlJHdpBQntCsuTOxhKD8lqKhrleg2Yi7yvMIf82Ycmmqln9U8V9qwEiJew==", +-+ "dev": true, +-+- "requires": { +-+- "string-width": "^2.0.0" +-++ "dependencies": { +-++ "humanize-ms": "^1.2.1" +-+ }, +-++ "engines": { +-++ "node": ">= 8.0.0" +-++ } +-++ }, +-++ "node_modules/aggregate-error": { +-++ "version": "3.1.0", +-++ "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", +-++ "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", +-++ "dev": true, +-+ "dependencies": { +-+- "ansi-regex": { +-+- "version": "3.0.0", +-+- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", +-+- "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", +-+- "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 +-+- }, +-+- "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" +-+- } +-+- }, +-+- "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" +-+- } +-+- } +-++ "clean-stack": "^2.0.0", +-++ "indent-string": "^4.0.0" +-++ }, +-++ "engines": { +-++ "node": ">=8" +-+ } +-+ }, +-+- "ansi-regex": { +-+- "version": "2.1.1", +-+- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", +-+- "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", +-+- "dev": true +-++ "node_modules/ansi-regex": { +-++ "version": "5.0.1", +-++ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", +-++ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", +-++ "engines": { +-++ "node": ">=8" +-++ } +-+ }, +-+- "ansi-styles": { +-++ "node_modules/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": { +-++ "dependencies": { +-+ "color-convert": "^1.9.0" +-++ }, +-++ "engines": { +-++ "node": ">=4" +-+ } +-+ }, +-+- "anymatch": { +-+- "version": "2.0.0", +-+- "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", +-+- "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", +-+- "dev": true, +-+- "requires": { +-+- "micromatch": "^3.1.4", +-+- "normalize-path": "^2.1.1" +-+- }, +-+- "dependencies": { +-+- "normalize-path": { +-+- "version": "2.1.1", +-+- "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", +-+- "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", +-+- "dev": true, +-+- "requires": { +-+- "remove-trailing-separator": "^1.0.1" +-+- } +-+- } +-++ "node_modules/anymatch": { +-++ "version": "3.1.3", +-++ "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", +-++ "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", +-++ "dev": true, +-++ "dependencies": { +-++ "normalize-path": "^3.0.0", +-++ "picomatch": "^2.0.4" +-++ }, +-++ "engines": { +-++ "node": ">= 8" +-+ } +-+ }, +-+- "aproba": { +-+- "version": "1.2.0", +-+- "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", +-+- "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==", +-++ "node_modules/aproba": { +-++ "version": "2.0.0", +-++ "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", +-++ "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==", +-+ "dev": true +-+ }, +-+- "archiver": { +-++ "node_modules/archiver": { +-+ "version": "2.1.1", +-+ "resolved": "https://registry.npmjs.org/archiver/-/archiver-2.1.1.tgz", +-+ "integrity": "sha1-/2YrSnggFJSj7lRNOjP+dJZQnrw=", +-+- "requires": { +-++ "dependencies": { +-+ "archiver-utils": "^1.3.0", +-+ "async": "^2.0.0", +-+ "buffer-crc32": "^0.2.1", +-+@@ -133,13 +384,16 @@ +-+ "readable-stream": "^2.0.0", +-+ "tar-stream": "^1.5.0", +-+ "zip-stream": "^1.2.0" +-++ }, +-++ "engines": { +-++ "node": ">= 4" +-+ } +-+ }, +-+- "archiver-utils": { +-++ "node_modules/archiver-utils": { +-+ "version": "1.3.0", +-+ "resolved": "https://registry.npmjs.org/archiver-utils/-/archiver-utils-1.3.0.tgz", +-+ "integrity": "sha1-5QtMCccL89aA4y/xt5lOn52JUXQ=", +-+- "requires": { +-++ "dependencies": { +-+ "glob": "^7.0.0", +-+ "graceful-fs": "^4.1.0", +-+ "lazystream": "^1.0.0", +-+@@ -147,3779 +401,3264 @@ +-+ "normalize-path": "^2.0.0", +-+ "readable-stream": "^2.0.0" +-+ }, +-++ "engines": { +-++ "node": ">= 0.10.0" +-++ } +-++ }, +-++ "node_modules/archiver-utils/node_modules/normalize-path": { +-++ "version": "2.1.1", +-++ "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", +-++ "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", +-+ "dependencies": { +-+- "normalize-path": { +-+- "version": "2.1.1", +-+- "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", +-+- "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", +-+- "requires": { +-+- "remove-trailing-separator": "^1.0.1" +-+- } +-+- } +-++ "remove-trailing-separator": "^1.0.1" +-++ }, +-++ "engines": { +-++ "node": ">=0.10.0" +-+ } +-+ }, +-+- "are-we-there-yet": { +-+- "version": "1.1.5", +-+- "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz", +-+- "integrity": "sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w==", +-++ "node_modules/are-we-there-yet": { +-++ "version": "3.0.1", +-++ "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-3.0.1.tgz", +-++ "integrity": "sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==", +-++ "deprecated": "This package is no longer supported.", +-+ "dev": true, +-+- "requires": { +-++ "dependencies": { +-+ "delegates": "^1.0.0", +-+- "readable-stream": "^2.0.6" +-++ "readable-stream": "^3.6.0" +-++ }, +-++ "engines": { +-++ "node": "^12.13.0 || ^14.15.0 || >=16.0.0" +-+ } +-+ }, +-+- "arr-diff": { +-+- "version": "4.0.0", +-+- "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", +-+- "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=", +-+- "dev": true +-+- }, +-+- "arr-flatten": { +-+- "version": "1.1.0", +-+- "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", +-+- "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", +-+- "dev": true +-+- }, +-+- "arr-union": { +-+- "version": "3.1.0", +-+- "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", +-+- "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=", +-+- "dev": true +-+- }, +-+- "array-find-index": { +-+- "version": "1.0.2", +-+- "resolved": "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz", +-+- "integrity": "sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E=", +-+- "dev": true +-++ "node_modules/are-we-there-yet/node_modules/readable-stream": { +-++ "version": "3.6.2", +-++ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", +-++ "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", +-++ "dev": true, +-++ "dependencies": { +-++ "inherits": "^2.0.3", +-++ "string_decoder": "^1.1.1", +-++ "util-deprecate": "^1.0.1" +-++ }, +-++ "engines": { +-++ "node": ">= 6" +-++ } +-+ }, +-+- "array-flatten": { +-++ "node_modules/array-flatten": { +-+ "version": "1.1.1", +-+ "resolved": "http://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", +-+ "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=" +-+ }, +-+- "array-unique": { +-+- "version": "0.3.2", +-+- "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", +-+- "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=", +-+- "dev": true +-++ "node_modules/arrify": { +-++ "version": "1.0.1", +-++ "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", +-++ "integrity": "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==", +-++ "dev": true, +-++ "engines": { +-++ "node": ">=0.10.0" +-++ } +-+ }, +-+- "asap": { +-++ "node_modules/asap": { +-+ "version": "2.0.6", +-+ "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", +-+ "integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=" +-+ }, +-+- "asn1": { +-+- "version": "0.2.4", +-+- "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz", +-+- "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==", +-+- "requires": { +-+- "safer-buffer": "~2.1.0" +-+- } +-+- }, +-+- "assert-plus": { +-+- "version": "1.0.0", +-+- "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", +-+- "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" +-+- }, +-+- "assign-symbols": { +-+- "version": "1.0.0", +-+- "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", +-+- "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=", +-+- "dev": true +-+- }, +-+- "async": { +-+- "version": "2.6.2", +-+- "resolved": "https://registry.npmjs.org/async/-/async-2.6.2.tgz", +-+- "integrity": "sha512-H1qVYh1MYhEEFLsP97cVKqCGo7KfCyTt6uEWqsTBr9SO84oK9Uwbyd/yCW+6rKJLHksBNUVWZDAjfS+Ccx0Bbg==", +-+- "requires": { +-+- "lodash": "^4.17.11" +-++ "node_modules/async": { +-++ "version": "2.6.4", +-++ "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", +-++ "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", +-++ "dependencies": { +-++ "lodash": "^4.17.14" +-+ } +-+ }, +-+- "async-each": { +-+- "version": "1.0.2", +-+- "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.2.tgz", +-+- "integrity": "sha512-6xrbvN0MOBKSJDdonmSSz2OwFSgxRaVtBDes26mj9KIGtDo+g9xosFRSC+i1gQh2oAN/tQ62AI/pGZGQjVOiRg==", +-+- "dev": true +-+- }, +-+- "async-foreach": { +-++ "node_modules/async-foreach": { +-+ "version": "0.1.3", +-+ "resolved": "https://registry.npmjs.org/async-foreach/-/async-foreach-0.1.3.tgz", +-+ "integrity": "sha1-NhIfhFwFeBct5Bmpfb6x0W7DRUI=", +-+- "dev": true +-++ "dev": true, +-++ "engines": { +-++ "node": "*" +-++ } +-+ }, +-+- "asynckit": { +-++ "node_modules/asynckit": { +-+ "version": "0.4.0", +-+ "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", +-+ "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" +-+ }, +-+- "atob": { +-+- "version": "2.1.2", +-+- "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", +-+- "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", +-+- "dev": true +-+- }, +-+- "aws-sign2": { +-+- "version": "0.7.0", +-+- "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", +-+- "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=" +-+- }, +-+- "aws4": { +-+- "version": "1.8.0", +-+- "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.8.0.tgz", +-+- "integrity": "sha512-ReZxvNHIOv88FlT7rxcXIIC0fPt4KZqZbOlivyWtXLt8ESx84zd3kMC6iK5jVeS2qt+g7ftS7ye4fi06X5rtRQ==" +-+- }, +-+- "axios": { +-+- "version": "0.11.1", +-+- "resolved": "https://registry.npmjs.org/axios/-/axios-0.11.1.tgz", +-+- "integrity": "sha1-Oc22WBPixUnRwunDiffjOqZcyiI=", +-+- "requires": { +-+- "follow-redirects": "0.0.7" +-+- }, +-+- "dependencies": { +-+- "follow-redirects": { +-+- "version": "0.0.7", +-+- "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-0.0.7.tgz", +-+- "integrity": "sha1-NLkLqyqRGqNHVx2pDyK9NuzYqRk=", +-+- "requires": { +-+- "debug": "^2.2.0", +-+- "stream-consume": "^0.1.0" +-+- } +-+- } +-++ "node_modules/axios": { +-++ "version": "1.7.2", +-++ "resolved": "https://registry.npmjs.org/axios/-/axios-1.7.2.tgz", +-++ "integrity": "sha512-2A8QhOMrbomlDuiLeK9XibIBzuHeRcqqNOHp0Cyp5EoJ1IFDh+XZH3A6BkXtv0K4gFGCI0Y4BM7B1wOEi0Rmgw==", +-++ "dependencies": { +-++ "follow-redirects": "^1.15.6", +-++ "form-data": "^4.0.0", +-++ "proxy-from-env": "^1.1.0" +-+ } +-+ }, +-+- "base": { +-+- "version": "0.11.2", +-+- "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", +-+- "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", +-+- "dev": true, +-+- "requires": { +-+- "cache-base": "^1.0.1", +-+- "class-utils": "^0.3.5", +-+- "component-emitter": "^1.2.1", +-+- "define-property": "^1.0.0", +-+- "isobject": "^3.0.1", +-+- "mixin-deep": "^1.2.0", +-+- "pascalcase": "^0.1.1" +-+- }, +-+- "dependencies": { +-+- "define-property": { +-+- "version": "1.0.0", +-+- "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", +-+- "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", +-+- "dev": true, +-+- "requires": { +-+- "is-descriptor": "^1.0.0" +-+- } +-+- }, +-+- "is-accessor-descriptor": { +-+- "version": "1.0.0", +-+- "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", +-+- "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", +-+- "dev": true, +-+- "requires": { +-+- "kind-of": "^6.0.0" +-+- } +-+- }, +-+- "is-data-descriptor": { +-+- "version": "1.0.0", +-+- "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", +-+- "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", +-+- "dev": true, +-+- "requires": { +-+- "kind-of": "^6.0.0" +-+- } +-+- }, +-+- "is-descriptor": { +-+- "version": "1.0.2", +-+- "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", +-+- "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", +-+- "dev": true, +-+- "requires": { +-+- "is-accessor-descriptor": "^1.0.0", +-+- "is-data-descriptor": "^1.0.0", +-+- "kind-of": "^6.0.2" +-+- } +-+- } +-++ "node_modules/axios/node_modules/form-data": { +-++ "version": "4.0.0", +-++ "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", +-++ "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", +-++ "dependencies": { +-++ "asynckit": "^0.4.0", +-++ "combined-stream": "^1.0.8", +-++ "mime-types": "^2.1.12" +-++ }, +-++ "engines": { +-++ "node": ">= 6" +-+ } +-+ }, +-+- "base64-js": { +-++ "node_modules/balanced-match": { +-++ "version": "1.0.2", +-++ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", +-++ "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" +-++ }, +-++ "node_modules/base64-js": { +-+ "version": "1.3.0", +-+ "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.3.0.tgz", +-+ "integrity": "sha512-ccav/yGvoa80BQDljCxsmmQ3Xvx60/UpBIij5QN21W3wBi/hhIC9OoO+KLpu9IJTS9j4DRVJ3aDDF9cMSoa2lw==" +-+ }, +-+- "bcrypt-pbkdf": { +-+- "version": "1.0.2", +-+- "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", +-+- "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", +-+- "requires": { +-+- "tweetnacl": "^0.14.3" +-++ "node_modules/binary-extensions": { +-++ "version": "2.3.0", +-++ "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", +-++ "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", +-++ "dev": true, +-++ "engines": { +-++ "node": ">=8" +-++ }, +-++ "funding": { +-++ "url": "https://github.com/sponsors/sindresorhus" +-+ } +-+ }, +-+- "binary-extensions": { +-+- "version": "1.13.0", +-+- "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.0.tgz", +-+- "integrity": "sha512-EgmjVLMn22z7eGGv3kcnHwSnJXmFHjISTY9E/S5lIcTD3Oxw05QTcBLNkJFzcb3cNueUdF/IN4U+d78V0zO8Hw==", +-+- "dev": true +-+- }, +-+- "bl": { +-+- "version": "1.2.2", +-+- "resolved": "http://registry.npmjs.org/bl/-/bl-1.2.2.tgz", +-+- "integrity": "sha512-e8tQYnZodmebYDWGH7KMRvtzKXaJHx3BbilrgZCfvyLUYdKpK1t5PSPmpkny/SgiTSCnjfLW7v5rlONXVFkQEA==", +-+- "requires": { +-++ "node_modules/bl": { +-++ "version": "1.2.3", +-++ "resolved": "https://registry.npmjs.org/bl/-/bl-1.2.3.tgz", +-++ "integrity": "sha512-pvcNpa0UU69UT341rO6AYy4FVAIkUHuZXRIWbq+zHnsVcRzDDjIAhGuuYoi0d//cwIwtt4pkpKycWEfjdV+vww==", +-++ "dependencies": { +-+ "readable-stream": "^2.3.5", +-+ "safe-buffer": "^5.1.1" +-+ } +-+ }, +-+- "block-stream": { +-+- "version": "0.0.9", +-+- "resolved": "https://registry.npmjs.org/block-stream/-/block-stream-0.0.9.tgz", +-+- "integrity": "sha1-E+v+d4oDIFz+A3UUgeu0szAMEmo=", +-+- "dev": true, +-+- "requires": { +-+- "inherits": "~2.0.0" +-+- } +-+- }, +-+- "body": { +-++ "node_modules/body": { +-+ "version": "5.1.0", +-+ "resolved": "https://registry.npmjs.org/body/-/body-5.1.0.tgz", +-+ "integrity": "sha1-5LoM5BCkaTYyM2dgnstOZVMSUGk=", +-+- "requires": { +-++ "dependencies": { +-+ "continuable-cache": "^0.3.1", +-+ "error": "^7.0.0", +-+ "raw-body": "~1.1.0", +-+ "safe-json-parse": "~1.0.1" +-+- }, +-+- "dependencies": { +-+- "bytes": { +-+- "version": "1.0.0", +-+- "resolved": "https://registry.npmjs.org/bytes/-/bytes-1.0.0.tgz", +-+- "integrity": "sha1-NWnt6Lo0MV+rmcPpLLBMciDeH6g=" +-+- }, +-+- "raw-body": { +-+- "version": "1.1.7", +-+- "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-1.1.7.tgz", +-+- "integrity": "sha1-HQJ8K/oRasxmI7yo8AAWVyqH1CU=", +-+- "requires": { +-+- "bytes": "1", +-+- "string_decoder": "0.10" +-+- } +-+- }, +-+- "string_decoder": { +-+- "version": "0.10.31", +-+- "resolved": "http://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", +-+- "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=" +-+- } +-+ } +-+ }, +-+- "body-parser": { +-+- "version": "1.18.3", +-+- "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.18.3.tgz", +-+- "integrity": "sha1-WykhmP/dVTs6DyDe0FkrlWlVyLQ=", +-+- "requires": { +-+- "bytes": "3.0.0", +-+- "content-type": "~1.0.4", +-++ "node_modules/body-parser": { +-++ "version": "1.20.2", +-++ "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.2.tgz", +-++ "integrity": "sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==", +-++ "dependencies": { +-++ "bytes": "3.1.2", +-++ "content-type": "~1.0.5", +-+ "debug": "2.6.9", +-+- "depd": "~1.1.2", +-+- "http-errors": "~1.6.3", +-+- "iconv-lite": "0.4.23", +-+- "on-finished": "~2.3.0", +-+- "qs": "6.5.2", +-+- "raw-body": "2.3.3", +-+- "type-is": "~1.6.16" +-+- }, +-+- "dependencies": { +-+- "qs": { +-+- "version": "6.5.2", +-+- "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", +-+- "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==" +-+- } +-++ "depd": "2.0.0", +-++ "destroy": "1.2.0", +-++ "http-errors": "2.0.0", +-++ "iconv-lite": "0.4.24", +-++ "on-finished": "2.4.1", +-++ "qs": "6.11.0", +-++ "raw-body": "2.5.2", +-++ "type-is": "~1.6.18", +-++ "unpipe": "1.0.0" +-++ }, +-++ "engines": { +-++ "node": ">= 0.8", +-++ "npm": "1.2.8000 || >= 1.4.16" +-+ } +-+ }, +-+- "boxen": { +-+- "version": "1.3.0", +-+- "resolved": "https://registry.npmjs.org/boxen/-/boxen-1.3.0.tgz", +-+- "integrity": "sha512-TNPjfTr432qx7yOjQyaXm3dSR0MH9vXp7eT1BFSl/C51g+EFnOR9hTg1IreahGBmDNCehscshe45f+C1TBZbLw==", +-+- "dev": true, +-+- "requires": { +-+- "ansi-align": "^2.0.0", +-+- "camelcase": "^4.0.0", +-+- "chalk": "^2.0.1", +-+- "cli-boxes": "^1.0.0", +-+- "string-width": "^2.0.0", +-+- "term-size": "^1.2.0", +-+- "widest-line": "^2.0.0" +-+- }, +-+- "dependencies": { +-+- "ansi-regex": { +-+- "version": "3.0.0", +-+- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", +-+- "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", +-+- "dev": true +-+- }, +-+- "camelcase": { +-+- "version": "4.1.0", +-+- "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz", +-+- "integrity": "sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=", +-+- "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" +-+- } +-+- }, +-+- "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 +-+- }, +-+- "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" +-+- } +-+- }, +-+- "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" +-+- } +-+- }, +-+- "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" +-+- } +-+- } +-++ "node_modules/body/node_modules/bytes": { +-++ "version": "1.0.0", +-++ "resolved": "https://registry.npmjs.org/bytes/-/bytes-1.0.0.tgz", +-++ "integrity": "sha1-NWnt6Lo0MV+rmcPpLLBMciDeH6g=" +-++ }, +-++ "node_modules/body/node_modules/raw-body": { +-++ "version": "1.1.7", +-++ "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-1.1.7.tgz", +-++ "integrity": "sha1-HQJ8K/oRasxmI7yo8AAWVyqH1CU=", +-++ "dependencies": { +-++ "bytes": "1", +-++ "string_decoder": "0.10" +-++ }, +-++ "engines": { +-++ "node": ">= 0.8.0" +-+ } +-+ }, +-+- "brace-expansion": { +-++ "node_modules/body/node_modules/string_decoder": { +-++ "version": "0.10.31", +-++ "resolved": "http://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", +-++ "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=" +-++ }, +-++ "node_modules/brace-expansion": { +-+ "version": "1.1.11", +-+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", +-+ "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", +-+- "requires": { +-++ "dependencies": { +-+ "balanced-match": "^1.0.0", +-+ "concat-map": "0.0.1" +-+- }, +-+- "dependencies": { +-+- "balanced-match": { +-+- "version": "1.0.0", +-+- "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", +-+- "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=" +-+- } +-+ } +-+ }, +-+- "braces": { +-+- "version": "2.3.2", +-+- "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", +-+- "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", +-+- "dev": true, +-+- "requires": { +-+- "arr-flatten": "^1.1.0", +-+- "array-unique": "^0.3.2", +-+- "extend-shallow": "^2.0.1", +-+- "fill-range": "^4.0.0", +-+- "isobject": "^3.0.1", +-+- "repeat-element": "^1.1.2", +-+- "snapdragon": "^0.8.1", +-+- "snapdragon-node": "^2.0.1", +-+- "split-string": "^3.0.2", +-+- "to-regex": "^3.0.1" +-+- }, +-+- "dependencies": { +-+- "extend-shallow": { +-+- "version": "2.0.1", +-+- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", +-+- "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", +-+- "dev": true, +-+- "requires": { +-+- "is-extendable": "^0.1.0" +-+- } +-+- } +-++ "node_modules/braces": { +-++ "version": "3.0.3", +-++ "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", +-++ "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", +-++ "dev": true, +-++ "dependencies": { +-++ "fill-range": "^7.1.1" +-++ }, +-++ "engines": { +-++ "node": ">=8" +-+ } +-+ }, +-+- "buffer-alloc": { +-++ "node_modules/buffer-alloc": { +-+ "version": "1.2.0", +-+ "resolved": "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz", +-+ "integrity": "sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==", +-+- "requires": { +-++ "dependencies": { +-+ "buffer-alloc-unsafe": "^1.1.0", +-+ "buffer-fill": "^1.0.0" +-+ } +-+ }, +-+- "buffer-alloc-unsafe": { +-++ "node_modules/buffer-alloc-unsafe": { +-+ "version": "1.1.0", +-+ "resolved": "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz", +-+ "integrity": "sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==" +-+ }, +-+- "buffer-crc32": { +-++ "node_modules/buffer-crc32": { +-+ "version": "0.2.13", +-+ "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", +-+- "integrity": "sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI=" +-++ "integrity": "sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI=", +-++ "engines": { +-++ "node": "*" +-++ } +-+ }, +-+- "buffer-fill": { +-++ "node_modules/buffer-fill": { +-+ "version": "1.0.0", +-+ "resolved": "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz", +-+ "integrity": "sha1-+PeLdniYiO858gXNY39o5wISKyw=" +-+ }, +-+- "busboy": { +-+- "version": "0.3.0", +-+- "resolved": "https://registry.npmjs.org/busboy/-/busboy-0.3.0.tgz", +-+- "integrity": "sha512-e+kzZRAbbvJPLjQz2z+zAyr78BSi9IFeBTyLwF76g78Q2zRt/RZ1NtS3MS17v2yLqYfLz69zHdC+1L4ja8PwqQ==", +-+- "requires": { +-+- "dicer": "0.3.0" +-++ "node_modules/busboy": { +-++ "version": "1.6.0", +-++ "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", +-++ "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", +-++ "dependencies": { +-++ "streamsearch": "^1.1.0" +-++ }, +-++ "engines": { +-++ "node": ">=10.16.0" +-+ } +-+ }, +-+- "bytes": { +-+- "version": "3.0.0", +-+- "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", +-+- "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=" +-+- }, +-+- "cache-base": { +-+- "version": "1.0.1", +-+- "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", +-+- "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", +-+- "dev": true, +-+- "requires": { +-+- "collection-visit": "^1.0.0", +-+- "component-emitter": "^1.2.1", +-+- "get-value": "^2.0.6", +-+- "has-value": "^1.0.0", +-+- "isobject": "^3.0.1", +-+- "set-value": "^2.0.0", +-+- "to-object-path": "^0.3.0", +-+- "union-value": "^1.0.0", +-+- "unset-value": "^1.0.0" +-+- } +-+- }, +-+- "camelcase": { +-+- "version": "2.1.1", +-+- "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz", +-+- "integrity": "sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8=", +-+- "dev": true +-++ "node_modules/bytes": { +-++ "version": "3.1.2", +-++ "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", +-++ "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", +-++ "engines": { +-++ "node": ">= 0.8" +-++ } +-+ }, +-+- "camelcase-keys": { +-+- "version": "2.1.0", +-+- "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz", +-+- "integrity": "sha1-MIvur/3ygRkFHvodkyITyRuPkuc=", +-++ "node_modules/cacache": { +-++ "version": "16.1.3", +-++ "resolved": "https://registry.npmjs.org/cacache/-/cacache-16.1.3.tgz", +-++ "integrity": "sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ==", +-+ "dev": true, +-+- "requires": { +-+- "camelcase": "^2.0.0", +-+- "map-obj": "^1.0.0" +-++ "dependencies": { +-++ "@npmcli/fs": "^2.1.0", +-++ "@npmcli/move-file": "^2.0.0", +-++ "chownr": "^2.0.0", +-++ "fs-minipass": "^2.1.0", +-++ "glob": "^8.0.1", +-++ "infer-owner": "^1.0.4", +-++ "lru-cache": "^7.7.1", +-++ "minipass": "^3.1.6", +-++ "minipass-collect": "^1.0.2", +-++ "minipass-flush": "^1.0.5", +-++ "minipass-pipeline": "^1.2.4", +-++ "mkdirp": "^1.0.4", +-++ "p-map": "^4.0.0", +-++ "promise-inflight": "^1.0.1", +-++ "rimraf": "^3.0.2", +-++ "ssri": "^9.0.0", +-++ "tar": "^6.1.11", +-++ "unique-filename": "^2.0.0" +-++ }, +-++ "engines": { +-++ "node": "^12.13.0 || ^14.15.0 || >=16.0.0" +-+ } +-+ }, +-+- "capture-stack-trace": { +-+- "version": "1.0.1", +-+- "resolved": "https://registry.npmjs.org/capture-stack-trace/-/capture-stack-trace-1.0.1.tgz", +-+- "integrity": "sha512-mYQLZnx5Qt1JgB1WEiMCf2647plpGeQ2NMR/5L0HNZzGQo4fuSPnK+wjfPnKZV0aiJDgzmWqqkV/g7JD+DW0qw==", +-+- "dev": true +-++ "node_modules/cacache/node_modules/brace-expansion": { +-++ "version": "2.0.1", +-++ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", +-++ "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", +-++ "dev": true, +-++ "dependencies": { +-++ "balanced-match": "^1.0.0" +-++ } +-+ }, +-+- "caseless": { +-+- "version": "0.12.0", +-+- "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", +-+- "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=" +-++ "node_modules/cacache/node_modules/glob": { +-++ "version": "8.1.0", +-++ "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", +-++ "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", +-++ "deprecated": "Glob versions prior to v9 are no longer supported", +-++ "dev": true, +-++ "dependencies": { +-++ "fs.realpath": "^1.0.0", +-++ "inflight": "^1.0.4", +-++ "inherits": "2", +-++ "minimatch": "^5.0.1", +-++ "once": "^1.3.0" +-++ }, +-++ "engines": { +-++ "node": ">=12" +-++ }, +-++ "funding": { +-++ "url": "https://github.com/sponsors/isaacs" +-++ } +-+ }, +-+- "chalk": { +-+- "version": "1.1.3", +-+- "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", +-+- "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", +-+- "dev": true, +-+- "requires": { +-+- "ansi-styles": "^2.2.1", +-+- "escape-string-regexp": "^1.0.2", +-+- "has-ansi": "^2.0.0", +-+- "strip-ansi": "^3.0.0", +-+- "supports-color": "^2.0.0" +-+- }, +-+- "dependencies": { +-+- "ansi-styles": { +-+- "version": "2.2.1", +-+- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", +-+- "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", +-+- "dev": true +-+- } +-++ "node_modules/cacache/node_modules/lru-cache": { +-++ "version": "7.18.3", +-++ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", +-++ "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", +-++ "dev": true, +-++ "engines": { +-++ "node": ">=12" +-+ } +-+ }, +-+- "chokidar": { +-+- "version": "2.1.2", +-+- "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.2.tgz", +-+- "integrity": "sha512-IwXUx0FXc5ibYmPC2XeEj5mpXoV66sR+t3jqu2NS2GYwCktt3KF1/Qqjws/NkegajBA4RbZ5+DDwlOiJsxDHEg==", +-+- "dev": true, +-+- "requires": { +-+- "anymatch": "^2.0.0", +-+- "async-each": "^1.0.1", +-+- "braces": "^2.3.2", +-+- "fsevents": "^1.2.7", +-+- "glob-parent": "^3.1.0", +-+- "inherits": "^2.0.3", +-+- "is-binary-path": "^1.0.0", +-+- "is-glob": "^4.0.0", +-+- "normalize-path": "^3.0.0", +-+- "path-is-absolute": "^1.0.0", +-+- "readdirp": "^2.2.1", +-+- "upath": "^1.1.0" +-++ "node_modules/cacache/node_modules/minimatch": { +-++ "version": "5.1.6", +-++ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", +-++ "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", +-++ "dev": true, +-++ "dependencies": { +-++ "brace-expansion": "^2.0.1" +-++ }, +-++ "engines": { +-++ "node": ">=10" +-+ } +-+ }, +-+- "ci-info": { +-+- "version": "1.6.0", +-+- "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-1.6.0.tgz", +-+- "integrity": "sha512-vsGdkwSCDpWmP80ncATX7iea5DWQemg1UgCW5J8tqjU3lYw4FBYuj89J0CTVomA7BEfvSZd84GmHko+MxFQU2A==", +-+- "dev": true +-++ "node_modules/cacache/node_modules/mkdirp": { +-++ "version": "1.0.4", +-++ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", +-++ "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", +-++ "dev": true, +-++ "bin": { +-++ "mkdirp": "bin/cmd.js" +-++ }, +-++ "engines": { +-++ "node": ">=10" +-++ } +-+ }, +-+- "clarifai": { +-+- "version": "2.9.0", +-+- "resolved": "https://registry.npmjs.org/clarifai/-/clarifai-2.9.0.tgz", +-+- "integrity": "sha512-u7Ip+D0pWXUc36p1c9OT/n3geSxKzx1mJdrPNz/ruhX9xqqtooUBJXF7Z/dNIqQLFTnr8fIQZsZxWhliOF91uQ==", +-+- "requires": { +-+- "axios": "^0.11.1", +-+- "form-data": "^0.2.0", +-+- "promise": "^7.1.1", +-+- "valid-url": "^1.0.9" +-++ "node_modules/call-bind": { +-++ "version": "1.0.7", +-++ "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", +-++ "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", +-++ "dependencies": { +-++ "es-define-property": "^1.0.0", +-++ "es-errors": "^1.3.0", +-++ "function-bind": "^1.1.2", +-++ "get-intrinsic": "^1.2.4", +-++ "set-function-length": "^1.2.1" +-++ }, +-++ "engines": { +-++ "node": ">= 0.4" +-+ }, +-++ "funding": { +-++ "url": "https://github.com/sponsors/ljharb" +-++ } +-++ }, +-++ "node_modules/camelcase": { +-++ "version": "5.3.1", +-++ "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", +-++ "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", +-++ "dev": true, +-++ "engines": { +-++ "node": ">=6" +-++ } +-++ }, +-++ "node_modules/camelcase-keys": { +-++ "version": "6.2.2", +-++ "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-6.2.2.tgz", +-++ "integrity": "sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==", +-++ "dev": true, +-+ "dependencies": { +-+- "async": { +-+- "version": "0.9.2", +-+- "resolved": "https://registry.npmjs.org/async/-/async-0.9.2.tgz", +-+- "integrity": "sha1-rqdNXmHB+JlhO/ZL2mbUx48v0X0=" +-+- }, +-+- "combined-stream": { +-+- "version": "0.0.7", +-+- "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-0.0.7.tgz", +-+- "integrity": "sha1-ATfmV7qlp1QcV6w3rF/AfXO03B8=", +-+- "requires": { +-+- "delayed-stream": "0.0.5" +-+- } +-+- }, +-+- "delayed-stream": { +-+- "version": "0.0.5", +-+- "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-0.0.5.tgz", +-+- "integrity": "sha1-1LH0OpPoKW3+AmlPRoC8N6MTxz8=" +-+- }, +-+- "form-data": { +-+- "version": "0.2.0", +-+- "resolved": "https://registry.npmjs.org/form-data/-/form-data-0.2.0.tgz", +-+- "integrity": "sha1-Jvi8JtpkQOKZy9z7aQNcT3em5GY=", +-+- "requires": { +-+- "async": "~0.9.0", +-+- "combined-stream": "~0.0.4", +-+- "mime-types": "~2.0.3" +-+- } +-+- }, +-+- "mime-db": { +-+- "version": "1.12.0", +-+- "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.12.0.tgz", +-+- "integrity": "sha1-PQxjGA9FjrENMlqqN9fFiuMS6dc=" +-+- }, +-+- "mime-types": { +-+- "version": "2.0.14", +-+- "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.0.14.tgz", +-+- "integrity": "sha1-MQ4VnbI+B3+Lsit0jav6SVcUCqY=", +-+- "requires": { +-+- "mime-db": "~1.12.0" +-+- } +-+- } +-++ "camelcase": "^5.3.1", +-++ "map-obj": "^4.0.0", +-++ "quick-lru": "^4.0.1" +-++ }, +-++ "engines": { +-++ "node": ">=8" +-++ }, +-++ "funding": { +-++ "url": "https://github.com/sponsors/sindresorhus" +-++ } +-++ }, +-++ "node_modules/chalk": { +-++ "version": "4.1.2", +-++ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", +-++ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", +-++ "dependencies": { +-++ "ansi-styles": "^4.1.0", +-++ "supports-color": "^7.1.0" +-++ }, +-++ "engines": { +-++ "node": ">=10" +-++ }, +-++ "funding": { +-++ "url": "https://github.com/chalk/chalk?sponsor=1" +-++ } +-++ }, +-++ "node_modules/chalk/node_modules/ansi-styles": { +-++ "version": "4.3.0", +-++ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", +-++ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", +-++ "dependencies": { +-++ "color-convert": "^2.0.1" +-++ }, +-++ "engines": { +-++ "node": ">=8" +-++ }, +-++ "funding": { +-++ "url": "https://github.com/chalk/ansi-styles?sponsor=1" +-++ } +-++ }, +-++ "node_modules/chalk/node_modules/color-convert": { +-++ "version": "2.0.1", +-++ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", +-++ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", +-++ "dependencies": { +-++ "color-name": "~1.1.4" +-++ }, +-++ "engines": { +-++ "node": ">=7.0.0" +-+ } +-+ }, +-+- "class-utils": { +-+- "version": "0.3.6", +-+- "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", +-+- "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", +-++ "node_modules/chalk/node_modules/color-name": { +-++ "version": "1.1.4", +-++ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", +-++ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" +-++ }, +-++ "node_modules/chokidar": { +-++ "version": "3.6.0", +-++ "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", +-++ "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", +-+ "dev": true, +-+- "requires": { +-+- "arr-union": "^3.1.0", +-+- "define-property": "^0.2.5", +-+- "isobject": "^3.0.0", +-+- "static-extend": "^0.1.1" +-++ "dependencies": { +-++ "anymatch": "~3.1.2", +-++ "braces": "~3.0.2", +-++ "glob-parent": "~5.1.2", +-++ "is-binary-path": "~2.1.0", +-++ "is-glob": "~4.0.1", +-++ "normalize-path": "~3.0.0", +-++ "readdirp": "~3.6.0" +-++ }, +-++ "engines": { +-++ "node": ">= 8.10.0" +-++ }, +-++ "funding": { +-++ "url": "https://paulmillr.com/funding/" +-+ }, +-++ "optionalDependencies": { +-++ "fsevents": "~2.3.2" +-++ } +-++ }, +-++ "node_modules/chownr": { +-++ "version": "2.0.0", +-++ "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", +-++ "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", +-++ "dev": true, +-++ "engines": { +-++ "node": ">=10" +-++ } +-++ }, +-++ "node_modules/clarifai": { +-++ "version": "2.9.1", +-++ "resolved": "https://registry.npmjs.org/clarifai/-/clarifai-2.9.1.tgz", +-++ "integrity": "sha512-xUxl0bNhBTRn93BBjzYG3nQ/BRZI5VcAZOn1hsukTEFgE31grtegztMT26AbFdmWkCJin1dM6TaC4APSHYs/Ug==", +-+ "dependencies": { +-+- "define-property": { +-+- "version": "0.2.5", +-+- "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", +-+- "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", +-+- "dev": true, +-+- "requires": { +-+- "is-descriptor": "^0.1.0" +-+- } +-+- } +-++ "axios": ">=0.11.1 <2", +-++ "promise": "^7.1.1", +-++ "valid-url": "^1.0.9" +-+ } +-+ }, +-+- "cli-boxes": { +-+- "version": "1.0.0", +-+- "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-1.0.0.tgz", +-+- "integrity": "sha1-T6kXw+WclKAEzWH47lCdplFocUM=", +-+- "dev": true +-++ "node_modules/clean-stack": { +-++ "version": "2.2.0", +-++ "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", +-++ "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", +-++ "dev": true, +-++ "engines": { +-++ "node": ">=6" +-++ } +-++ }, +-++ "node_modules/cliui": { +-++ "version": "8.0.1", +-++ "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", +-++ "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", +-++ "dev": true, +-++ "dependencies": { +-++ "string-width": "^4.2.0", +-++ "strip-ansi": "^6.0.1", +-++ "wrap-ansi": "^7.0.0" +-++ }, +-++ "engines": { +-++ "node": ">=12" +-++ } +-+ }, +-+- "cliui": { +-+- "version": "3.2.0", +-+- "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", +-+- "integrity": "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=", +-++ "node_modules/cliui/node_modules/ansi-styles": { +-++ "version": "4.3.0", +-++ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", +-++ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", +-+ "dev": true, +-+- "requires": { +-+- "string-width": "^1.0.1", +-+- "strip-ansi": "^3.0.1", +-+- "wrap-ansi": "^2.0.0" +-++ "dependencies": { +-++ "color-convert": "^2.0.1" +-++ }, +-++ "engines": { +-++ "node": ">=8" +-++ }, +-++ "funding": { +-++ "url": "https://github.com/chalk/ansi-styles?sponsor=1" +-+ } +-+ }, +-+- "code-point-at": { +-+- "version": "1.1.0", +-+- "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", +-+- "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=", +-++ "node_modules/cliui/node_modules/color-convert": { +-++ "version": "2.0.1", +-++ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", +-++ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", +-++ "dev": true, +-++ "dependencies": { +-++ "color-name": "~1.1.4" +-++ }, +-++ "engines": { +-++ "node": ">=7.0.0" +-++ } +-++ }, +-++ "node_modules/cliui/node_modules/color-name": { +-++ "version": "1.1.4", +-++ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", +-++ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", +-+ "dev": true +-+ }, +-+- "collection-visit": { +-+- "version": "1.0.0", +-+- "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", +-+- "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=", +-++ "node_modules/cliui/node_modules/wrap-ansi": { +-++ "version": "7.0.0", +-++ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", +-++ "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", +-+ "dev": true, +-+- "requires": { +-+- "map-visit": "^1.0.0", +-+- "object-visit": "^1.0.0" +-++ "dependencies": { +-++ "ansi-styles": "^4.0.0", +-++ "string-width": "^4.1.0", +-++ "strip-ansi": "^6.0.0" +-++ }, +-++ "engines": { +-++ "node": ">=10" +-++ }, +-++ "funding": { +-++ "url": "https://github.com/chalk/wrap-ansi?sponsor=1" +-+ } +-+ }, +-+- "color-convert": { +-++ "node_modules/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": { +-++ "dependencies": { +-+ "color-name": "1.1.3" +-+ } +-+ }, +-+- "color-name": { +-++ "node_modules/color-name": { +-+ "version": "1.1.3", +-+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", +-+ "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", +-+ "dev": true +-+ }, +-+- "combined-stream": { +-+- "version": "1.0.7", +-+- "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.7.tgz", +-+- "integrity": "sha512-brWl9y6vOB1xYPZcpZde3N9zDByXTosAeMDo4p1wzo6UMOX4vumB+TP1RZ76sfE6Md68Q0NJSrE/gbezd4Ul+w==", +-+- "requires": { +-+- "delayed-stream": "~1.0.0" +-++ "node_modules/color-support": { +-++ "version": "1.1.3", +-++ "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", +-++ "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", +-++ "dev": true, +-++ "bin": { +-++ "color-support": "bin.js" +-+ } +-+ }, +-+- "component-emitter": { +-+- "version": "1.2.1", +-+- "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz", +-+- "integrity": "sha1-E3kY1teCg/ffemt8WmPhQOaUJeY=", +-+- "dev": true +-++ "node_modules/combined-stream": { +-++ "version": "1.0.8", +-++ "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", +-++ "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", +-++ "dependencies": { +-++ "delayed-stream": "~1.0.0" +-++ }, +-++ "engines": { +-++ "node": ">= 0.8" +-++ } +-+ }, +-+- "compress-commons": { +-++ "node_modules/compress-commons": { +-+ "version": "1.2.2", +-+ "resolved": "https://registry.npmjs.org/compress-commons/-/compress-commons-1.2.2.tgz", +-+ "integrity": "sha1-UkqfEJA/OoEzibAiXSfEi7dRiQ8=", +-+- "requires": { +-++ "dependencies": { +-+ "buffer-crc32": "^0.2.1", +-+ "crc32-stream": "^2.0.0", +-+ "normalize-path": "^2.0.0", +-+ "readable-stream": "^2.0.0" +-+ }, +-++ "engines": { +-++ "node": ">= 0.10.0" +-++ } +-++ }, +-++ "node_modules/compress-commons/node_modules/normalize-path": { +-++ "version": "2.1.1", +-++ "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", +-++ "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", +-+ "dependencies": { +-+- "normalize-path": { +-+- "version": "2.1.1", +-+- "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", +-+- "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", +-+- "requires": { +-+- "remove-trailing-separator": "^1.0.1" +-+- } +-+- } +-++ "remove-trailing-separator": "^1.0.1" +-++ }, +-++ "engines": { +-++ "node": ">=0.10.0" +-+ } +-+ }, +-+- "concat-map": { +-++ "node_modules/concat-map": { +-+ "version": "0.0.1", +-+ "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", +-+ "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" +-+ }, +-+- "concurrently": { +-+- "version": "4.1.0", +-+- "resolved": "https://registry.npmjs.org/concurrently/-/concurrently-4.1.0.tgz", +-+- "integrity": "sha512-pwzXCE7qtOB346LyO9eFWpkFJVO3JQZ/qU/feGeaAHiX1M3Rw3zgXKc5cZ8vSH5DGygkjzLFDzA/pwoQDkRNGg==", +-+- "dev": true, +-+- "requires": { +-+- "chalk": "^2.4.1", +-+- "date-fns": "^1.23.0", +-+- "lodash": "^4.17.10", +-+- "read-pkg": "^4.0.1", +-+- "rxjs": "^6.3.3", +-+- "spawn-command": "^0.0.2-1", +-+- "supports-color": "^4.5.0", +-+- "tree-kill": "^1.1.0", +-+- "yargs": "^12.0.1" +-+- }, +-+- "dependencies": { +-+- "ansi-regex": { +-+- "version": "3.0.0", +-+- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", +-+- "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", +-+- "dev": true +-+- }, +-+- "camelcase": { +-+- "version": "5.2.0", +-+- "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.2.0.tgz", +-+- "integrity": "sha512-IXFsBS2pC+X0j0N/GE7Dm7j3bsEBp+oTpb7F50dwEVX7rf3IgwO9XatnegTsDtniKCUtEJH4fSU6Asw7uoVLfQ==", +-+- "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": "4.1.0", +-+- "resolved": "https://registry.npmjs.org/cliui/-/cliui-4.1.0.tgz", +-+- "integrity": "sha512-4FG+RSG9DL7uEwRUZXZn3SS34DiDPfzP0VOiEwtUWlE+AR2EIg+hSyvrIgUUfhdgR/UkAeW2QHgeP+hWrXs7jQ==", +-+- "dev": true, +-+- "requires": { +-+- "string-width": "^2.1.1", +-+- "strip-ansi": "^4.0.0", +-+- "wrap-ansi": "^2.0.0" +-+- } +-+- }, +-+- "cross-spawn": { +-+- "version": "6.0.5", +-+- "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", +-+- "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", +-+- "dev": true, +-+- "requires": { +-+- "nice-try": "^1.0.4", +-+- "path-key": "^2.0.1", +-+- "semver": "^5.5.0", +-+- "shebang-command": "^1.2.0", +-+- "which": "^1.2.9" +-+- } +-+- }, +-+- "execa": { +-+- "version": "1.0.0", +-+- "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", +-+- "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", +-+- "dev": true, +-+- "requires": { +-+- "cross-spawn": "^6.0.0", +-+- "get-stream": "^4.0.0", +-+- "is-stream": "^1.1.0", +-+- "npm-run-path": "^2.0.0", +-+- "p-finally": "^1.0.0", +-+- "signal-exit": "^3.0.0", +-+- "strip-eof": "^1.0.0" +-+- } +-+- }, +-+- "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" +-+- } +-+- }, +-+- "get-stream": { +-+- "version": "4.1.0", +-+- "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", +-+- "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", +-+- "dev": true, +-+- "requires": { +-+- "pump": "^3.0.0" +-+- } +-+- }, +-+- "invert-kv": { +-+- "version": "2.0.0", +-+- "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-2.0.0.tgz", +-+- "integrity": "sha512-wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA==", +-+- "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 +-+- }, +-+- "lcid": { +-+- "version": "2.0.0", +-+- "resolved": "https://registry.npmjs.org/lcid/-/lcid-2.0.0.tgz", +-+- "integrity": "sha512-avPEb8P8EGnwXKClwsNUgryVjllcRqtMYa49NTsbQagYuT1DcXnl1915oxWjoyGrXR6zH/Y0Zc96xWsPcoDKeA==", +-+- "dev": true, +-+- "requires": { +-+- "invert-kv": "^2.0.0" +-+- } +-+- }, +-+- "os-locale": { +-+- "version": "3.1.0", +-+- "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-3.1.0.tgz", +-+- "integrity": "sha512-Z8l3R4wYWM40/52Z+S265okfFj8Kt2cC2MKY+xNi3kFs+XGI7WXu/I309QQQYbRW4ijiZ+yxs9pqEhJh0DqW3Q==", +-+- "dev": true, +-+- "requires": { +-+- "execa": "^1.0.0", +-+- "lcid": "^2.0.0", +-+- "mem": "^4.0.0" +-+- } +-+- }, +-+- "parse-json": { +-+- "version": "4.0.0", +-+- "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", +-+- "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", +-+- "dev": true, +-+- "requires": { +-+- "error-ex": "^1.3.1", +-+- "json-parse-better-errors": "^1.0.1" +-+- } +-+- }, +-+- "pify": { +-+- "version": "3.0.0", +-+- "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", +-+- "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", +-+- "dev": true +-+- }, +-+- "read-pkg": { +-+- "version": "4.0.1", +-+- "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-4.0.1.tgz", +-+- "integrity": "sha1-ljYlN48+HE1IyFhytabsfV0JMjc=", +-+- "dev": true, +-+- "requires": { +-+- "normalize-package-data": "^2.3.2", +-+- "parse-json": "^4.0.0", +-+- "pify": "^3.0.0" +-+- } +-+- }, +-+- "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" +-+- } +-+- }, +-+- "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" +-+- } +-+- }, +-+- "supports-color": { +-+- "version": "4.5.0", +-+- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-4.5.0.tgz", +-+- "integrity": "sha1-vnoN5ITexcXN34s9WRJQRJEvY1s=", +-+- "dev": true, +-+- "requires": { +-+- "has-flag": "^2.0.0" +-+- }, +-+- "dependencies": { +-+- "has-flag": { +-+- "version": "2.0.0", +-+- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-2.0.0.tgz", +-+- "integrity": "sha1-6CB68cx7MNRGzHC3NLXovhj4jVE=", +-+- "dev": true +-+- } +-+- } +-+- }, +-+- "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 +-+- }, +-+- "yargs": { +-+- "version": "12.0.5", +-+- "resolved": "https://registry.npmjs.org/yargs/-/yargs-12.0.5.tgz", +-+- "integrity": "sha512-Lhz8TLaYnxq/2ObqHDql8dX8CJi97oHxrjUcYtzKbbykPtVW9WB+poxI+NM2UIzsMgNCZTIf0AQwsjK5yMAqZw==", +-+- "dev": true, +-+- "requires": { +-+- "cliui": "^4.0.0", +-+- "decamelize": "^1.2.0", +-+- "find-up": "^3.0.0", +-+- "get-caller-file": "^1.0.1", +-+- "os-locale": "^3.0.0", +-+- "require-directory": "^2.1.1", +-+- "require-main-filename": "^1.0.1", +-+- "set-blocking": "^2.0.0", +-+- "string-width": "^2.0.0", +-+- "which-module": "^2.0.0", +-+- "y18n": "^3.2.1 || ^4.0.0", +-+- "yargs-parser": "^11.1.1" +-+- } +-+- }, +-+- "yargs-parser": { +-+- "version": "11.1.1", +-+- "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-11.1.1.tgz", +-+- "integrity": "sha512-C6kB/WJDiaxONLJQnF8ccx9SEeoTTLek8RVbaOIsrAUS8VrBEXfmeSnCZxygc+XC2sNMBIwOOnfcxiynjHsVSQ==", +-+- "dev": true, +-+- "requires": { +-+- "camelcase": "^5.0.0", +-+- "decamelize": "^1.2.0" +-+- } +-+- } +-++ "node_modules/concurrently": { +-++ "version": "8.2.2", +-++ "resolved": "https://registry.npmjs.org/concurrently/-/concurrently-8.2.2.tgz", +-++ "integrity": "sha512-1dP4gpXFhei8IOtlXRE/T/4H88ElHgTiUzh71YUmtjTEHMSRS2Z/fgOxHSxxusGHogsRfxNq1vyAwxSC+EVyDg==", +-++ "dev": true, +-++ "dependencies": { +-++ "chalk": "^4.1.2", +-++ "date-fns": "^2.30.0", +-++ "lodash": "^4.17.21", +-++ "rxjs": "^7.8.1", +-++ "shell-quote": "^1.8.1", +-++ "spawn-command": "0.0.2", +-++ "supports-color": "^8.1.1", +-++ "tree-kill": "^1.2.2", +-++ "yargs": "^17.7.2" +-++ }, +-++ "bin": { +-++ "conc": "dist/bin/concurrently.js", +-++ "concurrently": "dist/bin/concurrently.js" +-++ }, +-++ "engines": { +-++ "node": "^14.13.0 || >=16.0.0" +-++ }, +-++ "funding": { +-++ "url": "https://github.com/open-cli-tools/concurrently?sponsor=1" +-+ } +-+ }, +-+- "configstore": { +-+- "version": "3.1.2", +-+- "resolved": "https://registry.npmjs.org/configstore/-/configstore-3.1.2.tgz", +-+- "integrity": "sha512-vtv5HtGjcYUgFrXc6Kx747B83MRRVS5R1VTEQoXvuP+kMI+if6uywV0nDGoiydJRy4yk7h9od5Og0kxx4zUXmw==", +-++ "node_modules/concurrently/node_modules/has-flag": { +-++ "version": "4.0.0", +-++ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", +-++ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", +-++ "dev": true, +-++ "engines": { +-++ "node": ">=8" +-++ } +-++ }, +-++ "node_modules/concurrently/node_modules/supports-color": { +-++ "version": "8.1.1", +-++ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", +-++ "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", +-+ "dev": true, +-+- "requires": { +-+- "dot-prop": "^4.1.0", +-+- "graceful-fs": "^4.1.2", +-+- "make-dir": "^1.0.0", +-+- "unique-string": "^1.0.0", +-+- "write-file-atomic": "^2.0.0", +-+- "xdg-basedir": "^3.0.0" +-++ "dependencies": { +-++ "has-flag": "^4.0.0" +-++ }, +-++ "engines": { +-++ "node": ">=10" +-++ }, +-++ "funding": { +-++ "url": "https://github.com/chalk/supports-color?sponsor=1" +-+ } +-+ }, +-+- "connect-busboy": { +-++ "node_modules/connect-busboy": { +-+ "version": "0.0.2", +-+ "resolved": "https://registry.npmjs.org/connect-busboy/-/connect-busboy-0.0.2.tgz", +-+ "integrity": "sha1-rFyclmchcYheV2xmsr/ZXTuxEJc=", +-+- "requires": { +-++ "dependencies": { +-+ "busboy": "*" +-++ }, +-++ "engines": { +-++ "node": ">=0.8.0" +-+ } +-+ }, +-+- "console-control-strings": { +-++ "node_modules/console-control-strings": { +-+ "version": "1.1.0", +-+ "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", +-+- "integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=", +-++ "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==", +-+ "dev": true +-+ }, +-+- "content-disposition": { +-+- "version": "0.5.2", +-+- "resolved": "http://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz", +-+- "integrity": "sha1-DPaLud318r55YcOoUXjLhdunjLQ=" +-++ "node_modules/content-disposition": { +-++ "version": "0.5.4", +-++ "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", +-++ "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", +-++ "dependencies": { +-++ "safe-buffer": "5.2.1" +-++ }, +-++ "engines": { +-++ "node": ">= 0.6" +-++ } +-++ }, +-++ "node_modules/content-disposition/node_modules/safe-buffer": { +-++ "version": "5.2.1", +-++ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", +-++ "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", +-++ "funding": [ +-++ { +-++ "type": "github", +-++ "url": "https://github.com/sponsors/feross" +-++ }, +-++ { +-++ "type": "patreon", +-++ "url": "https://www.patreon.com/feross" +-++ }, +-++ { +-++ "type": "consulting", +-++ "url": "https://feross.org/support" +-++ } +-++ ] +-+ }, +-+- "content-type": { +-+- "version": "1.0.4", +-+- "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", +-+- "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==" +-++ "node_modules/content-type": { +-++ "version": "1.0.5", +-++ "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", +-++ "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", +-++ "engines": { +-++ "node": ">= 0.6" +-++ } +-+ }, +-+- "continuable-cache": { +-++ "node_modules/continuable-cache": { +-+ "version": "0.3.1", +-+ "resolved": "https://registry.npmjs.org/continuable-cache/-/continuable-cache-0.3.1.tgz", +-+ "integrity": "sha1-vXJ6f67XfnH/OYWskzUakSczrQ8=" +-+ }, +-+- "cookie": { +-+- "version": "0.3.1", +-+- "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz", +-+- "integrity": "sha1-5+Ch+e9DtMi6klxcWpboBtFoc7s=" +-++ "node_modules/cookie": { +-++ "version": "0.6.0", +-++ "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz", +-++ "integrity": "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==", +-++ "engines": { +-++ "node": ">= 0.6" +-++ } +-+ }, +-+- "cookie-signature": { +-++ "node_modules/cookie-signature": { +-+ "version": "1.0.6", +-+ "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", +-+ "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=" +-+ }, +-+- "copy-descriptor": { +-+- "version": "0.1.1", +-+- "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", +-+- "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=", +-+- "dev": true +-+- }, +-+- "core-util-is": { +-++ "node_modules/core-util-is": { +-+ "version": "1.0.2", +-+ "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", +-+ "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" +-+ }, +-+- "cors": { +-++ "node_modules/cors": { +-+ "version": "2.8.5", +-+ "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", +-+ "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", +-+- "requires": { +-++ "dependencies": { +-+ "object-assign": "^4", +-+ "vary": "^1" +-++ }, +-++ "engines": { +-++ "node": ">= 0.10" +-+ } +-+ }, +-+- "crc": { +-++ "node_modules/crc": { +-+ "version": "3.8.0", +-+ "resolved": "https://registry.npmjs.org/crc/-/crc-3.8.0.tgz", +-+ "integrity": "sha512-iX3mfgcTMIq3ZKLIsVFAbv7+Mc10kxabAGQb8HvjA1o3T1PIYprbakQ65d3I+2HGHt6nSKkM9PYjgoJO2KcFBQ==", +-+- "requires": { +-++ "dependencies": { +-+ "buffer": "^5.1.0" +-+- }, +-++ } +-++ }, +-++ "node_modules/crc/node_modules/buffer": { +-++ "version": "5.2.1", +-++ "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.2.1.tgz", +-++ "integrity": "sha512-c+Ko0loDaFfuPWiL02ls9Xd3GO3cPVmUobQ6t3rXNUk304u6hGq+8N/kFi+QEIKhzK3uwolVhLzszmfLmMLnqg==", +-+ "dependencies": { +-+- "buffer": { +-+- "version": "5.2.1", +-+- "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.2.1.tgz", +-+- "integrity": "sha512-c+Ko0loDaFfuPWiL02ls9Xd3GO3cPVmUobQ6t3rXNUk304u6hGq+8N/kFi+QEIKhzK3uwolVhLzszmfLmMLnqg==", +-+- "requires": { +-+- "base64-js": "^1.0.2", +-+- "ieee754": "^1.1.4" +-+- } +-+- } +-++ "base64-js": "^1.0.2", +-++ "ieee754": "^1.1.4" +-+ } +-+ }, +-+- "crc32-stream": { +-++ "node_modules/crc32-stream": { +-+ "version": "2.0.0", +-+ "resolved": "https://registry.npmjs.org/crc32-stream/-/crc32-stream-2.0.0.tgz", +-+ "integrity": "sha1-483TtN8xaN10494/u8t7KX/pCPQ=", +-+- "requires": { +-++ "dependencies": { +-+ "crc": "^3.4.4", +-+ "readable-stream": "^2.0.0" +-++ }, +-++ "engines": { +-++ "node": ">= 0.10.0" +-+ } +-+ }, +-+- "create-error-class": { +-+- "version": "3.0.2", +-+- "resolved": "https://registry.npmjs.org/create-error-class/-/create-error-class-3.0.2.tgz", +-+- "integrity": "sha1-Br56vvlHo/FKMP1hBnHUAbyot7Y=", +-+- "dev": true, +-+- "requires": { +-+- "capture-stack-trace": "^1.0.0" +-++ "node_modules/cross-spawn": { +-++ "version": "7.0.3", +-++ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", +-++ "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", +-++ "dependencies": { +-++ "path-key": "^3.1.0", +-++ "shebang-command": "^2.0.0", +-++ "which": "^2.0.1" +-++ }, +-++ "engines": { +-++ "node": ">= 8" +-+ } +-+ }, +-+- "cross-spawn": { +-+- "version": "3.0.1", +-+- "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-3.0.1.tgz", +-+- "integrity": "sha1-ElYDfsufDF9549bvE14wdwGEuYI=", +-+- "dev": true, +-+- "requires": { +-+- "lru-cache": "^4.0.1", +-+- "which": "^1.2.9" +-++ "node_modules/cross-spawn/node_modules/path-key": { +-++ "version": "3.1.1", +-++ "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", +-++ "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", +-++ "engines": { +-++ "node": ">=8" +-+ } +-+ }, +-+- "crypto-random-string": { +-+- "version": "1.0.0", +-+- "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-1.0.0.tgz", +-+- "integrity": "sha1-ojD2T1aDEOFJgAmUB5DsmVRbyn4=", +-+- "dev": true +-+- }, +-+- "csv": { +-+- "version": "3.1.0", +-+- "resolved": "https://registry.npmjs.org/csv/-/csv-3.1.0.tgz", +-+- "integrity": "sha512-SfnePMkhjljB7ehvubZESGjgrnM7V/gBe5ubZWKxeKwgmTl/HtVCdfSaGRgH/i/vG7qJaSLMpP0krNbAuunRBg==", +-+- "requires": { +-+- "csv-generate": "^2.0.2", +-+- "csv-parse": "^2.4.0", +-+- "csv-stringify": "^3.0.0", +-+- "stream-transform": "^1.0.2" +-++ "node_modules/cross-spawn/node_modules/shebang-command": { +-++ "version": "2.0.0", +-++ "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", +-++ "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", +-++ "dependencies": { +-++ "shebang-regex": "^3.0.0" +-++ }, +-++ "engines": { +-++ "node": ">=8" +-+ } +-+ }, +-+- "csv-generate": { +-+- "version": "2.2.2", +-+- "resolved": "https://registry.npmjs.org/csv-generate/-/csv-generate-2.2.2.tgz", +-+- "integrity": "sha512-ETG8JGG0xOt2f1JzxrAcQONVc4+7srUdXeyLnow60ntBr+qiNCFTqi+ME6g0vZ4hMCbrwNrDPJPOYVznAeDDHQ==" +-+- }, +-+- "csv-parse": { +-+- "version": "2.5.0", +-+- "resolved": "https://registry.npmjs.org/csv-parse/-/csv-parse-2.5.0.tgz", +-+- "integrity": "sha512-4OcjOJQByI0YDU5COYw9HAqjo8/MOLLmT9EKyMCXUzgvh30vS1SlMK+Ho84IH5exN44cSnrYecw/7Zpu2m4lkA==" +-+- }, +-+- "csv-stringify": { +-+- "version": "3.1.1", +-+- "resolved": "https://registry.npmjs.org/csv-stringify/-/csv-stringify-3.1.1.tgz", +-+- "integrity": "sha512-Ni9r/BdQM2cGnWzwAP09zp12LVOAMHLJ86azNHGC7s4OUo2WidGfcM3QwYEjD8c4ELCL/a4AzfIsVCzroeys+g==", +-+- "requires": { +-+- "lodash.get": "~4.4.2" +-++ "node_modules/cross-spawn/node_modules/shebang-regex": { +-++ "version": "3.0.0", +-++ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", +-++ "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", +-++ "engines": { +-++ "node": ">=8" +-+ } +-+ }, +-+- "currently-unhandled": { +-+- "version": "0.4.1", +-+- "resolved": "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz", +-+- "integrity": "sha1-mI3zP+qxke95mmE2nddsF635V+o=", +-+- "dev": true, +-+- "requires": { +-+- "array-find-index": "^1.0.1" +-++ "node_modules/cross-spawn/node_modules/which": { +-++ "version": "2.0.2", +-++ "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", +-++ "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", +-++ "dependencies": { +-++ "isexe": "^2.0.0" +-++ }, +-++ "bin": { +-++ "node-which": "bin/node-which" +-++ }, +-++ "engines": { +-++ "node": ">= 8" +-+ } +-+ }, +-+- "dashdash": { +-+- "version": "1.14.1", +-+- "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", +-+- "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", +-+- "requires": { +-+- "assert-plus": "^1.0.0" +-+- }, +-++ "node_modules/csv": { +-++ "version": "6.3.9", +-++ "resolved": "https://registry.npmjs.org/csv/-/csv-6.3.9.tgz", +-++ "integrity": "sha512-eiN+Qu8NwSLxZYia6WzB8xlX/rAQ/8EgK5A4dIF7Bz96mzcr5dW1jlcNmjG0QWySWKfPdCerH3RQ96ZqqsE8cA==", +-+ "dependencies": { +-+- "assert-plus": { +-+- "version": "1.0.0", +-+- "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", +-+- "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" +-+- } +-++ "csv-generate": "^4.4.1", +-++ "csv-parse": "^5.5.6", +-++ "csv-stringify": "^6.5.0", +-++ "stream-transform": "^3.3.2" +-++ }, +-++ "engines": { +-++ "node": ">= 0.1.90" +-+ } +-+ }, +-+- "date-fns": { +-+- "version": "1.30.1", +-+- "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-1.30.1.tgz", +-+- "integrity": "sha512-hBSVCvSmWC+QypYObzwGOd9wqdDpOt+0wl0KbU+R+uuZBS1jN8VsD1ss3irQDknRj5NvxiTF6oj/nDRnN/UQNw==", +-+- "dev": true +-++ "node_modules/csv-generate": { +-++ "version": "4.4.1", +-++ "resolved": "https://registry.npmjs.org/csv-generate/-/csv-generate-4.4.1.tgz", +-++ "integrity": "sha512-O/einO0v4zPmXaOV+sYqGa02VkST4GP5GLpWBNHEouIU7pF3kpGf3D0kCCvX82ydIY4EKkOK+R8b1BYsRXravg==" +-++ }, +-++ "node_modules/csv-parse": { +-++ "version": "5.5.6", +-++ "resolved": "https://registry.npmjs.org/csv-parse/-/csv-parse-5.5.6.tgz", +-++ "integrity": "sha512-uNpm30m/AGSkLxxy7d9yRXpJQFrZzVWLFBkS+6ngPcZkw/5k3L/jjFuj7tVnEpRn+QgmiXr21nDlhCiUK4ij2A==" +-++ }, +-++ "node_modules/csv-stringify": { +-++ "version": "6.5.0", +-++ "resolved": "https://registry.npmjs.org/csv-stringify/-/csv-stringify-6.5.0.tgz", +-++ "integrity": "sha512-edlXFVKcUx7r8Vx5zQucsuMg4wb/xT6qyz+Sr1vnLrdXqlLD1+UKyWNyZ9zn6mUW1ewmGxrpVwAcChGF0HQ/2Q==" +-++ }, +-++ "node_modules/date-fns": { +-++ "version": "2.30.0", +-++ "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.30.0.tgz", +-++ "integrity": "sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==", +-++ "dev": true, +-++ "dependencies": { +-++ "@babel/runtime": "^7.21.0" +-++ }, +-++ "engines": { +-++ "node": ">=0.11" +-++ }, +-++ "funding": { +-++ "type": "opencollective", +-++ "url": "https://opencollective.com/date-fns" +-++ } +-+ }, +-+- "debug": { +-++ "node_modules/debug": { +-+ "version": "2.6.9", +-+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", +-+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", +-+- "requires": { +-++ "dependencies": { +-+ "ms": "2.0.0" +-+ } +-+ }, +-+- "decamelize": { +-++ "node_modules/decamelize": { +-+ "version": "1.2.0", +-+ "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", +-+ "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", +-+- "dev": true +-+- }, +-+- "decode-uri-component": { +-+- "version": "0.2.0", +-+- "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", +-+- "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=", +-+- "dev": true +-++ "dev": true, +-++ "engines": { +-++ "node": ">=0.10.0" +-++ } +-+ }, +-+- "deep-extend": { +-+- "version": "0.6.0", +-+- "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", +-+- "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", +-+- "dev": true +-++ "node_modules/decamelize-keys": { +-++ "version": "1.1.1", +-++ "resolved": "https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.1.tgz", +-++ "integrity": "sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==", +-++ "dev": true, +-++ "dependencies": { +-++ "decamelize": "^1.1.0", +-++ "map-obj": "^1.0.0" +-++ }, +-++ "engines": { +-++ "node": ">=0.10.0" +-++ }, +-++ "funding": { +-++ "url": "https://github.com/sponsors/sindresorhus" +-++ } +-+ }, +-+- "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==", +-+- "requires": { +-+- "object-keys": "^1.0.12" +-++ "node_modules/decamelize-keys/node_modules/map-obj": { +-++ "version": "1.0.1", +-++ "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", +-++ "integrity": "sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==", +-++ "dev": true, +-++ "engines": { +-++ "node": ">=0.10.0" +-+ } +-+ }, +-+- "define-property": { +-+- "version": "2.0.2", +-+- "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", +-+- "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", +-+- "dev": true, +-+- "requires": { +-+- "is-descriptor": "^1.0.2", +-+- "isobject": "^3.0.1" +-+- }, +-+- "dependencies": { +-+- "is-accessor-descriptor": { +-+- "version": "1.0.0", +-+- "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", +-+- "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", +-+- "dev": true, +-+- "requires": { +-+- "kind-of": "^6.0.0" +-+- } +-+- }, +-+- "is-data-descriptor": { +-+- "version": "1.0.0", +-+- "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", +-+- "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", +-+- "dev": true, +-+- "requires": { +-+- "kind-of": "^6.0.0" +-+- } +-+- }, +-+- "is-descriptor": { +-+- "version": "1.0.2", +-+- "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", +-+- "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", +-+- "dev": true, +-+- "requires": { +-+- "is-accessor-descriptor": "^1.0.0", +-+- "is-data-descriptor": "^1.0.0", +-+- "kind-of": "^6.0.2" +-+- } +-+- } +-++ "node_modules/define-data-property": { +-++ "version": "1.1.4", +-++ "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", +-++ "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", +-++ "dependencies": { +-++ "es-define-property": "^1.0.0", +-++ "es-errors": "^1.3.0", +-++ "gopd": "^1.0.1" +-++ }, +-++ "engines": { +-++ "node": ">= 0.4" +-++ }, +-++ "funding": { +-++ "url": "https://github.com/sponsors/ljharb" +-+ } +-+ }, +-+- "delayed-stream": { +-++ "node_modules/delayed-stream": { +-+ "version": "1.0.0", +-+ "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", +-+- "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=" +-++ "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=", +-++ "engines": { +-++ "node": ">=0.4.0" +-++ } +-+ }, +-+- "delegates": { +-++ "node_modules/delegates": { +-+ "version": "1.0.0", +-+ "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", +-+- "integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=", +-++ "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==", +-+ "dev": true +-+ }, +-+- "depd": { +-+- "version": "1.1.2", +-+- "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", +-+- "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=" +-+- }, +-+- "destroy": { +-+- "version": "1.0.4", +-+- "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", +-+- "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=" +-++ "node_modules/depd": { +-++ "version": "2.0.0", +-++ "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", +-++ "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", +-++ "engines": { +-++ "node": ">= 0.8" +-++ } +-+ }, +-+- "dicer": { +-+- "version": "0.3.0", +-+- "resolved": "https://registry.npmjs.org/dicer/-/dicer-0.3.0.tgz", +-+- "integrity": "sha512-MdceRRWqltEG2dZqO769g27N/3PXfcKl04VhYnBlo2YhH7zPi88VebsjTKclaOyiuMaGU72hTfw3VkUitGcVCA==", +-+- "requires": { +-+- "streamsearch": "0.1.2" +-++ "node_modules/destroy": { +-++ "version": "1.2.0", +-++ "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", +-++ "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", +-++ "engines": { +-++ "node": ">= 0.8", +-++ "npm": "1.2.8000 || >= 1.4.16" +-+ } +-+ }, +-+- "dot-prop": { +-+- "version": "4.2.0", +-+- "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-4.2.0.tgz", +-+- "integrity": "sha512-tUMXrxlExSW6U2EXiiKGSBVdYgtV8qlHL+C10TsW4PURY/ic+eaysnSkwB4kA/mBlCyy/IKDJ+Lc3wbWeaXtuQ==", +-+- "dev": true, +-+- "requires": { +-+- "is-obj": "^1.0.0" +-+- } +-+- }, +-+- "duplexer3": { +-+- "version": "0.1.4", +-+- "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz", +-+- "integrity": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=", +-+- "dev": true +-+- }, +-+- "ecc-jsbn": { +-+- "version": "0.1.2", +-+- "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", +-+- "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", +-+- "requires": { +-+- "jsbn": "~0.1.0", +-+- "safer-buffer": "^2.1.0" +-+- } +-++ "node_modules/eastasianwidth": { +-++ "version": "0.2.0", +-++ "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", +-++ "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==" +-+ }, +-+- "ee-first": { +-++ "node_modules/ee-first": { +-+ "version": "1.1.1", +-+ "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", +-+- "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" +-++ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" +-++ }, +-++ "node_modules/ejs": { +-++ "version": "3.1.10", +-++ "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.10.tgz", +-++ "integrity": "sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==", +-++ "dependencies": { +-++ "jake": "^10.8.5" +-++ }, +-++ "bin": { +-++ "ejs": "bin/cli.js" +-++ }, +-++ "engines": { +-++ "node": ">=0.10.0" +-++ } +-+ }, +-+- "ejs": { +-+- "version": "2.6.1", +-+- "resolved": "https://registry.npmjs.org/ejs/-/ejs-2.6.1.tgz", +-+- "integrity": "sha512-0xy4A/twfrRCnkhfk8ErDi5DqdAsAqeGxht4xkCUrsvhhbQNs7E+4jV0CN7+NKIY0aHE72+XvqtBIXzD31ZbXQ==" +-++ "node_modules/emoji-regex": { +-++ "version": "8.0.0", +-++ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", +-++ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" +-+ }, +-+- "encodeurl": { +-++ "node_modules/encodeurl": { +-+ "version": "1.0.2", +-+ "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", +-+- "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=" +-++ "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", +-++ "engines": { +-++ "node": ">= 0.8" +-++ } +-+ }, +-+- "end-of-stream": { +-++ "node_modules/encoding": { +-++ "version": "0.1.13", +-++ "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", +-++ "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", +-++ "dev": true, +-++ "optional": true, +-++ "dependencies": { +-++ "iconv-lite": "^0.6.2" +-++ } +-++ }, +-++ "node_modules/encoding/node_modules/iconv-lite": { +-++ "version": "0.6.3", +-++ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", +-++ "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", +-++ "dev": true, +-++ "optional": true, +-++ "dependencies": { +-++ "safer-buffer": ">= 2.1.2 < 3.0.0" +-++ }, +-++ "engines": { +-++ "node": ">=0.10.0" +-++ } +-++ }, +-++ "node_modules/end-of-stream": { +-+ "version": "1.4.1", +-+ "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.1.tgz", +-+ "integrity": "sha512-1MkrZNvWTKCaigbn+W15elq2BB/L22nqrSY5DKlo3X6+vclJm8Bb5djXJBmEX6fS3+zCh/F4VBK5Z2KxJt4s2Q==", +-+- "requires": { +-++ "dependencies": { +-+ "once": "^1.4.0" +-+ } +-+ }, +-+- "error": { +-++ "node_modules/env-paths": { +-++ "version": "2.2.1", +-++ "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", +-++ "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", +-++ "dev": true, +-++ "engines": { +-++ "node": ">=6" +-++ } +-++ }, +-++ "node_modules/err-code": { +-++ "version": "2.0.3", +-++ "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz", +-++ "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==", +-++ "dev": true +-++ }, +-++ "node_modules/error": { +-+ "version": "7.0.2", +-+ "resolved": "https://registry.npmjs.org/error/-/error-7.0.2.tgz", +-+ "integrity": "sha1-pfdf/02ZJhJt2sDqXcOOaJFTywI=", +-+- "requires": { +-++ "dependencies": { +-+ "string-template": "~0.2.1", +-+ "xtend": "~4.0.0" +-+ } +-+ }, +-+- "error-ex": { +-++ "node_modules/error-ex": { +-+ "version": "1.3.2", +-+ "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", +-+ "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", +-+ "dev": true, +-+- "requires": { +-++ "dependencies": { +-+ "is-arrayish": "^0.2.1" +-+ } +-+ }, +-+- "escape-html": { +-++ "node_modules/es-define-property": { +-++ "version": "1.0.0", +-++ "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", +-++ "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", +-++ "dependencies": { +-++ "get-intrinsic": "^1.2.4" +-++ }, +-++ "engines": { +-++ "node": ">= 0.4" +-++ } +-++ }, +-++ "node_modules/es-errors": { +-++ "version": "1.3.0", +-++ "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", +-++ "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", +-++ "engines": { +-++ "node": ">= 0.4" +-++ } +-++ }, +-++ "node_modules/escalade": { +-++ "version": "3.1.2", +-++ "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", +-++ "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", +-++ "dev": true, +-++ "engines": { +-++ "node": ">=6" +-++ } +-++ }, +-++ "node_modules/escape-html": { +-+ "version": "1.0.3", +-+ "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", +-+- "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=" +-++ "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" +-+ }, +-+- "escape-string-regexp": { +-++ "node_modules/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 +-++ "dev": true, +-++ "engines": { +-++ "node": ">=0.8.0" +-++ } +-+ }, +-+- "etag": { +-++ "node_modules/etag": { +-+ "version": "1.8.1", +-+ "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", +-+- "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=" +-+- }, +-+- "execa": { +-+- "version": "0.7.0", +-+- "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz", +-+- "integrity": "sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c=", +-+- "dev": true, +-+- "requires": { +-+- "cross-spawn": "^5.0.1", +-+- "get-stream": "^3.0.0", +-+- "is-stream": "^1.1.0", +-+- "npm-run-path": "^2.0.0", +-+- "p-finally": "^1.0.0", +-+- "signal-exit": "^3.0.0", +-+- "strip-eof": "^1.0.0" +-+- }, +-+- "dependencies": { +-+- "cross-spawn": { +-+- "version": "5.1.0", +-+- "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", +-+- "integrity": "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=", +-+- "dev": true, +-+- "requires": { +-+- "lru-cache": "^4.0.1", +-+- "shebang-command": "^1.2.0", +-+- "which": "^1.2.9" +-+- } +-+- } +-+- } +-+- }, +-+- "expand-brackets": { +-+- "version": "2.1.4", +-+- "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", +-+- "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", +-+- "dev": true, +-+- "requires": { +-+- "debug": "^2.3.3", +-+- "define-property": "^0.2.5", +-+- "extend-shallow": "^2.0.1", +-+- "posix-character-classes": "^0.1.0", +-+- "regex-not": "^1.0.0", +-+- "snapdragon": "^0.8.1", +-+- "to-regex": "^3.0.1" +-+- }, +-+- "dependencies": { +-+- "define-property": { +-+- "version": "0.2.5", +-+- "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", +-+- "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", +-+- "dev": true, +-+- "requires": { +-+- "is-descriptor": "^0.1.0" +-+- } +-+- }, +-+- "extend-shallow": { +-+- "version": "2.0.1", +-+- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", +-+- "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", +-+- "dev": true, +-+- "requires": { +-+- "is-extendable": "^0.1.0" +-+- } +-+- } +-++ "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", +-++ "engines": { +-++ "node": ">= 0.6" +-+ } +-+ }, +-+- "express": { +-+- "version": "4.16.4", +-+- "resolved": "https://registry.npmjs.org/express/-/express-4.16.4.tgz", +-+- "integrity": "sha512-j12Uuyb4FMrd/qQAm6uCHAkPtO8FDTRJZBDd5D2KOL2eLaz1yUNdUB/NOIyq0iU4q4cFarsUCrnFDPBcnksuOg==", +-+- "requires": { +-+- "accepts": "~1.3.5", +-++ "node_modules/express": { +-++ "version": "4.19.2", +-++ "resolved": "https://registry.npmjs.org/express/-/express-4.19.2.tgz", +-++ "integrity": "sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==", +-++ "dependencies": { +-++ "accepts": "~1.3.8", +-+ "array-flatten": "1.1.1", +-+- "body-parser": "1.18.3", +-+- "content-disposition": "0.5.2", +-++ "body-parser": "1.20.2", +-++ "content-disposition": "0.5.4", +-+ "content-type": "~1.0.4", +-+- "cookie": "0.3.1", +-++ "cookie": "0.6.0", +-+ "cookie-signature": "1.0.6", +-+ "debug": "2.6.9", +-+- "depd": "~1.1.2", +-++ "depd": "2.0.0", +-+ "encodeurl": "~1.0.2", +-+ "escape-html": "~1.0.3", +-+ "etag": "~1.8.1", +-+- "finalhandler": "1.1.1", +-++ "finalhandler": "1.2.0", +-+ "fresh": "0.5.2", +-++ "http-errors": "2.0.0", +-+ "merge-descriptors": "1.0.1", +-+ "methods": "~1.1.2", +-+- "on-finished": "~2.3.0", +-+- "parseurl": "~1.3.2", +-++ "on-finished": "2.4.1", +-++ "parseurl": "~1.3.3", +-+ "path-to-regexp": "0.1.7", +-+- "proxy-addr": "~2.0.4", +-+- "qs": "6.5.2", +-+- "range-parser": "~1.2.0", +-+- "safe-buffer": "5.1.2", +-+- "send": "0.16.2", +-+- "serve-static": "1.13.2", +-+- "setprototypeof": "1.1.0", +-+- "statuses": "~1.4.0", +-+- "type-is": "~1.6.16", +-++ "proxy-addr": "~2.0.7", +-++ "qs": "6.11.0", +-++ "range-parser": "~1.2.1", +-++ "safe-buffer": "5.2.1", +-++ "send": "0.18.0", +-++ "serve-static": "1.15.0", +-++ "setprototypeof": "1.2.0", +-++ "statuses": "2.0.1", +-++ "type-is": "~1.6.18", +-+ "utils-merge": "1.0.1", +-+ "vary": "~1.1.2" +-+ }, +-+- "dependencies": { +-+- "qs": { +-+- "version": "6.5.2", +-+- "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", +-+- "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==" +-+- } +-++ "engines": { +-++ "node": ">= 0.10.0" +-+ } +-+ }, +-+- "express-busboy": { +-++ "node_modules/express-busboy": { +-+ "version": "7.0.1", +-+ "resolved": "https://registry.npmjs.org/express-busboy/-/express-busboy-7.0.1.tgz", +-+ "integrity": "sha512-ZMR9uUJp4Rx6y7YBML2Cxr5C314WECIClslfu+zgDqANx0aDyPcqesVLef0bjlQKD7X+va6p1xX0/G5WK+9JbA==", +-+- "requires": { +-++ "dependencies": { +-+ "body": "~5.1.0", +-+ "connect-busboy": "~0.0.1", +-+ "mkdirp": "~0.5.0", +-+ "qs": "^6.4.0", +-+ "uuid": "~1.4.1" +-+- }, +-+- "dependencies": { +-+- "uuid": { +-+- "version": "1.4.2", +-+- "resolved": "http://registry.npmjs.org/uuid/-/uuid-1.4.2.tgz", +-+- "integrity": "sha1-RTAZ9oaWam34PNxSROfJkOzDMvw=" +-+- } +-+ } +-+ }, +-+- "express-handlebars": { +-+- "version": "3.0.2", +-+- "resolved": "https://registry.npmjs.org/express-handlebars/-/express-handlebars-3.0.2.tgz", +-+- "integrity": "sha512-rPaSqR8xPnSqfvWvI8Mhtn7nifaMmySq6yhWkjH07Ks/nuDaRngJyf7eDN2I7PBkNVdZHf0Bz+1rY1yrZFdx8g==", +-+- "requires": { +-+- "glob": "^7.1.3", +-+- "graceful-fs": "^4.1.2", +-+- "handlebars": "^4.0.13", +-+- "object.assign": "^4.1.0", +-+- "promise": "^8.0.2" +-+- }, +-+- "dependencies": { +-+- "promise": { +-+- "version": "8.0.2", +-+- "resolved": "https://registry.npmjs.org/promise/-/promise-8.0.2.tgz", +-+- "integrity": "sha512-EIyzM39FpVOMbqgzEHhxdrEhtOSDOtjMZQ0M6iVfCE+kWNgCkAyOdnuCWqfmflylftfadU6FkiMgHZA2kUzwRw==", +-+- "requires": { +-+- "asap": "~2.0.6" +-+- } +-+- } +-++ "node_modules/express-busboy/node_modules/uuid": { +-++ "version": "1.4.2", +-++ "resolved": "http://registry.npmjs.org/uuid/-/uuid-1.4.2.tgz", +-++ "integrity": "sha1-RTAZ9oaWam34PNxSROfJkOzDMvw=", +-++ "deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details." +-++ }, +-++ "node_modules/express-handlebars": { +-++ "version": "7.1.3", +-++ "resolved": "https://registry.npmjs.org/express-handlebars/-/express-handlebars-7.1.3.tgz", +-++ "integrity": "sha512-O0W4n14iQ8+iFIDdiMh9HRI2nbVQJ/h1qndlD1TXWxxcfbKjKoqJh+ti2tROkyx4C4VQrt0y3bANBQ5auQAiew==", +-++ "dependencies": { +-++ "glob": "^10.4.2", +-++ "graceful-fs": "^4.2.11", +-++ "handlebars": "^4.7.8" +-++ }, +-++ "engines": { +-++ "node": ">=v16" +-+ } +-+ }, +-+- "extend": { +-+- "version": "3.0.2", +-+- "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", +-+- "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" +-++ "node_modules/express-handlebars/node_modules/brace-expansion": { +-++ "version": "2.0.1", +-++ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", +-++ "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", +-++ "dependencies": { +-++ "balanced-match": "^1.0.0" +-++ } +-+ }, +-+- "extend-shallow": { +-+- "version": "3.0.2", +-+- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", +-+- "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", +-+- "dev": true, +-+- "requires": { +-+- "assign-symbols": "^1.0.0", +-+- "is-extendable": "^1.0.1" +-+- }, +-+- "dependencies": { +-+- "is-extendable": { +-+- "version": "1.0.1", +-+- "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", +-+- "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", +-+- "dev": true, +-+- "requires": { +-+- "is-plain-object": "^2.0.4" +-+- } +-+- } +-++ "node_modules/express-handlebars/node_modules/glob": { +-++ "version": "10.4.2", +-++ "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.2.tgz", +-++ "integrity": "sha512-GwMlUF6PkPo3Gk21UxkCohOv0PLcIXVtKyLlpEI28R/cO/4eNOdmLk3CMW1wROV/WR/EsZOWAfBbBOqYvs88/w==", +-++ "dependencies": { +-++ "foreground-child": "^3.1.0", +-++ "jackspeak": "^3.1.2", +-++ "minimatch": "^9.0.4", +-++ "minipass": "^7.1.2", +-++ "package-json-from-dist": "^1.0.0", +-++ "path-scurry": "^1.11.1" +-++ }, +-++ "bin": { +-++ "glob": "dist/esm/bin.mjs" +-++ }, +-++ "engines": { +-++ "node": ">=16 || 14 >=14.18" +-++ }, +-++ "funding": { +-++ "url": "https://github.com/sponsors/isaacs" +-+ } +-+ }, +-+- "extglob": { +-+- "version": "2.0.4", +-+- "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", +-+- "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", +-+- "dev": true, +-+- "requires": { +-+- "array-unique": "^0.3.2", +-+- "define-property": "^1.0.0", +-+- "expand-brackets": "^2.1.4", +-+- "extend-shallow": "^2.0.1", +-+- "fragment-cache": "^0.2.1", +-+- "regex-not": "^1.0.0", +-+- "snapdragon": "^0.8.1", +-+- "to-regex": "^3.0.1" +-+- }, +-+- "dependencies": { +-+- "define-property": { +-+- "version": "1.0.0", +-+- "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", +-+- "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", +-+- "dev": true, +-+- "requires": { +-+- "is-descriptor": "^1.0.0" +-+- } +-+- }, +-+- "extend-shallow": { +-+- "version": "2.0.1", +-+- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", +-+- "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", +-+- "dev": true, +-+- "requires": { +-+- "is-extendable": "^0.1.0" +-+- } +-+- }, +-+- "is-accessor-descriptor": { +-+- "version": "1.0.0", +-+- "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", +-+- "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", +-+- "dev": true, +-+- "requires": { +-+- "kind-of": "^6.0.0" +-+- } +-++ "node_modules/express-handlebars/node_modules/minimatch": { +-++ "version": "9.0.5", +-++ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", +-++ "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", +-++ "dependencies": { +-++ "brace-expansion": "^2.0.1" +-++ }, +-++ "engines": { +-++ "node": ">=16 || 14 >=14.17" +-++ }, +-++ "funding": { +-++ "url": "https://github.com/sponsors/isaacs" +-++ } +-++ }, +-++ "node_modules/express-handlebars/node_modules/minipass": { +-++ "version": "7.1.2", +-++ "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", +-++ "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", +-++ "engines": { +-++ "node": ">=16 || 14 >=14.17" +-++ } +-++ }, +-++ "node_modules/express/node_modules/safe-buffer": { +-++ "version": "5.2.1", +-++ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", +-++ "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", +-++ "funding": [ +-++ { +-++ "type": "github", +-++ "url": "https://github.com/sponsors/feross" +-+ }, +-+- "is-data-descriptor": { +-+- "version": "1.0.0", +-+- "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", +-+- "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", +-+- "dev": true, +-+- "requires": { +-+- "kind-of": "^6.0.0" +-+- } +-++ { +-++ "type": "patreon", +-++ "url": "https://www.patreon.com/feross" +-+ }, +-+- "is-descriptor": { +-+- "version": "1.0.2", +-+- "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", +-+- "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", +-+- "dev": true, +-+- "requires": { +-+- "is-accessor-descriptor": "^1.0.0", +-+- "is-data-descriptor": "^1.0.0", +-+- "kind-of": "^6.0.2" +-+- } +-++ { +-++ "type": "consulting", +-++ "url": "https://feross.org/support" +-+ } +-+- } +-++ ] +-+ }, +-+- "extsprintf": { +-+- "version": "1.3.0", +-+- "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", +-+- "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=" +-++ "node_modules/filelist": { +-++ "version": "1.0.4", +-++ "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz", +-++ "integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==", +-++ "dependencies": { +-++ "minimatch": "^5.0.1" +-++ } +-+ }, +-+- "fast-deep-equal": { +-++ "node_modules/filelist/node_modules/brace-expansion": { +-+ "version": "2.0.1", +-+- "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz", +-+- "integrity": "sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk=" +-++ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", +-++ "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", +-++ "dependencies": { +-++ "balanced-match": "^1.0.0" +-++ } +-+ }, +-+- "fast-json-stable-stringify": { +-+- "version": "2.0.0", +-+- "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz", +-+- "integrity": "sha1-1RQsDK7msRifh9OnYREGT4bIu/I=" +-++ "node_modules/filelist/node_modules/minimatch": { +-++ "version": "5.1.6", +-++ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", +-++ "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", +-++ "dependencies": { +-++ "brace-expansion": "^2.0.1" +-++ }, +-++ "engines": { +-++ "node": ">=10" +-++ } +-+ }, +-+- "fill-range": { +-+- "version": "4.0.0", +-+- "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", +-+- "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", +-+- "dev": true, +-+- "requires": { +-+- "extend-shallow": "^2.0.1", +-+- "is-number": "^3.0.0", +-+- "repeat-string": "^1.6.1", +-+- "to-regex-range": "^2.1.0" +-+- }, +-+- "dependencies": { +-+- "extend-shallow": { +-+- "version": "2.0.1", +-+- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", +-+- "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", +-+- "dev": true, +-+- "requires": { +-+- "is-extendable": "^0.1.0" +-+- } +-+- } +-++ "node_modules/fill-range": { +-++ "version": "7.1.1", +-++ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", +-++ "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", +-++ "dev": true, +-++ "dependencies": { +-++ "to-regex-range": "^5.0.1" +-++ }, +-++ "engines": { +-++ "node": ">=8" +-+ } +-+ }, +-+- "finalhandler": { +-+- "version": "1.1.1", +-+- "resolved": "http://registry.npmjs.org/finalhandler/-/finalhandler-1.1.1.tgz", +-+- "integrity": "sha512-Y1GUDo39ez4aHAw7MysnUD5JzYX+WaIj8I57kO3aEPT1fFRL4sr7mjei97FgnwhAyyzRYmQZaTHb2+9uZ1dPtg==", +-+- "requires": { +-++ "node_modules/finalhandler": { +-++ "version": "1.2.0", +-++ "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", +-++ "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", +-++ "dependencies": { +-+ "debug": "2.6.9", +-+ "encodeurl": "~1.0.2", +-+ "escape-html": "~1.0.3", +-+- "on-finished": "~2.3.0", +-+- "parseurl": "~1.3.2", +-+- "statuses": "~1.4.0", +-++ "on-finished": "2.4.1", +-++ "parseurl": "~1.3.3", +-++ "statuses": "2.0.1", +-+ "unpipe": "~1.0.0" +-++ }, +-++ "engines": { +-++ "node": ">= 0.8" +-+ } +-+ }, +-+- "find-up": { +-+- "version": "1.1.2", +-+- "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", +-+- "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", +-++ "node_modules/find-up": { +-++ "version": "4.1.0", +-++ "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", +-++ "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", +-+ "dev": true, +-+- "requires": { +-+- "path-exists": "^2.0.0", +-+- "pinkie-promise": "^2.0.0" +-++ "dependencies": { +-++ "locate-path": "^5.0.0", +-++ "path-exists": "^4.0.0" +-++ }, +-++ "engines": { +-++ "node": ">=8" +-+ } +-+ }, +-+- "for-in": { +-+- "version": "1.0.2", +-+- "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", +-+- "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=", +-+- "dev": true +-++ "node_modules/find-up/node_modules/locate-path": { +-++ "version": "5.0.0", +-++ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", +-++ "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", +-++ "dev": true, +-++ "dependencies": { +-++ "p-locate": "^4.1.0" +-++ }, +-++ "engines": { +-++ "node": ">=8" +-++ } +-+ }, +-+- "forever-agent": { +-+- "version": "0.6.1", +-+- "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", +-+- "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=" +-++ "node_modules/find-up/node_modules/p-locate": { +-++ "version": "4.1.0", +-++ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", +-++ "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", +-++ "dev": true, +-++ "dependencies": { +-++ "p-limit": "^2.2.0" +-++ }, +-++ "engines": { +-++ "node": ">=8" +-++ } +-++ }, +-++ "node_modules/follow-redirects": { +-++ "version": "1.15.6", +-++ "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.6.tgz", +-++ "integrity": "sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==", +-++ "funding": [ +-++ { +-++ "type": "individual", +-++ "url": "https://github.com/sponsors/RubenVerborgh" +-++ } +-++ ], +-++ "engines": { +-++ "node": ">=4.0" +-++ }, +-++ "peerDependenciesMeta": { +-++ "debug": { +-++ "optional": true +-++ } +-++ } +-+ }, +-+- "form-data": { +-+- "version": "2.3.3", +-+- "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", +-+- "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", +-+- "requires": { +-+- "asynckit": "^0.4.0", +-+- "combined-stream": "^1.0.6", +-+- "mime-types": "^2.1.12" +-++ "node_modules/foreground-child": { +-++ "version": "3.2.1", +-++ "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.2.1.tgz", +-++ "integrity": "sha512-PXUUyLqrR2XCWICfv6ukppP96sdFwWbNEnfEMt7jNsISjMsvaLNinAHNDYyvkyU+SZG2BTSbT5NjG+vZslfGTA==", +-++ "dependencies": { +-++ "cross-spawn": "^7.0.0", +-++ "signal-exit": "^4.0.1" +-++ }, +-++ "engines": { +-++ "node": ">=14" +-++ }, +-++ "funding": { +-++ "url": "https://github.com/sponsors/isaacs" +-+ } +-+ }, +-+- "forwarded": { +-+- "version": "0.1.2", +-+- "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz", +-+- "integrity": "sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ=" +-++ "node_modules/foreground-child/node_modules/signal-exit": { +-++ "version": "4.1.0", +-++ "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", +-++ "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", +-++ "engines": { +-++ "node": ">=14" +-++ }, +-++ "funding": { +-++ "url": "https://github.com/sponsors/isaacs" +-++ } +-+ }, +-+- "fragment-cache": { +-+- "version": "0.2.1", +-+- "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", +-+- "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=", +-+- "dev": true, +-+- "requires": { +-+- "map-cache": "^0.2.2" +-++ "node_modules/forwarded": { +-++ "version": "0.2.0", +-++ "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", +-++ "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", +-++ "engines": { +-++ "node": ">= 0.6" +-+ } +-+ }, +-+- "fresh": { +-++ "node_modules/fresh": { +-+ "version": "0.5.2", +-+ "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", +-+- "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=" +-++ "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", +-++ "engines": { +-++ "node": ">= 0.6" +-++ } +-+ }, +-+- "fs-constants": { +-++ "node_modules/fs-constants": { +-+ "version": "1.0.0", +-+ "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", +-+ "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==" +-+ }, +-+- "fs.realpath": { +-++ "node_modules/fs-minipass": { +-++ "version": "2.1.0", +-++ "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", +-++ "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", +-++ "dev": true, +-++ "dependencies": { +-++ "minipass": "^3.0.0" +-++ }, +-++ "engines": { +-++ "node": ">= 8" +-++ } +-++ }, +-++ "node_modules/fs.realpath": { +-+ "version": "1.0.0", +-+ "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", +-+ "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" +-+ }, +-+- "fsevents": { +-+- "version": "1.2.7", +-+- "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.7.tgz", +-+- "integrity": "sha512-Pxm6sI2MeBD7RdD12RYsqaP0nMiwx8eZBXCa6z2L+mRHm2DYrOYwihmhjpkdjUHwQhslWQjRpEgNq4XvBmaAuw==", +-++ "node_modules/fsevents": { +-++ "version": "2.3.3", +-++ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", +-++ "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", +-+ "dev": true, +-++ "hasInstallScript": true, +-+ "optional": true, +-+- "requires": { +-+- "nan": "^2.9.2", +-+- "node-pre-gyp": "^0.10.0" +-+- }, +-+- "dependencies": { +-+- "abbrev": { +-+- "version": "1.1.1", +-+- "bundled": true, +-+- "dev": true, +-+- "optional": true +-+- }, +-+- "ansi-regex": { +-+- "version": "2.1.1", +-+- "bundled": true, +-+- "dev": true +-+- }, +-+- "aproba": { +-+- "version": "1.2.0", +-+- "bundled": true, +-+- "dev": true, +-+- "optional": true +-+- }, +-+- "are-we-there-yet": { +-+- "version": "1.1.5", +-+- "bundled": true, +-+- "dev": true, +-+- "optional": true, +-+- "requires": { +-+- "delegates": "^1.0.0", +-+- "readable-stream": "^2.0.6" +-+- } +-+- }, +-+- "balanced-match": { +-+- "version": "1.0.0", +-+- "bundled": true, +-+- "dev": true +-+- }, +-+- "brace-expansion": { +-+- "version": "1.1.11", +-+- "bundled": true, +-+- "dev": true, +-+- "requires": { +-+- "balanced-match": "^1.0.0", +-+- "concat-map": "0.0.1" +-+- } +-+- }, +-+- "chownr": { +-+- "version": "1.1.1", +-+- "bundled": true, +-+- "dev": true, +-+- "optional": true +-+- }, +-+- "code-point-at": { +-+- "version": "1.1.0", +-+- "bundled": true, +-+- "dev": true +-+- }, +-+- "concat-map": { +-+- "version": "0.0.1", +-+- "bundled": true, +-+- "dev": true +-+- }, +-+- "console-control-strings": { +-+- "version": "1.1.0", +-+- "bundled": true, +-+- "dev": true +-+- }, +-+- "core-util-is": { +-+- "version": "1.0.2", +-+- "bundled": true, +-+- "dev": true, +-+- "optional": true +-+- }, +-+- "debug": { +-+- "version": "2.6.9", +-+- "bundled": true, +-+- "dev": true, +-+- "optional": true, +-+- "requires": { +-+- "ms": "2.0.0" +-+- } +-+- }, +-+- "deep-extend": { +-+- "version": "0.6.0", +-+- "bundled": true, +-+- "dev": true, +-+- "optional": true +-+- }, +-+- "delegates": { +-+- "version": "1.0.0", +-+- "bundled": true, +-+- "dev": true, +-+- "optional": true +-+- }, +-+- "detect-libc": { +-+- "version": "1.0.3", +-+- "bundled": true, +-+- "dev": true, +-+- "optional": true +-+- }, +-+- "fs-minipass": { +-+- "version": "1.2.5", +-+- "bundled": true, +-+- "dev": true, +-+- "optional": true, +-+- "requires": { +-+- "minipass": "^2.2.1" +-+- } +-+- }, +-+- "fs.realpath": { +-+- "version": "1.0.0", +-+- "bundled": true, +-+- "dev": true, +-+- "optional": true +-+- }, +-+- "gauge": { +-+- "version": "2.7.4", +-+- "bundled": true, +-+- "dev": true, +-+- "optional": true, +-+- "requires": { +-+- "aproba": "^1.0.3", +-+- "console-control-strings": "^1.0.0", +-+- "has-unicode": "^2.0.0", +-+- "object-assign": "^4.1.0", +-+- "signal-exit": "^3.0.0", +-+- "string-width": "^1.0.1", +-+- "strip-ansi": "^3.0.1", +-+- "wide-align": "^1.1.0" +-+- } +-+- }, +-+- "glob": { +-+- "version": "7.1.3", +-+- "bundled": true, +-+- "dev": true, +-+- "optional": true, +-+- "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" +-+- } +-+- }, +-+- "has-unicode": { +-+- "version": "2.0.1", +-+- "bundled": true, +-+- "dev": true, +-+- "optional": true +-+- }, +-+- "iconv-lite": { +-+- "version": "0.4.24", +-+- "bundled": true, +-+- "dev": true, +-+- "optional": true, +-+- "requires": { +-+- "safer-buffer": ">= 2.1.2 < 3" +-+- } +-+- }, +-+- "ignore-walk": { +-+- "version": "3.0.1", +-+- "bundled": true, +-+- "dev": true, +-+- "optional": true, +-+- "requires": { +-+- "minimatch": "^3.0.4" +-+- } +-+- }, +-+- "inflight": { +-+- "version": "1.0.6", +-+- "bundled": true, +-+- "dev": true, +-+- "optional": true, +-+- "requires": { +-+- "once": "^1.3.0", +-+- "wrappy": "1" +-+- } +-+- }, +-+- "inherits": { +-+- "version": "2.0.3", +-+- "bundled": true, +-+- "dev": true +-+- }, +-+- "ini": { +-+- "version": "1.3.5", +-+- "bundled": true, +-+- "dev": true, +-+- "optional": true +-+- }, +-+- "is-fullwidth-code-point": { +-+- "version": "1.0.0", +-+- "bundled": true, +-+- "dev": true, +-+- "requires": { +-+- "number-is-nan": "^1.0.0" +-+- } +-+- }, +-+- "isarray": { +-+- "version": "1.0.0", +-+- "bundled": true, +-+- "dev": true, +-+- "optional": true +-+- }, +-+- "minimatch": { +-+- "version": "3.0.4", +-+- "bundled": true, +-+- "dev": true, +-+- "requires": { +-+- "brace-expansion": "^1.1.7" +-+- } +-+- }, +-+- "minimist": { +-+- "version": "0.0.8", +-+- "bundled": true, +-+- "dev": true +-+- }, +-+- "minipass": { +-+- "version": "2.3.5", +-+- "bundled": true, +-+- "dev": true, +-+- "requires": { +-+- "safe-buffer": "^5.1.2", +-+- "yallist": "^3.0.0" +-+- } +-+- }, +-+- "minizlib": { +-+- "version": "1.2.1", +-+- "bundled": true, +-+- "dev": true, +-+- "optional": true, +-+- "requires": { +-+- "minipass": "^2.2.1" +-+- } +-+- }, +-+- "mkdirp": { +-+- "version": "0.5.1", +-+- "bundled": true, +-+- "dev": true, +-+- "requires": { +-+- "minimist": "0.0.8" +-+- } +-+- }, +-+- "ms": { +-+- "version": "2.0.0", +-+- "bundled": true, +-+- "dev": true, +-+- "optional": true +-+- }, +-+- "needle": { +-+- "version": "2.2.4", +-+- "bundled": true, +-+- "dev": true, +-+- "optional": true, +-+- "requires": { +-+- "debug": "^2.1.2", +-+- "iconv-lite": "^0.4.4", +-+- "sax": "^1.2.4" +-+- } +-+- }, +-+- "node-pre-gyp": { +-+- "version": "0.10.3", +-+- "bundled": true, +-+- "dev": true, +-+- "optional": true, +-+- "requires": { +-+- "detect-libc": "^1.0.2", +-+- "mkdirp": "^0.5.1", +-+- "needle": "^2.2.1", +-+- "nopt": "^4.0.1", +-+- "npm-packlist": "^1.1.6", +-+- "npmlog": "^4.0.2", +-+- "rc": "^1.2.7", +-+- "rimraf": "^2.6.1", +-+- "semver": "^5.3.0", +-+- "tar": "^4" +-+- } +-+- }, +-+- "nopt": { +-+- "version": "4.0.1", +-+- "bundled": true, +-+- "dev": true, +-+- "optional": true, +-+- "requires": { +-+- "abbrev": "1", +-+- "osenv": "^0.1.4" +-+- } +-+- }, +-+- "npm-bundled": { +-+- "version": "1.0.5", +-+- "bundled": true, +-+- "dev": true, +-+- "optional": true +-+- }, +-+- "npm-packlist": { +-+- "version": "1.2.0", +-+- "bundled": true, +-+- "dev": true, +-+- "optional": true, +-+- "requires": { +-+- "ignore-walk": "^3.0.1", +-+- "npm-bundled": "^1.0.1" +-+- } +-+- }, +-+- "npmlog": { +-+- "version": "4.1.2", +-+- "bundled": true, +-+- "dev": true, +-+- "optional": true, +-+- "requires": { +-+- "are-we-there-yet": "~1.1.2", +-+- "console-control-strings": "~1.1.0", +-+- "gauge": "~2.7.3", +-+- "set-blocking": "~2.0.0" +-+- } +-+- }, +-+- "number-is-nan": { +-+- "version": "1.0.1", +-+- "bundled": true, +-+- "dev": true +-+- }, +-+- "object-assign": { +-+- "version": "4.1.1", +-+- "bundled": true, +-+- "dev": true, +-+- "optional": true +-+- }, +-+- "once": { +-+- "version": "1.4.0", +-+- "bundled": true, +-+- "dev": true, +-+- "requires": { +-+- "wrappy": "1" +-+- } +-+- }, +-+- "os-homedir": { +-+- "version": "1.0.2", +-+- "bundled": true, +-+- "dev": true, +-+- "optional": true +-+- }, +-+- "os-tmpdir": { +-+- "version": "1.0.2", +-+- "bundled": true, +-+- "dev": true, +-+- "optional": true +-+- }, +-+- "osenv": { +-+- "version": "0.1.5", +-+- "bundled": true, +-+- "dev": true, +-+- "optional": true, +-+- "requires": { +-+- "os-homedir": "^1.0.0", +-+- "os-tmpdir": "^1.0.0" +-+- } +-+- }, +-+- "path-is-absolute": { +-+- "version": "1.0.1", +-+- "bundled": true, +-+- "dev": true, +-+- "optional": true +-+- }, +-+- "process-nextick-args": { +-+- "version": "2.0.0", +-+- "bundled": true, +-+- "dev": true, +-+- "optional": true +-+- }, +-+- "rc": { +-+- "version": "1.2.8", +-+- "bundled": true, +-+- "dev": true, +-+- "optional": true, +-+- "requires": { +-+- "deep-extend": "^0.6.0", +-+- "ini": "~1.3.0", +-+- "minimist": "^1.2.0", +-+- "strip-json-comments": "~2.0.1" +-+- }, +-+- "dependencies": { +-+- "minimist": { +-+- "version": "1.2.0", +-+- "bundled": true, +-+- "dev": true, +-+- "optional": true +-+- } +-+- } +-+- }, +-+- "readable-stream": { +-+- "version": "2.3.6", +-+- "bundled": true, +-+- "dev": true, +-+- "optional": true, +-+- "requires": { +-+- "core-util-is": "~1.0.0", +-+- "inherits": "~2.0.3", +-+- "isarray": "~1.0.0", +-+- "process-nextick-args": "~2.0.0", +-+- "safe-buffer": "~5.1.1", +-+- "string_decoder": "~1.1.1", +-+- "util-deprecate": "~1.0.1" +-+- } +-+- }, +-+- "rimraf": { +-+- "version": "2.6.3", +-+- "bundled": true, +-+- "dev": true, +-+- "optional": true, +-+- "requires": { +-+- "glob": "^7.1.3" +-+- } +-+- }, +-+- "safe-buffer": { +-+- "version": "5.1.2", +-+- "bundled": true, +-+- "dev": true +-+- }, +-+- "safer-buffer": { +-+- "version": "2.1.2", +-+- "bundled": true, +-+- "dev": true, +-+- "optional": true +-+- }, +-+- "sax": { +-+- "version": "1.2.4", +-+- "bundled": true, +-+- "dev": true, +-+- "optional": true +-+- }, +-+- "semver": { +-+- "version": "5.6.0", +-+- "bundled": true, +-+- "dev": true, +-+- "optional": true +-+- }, +-+- "set-blocking": { +-+- "version": "2.0.0", +-+- "bundled": true, +-+- "dev": true, +-+- "optional": true +-+- }, +-+- "signal-exit": { +-+- "version": "3.0.2", +-+- "bundled": true, +-+- "dev": true, +-+- "optional": true +-+- }, +-+- "string-width": { +-+- "version": "1.0.2", +-+- "bundled": true, +-+- "dev": true, +-+- "requires": { +-+- "code-point-at": "^1.0.0", +-+- "is-fullwidth-code-point": "^1.0.0", +-+- "strip-ansi": "^3.0.0" +-+- } +-+- }, +-+- "string_decoder": { +-+- "version": "1.1.1", +-+- "bundled": true, +-+- "dev": true, +-+- "optional": true, +-+- "requires": { +-+- "safe-buffer": "~5.1.0" +-+- } +-+- }, +-+- "strip-ansi": { +-+- "version": "3.0.1", +-+- "bundled": true, +-+- "dev": true, +-+- "requires": { +-+- "ansi-regex": "^2.0.0" +-+- } +-+- }, +-+- "strip-json-comments": { +-+- "version": "2.0.1", +-+- "bundled": true, +-+- "dev": true, +-+- "optional": true +-+- }, +-+- "tar": { +-+- "version": "4.4.8", +-+- "bundled": true, +-+- "dev": true, +-+- "optional": true, +-+- "requires": { +-+- "chownr": "^1.1.1", +-+- "fs-minipass": "^1.2.5", +-+- "minipass": "^2.3.4", +-+- "minizlib": "^1.1.1", +-+- "mkdirp": "^0.5.0", +-+- "safe-buffer": "^5.1.2", +-+- "yallist": "^3.0.2" +-+- } +-+- }, +-+- "util-deprecate": { +-+- "version": "1.0.2", +-+- "bundled": true, +-+- "dev": true, +-+- "optional": true +-+- }, +-+- "wide-align": { +-+- "version": "1.1.3", +-+- "bundled": true, +-+- "dev": true, +-+- "optional": true, +-+- "requires": { +-+- "string-width": "^1.0.2 || 2" +-+- } +-+- }, +-+- "wrappy": { +-+- "version": "1.0.2", +-+- "bundled": true, +-+- "dev": true +-+- }, +-+- "yallist": { +-+- "version": "3.0.3", +-+- "bundled": true, +-+- "dev": true +-+- } +-++ "os": [ +-++ "darwin" +-++ ], +-++ "engines": { +-++ "node": "^8.16.0 || ^10.6.0 || >=11.0.0" +-++ } +-++ }, +-++ "node_modules/function-bind": { +-++ "version": "1.1.2", +-++ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", +-++ "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", +-++ "funding": { +-++ "url": "https://github.com/sponsors/ljharb" +-+ } +-+ }, +-+- "fstream": { +-+- "version": "1.0.11", +-+- "resolved": "https://registry.npmjs.org/fstream/-/fstream-1.0.11.tgz", +-+- "integrity": "sha1-XB+x8RdHcRTwYyoOtLcbPLD9MXE=", +-++ "node_modules/gauge": { +-++ "version": "4.0.4", +-++ "resolved": "https://registry.npmjs.org/gauge/-/gauge-4.0.4.tgz", +-++ "integrity": "sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==", +-++ "deprecated": "This package is no longer supported.", +-+ "dev": true, +-+- "requires": { +-+- "graceful-fs": "^4.1.2", +-+- "inherits": "~2.0.0", +-+- "mkdirp": ">=0.5 0", +-+- "rimraf": "2" +-++ "dependencies": { +-++ "aproba": "^1.0.3 || ^2.0.0", +-++ "color-support": "^1.1.3", +-++ "console-control-strings": "^1.1.0", +-++ "has-unicode": "^2.0.1", +-++ "signal-exit": "^3.0.7", +-++ "string-width": "^4.2.3", +-++ "strip-ansi": "^6.0.1", +-++ "wide-align": "^1.1.5" +-++ }, +-++ "engines": { +-++ "node": "^12.13.0 || ^14.15.0 || >=16.0.0" +-+ } +-+ }, +-+- "function-bind": { +-+- "version": "1.1.1", +-+- "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", +-+- "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" +-+- }, +-+- "gauge": { +-+- "version": "2.7.4", +-+- "resolved": "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz", +-+- "integrity": "sha1-LANAXHU4w51+s3sxcCLjJfsBi/c=", +-+- "dev": true, +-+- "requires": { +-+- "aproba": "^1.0.3", +-+- "console-control-strings": "^1.0.0", +-+- "has-unicode": "^2.0.0", +-+- "object-assign": "^4.1.0", +-+- "signal-exit": "^3.0.0", +-+- "string-width": "^1.0.1", +-+- "strip-ansi": "^3.0.1", +-+- "wide-align": "^1.1.0" +-+- } +-+- }, +-+- "gaze": { +-++ "node_modules/gaze": { +-+ "version": "1.1.3", +-+ "resolved": "https://registry.npmjs.org/gaze/-/gaze-1.1.3.tgz", +-+ "integrity": "sha512-BRdNm8hbWzFzWHERTrejLqwHDfS4GibPoq5wjTPIoJHoBtKGPg3xAFfxmM+9ztbXelxcf2hwQcaz1PtmFeue8g==", +-+ "dev": true, +-+- "requires": { +-++ "dependencies": { +-+ "globule": "^1.0.0" +-++ }, +-++ "engines": { +-++ "node": ">= 4.0.0" +-+ } +-+ }, +-+- "get-caller-file": { +-+- "version": "1.0.3", +-+- "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz", +-+- "integrity": "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==", +-+- "dev": true +-++ "node_modules/get-intrinsic": { +-++ "version": "1.2.4", +-++ "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", +-++ "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", +-++ "dependencies": { +-++ "es-errors": "^1.3.0", +-++ "function-bind": "^1.1.2", +-++ "has-proto": "^1.0.1", +-++ "has-symbols": "^1.0.3", +-++ "hasown": "^2.0.0" +-++ }, +-++ "engines": { +-++ "node": ">= 0.4" +-++ }, +-++ "funding": { +-++ "url": "https://github.com/sponsors/ljharb" +-++ } +-+ }, +-+- "get-stdin": { +-++ "node_modules/get-stdin": { +-+ "version": "4.0.1", +-+ "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz", +-+- "integrity": "sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4=", +-+- "dev": true +-+- }, +-+- "get-stream": { +-+- "version": "3.0.0", +-+- "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", +-+- "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=", +-+- "dev": true +-+- }, +-+- "get-value": { +-+- "version": "2.0.6", +-+- "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", +-+- "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=", +-+- "dev": true +-+- }, +-+- "getpass": { +-+- "version": "0.1.7", +-+- "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", +-+- "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", +-+- "requires": { +-+- "assert-plus": "^1.0.0" +-+- }, +-+- "dependencies": { +-+- "assert-plus": { +-+- "version": "1.0.0", +-+- "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", +-+- "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" +-+- } +-++ "integrity": "sha512-F5aQMywwJ2n85s4hJPTT9RPxGmubonuB10MNYo17/xph174n2MIR33HRguhzVag10O/npM7SPk73LMZNP+FaWw==", +-++ "dev": true, +-++ "engines": { +-++ "node": ">=0.10.0" +-+ } +-+ }, +-+- "glob": { +-++ "node_modules/glob": { +-+ "version": "7.1.3", +-+ "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.3.tgz", +-+ "integrity": "sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==", +-+- "requires": { +-++ "deprecated": "Glob versions prior to v9 are no longer supported", +-++ "dependencies": { +-+ "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" +-++ }, +-++ "engines": { +-++ "node": "*" +-+ } +-+ }, +-+- "glob-parent": { +-+- "version": "3.1.0", +-+- "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", +-+- "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", +-+- "dev": true, +-+- "requires": { +-+- "is-glob": "^3.1.0", +-+- "path-dirname": "^1.0.0" +-+- }, +-+- "dependencies": { +-+- "is-glob": { +-+- "version": "3.1.0", +-+- "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", +-+- "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", +-+- "dev": true, +-+- "requires": { +-+- "is-extglob": "^2.1.0" +-+- } +-+- } +-+- } +-+- }, +-+- "global-dirs": { +-+- "version": "0.1.1", +-+- "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-0.1.1.tgz", +-+- "integrity": "sha1-sxnA3UYH81PzvpzKTHL8FIxJ9EU=", +-++ "node_modules/glob-parent": { +-++ "version": "5.1.2", +-++ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", +-++ "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", +-+ "dev": true, +-+- "requires": { +-+- "ini": "^1.3.4" +-++ "dependencies": { +-++ "is-glob": "^4.0.1" +-++ }, +-++ "engines": { +-++ "node": ">= 6" +-+ } +-+ }, +-+- "globule": { +-++ "node_modules/globule": { +-+ "version": "1.2.1", +-+ "resolved": "https://registry.npmjs.org/globule/-/globule-1.2.1.tgz", +-+ "integrity": "sha512-g7QtgWF4uYSL5/dn71WxubOrS7JVGCnFPEnoeChJmBnyR9Mw8nGoEwOgJL/RC2Te0WhbsEUCejfH8SZNJ+adYQ==", +-+ "dev": true, +-+- "requires": { +-++ "dependencies": { +-+ "glob": "~7.1.1", +-+ "lodash": "~4.17.10", +-+ "minimatch": "~3.0.2" +-++ }, +-++ "engines": { +-++ "node": ">= 0.10" +-+ } +-+ }, +-+- "got": { +-+- "version": "6.7.1", +-+- "resolved": "https://registry.npmjs.org/got/-/got-6.7.1.tgz", +-+- "integrity": "sha1-JAzQV4WpoY5WHcG0S0HHY+8ejbA=", +-+- "dev": true, +-+- "requires": { +-+- "create-error-class": "^3.0.0", +-+- "duplexer3": "^0.1.4", +-+- "get-stream": "^3.0.0", +-+- "is-redirect": "^1.0.0", +-+- "is-retry-allowed": "^1.0.0", +-+- "is-stream": "^1.0.0", +-+- "lowercase-keys": "^1.0.0", +-+- "safe-buffer": "^5.0.1", +-+- "timed-out": "^4.0.0", +-+- "unzip-response": "^2.0.1", +-+- "url-parse-lax": "^1.0.0" +-++ "node_modules/gopd": { +-++ "version": "1.0.1", +-++ "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", +-++ "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", +-++ "dependencies": { +-++ "get-intrinsic": "^1.1.3" +-++ }, +-++ "funding": { +-++ "url": "https://github.com/sponsors/ljharb" +-+ } +-+ }, +-+- "graceful-fs": { +-+- "version": "4.1.15", +-+- "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.15.tgz", +-+- "integrity": "sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA==" +-++ "node_modules/graceful-fs": { +-++ "version": "4.2.11", +-++ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", +-++ "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" +-+ }, +-+- "handlebars": { +-+- "version": "4.1.0", +-+- "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.1.0.tgz", +-+- "integrity": "sha512-l2jRuU1NAWK6AW5qqcTATWQJvNPEwkM7NEKSiv/gqOsoSQbVoWyqVEY5GS+XPQ88zLNmqASRpzfdm8d79hJS+w==", +-+- "requires": { +-+- "async": "^2.5.0", +-+- "optimist": "^0.6.1", +-++ "node_modules/handlebars": { +-++ "version": "4.7.8", +-++ "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.8.tgz", +-++ "integrity": "sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==", +-++ "dependencies": { +-++ "minimist": "^1.2.5", +-++ "neo-async": "^2.6.2", +-+ "source-map": "^0.6.1", +-+- "uglify-js": "^3.1.4" +-++ "wordwrap": "^1.0.0" +-+ }, +-+- "dependencies": { +-+- "source-map": { +-+- "version": "0.6.1", +-+- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", +-+- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" +-+- } +-+- } +-+- }, +-+- "har-schema": { +-+- "version": "2.0.0", +-+- "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", +-+- "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=" +-+- }, +-+- "har-validator": { +-+- "version": "5.1.3", +-+- "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.3.tgz", +-+- "integrity": "sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g==", +-+- "requires": { +-+- "ajv": "^6.5.5", +-+- "har-schema": "^2.0.0" +-++ "bin": { +-++ "handlebars": "bin/handlebars" +-++ }, +-++ "engines": { +-++ "node": ">=0.4.7" +-++ }, +-++ "optionalDependencies": { +-++ "uglify-js": "^3.1.4" +-+ } +-+ }, +-+- "has-ansi": { +-+- "version": "2.0.0", +-+- "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", +-+- "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", +-++ "node_modules/hard-rejection": { +-++ "version": "2.1.0", +-++ "resolved": "https://registry.npmjs.org/hard-rejection/-/hard-rejection-2.1.0.tgz", +-++ "integrity": "sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==", +-+ "dev": true, +-+- "requires": { +-+- "ansi-regex": "^2.0.0" +-++ "engines": { +-++ "node": ">=6" +-+ } +-+ }, +-+- "has-flag": { +-++ "node_modules/has-flag": { +-+ "version": "3.0.0", +-+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", +-+ "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", +-+- "dev": true +-++ "dev": true, +-++ "engines": { +-++ "node": ">=4" +-++ } +-+ }, +-+- "has-symbols": { +-+- "version": "1.0.0", +-+- "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.0.tgz", +-+- "integrity": "sha1-uhqPGvKg/DllD1yFA2dwQSIGO0Q=" +-++ "node_modules/has-property-descriptors": { +-++ "version": "1.0.2", +-++ "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", +-++ "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", +-++ "dependencies": { +-++ "es-define-property": "^1.0.0" +-++ }, +-++ "funding": { +-++ "url": "https://github.com/sponsors/ljharb" +-++ } +-++ }, +-++ "node_modules/has-proto": { +-++ "version": "1.0.3", +-++ "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", +-++ "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", +-++ "engines": { +-++ "node": ">= 0.4" +-++ }, +-++ "funding": { +-++ "url": "https://github.com/sponsors/ljharb" +-++ } +-++ }, +-++ "node_modules/has-symbols": { +-++ "version": "1.0.3", +-++ "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", +-++ "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", +-++ "engines": { +-++ "node": ">= 0.4" +-++ }, +-++ "funding": { +-++ "url": "https://github.com/sponsors/ljharb" +-++ } +-+ }, +-+- "has-unicode": { +-++ "node_modules/has-unicode": { +-+ "version": "2.0.1", +-+ "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", +-+- "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=", +-++ "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==", +-+ "dev": true +-+ }, +-+- "has-value": { +-+- "version": "1.0.0", +-+- "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", +-+- "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=", +-++ "node_modules/hasown": { +-++ "version": "2.0.2", +-++ "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", +-++ "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", +-++ "dependencies": { +-++ "function-bind": "^1.1.2" +-++ }, +-++ "engines": { +-++ "node": ">= 0.4" +-++ } +-++ }, +-++ "node_modules/hosted-git-info": { +-++ "version": "2.8.9", +-++ "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", +-++ "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", +-++ "dev": true +-++ }, +-++ "node_modules/http-cache-semantics": { +-++ "version": "4.1.1", +-++ "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", +-++ "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==", +-++ "dev": true +-++ }, +-++ "node_modules/http-errors": { +-++ "version": "2.0.0", +-++ "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", +-++ "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", +-++ "dependencies": { +-++ "depd": "2.0.0", +-++ "inherits": "2.0.4", +-++ "setprototypeof": "1.2.0", +-++ "statuses": "2.0.1", +-++ "toidentifier": "1.0.1" +-++ }, +-++ "engines": { +-++ "node": ">= 0.8" +-++ } +-++ }, +-++ "node_modules/http-proxy-agent": { +-++ "version": "5.0.0", +-++ "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz", +-++ "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==", +-+ "dev": true, +-+- "requires": { +-+- "get-value": "^2.0.6", +-+- "has-values": "^1.0.0", +-+- "isobject": "^3.0.0" +-++ "dependencies": { +-++ "@tootallnate/once": "2", +-++ "agent-base": "6", +-++ "debug": "4" +-++ }, +-++ "engines": { +-++ "node": ">= 6" +-+ } +-+ }, +-+- "has-values": { +-+- "version": "1.0.0", +-+- "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", +-+- "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=", +-+- "dev": true, +-+- "requires": { +-+- "is-number": "^3.0.0", +-+- "kind-of": "^4.0.0" +-+- }, +-+- "dependencies": { +-+- "kind-of": { +-+- "version": "4.0.0", +-+- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", +-+- "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", +-+- "dev": true, +-+- "requires": { +-+- "is-buffer": "^1.1.5" +-+- } +-++ "node_modules/http-proxy-agent/node_modules/debug": { +-++ "version": "4.3.5", +-++ "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.5.tgz", +-++ "integrity": "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==", +-++ "dev": true, +-++ "dependencies": { +-++ "ms": "2.1.2" +-++ }, +-++ "engines": { +-++ "node": ">=6.0" +-++ }, +-++ "peerDependenciesMeta": { +-++ "supports-color": { +-++ "optional": true +-+ } +-+ } +-+ }, +-+- "hosted-git-info": { +-+- "version": "2.7.1", +-+- "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.7.1.tgz", +-+- "integrity": "sha512-7T/BxH19zbcCTa8XkMlbK5lTo1WtgkFi3GvdWEyNuc4Vex7/9Dqbnpsf4JMydcfj9HCg4zUWFTL3Za6lapg5/w==", +-++ "node_modules/http-proxy-agent/node_modules/ms": { +-++ "version": "2.1.2", +-++ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", +-++ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", +-+ "dev": true +-+ }, +-+- "http-errors": { +-+- "version": "1.6.3", +-+- "resolved": "http://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", +-+- "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=", +-+- "requires": { +-+- "depd": "~1.1.2", +-+- "inherits": "2.0.3", +-+- "setprototypeof": "1.1.0", +-+- "statuses": ">= 1.4.0 < 2" +-++ "node_modules/https-proxy-agent": { +-++ "version": "5.0.1", +-++ "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", +-++ "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", +-++ "dev": true, +-++ "dependencies": { +-++ "agent-base": "6", +-++ "debug": "4" +-++ }, +-++ "engines": { +-++ "node": ">= 6" +-+ } +-+ }, +-+- "http-signature": { +-+- "version": "1.2.0", +-+- "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", +-+- "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", +-+- "requires": { +-+- "assert-plus": "^1.0.0", +-+- "jsprim": "^1.2.2", +-+- "sshpk": "^1.7.0" +-+- } +-+- }, +-+- "iconv-lite": { +-+- "version": "0.4.23", +-+- "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.23.tgz", +-+- "integrity": "sha512-neyTUVFtahjf0mB3dZT77u+8O0QB89jFdnBkd5P1JgYPbPaia3gXXOVL2fq8VyU2gMMD7SaN7QukTB/pmXYvDA==", +-+- "requires": { +-++ "node_modules/https-proxy-agent/node_modules/debug": { +-++ "version": "4.3.5", +-++ "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.5.tgz", +-++ "integrity": "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==", +-++ "dev": true, +-++ "dependencies": { +-++ "ms": "2.1.2" +-++ }, +-++ "engines": { +-++ "node": ">=6.0" +-++ }, +-++ "peerDependenciesMeta": { +-++ "supports-color": { +-++ "optional": true +-++ } +-++ } +-++ }, +-++ "node_modules/https-proxy-agent/node_modules/ms": { +-++ "version": "2.1.2", +-++ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", +-++ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", +-++ "dev": true +-++ }, +-++ "node_modules/humanize-ms": { +-++ "version": "1.2.1", +-++ "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz", +-++ "integrity": "sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==", +-++ "dev": true, +-++ "dependencies": { +-++ "ms": "^2.0.0" +-++ } +-++ }, +-++ "node_modules/iconv-lite": { +-++ "version": "0.4.24", +-++ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", +-++ "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", +-++ "dependencies": { +-+ "safer-buffer": ">= 2.1.2 < 3" +-++ }, +-++ "engines": { +-++ "node": ">=0.10.0" +-+ } +-+ }, +-+- "ieee754": { +-++ "node_modules/ieee754": { +-+ "version": "1.1.12", +-+ "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.12.tgz", +-+ "integrity": "sha512-GguP+DRY+pJ3soyIiGPTvdiVXjZ+DbXOxGpXn3eMvNW4x4irjqXm4wHKscC+TfxSJ0yw/S1F24tqdMNsMZTiLA==" +-+ }, +-+- "ignore-by-default": { +-++ "node_modules/ignore-by-default": { +-+ "version": "1.0.1", +-+ "resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz", +-+ "integrity": "sha1-SMptcvbGo68Aqa1K5odr44ieKwk=", +-+ "dev": true +-+ }, +-+- "immediate": { +-++ "node_modules/immediate": { +-+ "version": "3.0.6", +-+ "resolved": "https://registry.npmjs.org/immediate/-/immediate-3.0.6.tgz", +-+ "integrity": "sha1-nbHb0Pr43m++D13V5Wu2BigN5ps=" +-+ }, +-+- "import-lazy": { +-+- "version": "2.1.0", +-+- "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz", +-+- "integrity": "sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM=", +-+- "dev": true +-+- }, +-+- "imurmurhash": { +-++ "node_modules/imurmurhash": { +-+ "version": "0.1.4", +-+ "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", +-+ "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", +-+- "dev": true +-+- }, +-+- "in-publish": { +-+- "version": "2.0.0", +-+- "resolved": "https://registry.npmjs.org/in-publish/-/in-publish-2.0.0.tgz", +-+- "integrity": "sha1-4g/146KvwmkDILbcVSaCqcf631E=", +-+- "dev": true +-++ "dev": true, +-++ "engines": { +-++ "node": ">=0.8.19" +-++ } +-+ }, +-+- "indent-string": { +-+- "version": "2.1.0", +-+- "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz", +-+- "integrity": "sha1-ji1INIdCEhtKghi3oTfppSBJ3IA=", +-++ "node_modules/indent-string": { +-++ "version": "4.0.0", +-++ "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", +-++ "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", +-+ "dev": true, +-+- "requires": { +-+- "repeating": "^2.0.0" +-++ "engines": { +-++ "node": ">=8" +-+ } +-+ }, +-+- "inflight": { +-++ "node_modules/infer-owner": { +-++ "version": "1.0.4", +-++ "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", +-++ "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==", +-++ "dev": true +-++ }, +-++ "node_modules/inflight": { +-+ "version": "1.0.6", +-+ "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", +-+ "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", +-+- "requires": { +-++ "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", +-++ "dependencies": { +-+ "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=" +-+- }, +-+- "ini": { +-+- "version": "1.3.5", +-+- "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz", +-+- "integrity": "sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==", +-+- "dev": true +-+- }, +-+- "invert-kv": { +-+- "version": "1.0.0", +-+- "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz", +-+- "integrity": "sha1-EEqOSqym09jNFXqO+L+rLXo//bY=", +-+- "dev": true +-+- }, +-+- "ipaddr.js": { +-+- "version": "1.8.0", +-+- "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.8.0.tgz", +-+- "integrity": "sha1-6qM9bd16zo9/b+DJygRA5wZzix4=" +-++ "node_modules/inherits": { +-++ "version": "2.0.4", +-++ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", +-++ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" +-+ }, +-+- "is-accessor-descriptor": { +-+- "version": "0.1.6", +-+- "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", +-+- "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", +-++ "node_modules/ip-address": { +-++ "version": "9.0.5", +-++ "resolved": "https://registry.npmjs.org/ip-address/-/ip-address-9.0.5.tgz", +-++ "integrity": "sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==", +-+ "dev": true, +-+- "requires": { +-+- "kind-of": "^3.0.2" +-+- }, +-+ "dependencies": { +-+- "kind-of": { +-+- "version": "3.2.2", +-+- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", +-+- "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", +-+- "dev": true, +-+- "requires": { +-+- "is-buffer": "^1.1.5" +-+- } +-+- } +-++ "jsbn": "1.1.0", +-++ "sprintf-js": "^1.1.3" +-++ }, +-++ "engines": { +-++ "node": ">= 12" +-+ } +-+ }, +-+- "is-arrayish": { +-+- "version": "0.2.1", +-+- "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", +-+- "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", +-++ "node_modules/ip-address/node_modules/jsbn": { +-++ "version": "1.1.0", +-++ "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-1.1.0.tgz", +-++ "integrity": "sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==", +-+ "dev": true +-+ }, +-+- "is-binary-path": { +-+- "version": "1.0.1", +-+- "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", +-+- "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", +-+- "dev": true, +-+- "requires": { +-+- "binary-extensions": "^1.0.0" +-++ "node_modules/ipaddr.js": { +-++ "version": "1.9.1", +-++ "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", +-++ "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", +-++ "engines": { +-++ "node": ">= 0.10" +-+ } +-+ }, +-+- "is-buffer": { +-+- "version": "1.1.6", +-+- "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", +-+- "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", +-++ "node_modules/is-arrayish": { +-++ "version": "0.2.1", +-++ "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", +-++ "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", +-+ "dev": true +-+ }, +-+- "is-ci": { +-+- "version": "1.2.1", +-+- "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-1.2.1.tgz", +-+- "integrity": "sha512-s6tfsaQaQi3JNciBH6shVqEDvhGut0SUXr31ag8Pd8BBbVVlcGfWhpPmEOoM6RJ5TFhbypvf5yyRw/VXW1IiWg==", +-+- "dev": true, +-+- "requires": { +-+- "ci-info": "^1.5.0" +-+- } +-+- }, +-+- "is-data-descriptor": { +-+- "version": "0.1.4", +-+- "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", +-+- "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", +-++ "node_modules/is-binary-path": { +-++ "version": "2.1.0", +-++ "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", +-++ "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", +-+ "dev": true, +-+- "requires": { +-+- "kind-of": "^3.0.2" +-+- }, +-+ "dependencies": { +-+- "kind-of": { +-+- "version": "3.2.2", +-+- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", +-+- "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", +-+- "dev": true, +-+- "requires": { +-+- "is-buffer": "^1.1.5" +-+- } +-+- } +-++ "binary-extensions": "^2.0.0" +-++ }, +-++ "engines": { +-++ "node": ">=8" +-+ } +-+ }, +-+- "is-descriptor": { +-+- "version": "0.1.6", +-+- "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", +-+- "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", +-++ "node_modules/is-core-module": { +-++ "version": "2.14.0", +-++ "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.14.0.tgz", +-++ "integrity": "sha512-a5dFJih5ZLYlRtDc0dZWP7RiKr6xIKzmn/oAYCDvdLThadVgyJwlaoQPmRtMSpz+rk0OGAgIu+TcM9HUF0fk1A==", +-+ "dev": true, +-+- "requires": { +-+- "is-accessor-descriptor": "^0.1.6", +-+- "is-data-descriptor": "^0.1.4", +-+- "kind-of": "^5.0.0" +-+- }, +-+ "dependencies": { +-+- "kind-of": { +-+- "version": "5.1.0", +-+- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", +-+- "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", +-+- "dev": true +-+- } +-++ "hasown": "^2.0.2" +-++ }, +-++ "engines": { +-++ "node": ">= 0.4" +-++ }, +-++ "funding": { +-++ "url": "https://github.com/sponsors/ljharb" +-+ } +-+ }, +-+- "is-extendable": { +-+- "version": "0.1.1", +-+- "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", +-+- "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", +-+- "dev": true +-+- }, +-+- "is-extglob": { +-++ "node_modules/is-extglob": { +-+ "version": "2.1.1", +-+ "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", +-+- "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", +-+- "dev": true +-+- }, +-+- "is-finite": { +-+- "version": "1.0.2", +-+- "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz", +-+- "integrity": "sha1-zGZ3aVYCvlUO8R6LSqYwU0K20Ko=", +-++ "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", +-+ "dev": true, +-+- "requires": { +-+- "number-is-nan": "^1.0.0" +-++ "engines": { +-++ "node": ">=0.10.0" +-+ } +-+ }, +-+- "is-fullwidth-code-point": { +-+- "version": "1.0.0", +-+- "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", +-+- "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", +-+- "dev": true, +-+- "requires": { +-+- "number-is-nan": "^1.0.0" +-++ "node_modules/is-fullwidth-code-point": { +-++ "version": "3.0.0", +-++ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", +-++ "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", +-++ "engines": { +-++ "node": ">=8" +-+ } +-+ }, +-+- "is-glob": { +-+- "version": "4.0.0", +-+- "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.0.tgz", +-+- "integrity": "sha1-lSHHaEXMJhCoUgPd8ICpWML/q8A=", +-++ "node_modules/is-glob": { +-++ "version": "4.0.3", +-++ "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", +-++ "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", +-+ "dev": true, +-+- "requires": { +-++ "dependencies": { +-+ "is-extglob": "^2.1.1" +-+- } +-+- }, +-+- "is-installed-globally": { +-+- "version": "0.1.0", +-+- "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.1.0.tgz", +-+- "integrity": "sha1-Df2Y9akRFxbdU13aZJL2e/PSWoA=", +-+- "dev": true, +-+- "requires": { +-+- "global-dirs": "^0.1.0", +-+- "is-path-inside": "^1.0.0" +-+- } +-+- }, +-+- "is-npm": { +-+- "version": "1.0.0", +-+- "resolved": "https://registry.npmjs.org/is-npm/-/is-npm-1.0.0.tgz", +-+- "integrity": "sha1-8vtjpl5JBbQGyGBydloaTceTufQ=", +-+- "dev": true +-+- }, +-+- "is-number": { +-+- "version": "3.0.0", +-+- "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", +-+- "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", +-+- "dev": true, +-+- "requires": { +-+- "kind-of": "^3.0.2" +-+ }, +-+- "dependencies": { +-+- "kind-of": { +-+- "version": "3.2.2", +-+- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", +-+- "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", +-+- "dev": true, +-+- "requires": { +-+- "is-buffer": "^1.1.5" +-+- } +-+- } +-++ "engines": { +-++ "node": ">=0.10.0" +-+ } +-+ }, +-+- "is-obj": { +-++ "node_modules/is-lambda": { +-+ "version": "1.0.1", +-+- "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz", +-+- "integrity": "sha1-PkcprB9f3gJc19g6iW2rn09n2w8=", +-++ "resolved": "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz", +-++ "integrity": "sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==", +-+ "dev": true +-+ }, +-+- "is-path-inside": { +-+- "version": "1.0.1", +-+- "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.1.tgz", +-+- "integrity": "sha1-jvW33lBDej/cprToZe96pVy0gDY=", +-++ "node_modules/is-number": { +-++ "version": "7.0.0", +-++ "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", +-++ "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", +-+ "dev": true, +-+- "requires": { +-+- "path-is-inside": "^1.0.1" +-++ "engines": { +-++ "node": ">=0.12.0" +-+ } +-+ }, +-+- "is-plain-object": { +-+- "version": "2.0.4", +-+- "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", +-+- "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", +-++ "node_modules/is-plain-obj": { +-++ "version": "1.1.0", +-++ "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", +-++ "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", +-+ "dev": true, +-+- "requires": { +-+- "isobject": "^3.0.1" +-++ "engines": { +-++ "node": ">=0.10.0" +-+ } +-+ }, +-+- "is-redirect": { +-+- "version": "1.0.0", +-+- "resolved": "https://registry.npmjs.org/is-redirect/-/is-redirect-1.0.0.tgz", +-+- "integrity": "sha1-HQPd7VO9jbDzDCbk+V02/HyH3CQ=", +-+- "dev": true +-+- }, +-+- "is-retry-allowed": { +-+- "version": "1.1.0", +-+- "resolved": "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz", +-+- "integrity": "sha1-EaBgVotnM5REAz0BJaYaINVk+zQ=", +-+- "dev": true +-+- }, +-+- "is-stream": { +-+- "version": "1.1.0", +-+- "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", +-+- "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", +-+- "dev": true +-+- }, +-+- "is-typedarray": { +-+- "version": "1.0.0", +-+- "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", +-+- "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" +-+- }, +-+- "is-utf8": { +-+- "version": "0.2.1", +-+- "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", +-+- "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=", +-+- "dev": true +-+- }, +-+- "is-windows": { +-+- "version": "1.0.2", +-+- "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", +-+- "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", +-+- "dev": true +-+- }, +-+- "isarray": { +-++ "node_modules/isarray": { +-+ "version": "1.0.0", +-+ "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", +-+ "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" +-+ }, +-+- "isexe": { +-++ "node_modules/isexe": { +-+ "version": "2.0.0", +-+ "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", +-+- "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", +-+- "dev": true +-++ "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=" +-+ }, +-+- "isobject": { +-+- "version": "3.0.1", +-+- "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", +-+- "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", +-+- "dev": true +-++ "node_modules/jackspeak": { +-++ "version": "3.4.0", +-++ "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.0.tgz", +-++ "integrity": "sha512-JVYhQnN59LVPFCEcVa2C3CrEKYacvjRfqIQl+h8oi91aLYQVWRYbxjPcv1bUiUy/kLmQaANrYfNMCO3kuEDHfw==", +-++ "dependencies": { +-++ "@isaacs/cliui": "^8.0.2" +-++ }, +-++ "engines": { +-++ "node": ">=14" +-++ }, +-++ "funding": { +-++ "url": "https://github.com/sponsors/isaacs" +-++ }, +-++ "optionalDependencies": { +-++ "@pkgjs/parseargs": "^0.11.0" +-++ } +-+ }, +-+- "isstream": { +-+- "version": "0.1.2", +-+- "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", +-+- "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=" +-++ "node_modules/jake": { +-++ "version": "10.9.1", +-++ "resolved": "https://registry.npmjs.org/jake/-/jake-10.9.1.tgz", +-++ "integrity": "sha512-61btcOHNnLnsOdtLgA5efqQWjnSi/vow5HbI7HMdKKWqvrKR1bLK3BPlJn9gcSaP2ewuamUSMB5XEy76KUIS2w==", +-++ "dependencies": { +-++ "async": "^3.2.3", +-++ "chalk": "^4.0.2", +-++ "filelist": "^1.0.4", +-++ "minimatch": "^3.1.2" +-++ }, +-++ "bin": { +-++ "jake": "bin/cli.js" +-++ }, +-++ "engines": { +-++ "node": ">=10" +-++ } +-+ }, +-+- "js-base64": { +-+- "version": "2.5.1", +-+- "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.5.1.tgz", +-+- "integrity": "sha512-M7kLczedRMYX4L8Mdh4MzyAMM9O5osx+4FcOQuTvr3A9F2D9S5JXheN0ewNbrvK2UatkTRhL5ejGmGSjNMiZuw==", +-+- "dev": true +-++ "node_modules/jake/node_modules/async": { +-++ "version": "3.2.5", +-++ "resolved": "https://registry.npmjs.org/async/-/async-3.2.5.tgz", +-++ "integrity": "sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==" +-+ }, +-+- "jsbn": { +-+- "version": "0.1.1", +-+- "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", +-+- "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=" +-++ "node_modules/jake/node_modules/minimatch": { +-++ "version": "3.1.2", +-++ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", +-++ "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", +-++ "dependencies": { +-++ "brace-expansion": "^1.1.7" +-++ }, +-++ "engines": { +-++ "node": "*" +-++ } +-+ }, +-+- "json-parse-better-errors": { +-+- "version": "1.0.2", +-+- "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", +-+- "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", +-++ "node_modules/js-base64": { +-++ "version": "2.6.4", +-++ "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.6.4.tgz", +-++ "integrity": "sha512-pZe//GGmwJndub7ZghVHz7vjb2LgC1m8B07Au3eYqeqv9emhESByMXxaEgkUkEqJe87oBbSniGYoQNIBklc7IQ==", +-+ "dev": true +-+ }, +-+- "json-schema": { +-+- "version": "0.2.3", +-+- "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", +-+- "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=" +-+- }, +-+- "json-schema-traverse": { +-+- "version": "0.4.1", +-+- "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", +-+- "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" +-+- }, +-+- "json-stringify-safe": { +-+- "version": "5.0.1", +-+- "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", +-+- "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" +-+- }, +-+- "jsprim": { +-+- "version": "1.4.1", +-+- "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", +-+- "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", +-+- "requires": { +-+- "assert-plus": "1.0.0", +-+- "extsprintf": "1.3.0", +-+- "json-schema": "0.2.3", +-+- "verror": "1.10.0" +-+- }, +-+- "dependencies": { +-+- "assert-plus": { +-+- "version": "1.0.0", +-+- "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", +-+- "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" +-+- } +-+- } +-++ "node_modules/js-tokens": { +-++ "version": "4.0.0", +-++ "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", +-++ "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", +-++ "dev": true +-+ }, +-+- "kind-of": { +-+- "version": "6.0.2", +-+- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", +-+- "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==", +-++ "node_modules/json-parse-even-better-errors": { +-++ "version": "2.3.1", +-++ "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", +-++ "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", +-+ "dev": true +-+ }, +-+- "latest-version": { +-+- "version": "3.1.0", +-+- "resolved": "https://registry.npmjs.org/latest-version/-/latest-version-3.1.0.tgz", +-+- "integrity": "sha1-ogU4P+oyKzO1rjsYq+4NwvNW7hU=", +-++ "node_modules/kind-of": { +-++ "version": "6.0.3", +-++ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", +-++ "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", +-+ "dev": true, +-+- "requires": { +-+- "package-json": "^4.0.0" +-++ "engines": { +-++ "node": ">=0.10.0" +-+ } +-+ }, +-+- "lazystream": { +-++ "node_modules/lazystream": { +-+ "version": "1.0.0", +-+ "resolved": "https://registry.npmjs.org/lazystream/-/lazystream-1.0.0.tgz", +-+ "integrity": "sha1-9plf4PggOS9hOWvolGJAe7dxaOQ=", +-+- "requires": { +-++ "dependencies": { +-+ "readable-stream": "^2.0.5" +-++ }, +-++ "engines": { +-++ "node": ">= 0.6.3" +-+ } +-+ }, +-+- "lcid": { +-+- "version": "1.0.0", +-+- "resolved": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz", +-+- "integrity": "sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU=", +-+- "dev": true, +-+- "requires": { +-+- "invert-kv": "^1.0.0" +-+- } +-+- }, +-+- "lie": { +-++ "node_modules/lie": { +-+ "version": "3.1.1", +-+ "resolved": "https://registry.npmjs.org/lie/-/lie-3.1.1.tgz", +-+ "integrity": "sha1-mkNrLMd0bKWd56QfpGmz77dr2H4=", +-+- "requires": { +-++ "dependencies": { +-+ "immediate": "~3.0.5" +-+ } +-+ }, +-+- "load-json-file": { +-+- "version": "1.1.0", +-+- "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", +-+- "integrity": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=", +-+- "dev": true, +-+- "requires": { +-+- "graceful-fs": "^4.1.2", +-+- "parse-json": "^2.2.0", +-+- "pify": "^2.0.0", +-+- "pinkie-promise": "^2.0.0", +-+- "strip-bom": "^2.0.0" +-+- } +-++ "node_modules/lines-and-columns": { +-++ "version": "1.2.4", +-++ "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", +-++ "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", +-++ "dev": true +-+ }, +-+- "localforage": { +-++ "node_modules/localforage": { +-+ "version": "1.7.3", +-+ "resolved": "https://registry.npmjs.org/localforage/-/localforage-1.7.3.tgz", +-+ "integrity": "sha512-1TulyYfc4udS7ECSBT2vwJksWbkwwTX8BzeUIiq8Y07Riy7bDAAnxDaPU/tWyOVmQAcWJIEIFP9lPfBGqVoPgQ==", +-+- "requires": { +-++ "dependencies": { +-+ "lie": "3.1.1" +-+ } +-+ }, +-+- "locate-path": { +-+- "version": "3.0.0", +-+- "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", +-+- "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", +-++ "node_modules/lodash": { +-++ "version": "4.17.21", +-++ "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", +-++ "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" +-++ }, +-++ "node_modules/lru-cache": { +-++ "version": "10.3.0", +-++ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.3.0.tgz", +-++ "integrity": "sha512-CQl19J/g+Hbjbv4Y3mFNNXFEL/5t/KCg8POCuUqd4rMKjGG+j1ybER83hxV58zL+dFI1PTkt3GNFSHRt+d8qEQ==", +-++ "engines": { +-++ "node": "14 || >=16.14" +-++ } +-++ }, +-++ "node_modules/make-fetch-happen": { +-++ "version": "10.2.1", +-++ "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-10.2.1.tgz", +-++ "integrity": "sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w==", +-+ "dev": true, +-+- "requires": { +-+- "p-locate": "^3.0.0", +-+- "path-exists": "^3.0.0" +-+- }, +-+ "dependencies": { +-+- "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 +-+- } +-++ "agentkeepalive": "^4.2.1", +-++ "cacache": "^16.1.0", +-++ "http-cache-semantics": "^4.1.0", +-++ "http-proxy-agent": "^5.0.0", +-++ "https-proxy-agent": "^5.0.0", +-++ "is-lambda": "^1.0.1", +-++ "lru-cache": "^7.7.1", +-++ "minipass": "^3.1.6", +-++ "minipass-collect": "^1.0.2", +-++ "minipass-fetch": "^2.0.3", +-++ "minipass-flush": "^1.0.5", +-++ "minipass-pipeline": "^1.2.4", +-++ "negotiator": "^0.6.3", +-++ "promise-retry": "^2.0.1", +-++ "socks-proxy-agent": "^7.0.0", +-++ "ssri": "^9.0.0" +-++ }, +-++ "engines": { +-++ "node": "^12.13.0 || ^14.15.0 || >=16.0.0" +-+ } +-+ }, +-+- "lodash": { +-+- "version": "4.17.11", +-+- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.11.tgz", +-+- "integrity": "sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg==" +-++ "node_modules/make-fetch-happen/node_modules/lru-cache": { +-++ "version": "7.18.3", +-++ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", +-++ "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", +-++ "dev": true, +-++ "engines": { +-++ "node": ">=12" +-++ } +-+ }, +-+- "lodash.assign": { +-+- "version": "4.2.0", +-+- "resolved": "https://registry.npmjs.org/lodash.assign/-/lodash.assign-4.2.0.tgz", +-+- "integrity": "sha1-DZnzzNem0mHRm9rrkkUAXShYCOc=", +-+- "dev": true +-++ "node_modules/map-obj": { +-++ "version": "4.3.0", +-++ "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-4.3.0.tgz", +-++ "integrity": "sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==", +-++ "dev": true, +-++ "engines": { +-++ "node": ">=8" +-++ }, +-++ "funding": { +-++ "url": "https://github.com/sponsors/sindresorhus" +-++ } +-+ }, +-+- "lodash.clonedeep": { +-+- "version": "4.5.0", +-+- "resolved": "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz", +-+- "integrity": "sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8=", +-+- "dev": true +-++ "node_modules/media-typer": { +-++ "version": "0.3.0", +-++ "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", +-++ "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", +-++ "engines": { +-++ "node": ">= 0.6" +-++ } +-++ }, +-++ "node_modules/meow": { +-++ "version": "9.0.0", +-++ "resolved": "https://registry.npmjs.org/meow/-/meow-9.0.0.tgz", +-++ "integrity": "sha512-+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ==", +-++ "dev": true, +-++ "dependencies": { +-++ "@types/minimist": "^1.2.0", +-++ "camelcase-keys": "^6.2.2", +-++ "decamelize": "^1.2.0", +-++ "decamelize-keys": "^1.1.0", +-++ "hard-rejection": "^2.1.0", +-++ "minimist-options": "4.1.0", +-++ "normalize-package-data": "^3.0.0", +-++ "read-pkg-up": "^7.0.1", +-++ "redent": "^3.0.0", +-++ "trim-newlines": "^3.0.0", +-++ "type-fest": "^0.18.0", +-++ "yargs-parser": "^20.2.3" +-++ }, +-++ "engines": { +-++ "node": ">=10" +-++ }, +-++ "funding": { +-++ "url": "https://github.com/sponsors/sindresorhus" +-++ } +-++ }, +-++ "node_modules/meow/node_modules/hosted-git-info": { +-++ "version": "4.1.0", +-++ "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", +-++ "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", +-++ "dev": true, +-++ "dependencies": { +-++ "lru-cache": "^6.0.0" +-++ }, +-++ "engines": { +-++ "node": ">=10" +-++ } +-++ }, +-++ "node_modules/meow/node_modules/lru-cache": { +-++ "version": "6.0.0", +-++ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", +-++ "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", +-++ "dev": true, +-++ "dependencies": { +-++ "yallist": "^4.0.0" +-++ }, +-++ "engines": { +-++ "node": ">=10" +-++ } +-+ }, +-+- "lodash.get": { +-+- "version": "4.4.2", +-+- "resolved": "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz", +-+- "integrity": "sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk=" +-++ "node_modules/meow/node_modules/normalize-package-data": { +-++ "version": "3.0.3", +-++ "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz", +-++ "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", +-++ "dev": true, +-++ "dependencies": { +-++ "hosted-git-info": "^4.0.1", +-++ "is-core-module": "^2.5.0", +-++ "semver": "^7.3.4", +-++ "validate-npm-package-license": "^3.0.1" +-++ }, +-++ "engines": { +-++ "node": ">=10" +-++ } +-+ }, +-+- "lodash.mergewith": { +-+- "version": "4.6.1", +-+- "resolved": "https://registry.npmjs.org/lodash.mergewith/-/lodash.mergewith-4.6.1.tgz", +-+- "integrity": "sha512-eWw5r+PYICtEBgrBE5hhlT6aAa75f411bgDz/ZL2KZqYV03USvucsxcHUIlGTDTECs1eunpI7HOV7U+WLDvNdQ==", +-++ "node_modules/meow/node_modules/semver": { +-++ "version": "7.6.2", +-++ "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", +-++ "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", +-++ "dev": true, +-++ "bin": { +-++ "semver": "bin/semver.js" +-++ }, +-++ "engines": { +-++ "node": ">=10" +-++ } +-++ }, +-++ "node_modules/meow/node_modules/yallist": { +-++ "version": "4.0.0", +-++ "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", +-++ "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", +-+ "dev": true +-+ }, +-+- "loud-rejection": { +-++ "node_modules/merge-descriptors": { +-++ "version": "1.0.1", +-++ "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", +-++ "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=" +-++ }, +-++ "node_modules/methods": { +-++ "version": "1.1.2", +-++ "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", +-++ "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=", +-++ "engines": { +-++ "node": ">= 0.6" +-++ } +-++ }, +-++ "node_modules/mime": { +-+ "version": "1.6.0", +-+- "resolved": "https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz", +-+- "integrity": "sha1-W0b4AUft7leIcPCG0Eghz5mOVR8=", +-+- "dev": true, +-+- "requires": { +-+- "currently-unhandled": "^0.4.1", +-+- "signal-exit": "^3.0.0" +-++ "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", +-++ "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", +-++ "bin": { +-++ "mime": "cli.js" +-++ }, +-++ "engines": { +-++ "node": ">=4" +-++ } +-++ }, +-++ "node_modules/mime-db": { +-++ "version": "1.52.0", +-++ "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", +-++ "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", +-++ "engines": { +-++ "node": ">= 0.6" +-+ } +-+ }, +-+- "lowercase-keys": { +-++ "node_modules/mime-types": { +-++ "version": "2.1.35", +-++ "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", +-++ "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", +-++ "dependencies": { +-++ "mime-db": "1.52.0" +-++ }, +-++ "engines": { +-++ "node": ">= 0.6" +-++ } +-++ }, +-++ "node_modules/min-indent": { +-+ "version": "1.0.1", +-+- "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", +-+- "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==", +-+- "dev": true +-++ "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", +-++ "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", +-++ "dev": true, +-++ "engines": { +-++ "node": ">=4" +-++ } +-+ }, +-+- "lru-cache": { +-+- "version": "4.1.5", +-+- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", +-+- "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", +-++ "node_modules/minimatch": { +-++ "version": "3.0.8", +-++ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.8.tgz", +-++ "integrity": "sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q==", +-++ "dependencies": { +-++ "brace-expansion": "^1.1.7" +-++ }, +-++ "engines": { +-++ "node": "*" +-++ } +-++ }, +-++ "node_modules/minimist": { +-++ "version": "1.2.8", +-++ "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", +-++ "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", +-++ "funding": { +-++ "url": "https://github.com/sponsors/ljharb" +-++ } +-++ }, +-++ "node_modules/minimist-options": { +-++ "version": "4.1.0", +-++ "resolved": "https://registry.npmjs.org/minimist-options/-/minimist-options-4.1.0.tgz", +-++ "integrity": "sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==", +-+ "dev": true, +-+- "requires": { +-+- "pseudomap": "^1.0.2", +-+- "yallist": "^2.1.2" +-++ "dependencies": { +-++ "arrify": "^1.0.1", +-++ "is-plain-obj": "^1.1.0", +-++ "kind-of": "^6.0.3" +-++ }, +-++ "engines": { +-++ "node": ">= 6" +-+ } +-+ }, +-+- "make-dir": { +-+- "version": "1.3.0", +-+- "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", +-+- "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", +-++ "node_modules/minipass": { +-++ "version": "3.3.6", +-++ "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", +-++ "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", +-+ "dev": true, +-+- "requires": { +-+- "pify": "^3.0.0" +-++ "dependencies": { +-++ "yallist": "^4.0.0" +-+ }, +-++ "engines": { +-++ "node": ">=8" +-++ } +-++ }, +-++ "node_modules/minipass-collect": { +-++ "version": "1.0.2", +-++ "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", +-++ "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", +-++ "dev": true, +-+ "dependencies": { +-+- "pify": { +-+- "version": "3.0.0", +-+- "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", +-+- "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", +-+- "dev": true +-+- } +-++ "minipass": "^3.0.0" +-++ }, +-++ "engines": { +-++ "node": ">= 8" +-+ } +-+ }, +-+- "map-age-cleaner": { +-+- "version": "0.1.3", +-+- "resolved": "https://registry.npmjs.org/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz", +-+- "integrity": "sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==", +-++ "node_modules/minipass-fetch": { +-++ "version": "2.1.2", +-++ "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-2.1.2.tgz", +-++ "integrity": "sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA==", +-+ "dev": true, +-+- "requires": { +-+- "p-defer": "^1.0.0" +-++ "dependencies": { +-++ "minipass": "^3.1.6", +-++ "minipass-sized": "^1.0.3", +-++ "minizlib": "^2.1.2" +-++ }, +-++ "engines": { +-++ "node": "^12.13.0 || ^14.15.0 || >=16.0.0" +-++ }, +-++ "optionalDependencies": { +-++ "encoding": "^0.1.13" +-+ } +-+ }, +-+- "map-cache": { +-+- "version": "0.2.2", +-+- "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", +-+- "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=", +-+- "dev": true +-++ "node_modules/minipass-flush": { +-++ "version": "1.0.5", +-++ "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", +-++ "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", +-++ "dev": true, +-++ "dependencies": { +-++ "minipass": "^3.0.0" +-++ }, +-++ "engines": { +-++ "node": ">= 8" +-++ } +-+ }, +-+- "map-obj": { +-+- "version": "1.0.1", +-+- "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", +-+- "integrity": "sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=", +-+- "dev": true +-++ "node_modules/minipass-pipeline": { +-++ "version": "1.2.4", +-++ "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", +-++ "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", +-++ "dev": true, +-++ "dependencies": { +-++ "minipass": "^3.0.0" +-++ }, +-++ "engines": { +-++ "node": ">=8" +-++ } +-+ }, +-+- "map-visit": { +-+- "version": "1.0.0", +-+- "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", +-+- "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=", +-++ "node_modules/minipass-sized": { +-++ "version": "1.0.3", +-++ "resolved": "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz", +-++ "integrity": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==", +-+ "dev": true, +-+- "requires": { +-+- "object-visit": "^1.0.0" +-++ "dependencies": { +-++ "minipass": "^3.0.0" +-++ }, +-++ "engines": { +-++ "node": ">=8" +-+ } +-+ }, +-+- "media-typer": { +-+- "version": "0.3.0", +-+- "resolved": "http://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", +-+- "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=" +-++ "node_modules/minipass/node_modules/yallist": { +-++ "version": "4.0.0", +-++ "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", +-++ "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", +-++ "dev": true +-+ }, +-+- "mem": { +-+- "version": "4.2.0", +-+- "resolved": "https://registry.npmjs.org/mem/-/mem-4.2.0.tgz", +-+- "integrity": "sha512-5fJxa68urlY0Ir8ijatKa3eRz5lwXnRCTvo9+TbTGAuTFJOwpGcY0X05moBd0nW45965Njt4CDI2GFQoG8DvqA==", +-+- "dev": true, +-+- "requires": { +-+- "map-age-cleaner": "^0.1.1", +-+- "mimic-fn": "^2.0.0", +-+- "p-is-promise": "^2.0.0" +-+- } +-+- }, +-+- "meow": { +-+- "version": "3.7.0", +-+- "resolved": "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz", +-+- "integrity": "sha1-cstmi0JSKCkKu/qFaJJYcwioAfs=", +-+- "dev": true, +-+- "requires": { +-+- "camelcase-keys": "^2.0.0", +-+- "decamelize": "^1.1.2", +-+- "loud-rejection": "^1.0.0", +-+- "map-obj": "^1.0.1", +-+- "minimist": "^1.1.3", +-+- "normalize-package-data": "^2.3.4", +-+- "object-assign": "^4.0.1", +-+- "read-pkg-up": "^1.0.1", +-+- "redent": "^1.0.0", +-+- "trim-newlines": "^1.0.0" +-+- } +-+- }, +-+- "merge-descriptors": { +-+- "version": "1.0.1", +-+- "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", +-+- "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=" +-++ "node_modules/minizlib": { +-++ "version": "2.1.2", +-++ "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", +-++ "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", +-++ "dev": true, +-++ "dependencies": { +-++ "minipass": "^3.0.0", +-++ "yallist": "^4.0.0" +-++ }, +-++ "engines": { +-++ "node": ">= 8" +-++ } +-+ }, +-+- "methods": { +-+- "version": "1.1.2", +-+- "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", +-+- "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=" +-++ "node_modules/minizlib/node_modules/yallist": { +-++ "version": "4.0.0", +-++ "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", +-++ "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", +-++ "dev": true +-+ }, +-+- "micromatch": { +-+- "version": "3.1.10", +-+- "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", +-+- "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", +-+- "dev": true, +-+- "requires": { +-+- "arr-diff": "^4.0.0", +-+- "array-unique": "^0.3.2", +-+- "braces": "^2.3.1", +-+- "define-property": "^2.0.2", +-+- "extend-shallow": "^3.0.2", +-+- "extglob": "^2.0.4", +-+- "fragment-cache": "^0.2.1", +-+- "kind-of": "^6.0.2", +-+- "nanomatch": "^1.2.9", +-+- "object.pick": "^1.3.0", +-+- "regex-not": "^1.0.0", +-+- "snapdragon": "^0.8.1", +-+- "to-regex": "^3.0.2" +-+- } +-+- }, +-+- "mime-db": { +-+- "version": "1.38.0", +-+- "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.38.0.tgz", +-+- "integrity": "sha512-bqVioMFFzc2awcdJZIzR3HjZFX20QhilVS7hytkKrv7xFAn8bM1gzc/FOX2awLISvWe0PV8ptFKcon+wZ5qYkg==" +-+- }, +-+- "mime-types": { +-+- "version": "2.1.22", +-+- "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.22.tgz", +-+- "integrity": "sha512-aGl6TZGnhm/li6F7yx82bJiBZwgiEa4Hf6CNr8YO+r5UHr53tSTYZb102zyU50DOWWKeOv0uQLRL0/9EiKWCog==", +-+- "requires": { +-+- "mime-db": "~1.38.0" +-+- } +-+- }, +-+- "mimic-fn": { +-++ "node_modules/mkdirp": { +-++ "version": "0.5.6", +-++ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", +-++ "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", +-++ "dependencies": { +-++ "minimist": "^1.2.6" +-++ }, +-++ "bin": { +-++ "mkdirp": "bin/cmd.js" +-++ } +-++ }, +-++ "node_modules/ms": { +-+ "version": "2.0.0", +-+- "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.0.0.tgz", +-+- "integrity": "sha512-jbex9Yd/3lmICXwYT6gA/j2mNQGU48wCh/VzRd+/Y/PjYQtlg1gLMdZqvu9s/xH7qKvngxRObl56XZR609IMbA==", +-++ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", +-++ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" +-++ }, +-++ "node_modules/nan": { +-++ "version": "2.20.0", +-++ "resolved": "https://registry.npmjs.org/nan/-/nan-2.20.0.tgz", +-++ "integrity": "sha512-bk3gXBZDGILuuo/6sKtr0DQmSThYHLtNCdSdXk9YkxD/jK6X2vmCyyXBBxyqZ4XcnzTyYEAThfX3DCEnLf6igw==", +-+ "dev": true +-+ }, +-+- "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" +-++ "node_modules/negotiator": { +-++ "version": "0.6.3", +-++ "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", +-++ "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", +-++ "engines": { +-++ "node": ">= 0.6" +-+ } +-+ }, +-+- "minimist": { +-+- "version": "1.2.0", +-+- "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", +-+- "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=" +-+- }, +-+- "mixin-deep": { +-+- "version": "1.3.1", +-+- "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.1.tgz", +-+- "integrity": "sha512-8ZItLHeEgaqEvd5lYBXfm4EZSFCX29Jb9K+lAHhDKzReKBQKj3R+7NOF6tjqYi9t4oI8VUfaWITJQm86wnXGNQ==", +-+- "dev": true, +-+- "requires": { +-+- "for-in": "^1.0.2", +-+- "is-extendable": "^1.0.1" +-+- }, +-+- "dependencies": { +-+- "is-extendable": { +-+- "version": "1.0.1", +-+- "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", +-+- "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", +-+- "dev": true, +-+- "requires": { +-+- "is-plain-object": "^2.0.4" +-+- } +-+- } +-++ "node_modules/neo-async": { +-++ "version": "2.6.2", +-++ "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", +-++ "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" +-++ }, +-++ "node_modules/node-gyp": { +-++ "version": "8.4.1", +-++ "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-8.4.1.tgz", +-++ "integrity": "sha512-olTJRgUtAb/hOXG0E93wZDs5YiJlgbXxTwQAFHyNlRsXQnYzUaF2aGgujZbw+hR8aF4ZG/rST57bWMWD16jr9w==", +-++ "dev": true, +-++ "dependencies": { +-++ "env-paths": "^2.2.0", +-++ "glob": "^7.1.4", +-++ "graceful-fs": "^4.2.6", +-++ "make-fetch-happen": "^9.1.0", +-++ "nopt": "^5.0.0", +-++ "npmlog": "^6.0.0", +-++ "rimraf": "^3.0.2", +-++ "semver": "^7.3.5", +-++ "tar": "^6.1.2", +-++ "which": "^2.0.2" +-++ }, +-++ "bin": { +-++ "node-gyp": "bin/node-gyp.js" +-++ }, +-++ "engines": { +-++ "node": ">= 10.12.0" +-+ } +-+ }, +-+- "mkdirp": { +-+- "version": "0.5.1", +-+- "resolved": "http://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", +-+- "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", +-+- "requires": { +-+- "minimist": "0.0.8" +-++ "node_modules/node-gyp/node_modules/@npmcli/fs": { +-++ "version": "1.1.1", +-++ "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-1.1.1.tgz", +-++ "integrity": "sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==", +-++ "dev": true, +-++ "dependencies": { +-++ "@gar/promisify": "^1.0.1", +-++ "semver": "^7.3.5" +-++ } +-++ }, +-++ "node_modules/node-gyp/node_modules/@npmcli/move-file": { +-++ "version": "1.1.2", +-++ "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz", +-++ "integrity": "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==", +-++ "deprecated": "This functionality has been moved to @npmcli/fs", +-++ "dev": true, +-++ "dependencies": { +-++ "mkdirp": "^1.0.4", +-++ "rimraf": "^3.0.2" +-++ }, +-++ "engines": { +-++ "node": ">=10" +-++ } +-++ }, +-++ "node_modules/node-gyp/node_modules/@tootallnate/once": { +-++ "version": "1.1.2", +-++ "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", +-++ "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", +-++ "dev": true, +-++ "engines": { +-++ "node": ">= 6" +-++ } +-++ }, +-++ "node_modules/node-gyp/node_modules/cacache": { +-++ "version": "15.3.0", +-++ "resolved": "https://registry.npmjs.org/cacache/-/cacache-15.3.0.tgz", +-++ "integrity": "sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==", +-++ "dev": true, +-++ "dependencies": { +-++ "@npmcli/fs": "^1.0.0", +-++ "@npmcli/move-file": "^1.0.1", +-++ "chownr": "^2.0.0", +-++ "fs-minipass": "^2.0.0", +-++ "glob": "^7.1.4", +-++ "infer-owner": "^1.0.4", +-++ "lru-cache": "^6.0.0", +-++ "minipass": "^3.1.1", +-++ "minipass-collect": "^1.0.2", +-++ "minipass-flush": "^1.0.5", +-++ "minipass-pipeline": "^1.2.2", +-++ "mkdirp": "^1.0.3", +-++ "p-map": "^4.0.0", +-++ "promise-inflight": "^1.0.1", +-++ "rimraf": "^3.0.2", +-++ "ssri": "^8.0.1", +-++ "tar": "^6.0.2", +-++ "unique-filename": "^1.1.1" +-+ }, +-++ "engines": { +-++ "node": ">= 10" +-++ } +-++ }, +-++ "node_modules/node-gyp/node_modules/debug": { +-++ "version": "4.3.5", +-++ "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.5.tgz", +-++ "integrity": "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==", +-++ "dev": true, +-+ "dependencies": { +-+- "minimist": { +-+- "version": "0.0.8", +-+- "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", +-+- "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=" +-++ "ms": "2.1.2" +-++ }, +-++ "engines": { +-++ "node": ">=6.0" +-++ }, +-++ "peerDependenciesMeta": { +-++ "supports-color": { +-++ "optional": true +-+ } +-+ } +-+ }, +-+- "ms": { +-+- "version": "2.0.0", +-+- "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", +-+- "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" +-++ "node_modules/node-gyp/node_modules/glob": { +-++ "version": "7.2.3", +-++ "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", +-++ "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", +-++ "deprecated": "Glob versions prior to v9 are no longer supported", +-++ "dev": true, +-++ "dependencies": { +-++ "fs.realpath": "^1.0.0", +-++ "inflight": "^1.0.4", +-++ "inherits": "2", +-++ "minimatch": "^3.1.1", +-++ "once": "^1.3.0", +-++ "path-is-absolute": "^1.0.0" +-++ }, +-++ "engines": { +-++ "node": "*" +-++ }, +-++ "funding": { +-++ "url": "https://github.com/sponsors/isaacs" +-++ } +-+ }, +-+- "nan": { +-+- "version": "2.12.1", +-+- "resolved": "https://registry.npmjs.org/nan/-/nan-2.12.1.tgz", +-+- "integrity": "sha512-JY7V6lRkStKcKTvHO5NVSQRv+RV+FIL5pvDoLiAtSL9pKlC5x9PKQcZDsq7m4FO4d57mkhC6Z+QhAh3Jdk5JFw==", +-+- "dev": true +-++ "node_modules/node-gyp/node_modules/http-proxy-agent": { +-++ "version": "4.0.1", +-++ "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", +-++ "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", +-++ "dev": true, +-++ "dependencies": { +-++ "@tootallnate/once": "1", +-++ "agent-base": "6", +-++ "debug": "4" +-++ }, +-++ "engines": { +-++ "node": ">= 6" +-++ } +-+ }, +-+- "nanomatch": { +-+- "version": "1.2.13", +-+- "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", +-+- "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", +-+- "dev": true, +-+- "requires": { +-+- "arr-diff": "^4.0.0", +-+- "array-unique": "^0.3.2", +-+- "define-property": "^2.0.2", +-+- "extend-shallow": "^3.0.2", +-+- "fragment-cache": "^0.2.1", +-+- "is-windows": "^1.0.2", +-+- "kind-of": "^6.0.2", +-+- "object.pick": "^1.3.0", +-+- "regex-not": "^1.0.0", +-+- "snapdragon": "^0.8.1", +-+- "to-regex": "^3.0.1" +-+- } +-+- }, +-+- "negotiator": { +-+- "version": "0.6.1", +-+- "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.1.tgz", +-+- "integrity": "sha1-KzJxhOiZIQEXeyhWP7XnECrNDKk=" +-++ "node_modules/node-gyp/node_modules/lru-cache": { +-++ "version": "6.0.0", +-++ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", +-++ "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", +-++ "dev": true, +-++ "dependencies": { +-++ "yallist": "^4.0.0" +-++ }, +-++ "engines": { +-++ "node": ">=10" +-++ } +-+ }, +-+- "nice-try": { +-+- "version": "1.0.5", +-+- "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", +-+- "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", +-++ "node_modules/node-gyp/node_modules/make-fetch-happen": { +-++ "version": "9.1.0", +-++ "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-9.1.0.tgz", +-++ "integrity": "sha512-+zopwDy7DNknmwPQplem5lAZX/eCOzSvSNNcSKm5eVwTkOBzoktEfXsa9L23J/GIRhxRsaxzkPEhrJEpE2F4Gg==", +-++ "dev": true, +-++ "dependencies": { +-++ "agentkeepalive": "^4.1.3", +-++ "cacache": "^15.2.0", +-++ "http-cache-semantics": "^4.1.0", +-++ "http-proxy-agent": "^4.0.1", +-++ "https-proxy-agent": "^5.0.0", +-++ "is-lambda": "^1.0.1", +-++ "lru-cache": "^6.0.0", +-++ "minipass": "^3.1.3", +-++ "minipass-collect": "^1.0.2", +-++ "minipass-fetch": "^1.3.2", +-++ "minipass-flush": "^1.0.5", +-++ "minipass-pipeline": "^1.2.4", +-++ "negotiator": "^0.6.2", +-++ "promise-retry": "^2.0.1", +-++ "socks-proxy-agent": "^6.0.0", +-++ "ssri": "^8.0.0" +-++ }, +-++ "engines": { +-++ "node": ">= 10" +-++ } +-++ }, +-++ "node_modules/node-gyp/node_modules/minimatch": { +-++ "version": "3.1.2", +-++ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", +-++ "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", +-++ "dev": true, +-++ "dependencies": { +-++ "brace-expansion": "^1.1.7" +-++ }, +-++ "engines": { +-++ "node": "*" +-++ } +-++ }, +-++ "node_modules/node-gyp/node_modules/minipass-fetch": { +-++ "version": "1.4.1", +-++ "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-1.4.1.tgz", +-++ "integrity": "sha512-CGH1eblLq26Y15+Azk7ey4xh0J/XfJfrCox5LDJiKqI2Q2iwOLOKrlmIaODiSQS8d18jalF6y2K2ePUm0CmShw==", +-++ "dev": true, +-++ "dependencies": { +-++ "minipass": "^3.1.0", +-++ "minipass-sized": "^1.0.3", +-++ "minizlib": "^2.0.0" +-++ }, +-++ "engines": { +-++ "node": ">=8" +-++ }, +-++ "optionalDependencies": { +-++ "encoding": "^0.1.12" +-++ } +-++ }, +-++ "node_modules/node-gyp/node_modules/mkdirp": { +-++ "version": "1.0.4", +-++ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", +-++ "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", +-++ "dev": true, +-++ "bin": { +-++ "mkdirp": "bin/cmd.js" +-++ }, +-++ "engines": { +-++ "node": ">=10" +-++ } +-++ }, +-++ "node_modules/node-gyp/node_modules/ms": { +-++ "version": "2.1.2", +-++ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", +-++ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", +-+ "dev": true +-+ }, +-+- "node-gyp": { +-+- "version": "3.8.0", +-+- "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-3.8.0.tgz", +-+- "integrity": "sha512-3g8lYefrRRzvGeSowdJKAKyks8oUpLEd/DyPV4eMhVlhJ0aNaZqIrNUIPuEWWTAoPqyFkfGrM67MC69baqn6vA==", +-++ "node_modules/node-gyp/node_modules/semver": { +-++ "version": "7.6.2", +-++ "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", +-++ "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", +-+ "dev": true, +-+- "requires": { +-+- "fstream": "^1.0.0", +-+- "glob": "^7.0.3", +-+- "graceful-fs": "^4.1.2", +-+- "mkdirp": "^0.5.0", +-+- "nopt": "2 || 3", +-+- "npmlog": "0 || 1 || 2 || 3 || 4", +-+- "osenv": "0", +-+- "request": "^2.87.0", +-+- "rimraf": "2", +-+- "semver": "~5.3.0", +-+- "tar": "^2.0.0", +-+- "which": "1" +-+- }, +-+- "dependencies": { +-+- "semver": { +-+- "version": "5.3.0", +-+- "resolved": "https://registry.npmjs.org/semver/-/semver-5.3.0.tgz", +-+- "integrity": "sha1-myzl094C0XxgEq0yaqa00M9U+U8=", +-+- "dev": true +-+- } +-++ "bin": { +-++ "semver": "bin/semver.js" +-++ }, +-++ "engines": { +-++ "node": ">=10" +-+ } +-+ }, +-+- "node-sass": { +-+- "version": "4.11.0", +-+- "resolved": "https://registry.npmjs.org/node-sass/-/node-sass-4.11.0.tgz", +-+- "integrity": "sha512-bHUdHTphgQJZaF1LASx0kAviPH7sGlcyNhWade4eVIpFp6tsn7SV8xNMTbsQFpEV9VXpnwTTnNYlfsZXgGgmkA==", +-++ "node_modules/node-gyp/node_modules/socks-proxy-agent": { +-++ "version": "6.2.1", +-++ "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-6.2.1.tgz", +-++ "integrity": "sha512-a6KW9G+6B3nWZ1yB8G7pJwL3ggLy1uTzKAgCb7ttblwqdz9fMGJUuTy3uFzEP48FAs9FLILlmzDlE2JJhVQaXQ==", +-+ "dev": true, +-+- "requires": { +-++ "dependencies": { +-++ "agent-base": "^6.0.2", +-++ "debug": "^4.3.3", +-++ "socks": "^2.6.2" +-++ }, +-++ "engines": { +-++ "node": ">= 10" +-++ } +-++ }, +-++ "node_modules/node-gyp/node_modules/ssri": { +-++ "version": "8.0.1", +-++ "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz", +-++ "integrity": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==", +-++ "dev": true, +-++ "dependencies": { +-++ "minipass": "^3.1.1" +-++ }, +-++ "engines": { +-++ "node": ">= 8" +-++ } +-++ }, +-++ "node_modules/node-gyp/node_modules/unique-filename": { +-++ "version": "1.1.1", +-++ "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz", +-++ "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==", +-++ "dev": true, +-++ "dependencies": { +-++ "unique-slug": "^2.0.0" +-++ } +-++ }, +-++ "node_modules/node-gyp/node_modules/unique-slug": { +-++ "version": "2.0.2", +-++ "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz", +-++ "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==", +-++ "dev": true, +-++ "dependencies": { +-++ "imurmurhash": "^0.1.4" +-++ } +-++ }, +-++ "node_modules/node-gyp/node_modules/which": { +-++ "version": "2.0.2", +-++ "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", +-++ "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", +-++ "dev": true, +-++ "dependencies": { +-++ "isexe": "^2.0.0" +-++ }, +-++ "bin": { +-++ "node-which": "bin/node-which" +-++ }, +-++ "engines": { +-++ "node": ">= 8" +-++ } +-++ }, +-++ "node_modules/node-gyp/node_modules/yallist": { +-++ "version": "4.0.0", +-++ "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", +-++ "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", +-++ "dev": true +-++ }, +-++ "node_modules/node-sass": { +-++ "version": "9.0.0", +-++ "resolved": "https://registry.npmjs.org/node-sass/-/node-sass-9.0.0.tgz", +-++ "integrity": "sha512-yltEuuLrfH6M7Pq2gAj5B6Zm7m+gdZoG66wTqG6mIZV/zijq3M2OO2HswtT6oBspPyFhHDcaxWpsBm0fRNDHPg==", +-++ "dev": true, +-++ "hasInstallScript": true, +-++ "dependencies": { +-+ "async-foreach": "^0.1.3", +-+- "chalk": "^1.1.1", +-+- "cross-spawn": "^3.0.0", +-++ "chalk": "^4.1.2", +-++ "cross-spawn": "^7.0.3", +-+ "gaze": "^1.0.0", +-+ "get-stdin": "^4.0.1", +-+ "glob": "^7.0.3", +-+- "in-publish": "^2.0.0", +-+- "lodash.assign": "^4.2.0", +-+- "lodash.clonedeep": "^4.3.2", +-+- "lodash.mergewith": "^4.6.0", +-+- "meow": "^3.7.0", +-+- "mkdirp": "^0.5.1", +-+- "nan": "^2.10.0", +-+- "node-gyp": "^3.8.0", +-+- "npmlog": "^4.0.0", +-+- "request": "^2.88.0", +-+- "sass-graph": "^2.2.4", +-++ "lodash": "^4.17.15", +-++ "make-fetch-happen": "^10.0.4", +-++ "meow": "^9.0.0", +-++ "nan": "^2.17.0", +-++ "node-gyp": "^8.4.1", +-++ "sass-graph": "^4.0.1", +-+ "stdout-stream": "^1.4.0", +-+- "true-case-path": "^1.0.2" +-++ "true-case-path": "^2.2.1" +-++ }, +-++ "bin": { +-++ "node-sass": "bin/node-sass" +-++ }, +-++ "engines": { +-++ "node": ">=16" +-+ } +-+ }, +-+- "nodemon": { +-+- "version": "1.18.10", +-+- "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-1.18.10.tgz", +-+- "integrity": "sha512-we51yBb1TfEvZamFchRgcfLbVYgg0xlGbyXmOtbBzDwxwgewYS/YbZ5tnlnsH51+AoSTTsT3A2E/FloUbtH8cQ==", +-++ "node_modules/nodemon": { +-++ "version": "3.1.4", +-++ "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-3.1.4.tgz", +-++ "integrity": "sha512-wjPBbFhtpJwmIeY2yP7QF+UKzPfltVGtfce1g/bB15/8vCGZj8uxD62b/b9M9/WVgme0NZudpownKN+c0plXlQ==", +-+ "dev": true, +-+- "requires": { +-+- "chokidar": "^2.1.0", +-+- "debug": "^3.1.0", +-++ "dependencies": { +-++ "chokidar": "^3.5.2", +-++ "debug": "^4", +-+ "ignore-by-default": "^1.0.1", +-+- "minimatch": "^3.0.4", +-+- "pstree.remy": "^1.1.6", +-+- "semver": "^5.5.0", +-+- "supports-color": "^5.2.0", +-++ "minimatch": "^3.1.2", +-++ "pstree.remy": "^1.1.8", +-++ "semver": "^7.5.3", +-++ "simple-update-notifier": "^2.0.0", +-++ "supports-color": "^5.5.0", +-+ "touch": "^3.1.0", +-+- "undefsafe": "^2.0.2", +-+- "update-notifier": "^2.5.0" +-++ "undefsafe": "^2.0.5" +-+ }, +-++ "bin": { +-++ "nodemon": "bin/nodemon.js" +-++ }, +-++ "engines": { +-++ "node": ">=10" +-++ }, +-++ "funding": { +-++ "type": "opencollective", +-++ "url": "https://opencollective.com/nodemon" +-++ } +-++ }, +-++ "node_modules/nodemon/node_modules/debug": { +-++ "version": "4.3.5", +-++ "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.5.tgz", +-++ "integrity": "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==", +-++ "dev": true, +-+ "dependencies": { +-+- "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" +-+- } +-+- }, +-+- "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 +-+- }, +-++ "ms": "2.1.2" +-++ }, +-++ "engines": { +-++ "node": ">=6.0" +-++ }, +-++ "peerDependenciesMeta": { +-+ "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" +-+- } +-++ "optional": true +-+ } +-+ } +-+ }, +-+- "nopt": { +-+- "version": "3.0.6", +-+- "resolved": "https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz", +-+- "integrity": "sha1-xkZdvwirzU2zWTF/eaxopkayj/k=", +-++ "node_modules/nodemon/node_modules/minimatch": { +-++ "version": "3.1.2", +-++ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", +-++ "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", +-++ "dev": true, +-++ "dependencies": { +-++ "brace-expansion": "^1.1.7" +-++ }, +-++ "engines": { +-++ "node": "*" +-++ } +-++ }, +-++ "node_modules/nodemon/node_modules/ms": { +-++ "version": "2.1.2", +-++ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", +-++ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", +-++ "dev": true +-++ }, +-++ "node_modules/nodemon/node_modules/semver": { +-++ "version": "7.6.2", +-++ "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", +-++ "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", +-+ "dev": true, +-+- "requires": { +-++ "bin": { +-++ "semver": "bin/semver.js" +-++ }, +-++ "engines": { +-++ "node": ">=10" +-++ } +-++ }, +-++ "node_modules/nodemon/node_modules/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, +-++ "dependencies": { +-++ "has-flag": "^3.0.0" +-++ }, +-++ "engines": { +-++ "node": ">=4" +-++ } +-++ }, +-++ "node_modules/nopt": { +-++ "version": "5.0.0", +-++ "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz", +-++ "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==", +-++ "dev": true, +-++ "dependencies": { +-+ "abbrev": "1" +-++ }, +-++ "bin": { +-++ "nopt": "bin/nopt.js" +-++ }, +-++ "engines": { +-++ "node": ">=6" +-+ } +-+ }, +-+- "normalize-package-data": { +-++ "node_modules/normalize-package-data": { +-+ "version": "2.5.0", +-+ "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", +-+ "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", +-+ "dev": true, +-+- "requires": { +-++ "dependencies": { +-+ "hosted-git-info": "^2.1.4", +-+ "resolve": "^1.10.0", +-+ "semver": "2 || 3 || 4 || 5", +-+ "validate-npm-package-license": "^3.0.1" +-+ } +-+ }, +-+- "normalize-path": { +-++ "node_modules/normalize-path": { +-+ "version": "3.0.0", +-+ "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", +-+ "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", +-+- "dev": true +-+- }, +-+- "npm-run-path": { +-+- "version": "2.0.2", +-+- "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", +-+- "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", +-+ "dev": true, +-+- "requires": { +-+- "path-key": "^2.0.0" +-++ "engines": { +-++ "node": ">=0.10.0" +-+ } +-+ }, +-+- "npmlog": { +-+- "version": "4.1.2", +-+- "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz", +-+- "integrity": "sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==", +-+- "dev": true, +-+- "requires": { +-+- "are-we-there-yet": "~1.1.2", +-+- "console-control-strings": "~1.1.0", +-+- "gauge": "~2.7.3", +-+- "set-blocking": "~2.0.0" +-+- } +-+- }, +-+- "number-is-nan": { +-+- "version": "1.0.1", +-+- "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", +-+- "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=", +-+- "dev": true +-+- }, +-+- "oauth-sign": { +-+- "version": "0.9.0", +-+- "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", +-+- "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==" +-+- }, +-+- "object-assign": { +-+- "version": "4.1.1", +-+- "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", +-+- "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" +-+- }, +-+- "object-copy": { +-+- "version": "0.1.0", +-+- "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", +-+- "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=", +-+- "dev": true, +-+- "requires": { +-+- "copy-descriptor": "^0.1.0", +-+- "define-property": "^0.2.5", +-+- "kind-of": "^3.0.3" +-+- }, +-+- "dependencies": { +-+- "define-property": { +-+- "version": "0.2.5", +-+- "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", +-+- "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", +-+- "dev": true, +-+- "requires": { +-+- "is-descriptor": "^0.1.0" +-+- } +-+- }, +-+- "kind-of": { +-+- "version": "3.2.2", +-+- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", +-+- "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", +-+- "dev": true, +-+- "requires": { +-+- "is-buffer": "^1.1.5" +-+- } +-+- } +-+- } +-+- }, +-+- "object-keys": { +-+- "version": "1.1.0", +-+- "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.0.tgz", +-+- "integrity": "sha512-6OO5X1+2tYkNyNEx6TsCxEqFfRWaqx6EtMiSbGrw8Ob8v9Ne+Hl8rBAgLBZn5wjEz3s/s6U1WXFUFOcxxAwUpg==" +-+- }, +-+- "object-visit": { +-+- "version": "1.0.1", +-+- "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", +-+- "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=", +-++ "node_modules/npmlog": { +-++ "version": "6.0.2", +-++ "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-6.0.2.tgz", +-++ "integrity": "sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==", +-++ "deprecated": "This package is no longer supported.", +-+ "dev": true, +-+- "requires": { +-+- "isobject": "^3.0.0" +-++ "dependencies": { +-++ "are-we-there-yet": "^3.0.0", +-++ "console-control-strings": "^1.1.0", +-++ "gauge": "^4.0.3", +-++ "set-blocking": "^2.0.0" +-++ }, +-++ "engines": { +-++ "node": "^12.13.0 || ^14.15.0 || >=16.0.0" +-+ } +-+ }, +-+- "object.assign": { +-+- "version": "4.1.0", +-+- "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.0.tgz", +-+- "integrity": "sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w==", +-+- "requires": { +-+- "define-properties": "^1.1.2", +-+- "function-bind": "^1.1.1", +-+- "has-symbols": "^1.0.0", +-+- "object-keys": "^1.0.11" +-++ "node_modules/object-assign": { +-++ "version": "4.1.1", +-++ "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", +-++ "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", +-++ "engines": { +-++ "node": ">=0.10.0" +-+ } +-+ }, +-+- "object.pick": { +-+- "version": "1.3.0", +-+- "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", +-+- "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=", +-+- "dev": true, +-+- "requires": { +-+- "isobject": "^3.0.1" +-++ "node_modules/object-inspect": { +-++ "version": "1.13.2", +-++ "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.2.tgz", +-++ "integrity": "sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==", +-++ "engines": { +-++ "node": ">= 0.4" +-++ }, +-++ "funding": { +-++ "url": "https://github.com/sponsors/ljharb" +-+ } +-+ }, +-+- "on-finished": { +-+- "version": "2.3.0", +-+- "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", +-+- "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", +-+- "requires": { +-++ "node_modules/on-finished": { +-++ "version": "2.4.1", +-++ "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", +-++ "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", +-++ "dependencies": { +-+ "ee-first": "1.1.1" +-++ }, +-++ "engines": { +-++ "node": ">= 0.8" +-+ } +-+ }, +-+- "once": { +-++ "node_modules/once": { +-+ "version": "1.4.0", +-+ "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", +-+ "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", +-+- "requires": { +-+- "wrappy": "1" +-+- } +-+- }, +-+- "optimist": { +-+- "version": "0.6.1", +-+- "resolved": "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz", +-+- "integrity": "sha1-2j6nRob6IaGaERwybpDrFaAZZoY=", +-+- "requires": { +-+- "minimist": "~0.0.1", +-+- "wordwrap": "~0.0.2" +-+- }, +-+ "dependencies": { +-+- "minimist": { +-+- "version": "0.0.10", +-+- "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz", +-+- "integrity": "sha1-3j+YVD2/lggr5IrRoMfNqDYwHc8=" +-+- }, +-+- "wordwrap": { +-+- "version": "0.0.3", +-+- "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz", +-+- "integrity": "sha1-o9XabNXAvAAI03I0u68b7WMFkQc=" +-+- } +-+- } +-+- }, +-+- "os-homedir": { +-+- "version": "1.0.2", +-+- "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", +-+- "integrity": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M=", +-+- "dev": true +-+- }, +-+- "os-locale": { +-+- "version": "1.4.0", +-+- "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz", +-+- "integrity": "sha1-IPnxeuKe00XoveWDsT0gCYA8FNk=", +-+- "dev": true, +-+- "requires": { +-+- "lcid": "^1.0.0" +-+- } +-+- }, +-+- "os-tmpdir": { +-+- "version": "1.0.2", +-+- "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", +-+- "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=", +-+- "dev": true +-+- }, +-+- "osenv": { +-+- "version": "0.1.5", +-+- "resolved": "https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz", +-+- "integrity": "sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==", +-+- "dev": true, +-+- "requires": { +-+- "os-homedir": "^1.0.0", +-+- "os-tmpdir": "^1.0.0" +-++ "wrappy": "1" +-+ } +-+ }, +-+- "p-defer": { +-+- "version": "1.0.0", +-+- "resolved": "https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz", +-+- "integrity": "sha1-n26xgvbJqozXQwBKfU+WsZaw+ww=", +-+- "dev": true +-+- }, +-+- "p-finally": { +-+- "version": "1.0.0", +-+- "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", +-+- "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=", +-+- "dev": true +-+- }, +-+- "p-is-promise": { +-+- "version": "2.0.0", +-+- "resolved": "https://registry.npmjs.org/p-is-promise/-/p-is-promise-2.0.0.tgz", +-+- "integrity": "sha512-pzQPhYMCAgLAKPWD2jC3Se9fEfrD9npNos0y150EeqZll7akhEgGhTW/slB6lHku8AvYGiJ+YJ5hfHKePPgFWg==", +-+- "dev": true +-+- }, +-+- "p-limit": { +-++ "node_modules/p-limit": { +-+ "version": "2.2.0", +-+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.2.0.tgz", +-+ "integrity": "sha512-pZbTJpoUsCzV48Mc9Nh51VbwO0X9cuPFE8gYwx9BTCt9SF8/b7Zljd2fVgOxhIF/HDTKgpVzs+GPhyKfjLLFRQ==", +-+ "dev": true, +-+- "requires": { +-++ "dependencies": { +-+ "p-try": "^2.0.0" +-++ }, +-++ "engines": { +-++ "node": ">=6" +-+ } +-+ }, +-+- "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==", +-++ "node_modules/p-map": { +-++ "version": "4.0.0", +-++ "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", +-++ "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", +-+ "dev": true, +-+- "requires": { +-+- "p-limit": "^2.0.0" +-++ "dependencies": { +-++ "aggregate-error": "^3.0.0" +-++ }, +-++ "engines": { +-++ "node": ">=10" +-++ }, +-++ "funding": { +-++ "url": "https://github.com/sponsors/sindresorhus" +-+ } +-+ }, +-+- "p-try": { +-++ "node_modules/p-try": { +-+ "version": "2.1.0", +-+ "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.1.0.tgz", +-+ "integrity": "sha512-H2RyIJ7+A3rjkwKC2l5GGtU4H1vkxKCAGsWasNVd0Set+6i4znxbWy6/j16YDPJDWxhsgZiKAstMEP8wCdSpjA==", +-+- "dev": true +-+- }, +-+- "package-json": { +-+- "version": "4.0.1", +-+- "resolved": "https://registry.npmjs.org/package-json/-/package-json-4.0.1.tgz", +-+- "integrity": "sha1-iGmgQBJTZhxMTKPabCEh7VVfXu0=", +-+ "dev": true, +-+- "requires": { +-+- "got": "^6.7.1", +-+- "registry-auth-token": "^3.0.1", +-+- "registry-url": "^3.0.3", +-+- "semver": "^5.1.0" +-++ "engines": { +-++ "node": ">=6" +-+ } +-+ }, +-+- "parse-json": { +-+- "version": "2.2.0", +-+- "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", +-+- "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=", +-++ "node_modules/package-json-from-dist": { +-++ "version": "1.0.0", +-++ "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.0.tgz", +-++ "integrity": "sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==" +-++ }, +-++ "node_modules/parse-json": { +-++ "version": "5.2.0", +-++ "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", +-++ "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", +-+ "dev": true, +-+- "requires": { +-+- "error-ex": "^1.2.0" +-++ "dependencies": { +-++ "@babel/code-frame": "^7.0.0", +-++ "error-ex": "^1.3.1", +-++ "json-parse-even-better-errors": "^2.3.0", +-++ "lines-and-columns": "^1.1.6" +-++ }, +-++ "engines": { +-++ "node": ">=8" +-++ }, +-++ "funding": { +-++ "url": "https://github.com/sponsors/sindresorhus" +-+ } +-+ }, +-+- "parseurl": { +-+- "version": "1.3.2", +-+- "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.2.tgz", +-+- "integrity": "sha1-/CidTtiZMRlGDBViUyYs3I3mW/M=" +-+- }, +-+- "pascalcase": { +-+- "version": "0.1.1", +-+- "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", +-+- "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=", +-+- "dev": true +-+- }, +-+- "path-dirname": { +-+- "version": "1.0.2", +-+- "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", +-+- "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=", +-+- "dev": true +-++ "node_modules/parseurl": { +-++ "version": "1.3.3", +-++ "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", +-++ "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", +-++ "engines": { +-++ "node": ">= 0.8" +-++ } +-+ }, +-+- "path-exists": { +-+- "version": "2.1.0", +-+- "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", +-+- "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", +-++ "node_modules/path-exists": { +-++ "version": "4.0.0", +-++ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", +-++ "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", +-+ "dev": true, +-+- "requires": { +-+- "pinkie-promise": "^2.0.0" +-++ "engines": { +-++ "node": ">=8" +-+ } +-+ }, +-+- "path-is-absolute": { +-++ "node_modules/path-is-absolute": { +-+ "version": "1.0.1", +-+ "resolved": "http://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", +-+- "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" +-++ "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", +-++ "engines": { +-++ "node": ">=0.10.0" +-++ } +-+ }, +-+- "path-is-inside": { +-+- "version": "1.0.2", +-+- "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", +-+- "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=", +-++ "node_modules/path-parse": { +-++ "version": "1.0.7", +-++ "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", +-++ "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", +-+ "dev": true +-+ }, +-+- "path-key": { +-+- "version": "2.0.1", +-+- "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", +-+- "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", +-+- "dev": true +-++ "node_modules/path-scurry": { +-++ "version": "1.11.1", +-++ "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", +-++ "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", +-++ "dependencies": { +-++ "lru-cache": "^10.2.0", +-++ "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" +-++ }, +-++ "engines": { +-++ "node": ">=16 || 14 >=14.18" +-++ }, +-++ "funding": { +-++ "url": "https://github.com/sponsors/isaacs" +-++ } +-+ }, +-+- "path-parse": { +-+- "version": "1.0.6", +-+- "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz", +-+- "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==", +-+- "dev": true +-++ "node_modules/path-scurry/node_modules/minipass": { +-++ "version": "7.1.2", +-++ "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", +-++ "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", +-++ "engines": { +-++ "node": ">=16 || 14 >=14.17" +-++ } +-+ }, +-+- "path-to-regexp": { +-++ "node_modules/path-to-regexp": { +-+ "version": "0.1.7", +-+ "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", +-+ "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=" +-+ }, +-+- "path-type": { +-+- "version": "1.1.0", +-+- "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", +-+- "integrity": "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=", +-+- "dev": true, +-+- "requires": { +-+- "graceful-fs": "^4.1.2", +-+- "pify": "^2.0.0", +-+- "pinkie-promise": "^2.0.0" +-+- } +-+- }, +-+- "performance-now": { +-+- "version": "2.1.0", +-+- "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", +-+- "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=" +-+- }, +-+- "pify": { +-+- "version": "2.3.0", +-+- "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", +-+- "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", +-+- "dev": true +-+- }, +-+- "pinkie": { +-+- "version": "2.0.4", +-+- "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", +-+- "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=", +-++ "node_modules/picocolors": { +-++ "version": "1.0.1", +-++ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.1.tgz", +-++ "integrity": "sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==", +-+ "dev": true +-+ }, +-+- "pinkie-promise": { +-+- "version": "2.0.1", +-+- "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", +-+- "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", +-++ "node_modules/picomatch": { +-++ "version": "2.3.1", +-++ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", +-++ "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", +-+ "dev": true, +-+- "requires": { +-+- "pinkie": "^2.0.0" +-++ "engines": { +-++ "node": ">=8.6" +-++ }, +-++ "funding": { +-++ "url": "https://github.com/sponsors/jonschlinkert" +-+ } +-+ }, +-+- "posix-character-classes": { +-+- "version": "0.1.1", +-+- "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", +-+- "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=", +-+- "dev": true +-+- }, +-+- "prepend-http": { +-+- "version": "1.0.4", +-+- "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz", +-+- "integrity": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=", +-+- "dev": true +-+- }, +-+- "process-nextick-args": { +-++ "node_modules/process-nextick-args": { +-+ "version": "2.0.0", +-+ "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz", +-+ "integrity": "sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw==" +-+ }, +-+- "promise": { +-++ "node_modules/promise": { +-+ "version": "7.3.1", +-+ "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz", +-+ "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==", +-+- "requires": { +-++ "dependencies": { +-+ "asap": "~2.0.3" +-+ } +-+ }, +-+- "proxy-addr": { +-+- "version": "2.0.4", +-+- "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.4.tgz", +-+- "integrity": "sha512-5erio2h9jp5CHGwcybmxmVqHmnCBZeewlfJ0pex+UW7Qny7OOZXTtH56TGNyBizkgiOwhJtMKrVzDTeKcySZwA==", +-+- "requires": { +-+- "forwarded": "~0.1.2", +-+- "ipaddr.js": "1.8.0" +-++ "node_modules/promise-inflight": { +-++ "version": "1.0.1", +-++ "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", +-++ "integrity": "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==", +-++ "dev": true +-++ }, +-++ "node_modules/promise-retry": { +-++ "version": "2.0.1", +-++ "resolved": "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz", +-++ "integrity": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==", +-++ "dev": true, +-++ "dependencies": { +-++ "err-code": "^2.0.2", +-++ "retry": "^0.12.0" +-++ }, +-++ "engines": { +-++ "node": ">=10" +-+ } +-+ }, +-+- "pseudomap": { +-+- "version": "1.0.2", +-+- "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", +-+- "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=", +-+- "dev": true +-++ "node_modules/proxy-addr": { +-++ "version": "2.0.7", +-++ "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", +-++ "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", +-++ "dependencies": { +-++ "forwarded": "0.2.0", +-++ "ipaddr.js": "1.9.1" +-++ }, +-++ "engines": { +-++ "node": ">= 0.10" +-++ } +-+ }, +-+- "psl": { +-+- "version": "1.1.31", +-+- "resolved": "https://registry.npmjs.org/psl/-/psl-1.1.31.tgz", +-+- "integrity": "sha512-/6pt4+C+T+wZUieKR620OpzN/LlnNKuWjy1iFLQ/UG35JqHlR/89MP1d96dUfkf6Dne3TuLQzOYEYshJ+Hx8mw==" +-++ "node_modules/proxy-from-env": { +-++ "version": "1.1.0", +-++ "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", +-++ "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" +-+ }, +-+- "pstree.remy": { +-+- "version": "1.1.6", +-+- "resolved": "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.6.tgz", +-+- "integrity": "sha512-NdF35+QsqD7EgNEI5mkI/X+UwaxVEbQaz9f4IooEmMUv6ZPmlTQYGjBPJGgrlzNdjSvIy4MWMg6Q6vCgBO2K+w==", +-++ "node_modules/pstree.remy": { +-++ "version": "1.1.8", +-++ "resolved": "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.8.tgz", +-++ "integrity": "sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==", +-+ "dev": true +-+ }, +-+- "pump": { +-+- "version": "3.0.0", +-+- "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", +-+- "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", +-+- "dev": true, +-+- "requires": { +-+- "end-of-stream": "^1.1.0", +-+- "once": "^1.3.1" +-++ "node_modules/qs": { +-++ "version": "6.11.0", +-++ "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", +-++ "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", +-++ "dependencies": { +-++ "side-channel": "^1.0.4" +-++ }, +-++ "engines": { +-++ "node": ">=0.6" +-++ }, +-++ "funding": { +-++ "url": "https://github.com/sponsors/ljharb" +-+ } +-+ }, +-+- "punycode": { +-+- "version": "1.4.1", +-+- "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", +-+- "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=" +-+- }, +-+- "qs": { +-+- "version": "6.4.0", +-+- "resolved": "https://registry.npmjs.org/qs/-/qs-6.4.0.tgz", +-+- "integrity": "sha1-E+JtKK1rD/qpExLNO/cI7TUecjM=" +-++ "node_modules/quick-lru": { +-++ "version": "4.0.1", +-++ "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-4.0.1.tgz", +-++ "integrity": "sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==", +-++ "dev": true, +-++ "engines": { +-++ "node": ">=8" +-++ } +-+ }, +-+- "range-parser": { +-+- "version": "1.2.0", +-+- "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.0.tgz", +-+- "integrity": "sha1-9JvmtIeJTdxA3MlKMi9hEJLgDV4=" +-++ "node_modules/range-parser": { +-++ "version": "1.2.1", +-++ "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", +-++ "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", +-++ "engines": { +-++ "node": ">= 0.6" +-++ } +-+ }, +-+- "raw-body": { +-+- "version": "2.3.3", +-+- "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.3.3.tgz", +-+- "integrity": "sha512-9esiElv1BrZoI3rCDuOuKCBRbuApGGaDPQfjSflGxdy4oyzqghxu6klEkkVIvBje+FF0BX9coEv8KqW6X/7njw==", +-+- "requires": { +-+- "bytes": "3.0.0", +-+- "http-errors": "1.6.3", +-+- "iconv-lite": "0.4.23", +-++ "node_modules/raw-body": { +-++ "version": "2.5.2", +-++ "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", +-++ "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", +-++ "dependencies": { +-++ "bytes": "3.1.2", +-++ "http-errors": "2.0.0", +-++ "iconv-lite": "0.4.24", +-+ "unpipe": "1.0.0" +-++ }, +-++ "engines": { +-++ "node": ">= 0.8" +-+ } +-+ }, +-+- "rc": { +-+- "version": "1.2.8", +-+- "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", +-+- "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", +-++ "node_modules/read-pkg": { +-++ "version": "5.2.0", +-++ "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", +-++ "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", +-+ "dev": true, +-+- "requires": { +-+- "deep-extend": "^0.6.0", +-+- "ini": "~1.3.0", +-+- "minimist": "^1.2.0", +-+- "strip-json-comments": "~2.0.1" +-++ "dependencies": { +-++ "@types/normalize-package-data": "^2.4.0", +-++ "normalize-package-data": "^2.5.0", +-++ "parse-json": "^5.0.0", +-++ "type-fest": "^0.6.0" +-++ }, +-++ "engines": { +-++ "node": ">=8" +-+ } +-+ }, +-+- "read-pkg": { +-+- "version": "1.1.0", +-+- "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", +-+- "integrity": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=", +-++ "node_modules/read-pkg-up": { +-++ "version": "7.0.1", +-++ "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", +-++ "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", +-+ "dev": true, +-+- "requires": { +-+- "load-json-file": "^1.0.0", +-+- "normalize-package-data": "^2.3.2", +-+- "path-type": "^1.0.0" +-++ "dependencies": { +-++ "find-up": "^4.1.0", +-++ "read-pkg": "^5.2.0", +-++ "type-fest": "^0.8.1" +-++ }, +-++ "engines": { +-++ "node": ">=8" +-++ }, +-++ "funding": { +-++ "url": "https://github.com/sponsors/sindresorhus" +-+ } +-+ }, +-+- "read-pkg-up": { +-+- "version": "1.0.1", +-+- "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", +-+- "integrity": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=", +-++ "node_modules/read-pkg-up/node_modules/type-fest": { +-++ "version": "0.8.1", +-++ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", +-++ "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", +-+ "dev": true, +-+- "requires": { +-+- "find-up": "^1.0.0", +-+- "read-pkg": "^1.0.0" +-++ "engines": { +-++ "node": ">=8" +-+ } +-+ }, +-+- "readable-stream": { +-++ "node_modules/read-pkg/node_modules/type-fest": { +-++ "version": "0.6.0", +-++ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", +-++ "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", +-++ "dev": true, +-++ "engines": { +-++ "node": ">=8" +-++ } +-++ }, +-++ "node_modules/readable-stream": { +-+ "version": "2.3.6", +-+ "resolved": "http://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", +-+ "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", +-+- "requires": { +-++ "dependencies": { +-+ "core-util-is": "~1.0.0", +-+ "inherits": "~2.0.3", +-+ "isarray": "~1.0.0", +-+@@ -3929,669 +3668,551 @@ +-+ "util-deprecate": "~1.0.1" +-+ } +-+ }, +-+- "readdirp": { +-+- "version": "2.2.1", +-+- "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", +-+- "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", +-+- "dev": true, +-+- "requires": { +-+- "graceful-fs": "^4.1.11", +-+- "micromatch": "^3.1.10", +-+- "readable-stream": "^2.0.2" +-+- } +-+- }, +-+- "redent": { +-+- "version": "1.0.0", +-+- "resolved": "https://registry.npmjs.org/redent/-/redent-1.0.0.tgz", +-+- "integrity": "sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94=", +-+- "dev": true, +-+- "requires": { +-+- "indent-string": "^2.1.0", +-+- "strip-indent": "^1.0.1" +-+- } +-+- }, +-+- "regex-not": { +-+- "version": "1.0.2", +-+- "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", +-+- "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", +-++ "node_modules/readdirp": { +-++ "version": "3.6.0", +-++ "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", +-++ "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", +-+ "dev": true, +-+- "requires": { +-+- "extend-shallow": "^3.0.2", +-+- "safe-regex": "^1.1.0" +-++ "dependencies": { +-++ "picomatch": "^2.2.1" +-++ }, +-++ "engines": { +-++ "node": ">=8.10.0" +-+ } +-+ }, +-+- "registry-auth-token": { +-+- "version": "3.3.2", +-+- "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-3.3.2.tgz", +-+- "integrity": "sha512-JL39c60XlzCVgNrO+qq68FoNb56w/m7JYvGR2jT5iR1xBrUA3Mfx5Twk5rqTThPmQKMWydGmq8oFtDlxfrmxnQ==", +-++ "node_modules/redent": { +-++ "version": "3.0.0", +-++ "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", +-++ "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", +-+ "dev": true, +-+- "requires": { +-+- "rc": "^1.1.6", +-+- "safe-buffer": "^5.0.1" +-++ "dependencies": { +-++ "indent-string": "^4.0.0", +-++ "strip-indent": "^3.0.0" +-++ }, +-++ "engines": { +-++ "node": ">=8" +-+ } +-+ }, +-+- "registry-url": { +-+- "version": "3.1.0", +-+- "resolved": "https://registry.npmjs.org/registry-url/-/registry-url-3.1.0.tgz", +-+- "integrity": "sha1-PU74cPc93h138M+aOBQyRE4XSUI=", +-+- "dev": true, +-+- "requires": { +-+- "rc": "^1.0.1" +-+- } +-++ "node_modules/regenerator-runtime": { +-++ "version": "0.14.1", +-++ "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", +-++ "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==", +-++ "dev": true +-+ }, +-+- "remove-trailing-separator": { +-++ "node_modules/remove-trailing-separator": { +-+ "version": "1.1.0", +-+ "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", +-+ "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=" +-+ }, +-+- "repeat-element": { +-+- "version": "1.1.3", +-+- "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz", +-+- "integrity": "sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==", +-+- "dev": true +-+- }, +-+- "repeat-string": { +-+- "version": "1.6.1", +-+- "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", +-+- "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", +-+- "dev": true +-+- }, +-+- "repeating": { +-+- "version": "2.0.1", +-+- "resolved": "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz", +-+- "integrity": "sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=", +-+- "dev": true, +-+- "requires": { +-+- "is-finite": "^1.0.0" +-+- } +-+- }, +-+- "request": { +-+- "version": "2.88.0", +-+- "resolved": "https://registry.npmjs.org/request/-/request-2.88.0.tgz", +-+- "integrity": "sha512-NAqBSrijGLZdM0WZNsInLJpkJokL72XYjUpnB0iwsRgxh7dB6COrHnTBNwN0E+lHDAJzu7kLAkDeY08z2/A0hg==", +-+- "requires": { +-+- "aws-sign2": "~0.7.0", +-+- "aws4": "^1.8.0", +-+- "caseless": "~0.12.0", +-+- "combined-stream": "~1.0.6", +-+- "extend": "~3.0.2", +-+- "forever-agent": "~0.6.1", +-+- "form-data": "~2.3.2", +-+- "har-validator": "~5.1.0", +-+- "http-signature": "~1.2.0", +-+- "is-typedarray": "~1.0.0", +-+- "isstream": "~0.1.2", +-+- "json-stringify-safe": "~5.0.1", +-+- "mime-types": "~2.1.19", +-+- "oauth-sign": "~0.9.0", +-+- "performance-now": "^2.1.0", +-+- "qs": "~6.5.2", +-+- "safe-buffer": "^5.1.2", +-+- "tough-cookie": "~2.4.3", +-+- "tunnel-agent": "^0.6.0", +-+- "uuid": "^3.3.2" +-+- }, +-+- "dependencies": { +-+- "qs": { +-+- "version": "6.5.2", +-+- "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", +-+- "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==" +-+- } +-+- } +-+- }, +-+- "require-directory": { +-++ "node_modules/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": "1.0.1", +-+- "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz", +-+- "integrity": "sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=", +-+- "dev": true +-++ "dev": true, +-++ "engines": { +-++ "node": ">=0.10.0" +-++ } +-+ }, +-+- "resolve": { +-++ "node_modules/resolve": { +-+ "version": "1.10.0", +-+ "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.10.0.tgz", +-+ "integrity": "sha512-3sUr9aq5OfSg2S9pNtPA9hL1FVEAjvfOC4leW0SNf/mpnaakz2a9femSd6LqAww2RaFctwyf1lCqnTHuF1rxDg==", +-+ "dev": true, +-+- "requires": { +-++ "dependencies": { +-+ "path-parse": "^1.0.6" +-+ } +-+ }, +-+- "resolve-url": { +-+- "version": "0.2.1", +-+- "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", +-+- "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=", +-+- "dev": true +-+- }, +-+- "ret": { +-+- "version": "0.1.15", +-+- "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", +-+- "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", +-+- "dev": true +-++ "node_modules/retry": { +-++ "version": "0.12.0", +-++ "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", +-++ "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==", +-++ "dev": true, +-++ "engines": { +-++ "node": ">= 4" +-++ } +-+ }, +-+- "rimraf": { +-+- "version": "2.6.3", +-+- "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", +-+- "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", +-++ "node_modules/rimraf": { +-++ "version": "3.0.2", +-++ "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", +-++ "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", +-++ "deprecated": "Rimraf versions prior to v4 are no longer supported", +-+ "dev": true, +-+- "requires": { +-++ "dependencies": { +-+ "glob": "^7.1.3" +-++ }, +-++ "bin": { +-++ "rimraf": "bin.js" +-++ }, +-++ "funding": { +-++ "url": "https://github.com/sponsors/isaacs" +-+ } +-+ }, +-+- "rxjs": { +-+- "version": "6.4.0", +-+- "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.4.0.tgz", +-+- "integrity": "sha512-Z9Yfa11F6B9Sg/BK9MnqnQ+aQYicPLtilXBp2yUtDt2JRCE0h26d33EnfO3ZxoNxG0T92OUucP3Ct7cpfkdFfw==", +-++ "node_modules/rxjs": { +-++ "version": "7.8.1", +-++ "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz", +-++ "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==", +-+ "dev": true, +-+- "requires": { +-+- "tslib": "^1.9.0" +-++ "dependencies": { +-++ "tslib": "^2.1.0" +-+ } +-+ }, +-+- "safe-buffer": { +-++ "node_modules/safe-buffer": { +-+ "version": "5.1.2", +-+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", +-+ "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" +-+ }, +-+- "safe-json-parse": { +-++ "node_modules/safe-json-parse": { +-+ "version": "1.0.1", +-+ "resolved": "https://registry.npmjs.org/safe-json-parse/-/safe-json-parse-1.0.1.tgz", +-+ "integrity": "sha1-PnZyPjjf3aE8mx0poeB//uSzC1c=" +-+ }, +-+- "safe-regex": { +-+- "version": "1.1.0", +-+- "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", +-+- "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=", +-+- "dev": true, +-+- "requires": { +-+- "ret": "~0.1.10" +-+- } +-+- }, +-+- "safer-buffer": { +-++ "node_modules/safer-buffer": { +-+ "version": "2.1.2", +-+ "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", +-+ "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" +-+ }, +-+- "sass-graph": { +-+- "version": "2.2.4", +-+- "resolved": "https://registry.npmjs.org/sass-graph/-/sass-graph-2.2.4.tgz", +-+- "integrity": "sha1-E/vWPNHK8JCLn9k0dq1DpR0eC0k=", +-++ "node_modules/sass-graph": { +-++ "version": "4.0.1", +-++ "resolved": "https://registry.npmjs.org/sass-graph/-/sass-graph-4.0.1.tgz", +-++ "integrity": "sha512-5YCfmGBmxoIRYHnKK2AKzrAkCoQ8ozO+iumT8K4tXJXRVCPf+7s1/9KxTSW3Rbvf+7Y7b4FR3mWyLnQr3PHocA==", +-+ "dev": true, +-+- "requires": { +-++ "dependencies": { +-+ "glob": "^7.0.0", +-+- "lodash": "^4.0.0", +-+- "scss-tokenizer": "^0.2.3", +-+- "yargs": "^7.0.0" +-++ "lodash": "^4.17.11", +-++ "scss-tokenizer": "^0.4.3", +-++ "yargs": "^17.2.1" +-++ }, +-++ "bin": { +-++ "sassgraph": "bin/sassgraph" +-++ }, +-++ "engines": { +-++ "node": ">=12" +-+ } +-+ }, +-+- "scss-tokenizer": { +-+- "version": "0.2.3", +-+- "resolved": "https://registry.npmjs.org/scss-tokenizer/-/scss-tokenizer-0.2.3.tgz", +-+- "integrity": "sha1-jrBtualyMzOCTT9VMGQRSYR85dE=", +-++ "node_modules/scss-tokenizer": { +-++ "version": "0.4.3", +-++ "resolved": "https://registry.npmjs.org/scss-tokenizer/-/scss-tokenizer-0.4.3.tgz", +-++ "integrity": "sha512-raKLgf1LI5QMQnG+RxHz6oK0sL3x3I4FN2UDLqgLOGO8hodECNnNh5BXn7fAyBxrA8zVzdQizQ6XjNJQ+uBwMw==", +-+ "dev": true, +-+- "requires": { +-+- "js-base64": "^2.1.8", +-+- "source-map": "^0.4.2" +-+- }, +-+ "dependencies": { +-+- "source-map": { +-+- "version": "0.4.4", +-+- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz", +-+- "integrity": "sha1-66T12pwNyZneaAMti092FzZSA2s=", +-+- "dev": true, +-+- "requires": { +-+- "amdefine": ">=0.0.4" +-+- } +-+- } +-++ "js-base64": "^2.4.9", +-++ "source-map": "^0.7.3" +-+ } +-+ }, +-+- "semver": { +-+- "version": "5.6.0", +-+- "resolved": "https://registry.npmjs.org/semver/-/semver-5.6.0.tgz", +-+- "integrity": "sha512-RS9R6R35NYgQn++fkDWaOmqGoj4Ek9gGs+DPxNUZKuwE183xjJroKvyo1IzVFeXvUrvmALy6FWD5xrdJT25gMg==", +-+- "dev": true +-++ "node_modules/scss-tokenizer/node_modules/source-map": { +-++ "version": "0.7.4", +-++ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", +-++ "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", +-++ "dev": true, +-++ "engines": { +-++ "node": ">= 8" +-++ } +-+ }, +-+- "semver-diff": { +-+- "version": "2.1.0", +-+- "resolved": "https://registry.npmjs.org/semver-diff/-/semver-diff-2.1.0.tgz", +-+- "integrity": "sha1-S7uEN8jTfksM8aaP1ybsbWRdbTY=", +-++ "node_modules/semver": { +-++ "version": "5.7.2", +-++ "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", +-++ "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", +-+ "dev": true, +-+- "requires": { +-+- "semver": "^5.0.3" +-++ "bin": { +-++ "semver": "bin/semver" +-+ } +-+ }, +-+- "send": { +-+- "version": "0.16.2", +-+- "resolved": "https://registry.npmjs.org/send/-/send-0.16.2.tgz", +-+- "integrity": "sha512-E64YFPUssFHEFBvpbbjr44NCLtI1AohxQ8ZSiJjQLskAdKuriYEP6VyGEsRDH8ScozGpkaX1BGvhanqCwkcEZw==", +-+- "requires": { +-++ "node_modules/send": { +-++ "version": "0.18.0", +-++ "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", +-++ "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", +-++ "dependencies": { +-+ "debug": "2.6.9", +-+- "depd": "~1.1.2", +-+- "destroy": "~1.0.4", +-++ "depd": "2.0.0", +-++ "destroy": "1.2.0", +-+ "encodeurl": "~1.0.2", +-+ "escape-html": "~1.0.3", +-+ "etag": "~1.8.1", +-+ "fresh": "0.5.2", +-+- "http-errors": "~1.6.2", +-+- "mime": "1.4.1", +-+- "ms": "2.0.0", +-+- "on-finished": "~2.3.0", +-+- "range-parser": "~1.2.0", +-+- "statuses": "~1.4.0" +-+- }, +-+- "dependencies": { +-+- "mime": { +-+- "version": "1.4.1", +-+- "resolved": "https://registry.npmjs.org/mime/-/mime-1.4.1.tgz", +-+- "integrity": "sha512-KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ==" +-+- } +-++ "http-errors": "2.0.0", +-++ "mime": "1.6.0", +-++ "ms": "2.1.3", +-++ "on-finished": "2.4.1", +-++ "range-parser": "~1.2.1", +-++ "statuses": "2.0.1" +-++ }, +-++ "engines": { +-++ "node": ">= 0.8.0" +-+ } +-+ }, +-+- "serve-static": { +-+- "version": "1.13.2", +-+- "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.13.2.tgz", +-+- "integrity": "sha512-p/tdJrO4U387R9oMjb1oj7qSMaMfmOyd4j9hOFoxZe2baQszgHcSWjuya/CiT5kgZZKRudHNOA0pYXOl8rQ5nw==", +-+- "requires": { +-++ "node_modules/send/node_modules/ms": { +-++ "version": "2.1.3", +-++ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", +-++ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" +-++ }, +-++ "node_modules/serve-static": { +-++ "version": "1.15.0", +-++ "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", +-++ "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", +-++ "dependencies": { +-+ "encodeurl": "~1.0.2", +-+ "escape-html": "~1.0.3", +-+- "parseurl": "~1.3.2", +-+- "send": "0.16.2" +-++ "parseurl": "~1.3.3", +-++ "send": "0.18.0" +-++ }, +-++ "engines": { +-++ "node": ">= 0.8.0" +-+ } +-+ }, +-+- "set-blocking": { +-++ "node_modules/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 +-+ }, +-+- "set-value": { +-+- "version": "2.0.0", +-+- "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.0.tgz", +-+- "integrity": "sha512-hw0yxk9GT/Hr5yJEYnHNKYXkIA8mVJgd9ditYZCe16ZczcaELYYcfvaXesNACk2O8O0nTiPQcQhGUQj8JLzeeg==", +-+- "dev": true, +-+- "requires": { +-+- "extend-shallow": "^2.0.1", +-+- "is-extendable": "^0.1.1", +-+- "is-plain-object": "^2.0.3", +-+- "split-string": "^3.0.1" +-+- }, +-+- "dependencies": { +-+- "extend-shallow": { +-+- "version": "2.0.1", +-+- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", +-+- "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", +-+- "dev": true, +-+- "requires": { +-+- "is-extendable": "^0.1.0" +-+- } +-+- } +-++ "node_modules/set-function-length": { +-++ "version": "1.2.2", +-++ "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", +-++ "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", +-++ "dependencies": { +-++ "define-data-property": "^1.1.4", +-++ "es-errors": "^1.3.0", +-++ "function-bind": "^1.1.2", +-++ "get-intrinsic": "^1.2.4", +-++ "gopd": "^1.0.1", +-++ "has-property-descriptors": "^1.0.2" +-++ }, +-++ "engines": { +-++ "node": ">= 0.4" +-+ } +-+ }, +-+- "setprototypeof": { +-+- "version": "1.1.0", +-+- "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", +-+- "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==" +-+- }, +-+- "shebang-command": { +-++ "node_modules/setprototypeof": { +-+ "version": "1.2.0", +-+- "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", +-+- "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", +-++ "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", +-++ "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" +-++ }, +-++ "node_modules/shell-quote": { +-++ "version": "1.8.1", +-++ "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.1.tgz", +-++ "integrity": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==", +-+ "dev": true, +-+- "requires": { +-+- "shebang-regex": "^1.0.0" +-++ "funding": { +-++ "url": "https://github.com/sponsors/ljharb" +-+ } +-+ }, +-+- "shebang-regex": { +-+- "version": "1.0.0", +-+- "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", +-+- "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", +-+- "dev": true +-++ "node_modules/side-channel": { +-++ "version": "1.0.6", +-++ "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", +-++ "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", +-++ "dependencies": { +-++ "call-bind": "^1.0.7", +-++ "es-errors": "^1.3.0", +-++ "get-intrinsic": "^1.2.4", +-++ "object-inspect": "^1.13.1" +-++ }, +-++ "engines": { +-++ "node": ">= 0.4" +-++ }, +-++ "funding": { +-++ "url": "https://github.com/sponsors/ljharb" +-++ } +-+ }, +-+- "signal-exit": { +-+- "version": "3.0.2", +-+- "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz", +-+- "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=", +-++ "node_modules/signal-exit": { +-++ "version": "3.0.7", +-++ "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", +-++ "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", +-+ "dev": true +-+ }, +-+- "snapdragon": { +-+- "version": "0.8.2", +-+- "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", +-+- "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", +-+- "dev": true, +-+- "requires": { +-+- "base": "^0.11.1", +-+- "debug": "^2.2.0", +-+- "define-property": "^0.2.5", +-+- "extend-shallow": "^2.0.1", +-+- "map-cache": "^0.2.2", +-+- "source-map": "^0.5.6", +-+- "source-map-resolve": "^0.5.0", +-+- "use": "^3.1.0" +-+- }, +-+- "dependencies": { +-+- "define-property": { +-+- "version": "0.2.5", +-+- "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", +-+- "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", +-+- "dev": true, +-+- "requires": { +-+- "is-descriptor": "^0.1.0" +-+- } +-+- }, +-+- "extend-shallow": { +-+- "version": "2.0.1", +-+- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", +-+- "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", +-+- "dev": true, +-+- "requires": { +-+- "is-extendable": "^0.1.0" +-+- } +-+- } +-++ "node_modules/simple-update-notifier": { +-++ "version": "2.0.0", +-++ "resolved": "https://registry.npmjs.org/simple-update-notifier/-/simple-update-notifier-2.0.0.tgz", +-++ "integrity": "sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==", +-++ "dev": true, +-++ "dependencies": { +-++ "semver": "^7.5.3" +-++ }, +-++ "engines": { +-++ "node": ">=10" +-+ } +-+ }, +-+- "snapdragon-node": { +-+- "version": "2.1.1", +-+- "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", +-+- "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", +-+- "dev": true, +-+- "requires": { +-+- "define-property": "^1.0.0", +-+- "isobject": "^3.0.0", +-+- "snapdragon-util": "^3.0.1" +-+- }, +-+- "dependencies": { +-+- "define-property": { +-+- "version": "1.0.0", +-+- "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", +-+- "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", +-+- "dev": true, +-+- "requires": { +-+- "is-descriptor": "^1.0.0" +-+- } +-+- }, +-+- "is-accessor-descriptor": { +-+- "version": "1.0.0", +-+- "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", +-+- "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", +-+- "dev": true, +-+- "requires": { +-+- "kind-of": "^6.0.0" +-+- } +-+- }, +-+- "is-data-descriptor": { +-+- "version": "1.0.0", +-+- "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", +-+- "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", +-+- "dev": true, +-+- "requires": { +-+- "kind-of": "^6.0.0" +-+- } +-+- }, +-+- "is-descriptor": { +-+- "version": "1.0.2", +-+- "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", +-+- "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", +-+- "dev": true, +-+- "requires": { +-+- "is-accessor-descriptor": "^1.0.0", +-+- "is-data-descriptor": "^1.0.0", +-+- "kind-of": "^6.0.2" +-+- } +-+- } +-++ "node_modules/simple-update-notifier/node_modules/semver": { +-++ "version": "7.6.2", +-++ "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", +-++ "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", +-++ "dev": true, +-++ "bin": { +-++ "semver": "bin/semver.js" +-++ }, +-++ "engines": { +-++ "node": ">=10" +-+ } +-+ }, +-+- "snapdragon-util": { +-+- "version": "3.0.1", +-+- "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", +-+- "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", +-++ "node_modules/smart-buffer": { +-++ "version": "4.2.0", +-++ "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", +-++ "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", +-++ "dev": true, +-++ "engines": { +-++ "node": ">= 6.0.0", +-++ "npm": ">= 3.0.0" +-++ } +-++ }, +-++ "node_modules/socks": { +-++ "version": "2.8.3", +-++ "resolved": "https://registry.npmjs.org/socks/-/socks-2.8.3.tgz", +-++ "integrity": "sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==", +-++ "dev": true, +-++ "dependencies": { +-++ "ip-address": "^9.0.5", +-++ "smart-buffer": "^4.2.0" +-++ }, +-++ "engines": { +-++ "node": ">= 10.0.0", +-++ "npm": ">= 3.0.0" +-++ } +-++ }, +-++ "node_modules/socks-proxy-agent": { +-++ "version": "7.0.0", +-++ "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-7.0.0.tgz", +-++ "integrity": "sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==", +-+ "dev": true, +-+- "requires": { +-+- "kind-of": "^3.2.0" +-++ "dependencies": { +-++ "agent-base": "^6.0.2", +-++ "debug": "^4.3.3", +-++ "socks": "^2.6.2" +-+ }, +-++ "engines": { +-++ "node": ">= 10" +-++ } +-++ }, +-++ "node_modules/socks-proxy-agent/node_modules/debug": { +-++ "version": "4.3.5", +-++ "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.5.tgz", +-++ "integrity": "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==", +-++ "dev": true, +-+ "dependencies": { +-+- "kind-of": { +-+- "version": "3.2.2", +-+- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", +-+- "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", +-+- "dev": true, +-+- "requires": { +-+- "is-buffer": "^1.1.5" +-+- } +-++ "ms": "2.1.2" +-++ }, +-++ "engines": { +-++ "node": ">=6.0" +-++ }, +-++ "peerDependenciesMeta": { +-++ "supports-color": { +-++ "optional": true +-+ } +-+ } +-+ }, +-+- "source-map": { +-+- "version": "0.5.7", +-+- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", +-+- "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", +-++ "node_modules/socks-proxy-agent/node_modules/ms": { +-++ "version": "2.1.2", +-++ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", +-++ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", +-+ "dev": true +-+ }, +-+- "source-map-resolve": { +-+- "version": "0.5.2", +-+- "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.2.tgz", +-+- "integrity": "sha512-MjqsvNwyz1s0k81Goz/9vRBe9SZdB09Bdw+/zYyO+3CuPk6fouTaxscHkgtE8jKvf01kVfl8riHzERQ/kefaSA==", +-+- "dev": true, +-+- "requires": { +-+- "atob": "^2.1.1", +-+- "decode-uri-component": "^0.2.0", +-+- "resolve-url": "^0.2.1", +-+- "source-map-url": "^0.4.0", +-+- "urix": "^0.1.0" +-++ "node_modules/source-map": { +-++ "version": "0.6.1", +-++ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", +-++ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", +-++ "engines": { +-++ "node": ">=0.10.0" +-+ } +-+ }, +-+- "source-map-url": { +-+- "version": "0.4.0", +-+- "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz", +-+- "integrity": "sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=", +-+- "dev": true +-+- }, +-+- "spawn-command": { +-+- "version": "0.0.2-1", +-+- "resolved": "https://registry.npmjs.org/spawn-command/-/spawn-command-0.0.2-1.tgz", +-+- "integrity": "sha1-YvXpRmmBwbeW3Fkpk34RycaSG9A=", +-++ "node_modules/spawn-command": { +-++ "version": "0.0.2", +-++ "resolved": "https://registry.npmjs.org/spawn-command/-/spawn-command-0.0.2.tgz", +-++ "integrity": "sha512-zC8zGoGkmc8J9ndvml8Xksr1Amk9qBujgbF0JAIWO7kXr43w0h/0GJNM/Vustixu+YE8N/MTrQ7N31FvHUACxQ==", +-+ "dev": true +-+ }, +-+- "spdx-correct": { +-++ "node_modules/spdx-correct": { +-+ "version": "3.1.0", +-+ "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.0.tgz", +-+ "integrity": "sha512-lr2EZCctC2BNR7j7WzJ2FpDznxky1sjfxvvYEyzxNyb6lZXHODmEoJeFu4JupYlkfha1KZpJyoqiJ7pgA1qq8Q==", +-+ "dev": true, +-+- "requires": { +-++ "dependencies": { +-+ "spdx-expression-parse": "^3.0.0", +-+ "spdx-license-ids": "^3.0.0" +-+ } +-+ }, +-+- "spdx-exceptions": { +-++ "node_modules/spdx-exceptions": { +-+ "version": "2.2.0", +-+ "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz", +-+ "integrity": "sha512-2XQACfElKi9SlVb1CYadKDXvoajPgBVPn/gOQLrTvHdElaVhr7ZEbqJaRnJLVNeaI4cMEAgVCeBMKF6MWRDCRA==", +-+ "dev": true +-+ }, +-+- "spdx-expression-parse": { +-++ "node_modules/spdx-expression-parse": { +-+ "version": "3.0.0", +-+ "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz", +-+ "integrity": "sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg==", +-+ "dev": true, +-+- "requires": { +-++ "dependencies": { +-+ "spdx-exceptions": "^2.1.0", +-+ "spdx-license-ids": "^3.0.0" +-+ } +-+ }, +-+- "spdx-license-ids": { +-++ "node_modules/spdx-license-ids": { +-+ "version": "3.0.3", +-+ "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.3.tgz", +-+ "integrity": "sha512-uBIcIl3Ih6Phe3XHK1NqboJLdGfwr1UN3k6wSD1dZpmPsIkb8AGNbZYJ1fOBk834+Gxy8rpfDxrS6XLEMZMY2g==", +-+ "dev": true +-+ }, +-+- "split-string": { +-+- "version": "3.1.0", +-+- "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", +-+- "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", +-+- "dev": true, +-+- "requires": { +-+- "extend-shallow": "^3.0.0" +-+- } +-+- }, +-+- "sshpk": { +-+- "version": "1.16.1", +-+- "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz", +-+- "integrity": "sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==", +-+- "requires": { +-+- "asn1": "~0.2.3", +-+- "assert-plus": "^1.0.0", +-+- "bcrypt-pbkdf": "^1.0.0", +-+- "dashdash": "^1.12.0", +-+- "ecc-jsbn": "~0.1.1", +-+- "getpass": "^0.1.1", +-+- "jsbn": "~0.1.0", +-+- "safer-buffer": "^2.0.2", +-+- "tweetnacl": "~0.14.0" +-+- }, +-+- "dependencies": { +-+- "assert-plus": { +-+- "version": "1.0.0", +-+- "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", +-+- "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" +-+- } +-+- } +-++ "node_modules/sprintf-js": { +-++ "version": "1.1.3", +-++ "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.3.tgz", +-++ "integrity": "sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==", +-++ "dev": true +-+ }, +-+- "static-extend": { +-+- "version": "0.1.2", +-+- "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", +-+- "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=", +-++ "node_modules/ssri": { +-++ "version": "9.0.1", +-++ "resolved": "https://registry.npmjs.org/ssri/-/ssri-9.0.1.tgz", +-++ "integrity": "sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q==", +-+ "dev": true, +-+- "requires": { +-+- "define-property": "^0.2.5", +-+- "object-copy": "^0.1.0" +-+- }, +-+ "dependencies": { +-+- "define-property": { +-+- "version": "0.2.5", +-+- "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", +-+- "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", +-+- "dev": true, +-+- "requires": { +-+- "is-descriptor": "^0.1.0" +-+- } +-+- } +-++ "minipass": "^3.1.1" +-++ }, +-++ "engines": { +-++ "node": "^12.13.0 || ^14.15.0 || >=16.0.0" +-+ } +-+ }, +-+- "statuses": { +-+- "version": "1.4.0", +-+- "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.4.0.tgz", +-+- "integrity": "sha512-zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew==" +-++ "node_modules/statuses": { +-++ "version": "2.0.1", +-++ "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", +-++ "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", +-++ "engines": { +-++ "node": ">= 0.8" +-++ } +-+ }, +-+- "stdout-stream": { +-++ "node_modules/stdout-stream": { +-+ "version": "1.4.1", +-+ "resolved": "https://registry.npmjs.org/stdout-stream/-/stdout-stream-1.4.1.tgz", +-+ "integrity": "sha512-j4emi03KXqJWcIeF8eIXkjMFN1Cmb8gUlDYGeBALLPo5qdyTfA9bOtl8m33lRoC+vFMkP3gl0WsDr6+gzxbbTA==", +-+ "dev": true, +-+- "requires": { +-++ "dependencies": { +-+ "readable-stream": "^2.0.1" +-+ } +-+ }, +-+- "stream-consume": { +-+- "version": "0.1.1", +-+- "resolved": "https://registry.npmjs.org/stream-consume/-/stream-consume-0.1.1.tgz", +-+- "integrity": "sha512-tNa3hzgkjEP7XbCkbRXe1jpg+ievoa0O4SCFlMOYEscGSS4JJsckGL8swUyAa/ApGU3Ae4t6Honor4HhL+tRyg==" +-++ "node_modules/stream-transform": { +-++ "version": "3.3.2", +-++ "resolved": "https://registry.npmjs.org/stream-transform/-/stream-transform-3.3.2.tgz", +-++ "integrity": "sha512-v64PUnPy9Qw94NGuaEMo+9RHQe4jTBYf+NkTtqkCgeuiNo8NlL0LtLR7fkKWNVFtp3RhIm5Dlxkgm5uz7TDimQ==" +-+ }, +-+- "stream-transform": { +-+- "version": "1.0.8", +-+- "resolved": "https://registry.npmjs.org/stream-transform/-/stream-transform-1.0.8.tgz", +-+- "integrity": "sha512-1q+dL790Ps0NV33rISMq9OLtfDA9KMJZdo1PHZXE85orrWsM4FAh8CVyAOTHO0rhyeM138KNPngBPrx33bFsxw==" +-++ "node_modules/streamsearch": { +-++ "version": "1.1.0", +-++ "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", +-++ "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==", +-++ "engines": { +-++ "node": ">=10.0.0" +-++ } +-+ }, +-+- "streamsearch": { +-+- "version": "0.1.2", +-+- "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-0.1.2.tgz", +-+- "integrity": "sha1-gIudDlb8Jz2Am6VzOOkpkZoanxo=" +-++ "node_modules/string_decoder": { +-++ "version": "1.1.1", +-++ "resolved": "http://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", +-++ "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", +-++ "dependencies": { +-++ "safe-buffer": "~5.1.0" +-++ } +-+ }, +-+- "string-template": { +-++ "node_modules/string-template": { +-+ "version": "0.2.1", +-+ "resolved": "https://registry.npmjs.org/string-template/-/string-template-0.2.1.tgz", +-+ "integrity": "sha1-QpMuWYo1LQH8IuwzZ9nYTuxsmt0=" +-+ }, +-+- "string-width": { +-+- "version": "1.0.2", +-+- "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", +-+- "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", +-+- "dev": true, +-+- "requires": { +-+- "code-point-at": "^1.0.0", +-+- "is-fullwidth-code-point": "^1.0.0", +-+- "strip-ansi": "^3.0.0" +-++ "node_modules/string-width": { +-++ "version": "4.2.3", +-++ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", +-++ "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", +-++ "dependencies": { +-++ "emoji-regex": "^8.0.0", +-++ "is-fullwidth-code-point": "^3.0.0", +-++ "strip-ansi": "^6.0.1" +-++ }, +-++ "engines": { +-++ "node": ">=8" +-+ } +-+ }, +-+- "string_decoder": { +-+- "version": "1.1.1", +-+- "resolved": "http://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", +-+- "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", +-+- "requires": { +-+- "safe-buffer": "~5.1.0" +-++ "node_modules/string-width-cjs": { +-++ "name": "string-width", +-++ "version": "4.2.3", +-++ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", +-++ "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", +-++ "dependencies": { +-++ "emoji-regex": "^8.0.0", +-++ "is-fullwidth-code-point": "^3.0.0", +-++ "strip-ansi": "^6.0.1" +-++ }, +-++ "engines": { +-++ "node": ">=8" +-+ } +-+ }, +-+- "strip-ansi": { +-+- "version": "3.0.1", +-+- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", +-+- "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", +-+- "dev": true, +-+- "requires": { +-+- "ansi-regex": "^2.0.0" +-++ "node_modules/strip-ansi": { +-++ "version": "6.0.1", +-++ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", +-++ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", +-++ "dependencies": { +-++ "ansi-regex": "^5.0.1" +-++ }, +-++ "engines": { +-++ "node": ">=8" +-+ } +-+ }, +-+- "strip-bom": { +-+- "version": "2.0.0", +-+- "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", +-+- "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", +-+- "dev": true, +-+- "requires": { +-+- "is-utf8": "^0.2.0" +-++ "node_modules/strip-ansi-cjs": { +-++ "name": "strip-ansi", +-++ "version": "6.0.1", +-++ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", +-++ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", +-++ "dependencies": { +-++ "ansi-regex": "^5.0.1" +-++ }, +-++ "engines": { +-++ "node": ">=8" +-+ } +-+ }, +-+- "strip-eof": { +-+- "version": "1.0.0", +-+- "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", +-+- "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=", +-+- "dev": true +-+- }, +-+- "strip-indent": { +-+- "version": "1.0.1", +-+- "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz", +-+- "integrity": "sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI=", +-++ "node_modules/strip-indent": { +-++ "version": "3.0.0", +-++ "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", +-++ "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", +-+ "dev": true, +-+- "requires": { +-+- "get-stdin": "^4.0.1" +-++ "dependencies": { +-++ "min-indent": "^1.0.0" +-++ }, +-++ "engines": { +-++ "node": ">=8" +-+ } +-+ }, +-+- "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 +-++ "node_modules/supports-color": { +-++ "version": "7.2.0", +-++ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", +-++ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", +-++ "dependencies": { +-++ "has-flag": "^4.0.0" +-++ }, +-++ "engines": { +-++ "node": ">=8" +-++ } +-+ }, +-+- "supports-color": { +-+- "version": "2.0.0", +-+- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", +-+- "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", +-+- "dev": true +-++ "node_modules/supports-color/node_modules/has-flag": { +-++ "version": "4.0.0", +-++ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", +-++ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", +-++ "engines": { +-++ "node": ">=8" +-++ } +-+ }, +-+- "tar": { +-+- "version": "2.2.1", +-+- "resolved": "https://registry.npmjs.org/tar/-/tar-2.2.1.tgz", +-+- "integrity": "sha1-jk0qJWwOIYXGsYrWlK7JaLg8sdE=", +-++ "node_modules/tar": { +-++ "version": "6.2.1", +-++ "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.1.tgz", +-++ "integrity": "sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==", +-+ "dev": true, +-+- "requires": { +-+- "block-stream": "*", +-+- "fstream": "^1.0.2", +-+- "inherits": "2" +-++ "dependencies": { +-++ "chownr": "^2.0.0", +-++ "fs-minipass": "^2.0.0", +-++ "minipass": "^5.0.0", +-++ "minizlib": "^2.1.1", +-++ "mkdirp": "^1.0.3", +-++ "yallist": "^4.0.0" +-++ }, +-++ "engines": { +-++ "node": ">=10" +-+ } +-+ }, +-+- "tar-stream": { +-++ "node_modules/tar-stream": { +-+ "version": "1.6.2", +-+ "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-1.6.2.tgz", +-+ "integrity": "sha512-rzS0heiNf8Xn7/mpdSVVSMAWAoy9bfb1WOTYC78Z0UQKeKa/CWS8FOq0lKGNa8DWKAn9gxjCvMLYc5PGXYlK2A==", +-+- "requires": { +-++ "dependencies": { +-+ "bl": "^1.0.0", +-+ "buffer-alloc": "^1.2.0", +-+ "end-of-stream": "^1.0.0", +-+@@ -4599,585 +4220,452 @@ +-+ "readable-stream": "^2.3.0", +-+ "to-buffer": "^1.1.1", +-+ "xtend": "^4.0.0" +-++ }, +-++ "engines": { +-++ "node": ">= 0.8.0" +-+ } +-+ }, +-+- "term-size": { +-+- "version": "1.2.0", +-+- "resolved": "https://registry.npmjs.org/term-size/-/term-size-1.2.0.tgz", +-+- "integrity": "sha1-RYuDiH8oj8Vtb/+/rSYuJmOO+mk=", +-++ "node_modules/tar/node_modules/minipass": { +-++ "version": "5.0.0", +-++ "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", +-++ "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", +-+ "dev": true, +-+- "requires": { +-+- "execa": "^0.7.0" +-++ "engines": { +-++ "node": ">=8" +-+ } +-+ }, +-+- "timed-out": { +-+- "version": "4.0.1", +-+- "resolved": "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz", +-+- "integrity": "sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8=", +-++ "node_modules/tar/node_modules/mkdirp": { +-++ "version": "1.0.4", +-++ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", +-++ "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", +-++ "dev": true, +-++ "bin": { +-++ "mkdirp": "bin/cmd.js" +-++ }, +-++ "engines": { +-++ "node": ">=10" +-++ } +-++ }, +-++ "node_modules/tar/node_modules/yallist": { +-++ "version": "4.0.0", +-++ "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", +-++ "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", +-+ "dev": true +-+ }, +-+- "to-buffer": { +-++ "node_modules/to-buffer": { +-+ "version": "1.1.1", +-+ "resolved": "https://registry.npmjs.org/to-buffer/-/to-buffer-1.1.1.tgz", +-+ "integrity": "sha512-lx9B5iv7msuFYE3dytT+KE5tap+rNYw+K4jVkb9R/asAb+pbBSM17jtunHplhBe6RRJdZx3Pn2Jph24O32mOVg==" +-+ }, +-+- "to-object-path": { +-+- "version": "0.3.0", +-+- "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", +-+- "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=", +-++ "node_modules/to-regex-range": { +-++ "version": "5.0.1", +-++ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", +-++ "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", +-+ "dev": true, +-+- "requires": { +-+- "kind-of": "^3.0.2" +-+- }, +-+ "dependencies": { +-+- "kind-of": { +-+- "version": "3.2.2", +-+- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", +-+- "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", +-+- "dev": true, +-+- "requires": { +-+- "is-buffer": "^1.1.5" +-+- } +-+- } +-+- } +-+- }, +-+- "to-regex": { +-+- "version": "3.0.2", +-+- "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", +-+- "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", +-+- "dev": true, +-+- "requires": { +-+- "define-property": "^2.0.2", +-+- "extend-shallow": "^3.0.2", +-+- "regex-not": "^1.0.2", +-+- "safe-regex": "^1.1.0" +-++ "is-number": "^7.0.0" +-++ }, +-++ "engines": { +-++ "node": ">=8.0" +-+ } +-+ }, +-+- "to-regex-range": { +-+- "version": "2.1.1", +-+- "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", +-+- "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", +-+- "dev": true, +-+- "requires": { +-+- "is-number": "^3.0.0", +-+- "repeat-string": "^1.6.1" +-++ "node_modules/toidentifier": { +-++ "version": "1.0.1", +-++ "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", +-++ "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", +-++ "engines": { +-++ "node": ">=0.6" +-+ } +-+ }, +-+- "touch": { +-++ "node_modules/touch": { +-+ "version": "3.1.0", +-+ "resolved": "https://registry.npmjs.org/touch/-/touch-3.1.0.tgz", +-+ "integrity": "sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA==", +-+ "dev": true, +-+- "requires": { +-++ "dependencies": { +-+ "nopt": "~1.0.10" +-+ }, +-++ "bin": { +-++ "nodetouch": "bin/nodetouch.js" +-++ } +-++ }, +-++ "node_modules/touch/node_modules/nopt": { +-++ "version": "1.0.10", +-++ "resolved": "https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz", +-++ "integrity": "sha1-bd0hvSoxQXuScn3Vhfim83YI6+4=", +-++ "dev": true, +-+ "dependencies": { +-+- "nopt": { +-+- "version": "1.0.10", +-+- "resolved": "https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz", +-+- "integrity": "sha1-bd0hvSoxQXuScn3Vhfim83YI6+4=", +-+- "dev": true, +-+- "requires": { +-+- "abbrev": "1" +-+- } +-+- } +-++ "abbrev": "1" +-++ }, +-++ "bin": { +-++ "nopt": "bin/nopt.js" +-++ }, +-++ "engines": { +-++ "node": "*" +-++ } +-++ }, +-++ "node_modules/tree-kill": { +-++ "version": "1.2.2", +-++ "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz", +-++ "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==", +-++ "dev": true, +-++ "bin": { +-++ "tree-kill": "cli.js" +-+ } +-+ }, +-+- "tough-cookie": { +-+- "version": "2.4.3", +-+- "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.4.3.tgz", +-+- "integrity": "sha512-Q5srk/4vDM54WJsJio3XNn6K2sCG+CQ8G5Wz6bZhRZoAe/+TxjWB/GlFAnYEbkYVlON9FMk/fE3h2RLpPXo4lQ==", +-+- "requires": { +-+- "psl": "^1.1.24", +-+- "punycode": "^1.4.1" +-++ "node_modules/trim-newlines": { +-++ "version": "3.0.1", +-++ "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.1.tgz", +-++ "integrity": "sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==", +-++ "dev": true, +-++ "engines": { +-++ "node": ">=8" +-+ } +-+ }, +-+- "tree-kill": { +-+- "version": "1.2.1", +-+- "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.1.tgz", +-+- "integrity": "sha512-4hjqbObwlh2dLyW4tcz0Ymw0ggoaVDMveUB9w8kFSQScdRLo0gxO9J7WFcUBo+W3C1TLdFIEwNOWebgZZ0RH9Q==", +-++ "node_modules/true-case-path": { +-++ "version": "2.2.1", +-++ "resolved": "https://registry.npmjs.org/true-case-path/-/true-case-path-2.2.1.tgz", +-++ "integrity": "sha512-0z3j8R7MCjy10kc/g+qg7Ln3alJTodw9aDuVWZa3uiWqfuBMKeAeP2ocWcxoyM3D73yz3Jt/Pu4qPr4wHSdB/Q==", +-+ "dev": true +-+ }, +-+- "trim-newlines": { +-+- "version": "1.0.0", +-+- "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz", +-+- "integrity": "sha1-WIeWa7WCpFA6QetST301ARgVphM=", +-++ "node_modules/tslib": { +-++ "version": "2.6.3", +-++ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz", +-++ "integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==", +-+ "dev": true +-+ }, +-+- "true-case-path": { +-+- "version": "1.0.3", +-+- "resolved": "https://registry.npmjs.org/true-case-path/-/true-case-path-1.0.3.tgz", +-+- "integrity": "sha512-m6s2OdQe5wgpFMC+pAJ+q9djG82O2jcHPOI6RNg1yy9rCYR+WD6Nbpl32fDpfC56nirdRy+opFa/Vk7HYhqaew==", +-++ "node_modules/type-fest": { +-++ "version": "0.18.1", +-++ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz", +-++ "integrity": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==", +-+ "dev": true, +-+- "requires": { +-+- "glob": "^7.1.2" +-++ "engines": { +-++ "node": ">=10" +-++ }, +-++ "funding": { +-++ "url": "https://github.com/sponsors/sindresorhus" +-+ } +-+ }, +-+- "tslib": { +-+- "version": "1.9.3", +-+- "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.9.3.tgz", +-+- "integrity": "sha512-4krF8scpejhaOgqzBEcGM7yDIEfi0/8+8zDRZhNZZ2kjmHJ4hv3zCbQWxoJGz1iw5U0Jl0nma13xzHXcncMavQ==", +-+- "dev": true +-+- }, +-+- "tunnel-agent": { +-+- "version": "0.6.0", +-+- "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", +-+- "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", +-+- "requires": { +-+- "safe-buffer": "^5.0.1" +-+- } +-+- }, +-+- "tweetnacl": { +-+- "version": "0.14.5", +-+- "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", +-+- "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=" +-+- }, +-+- "type-is": { +-+- "version": "1.6.16", +-+- "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.16.tgz", +-+- "integrity": "sha512-HRkVv/5qY2G6I8iab9cI7v1bOIdhm94dVjQCPFElW9W+3GeDOSHmy2EBYe4VTApuzolPcmgFTN3ftVJRKR2J9Q==", +-+- "requires": { +-++ "node_modules/type-is": { +-++ "version": "1.6.18", +-++ "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", +-++ "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", +-++ "dependencies": { +-+ "media-typer": "0.3.0", +-+- "mime-types": "~2.1.18" +-++ "mime-types": "~2.1.24" +-++ }, +-++ "engines": { +-++ "node": ">= 0.6" +-+ } +-+ }, +-+- "uglify-js": { +-+- "version": "3.4.9", +-+- "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.4.9.tgz", +-+- "integrity": "sha512-8CJsbKOtEbnJsTyv6LE6m6ZKniqMiFWmm9sRbopbkGs3gMPPfd3Fh8iIA4Ykv5MgaTbqHr4BaoGLJLZNhsrW1Q==", +-++ "node_modules/uglify-js": { +-++ "version": "3.18.0", +-++ "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.18.0.tgz", +-++ "integrity": "sha512-SyVVbcNBCk0dzr9XL/R/ySrmYf0s372K6/hFklzgcp2lBFyXtw4I7BOdDjlLhE1aVqaI/SHWXWmYdlZxuyF38A==", +-+ "optional": true, +-+- "requires": { +-+- "commander": "~2.17.1", +-+- "source-map": "~0.6.1" +-++ "bin": { +-++ "uglifyjs": "bin/uglifyjs" +-+ }, +-+- "dependencies": { +-+- "commander": { +-+- "version": "2.17.1", +-+- "resolved": "https://registry.npmjs.org/commander/-/commander-2.17.1.tgz", +-+- "integrity": "sha512-wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg==", +-+- "optional": true +-+- }, +-+- "source-map": { +-+- "version": "0.6.1", +-+- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", +-+- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", +-+- "optional": true +-+- } +-+- } +-+- }, +-+- "undefsafe": { +-+- "version": "2.0.2", +-+- "resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.2.tgz", +-+- "integrity": "sha1-Il9rngM3Zj4Njnz9aG/Cg2zKznY=", +-+- "dev": true, +-+- "requires": { +-+- "debug": "^2.2.0" +-+- } +-+- }, +-+- "union-value": { +-+- "version": "1.0.0", +-+- "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.0.tgz", +-+- "integrity": "sha1-XHHDTLW61dzr4+oM0IIHulqhrqQ=", +-+- "dev": true, +-+- "requires": { +-+- "arr-union": "^3.1.0", +-+- "get-value": "^2.0.6", +-+- "is-extendable": "^0.1.1", +-+- "set-value": "^0.4.3" +-+- }, +-+- "dependencies": { +-+- "extend-shallow": { +-+- "version": "2.0.1", +-+- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", +-+- "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", +-+- "dev": true, +-+- "requires": { +-+- "is-extendable": "^0.1.0" +-+- } +-+- }, +-+- "set-value": { +-+- "version": "0.4.3", +-+- "resolved": "https://registry.npmjs.org/set-value/-/set-value-0.4.3.tgz", +-+- "integrity": "sha1-fbCPnT0i3H945Trzw79GZuzfzPE=", +-+- "dev": true, +-+- "requires": { +-+- "extend-shallow": "^2.0.1", +-+- "is-extendable": "^0.1.1", +-+- "is-plain-object": "^2.0.1", +-+- "to-object-path": "^0.3.0" +-+- } +-+- } +-+- } +-+- }, +-+- "unique-string": { +-+- "version": "1.0.0", +-+- "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-1.0.0.tgz", +-+- "integrity": "sha1-nhBXzKhRq7kzmPizOuGHuZyuwRo=", +-+- "dev": true, +-+- "requires": { +-+- "crypto-random-string": "^1.0.0" +-+- } +-+- }, +-+- "unpipe": { +-+- "version": "1.0.0", +-+- "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", +-+- "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=" +-+- }, +-+- "unset-value": { +-+- "version": "1.0.0", +-+- "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", +-+- "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=", +-+- "dev": true, +-+- "requires": { +-+- "has-value": "^0.3.1", +-+- "isobject": "^3.0.0" +-+- }, +-+- "dependencies": { +-+- "has-value": { +-+- "version": "0.3.1", +-+- "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", +-+- "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=", +-+- "dev": true, +-+- "requires": { +-+- "get-value": "^2.0.3", +-+- "has-values": "^0.1.4", +-+- "isobject": "^2.0.0" +-+- }, +-+- "dependencies": { +-+- "isobject": { +-+- "version": "2.1.0", +-+- "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", +-+- "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", +-+- "dev": true, +-+- "requires": { +-+- "isarray": "1.0.0" +-+- } +-+- } +-+- } +-+- }, +-+- "has-values": { +-+- "version": "0.1.4", +-+- "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", +-+- "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=", +-+- "dev": true +-+- } +-++ "engines": { +-++ "node": ">=0.8.0" +-+ } +-+ }, +-+- "unzip-response": { +-+- "version": "2.0.1", +-+- "resolved": "https://registry.npmjs.org/unzip-response/-/unzip-response-2.0.1.tgz", +-+- "integrity": "sha1-0vD3N9FrBhXnKmk17QQhRXLVb5c=", +-+- "dev": true +-+- }, +-+- "upath": { +-+- "version": "1.1.2", +-+- "resolved": "https://registry.npmjs.org/upath/-/upath-1.1.2.tgz", +-+- "integrity": "sha512-kXpym8nmDmlCBr7nKdIx8P2jNBa+pBpIUFRnKJ4dr8htyYGJFokkr2ZvERRtUN+9SY+JqXouNgUPtv6JQva/2Q==", +-++ "node_modules/undefsafe": { +-++ "version": "2.0.5", +-++ "resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.5.tgz", +-++ "integrity": "sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==", +-+ "dev": true +-+ }, +-+- "update-notifier": { +-+- "version": "2.5.0", +-+- "resolved": "https://registry.npmjs.org/update-notifier/-/update-notifier-2.5.0.tgz", +-+- "integrity": "sha512-gwMdhgJHGuj/+wHJJs9e6PcCszpxR1b236igrOkUofGhqJuG+amlIKwApH1IW1WWl7ovZxsX49lMBWLxSdm5Dw==", +-+- "dev": true, +-+- "requires": { +-+- "boxen": "^1.2.1", +-+- "chalk": "^2.0.1", +-+- "configstore": "^3.0.0", +-+- "import-lazy": "^2.1.0", +-+- "is-ci": "^1.0.10", +-+- "is-installed-globally": "^0.1.0", +-+- "is-npm": "^1.0.0", +-+- "latest-version": "^3.0.0", +-+- "semver-diff": "^2.0.0", +-+- "xdg-basedir": "^3.0.0" +-+- }, +-+- "dependencies": { +-+- "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" +-+- } +-+- }, +-+- "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" +-+- } +-+- } +-++ "node_modules/unique-filename": { +-++ "version": "2.0.1", +-++ "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-2.0.1.tgz", +-++ "integrity": "sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A==", +-++ "dev": true, +-++ "dependencies": { +-++ "unique-slug": "^3.0.0" +-++ }, +-++ "engines": { +-++ "node": "^12.13.0 || ^14.15.0 || >=16.0.0" +-+ } +-+ }, +-+- "uri-js": { +-+- "version": "4.2.2", +-+- "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz", +-+- "integrity": "sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==", +-+- "requires": { +-+- "punycode": "^2.1.0" +-+- }, +-++ "node_modules/unique-slug": { +-++ "version": "3.0.0", +-++ "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-3.0.0.tgz", +-++ "integrity": "sha512-8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w==", +-++ "dev": true, +-+ "dependencies": { +-+- "punycode": { +-+- "version": "2.1.1", +-+- "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", +-+- "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" +-+- } +-++ "imurmurhash": "^0.1.4" +-++ }, +-++ "engines": { +-++ "node": "^12.13.0 || ^14.15.0 || >=16.0.0" +-+ } +-+ }, +-+- "urix": { +-+- "version": "0.1.0", +-+- "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", +-+- "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=", +-+- "dev": true +-+- }, +-+- "url-parse-lax": { +-++ "node_modules/unpipe": { +-+ "version": "1.0.0", +-+- "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-1.0.0.tgz", +-+- "integrity": "sha1-evjzA2Rem9eaJy56FKxovAYJ2nM=", +-+- "dev": true, +-+- "requires": { +-+- "prepend-http": "^1.0.1" +-++ "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", +-++ "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", +-++ "engines": { +-++ "node": ">= 0.8" +-+ } +-+ }, +-+- "use": { +-+- "version": "3.1.1", +-+- "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", +-+- "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", +-+- "dev": true +-+- }, +-+- "util-deprecate": { +-++ "node_modules/util-deprecate": { +-+ "version": "1.0.2", +-+ "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", +-+ "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" +-+ }, +-+- "utils-merge": { +-++ "node_modules/utils-merge": { +-+ "version": "1.0.1", +-+ "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", +-+- "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=" +-+- }, +-+- "uuid": { +-+- "version": "3.3.2", +-+- "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.3.2.tgz", +-+- "integrity": "sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==" +-++ "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=", +-++ "engines": { +-++ "node": ">= 0.4.0" +-++ } +-+ }, +-+- "valid-url": { +-++ "node_modules/valid-url": { +-+ "version": "1.0.9", +-+ "resolved": "https://registry.npmjs.org/valid-url/-/valid-url-1.0.9.tgz", +-+ "integrity": "sha1-HBRHm0DxOXp1eC8RXkCGRHQzogA=" +-+ }, +-+- "validate-npm-package-license": { +-++ "node_modules/validate-npm-package-license": { +-+ "version": "3.0.4", +-+ "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", +-+ "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", +-+ "dev": true, +-+- "requires": { +-++ "dependencies": { +-+ "spdx-correct": "^3.0.0", +-+ "spdx-expression-parse": "^3.0.0" +-+ } +-+ }, +-+- "vary": { +-++ "node_modules/vary": { +-+ "version": "1.1.2", +-+ "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", +-+- "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=" +-++ "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=", +-++ "engines": { +-++ "node": ">= 0.8" +-++ } +-+ }, +-+- "verror": { +-+- "version": "1.10.0", +-+- "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", +-+- "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", +-+- "requires": { +-+- "assert-plus": "^1.0.0", +-+- "core-util-is": "1.0.2", +-+- "extsprintf": "^1.2.0" +-+- }, +-+- "dependencies": { +-+- "assert-plus": { +-+- "version": "1.0.0", +-+- "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", +-+- "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" +-+- } +-++ "node_modules/whirlpool": { +-++ "version": "0.0.4", +-++ "resolved": "https://registry.npmjs.org/whirlpool/-/whirlpool-0.0.4.tgz", +-++ "integrity": "sha1-lA5+gG0tP3xB98VCYQRqBvT06Qo=", +-++ "hasInstallScript": true, +-++ "engines": { +-++ "node": ">=0.7.0" +-+ } +-+ }, +-+- "which": { +-+- "version": "1.3.1", +-+- "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", +-+- "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", +-++ "node_modules/wide-align": { +-++ "version": "1.1.5", +-++ "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", +-++ "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", +-+ "dev": true, +-+- "requires": { +-+- "isexe": "^2.0.0" +-++ "dependencies": { +-++ "string-width": "^1.0.2 || 2 || 3 || 4" +-+ } +-+ }, +-+- "which-module": { +-++ "node_modules/wordwrap": { +-+ "version": "1.0.0", +-+- "resolved": "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz", +-+- "integrity": "sha1-u6Y8qGGUiZT/MHc2CJ47lgJsKk8=", +-+- "dev": true +-++ "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", +-++ "integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==" +-+ }, +-+- "whirlpool": { +-+- "version": "0.0.4", +-+- "resolved": "https://registry.npmjs.org/whirlpool/-/whirlpool-0.0.4.tgz", +-+- "integrity": "sha1-lA5+gG0tP3xB98VCYQRqBvT06Qo=" +-++ "node_modules/wrap-ansi": { +-++ "version": "8.1.0", +-++ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", +-++ "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", +-++ "dependencies": { +-++ "ansi-styles": "^6.1.0", +-++ "string-width": "^5.0.1", +-++ "strip-ansi": "^7.0.1" +-++ }, +-++ "engines": { +-++ "node": ">=12" +-++ }, +-++ "funding": { +-++ "url": "https://github.com/chalk/wrap-ansi?sponsor=1" +-++ } +-+ }, +-+- "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" +-++ "node_modules/wrap-ansi-cjs": { +-++ "name": "wrap-ansi", +-++ "version": "7.0.0", +-++ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", +-++ "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", +-++ "dependencies": { +-++ "ansi-styles": "^4.0.0", +-++ "string-width": "^4.1.0", +-++ "strip-ansi": "^6.0.0" +-++ }, +-++ "engines": { +-++ "node": ">=10" +-++ }, +-++ "funding": { +-++ "url": "https://github.com/chalk/wrap-ansi?sponsor=1" +-++ } +-++ }, +-++ "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { +-++ "version": "4.3.0", +-++ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", +-++ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", +-++ "dependencies": { +-++ "color-convert": "^2.0.1" +-++ }, +-++ "engines": { +-++ "node": ">=8" +-++ }, +-++ "funding": { +-++ "url": "https://github.com/chalk/ansi-styles?sponsor=1" +-+ } +-+ }, +-+- "widest-line": { +-++ "node_modules/wrap-ansi-cjs/node_modules/color-convert": { +-+ "version": "2.0.1", +-+- "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-2.0.1.tgz", +-+- "integrity": "sha512-Ba5m9/Fa4Xt9eb2ELXt77JxVDV8w7qQrH0zS/TWSJdLyAwQjWoOzpzj5lwVftDz6n/EOu3tNACS84v509qwnJA==", +-+- "dev": true, +-+- "requires": { +-+- "string-width": "^2.1.1" +-++ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", +-++ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", +-++ "dependencies": { +-++ "color-name": "~1.1.4" +-++ }, +-++ "engines": { +-++ "node": ">=7.0.0" +-++ } +-++ }, +-++ "node_modules/wrap-ansi-cjs/node_modules/color-name": { +-++ "version": "1.1.4", +-++ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", +-++ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" +-++ }, +-++ "node_modules/wrap-ansi/node_modules/ansi-regex": { +-++ "version": "6.0.1", +-++ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", +-++ "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", +-++ "engines": { +-++ "node": ">=12" +-++ }, +-++ "funding": { +-++ "url": "https://github.com/chalk/ansi-regex?sponsor=1" +-++ } +-++ }, +-++ "node_modules/wrap-ansi/node_modules/ansi-styles": { +-++ "version": "6.2.1", +-++ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", +-++ "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", +-++ "engines": { +-++ "node": ">=12" +-+ }, +-++ "funding": { +-++ "url": "https://github.com/chalk/ansi-styles?sponsor=1" +-++ } +-++ }, +-++ "node_modules/wrap-ansi/node_modules/emoji-regex": { +-++ "version": "9.2.2", +-++ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", +-++ "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" +-++ }, +-++ "node_modules/wrap-ansi/node_modules/string-width": { +-++ "version": "5.1.2", +-++ "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", +-++ "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", +-+ "dependencies": { +-+- "ansi-regex": { +-+- "version": "3.0.0", +-+- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", +-+- "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", +-+- "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 +-+- }, +-+- "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" +-+- } +-+- }, +-+- "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" +-+- } +-+- } +-++ "eastasianwidth": "^0.2.0", +-++ "emoji-regex": "^9.2.2", +-++ "strip-ansi": "^7.0.1" +-++ }, +-++ "engines": { +-++ "node": ">=12" +-++ }, +-++ "funding": { +-++ "url": "https://github.com/sponsors/sindresorhus" +-+ } +-+ }, +-+- "wrap-ansi": { +-+- "version": "2.1.0", +-+- "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", +-+- "integrity": "sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=", +-+- "dev": true, +-+- "requires": { +-+- "string-width": "^1.0.1", +-+- "strip-ansi": "^3.0.1" +-++ "node_modules/wrap-ansi/node_modules/strip-ansi": { +-++ "version": "7.1.0", +-++ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", +-++ "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", +-++ "dependencies": { +-++ "ansi-regex": "^6.0.1" +-++ }, +-++ "engines": { +-++ "node": ">=12" +-++ }, +-++ "funding": { +-++ "url": "https://github.com/chalk/strip-ansi?sponsor=1" +-+ } +-+ }, +-+- "wrappy": { +-++ "node_modules/wrappy": { +-+ "version": "1.0.2", +-+ "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", +-+ "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" +-+ }, +-+- "write-file-atomic": { +-+- "version": "2.4.2", +-+- "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.2.tgz", +-+- "integrity": "sha512-s0b6vB3xIVRLWywa6X9TOMA7k9zio0TMOsl9ZnDkliA/cfJlpHXAscj0gbHVJiTdIuAYpIyqS5GW91fqm6gG5g==", +-+- "dev": true, +-+- "requires": { +-+- "graceful-fs": "^4.1.11", +-+- "imurmurhash": "^0.1.4", +-+- "signal-exit": "^3.0.2" +-+- } +-+- }, +-+- "xdg-basedir": { +-+- "version": "3.0.0", +-+- "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-3.0.0.tgz", +-+- "integrity": "sha1-SWsswQnsqNus/i3HK2A8F8WHCtQ=", +-+- "dev": true +-+- }, +-+- "xtend": { +-++ "node_modules/xtend": { +-+ "version": "4.0.1", +-+ "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", +-+- "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=" +-++ "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=", +-++ "engines": { +-++ "node": ">=0.4" +-++ } +-+ }, +-+- "y18n": { +-+- "version": "3.2.1", +-+- "resolved": "https://registry.npmjs.org/y18n/-/y18n-3.2.1.tgz", +-+- "integrity": "sha1-bRX7qITAhnnA136I53WegR4H+kE=", +-+- "dev": true +-++ "node_modules/yargs": { +-++ "version": "17.7.2", +-++ "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", +-++ "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", +-++ "dev": true, +-++ "dependencies": { +-++ "cliui": "^8.0.1", +-++ "escalade": "^3.1.1", +-++ "get-caller-file": "^2.0.5", +-++ "require-directory": "^2.1.1", +-++ "string-width": "^4.2.3", +-++ "y18n": "^5.0.5", +-++ "yargs-parser": "^21.1.1" +-++ }, +-++ "engines": { +-++ "node": ">=12" +-++ } +-+ }, +-+- "yallist": { +-+- "version": "2.1.2", +-+- "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", +-+- "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=", +-+- "dev": true +-++ "node_modules/yargs-parser": { +-++ "version": "20.2.9", +-++ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", +-++ "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", +-++ "dev": true, +-++ "engines": { +-++ "node": ">=10" +-++ } +-+ }, +-+- "yargs": { +-+- "version": "7.1.0", +-+- "resolved": "https://registry.npmjs.org/yargs/-/yargs-7.1.0.tgz", +-+- "integrity": "sha1-a6MY6xaWFyf10oT46gA+jWFU0Mg=", +-+- "dev": true, +-+- "requires": { +-+- "camelcase": "^3.0.0", +-+- "cliui": "^3.2.0", +-+- "decamelize": "^1.1.1", +-+- "get-caller-file": "^1.0.1", +-+- "os-locale": "^1.4.0", +-+- "read-pkg-up": "^1.0.1", +-+- "require-directory": "^2.1.1", +-+- "require-main-filename": "^1.0.1", +-+- "set-blocking": "^2.0.0", +-+- "string-width": "^1.0.2", +-+- "which-module": "^1.0.0", +-+- "y18n": "^3.2.1", +-+- "yargs-parser": "^5.0.0" +-+- }, +-+- "dependencies": { +-+- "camelcase": { +-+- "version": "3.0.0", +-+- "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", +-+- "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=", +-+- "dev": true +-+- } +-++ "node_modules/yargs/node_modules/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, +-++ "engines": { +-++ "node": "6.* || 8.* || >= 10.*" +-+ } +-+ }, +-+- "yargs-parser": { +-+- "version": "5.0.0", +-+- "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-5.0.0.tgz", +-+- "integrity": "sha1-J17PDX/+Bcd+ZOfIbkzZS/DhIoo=", +-++ "node_modules/yargs/node_modules/y18n": { +-++ "version": "5.0.8", +-++ "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", +-++ "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", +-+ "dev": true, +-+- "requires": { +-+- "camelcase": "^3.0.0" +-+- }, +-+- "dependencies": { +-+- "camelcase": { +-+- "version": "3.0.0", +-+- "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", +-+- "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=", +-+- "dev": true +-+- } +-++ "engines": { +-++ "node": ">=10" +-++ } +-++ }, +-++ "node_modules/yargs/node_modules/yargs-parser": { +-++ "version": "21.1.1", +-++ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", +-++ "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", +-++ "dev": true, +-++ "engines": { +-++ "node": ">=12" +-+ } +-+ }, +-+- "zip-stream": { +-++ "node_modules/zip-stream": { +-+ "version": "1.2.0", +-+ "resolved": "https://registry.npmjs.org/zip-stream/-/zip-stream-1.2.0.tgz", +-+ "integrity": "sha1-qLxF9MG0lpnGuQGYuqyqzbzUugQ=", +-+- "requires": { +-++ "dependencies": { +-+ "archiver-utils": "^1.3.0", +-+ "compress-commons": "^1.2.0", +-+ "lodash": "^4.8.0", +-+ "readable-stream": "^2.0.0" +-++ }, +-++ "engines": { +-++ "node": ">= 0.10.0" +-+ } +-+ } +-+ } +-+diff --git a/package.json b/package.json +-+index c3d80ac..b3ab9c4 100644 +-+--- a/package.json +-++++ b/package.json +-+@@ -14,23 +14,23 @@ +-+ "license": "ISC", +-+ "dependencies": { +-+ "archiver": "^2.1.1", +-++ "axios": "^1.7.2", +-+ "body-parser": "^1.18.2", +-+ "clarifai": "^2.9.0", +-+ "cors": "^2.8.5", +-+- "csv": "^3.0.2", +-+- "ejs": "^2.6.1", +-++ "csv": "^6.3.9", +-++ "ejs": "^3.1.10", +-+ "express": "^4.16.3", +-+ "express-busboy": "^7.0.0", +-+- "express-handlebars": "^3.0.2", +-++ "express-handlebars": "^7.1.3", +-+ "localforage": "^1.7.3", +-+ "minimist": "^1.2.0", +-+ "mkdirp": "^0.5.1", +-+- "request": "^2.88.0", +-+ "whirlpool": "0.0.4" +-+ }, +-+ "devDependencies": { +-+- "concurrently": "^4.1.0", +-+- "node-sass": "^4.11.0", +-+- "nodemon": "^1.18.10" +-++ "concurrently": "^8.2.2", +-++ "node-sass": "^9.0.0", +-++ "nodemon": "^3.1.4" +-+ } +-+ } +diff --git a/verify_uclassify_keys.js b/verify_uclassify_keys.js +new file mode 100644 +index 0000000..0f68340 +--- /dev/null ++++ b/verify_uclassify_keys.js +@@ -0,0 +1,31 @@ ++const axios = require('axios'); ++ ++const writeToken = "BES0gdWq3hYb"; ++const base_url = "https://api.uclassify.com/v1/"; ++ ++async function verifyUClassifyKeys() { ++ try { ++ // Attempt to create a classifier (valid operation for write key) ++ console.log('Verifying write key by creating a test classifier...'); ++ const classifierName = 'TestClassifier' + Date.now(); ++ const createUrl = base_url + "me/"; ++ const response = await axios.post(createUrl, { classifierName }, { ++ headers: { 'Content-Type': 'application/json', 'Authorization': 'Token ' + writeToken } ++ }); ++ console.log('Write key is valid. Classifier created:', classifierName); ++ ++ // Clean up by deleting the test classifier ++ console.log('Cleaning up...'); ++ const deleteUrl = base_url + "me/" + classifierName; ++ await axios.delete(deleteUrl, { ++ headers: { 'Content-Type': 'application/json', 'Authorization': 'Token ' + writeToken } ++ }); ++ console.log('Test classifier deleted'); ++ ++ console.log('uClassify write API key is valid and working.'); ++ } catch (error) { ++ console.error('Error verifying uClassify API key:', error.response ? error.response.data : error.message); ++ } ++} ++ ++verifyUClassifyKeys(); +diff --git a/views/models/vision/vision_classifiers.handlebars b/views/models/vision/vision_classifiers.handlebars +index dbaae8f..667beef 100644 +--- a/views/models/vision/vision_classifiers.handlebars ++++ b/views/models/vision/vision_classifiers.handlebars +@@ -248,11 +248,9 @@ + $('.js--explore__apikey__input--set').hide(); + $('.js--api-key__value').html('Using Server Authentication'); + $('.api-key__result-row').show(); +- $('.js--api-key__value').html('Using Server Authentication'); +- $('.api-key__result-row').show(); +- showSuccessNotification('Server authentication enabled', false , false); +- setUserClassifiers(); +- }); ++ showSuccessNotification('Server authentication enabled', false , false); ++ setUserClassifiers(); ++ + $('.api-key__remove-button').click(function (e) { + showWarningNotification('Server authentication cannot be disabled', true, false); + }); diff --git a/detailed_uclassify_test.js b/detailed_uclassify_test.js new file mode 100644 index 00000000..1915e9ee --- /dev/null +++ b/detailed_uclassify_test.js @@ -0,0 +1,85 @@ +const axios = require('axios'); + +const uclassifyReadApiKey = process.env.UCLASSIFY_READ_API_KEY; +const uclassifyWriteApiKey = process.env.UCLASSIFY_WRITE_API_KEY; + +if (!uclassifyReadApiKey || !uclassifyWriteApiKey) { + console.error('uClassify API keys not found in environment variables'); + process.exit(1); +} + +const writeHeaders = { + 'Content-Type': 'application/json', + 'Authorization': +}; + +const readHeaders = { + 'Content-Type': 'application/json', + 'Authorization': +}; + +async function testUClassifyAPI() { + try { + console.log('Testing uClassify API...'); + + // Test creating a classifier + const createUrl = 'https://api.uclassify.com/v1/me/test_classifier_2024/create'; + console.log('Creating classifier...'); + try { + const createResponse = await axios.post(createUrl, {}, { headers: writeHeaders }); + console.log('Create classifier response:', createResponse.data); + } catch (error) { + console.error('Error creating classifier:', error.response ? error.response.data : error.message); + console.error('Full error object:', JSON.stringify(error, null, 2)); + } + + // Test adding a class + const addClassUrl = 'https://api.uclassify.com/v1/me/test_classifier_2024/addClass'; + const addClassData = { className: 'positive' }; + console.log('Adding class...'); + try { + const addClassResponse = await axios.post(addClassUrl, addClassData, { headers: writeHeaders }); + console.log('Add class response:', addClassResponse.data); + } catch (error) { + console.error('Error adding class:', error.response ? error.response.data : error.message); + console.error('Full error object:', JSON.stringify(error, null, 2)); + } + + // Test training the classifier + const trainUrl = 'https://api.uclassify.com/v1/me/test_classifier_2024/train'; + const trainData = { + texts: [ + { text: 'I am happy', className: 'positive' }, + { text: 'This is great', className: 'positive' } + ] + }; + console.log('Training classifier...'); + try { + const trainResponse = await axios.post(trainUrl, trainData, { headers: writeHeaders }); + console.log('Train classifier response:', trainResponse.data); + } catch (error) { + console.error('Error training classifier:', error.response ? error.response.data : error.message); + console.error('Full error object:', JSON.stringify(error, null, 2)); + } + + // Test classifying text + const classifyUrl = 'https://api.uclassify.com/v1/me/test_classifier_2024/classify'; + const classifyData = { + texts: ['I feel wonderful today'] + }; + console.log('Classifying text...'); + try { + const classifyResponse = await axios.post(classifyUrl, classifyData, { headers: readHeaders }); + console.log('Classify text response:', classifyResponse.data); + } catch (error) { + console.error('Error classifying text:', error.response ? error.response.data : error.message); + console.error('Full error object:', JSON.stringify(error, null, 2)); + } + + console.log('uClassify API tests completed.'); + } catch (error) { + console.error('Unexpected error:', error); + } +} + +testUClassifyAPI(); diff --git a/download_cat_images.js b/download_cat_images.js new file mode 100644 index 00000000..a4bb9722 --- /dev/null +++ b/download_cat_images.js @@ -0,0 +1,46 @@ +const axios = require('axios'); +const fs = require('fs').promises; +const path = require('path'); + +const UNSPLASH_ACCESS_KEY = 'vGHnqYHJEEpTGxZAyGQB8qKSih3PpP_zNxGDLaX_1dI'; // Public demo key +const NUM_IMAGES = 10; + +async function downloadImage(url, filename) { + try { + const response = await axios({ + url, + responseType: 'arraybuffer' + }); + await fs.writeFile(filename, response.data); + console.log(`Downloaded ${filename}`); + } catch (error) { + console.error(`Error downloading ${filename}:`, error.message); + } +} + +async function main() { + try { + // Get cat photos from Unsplash + const response = await axios.get(`https://api.unsplash.com/search/photos`, { + params: { + query: 'cat', + per_page: NUM_IMAGES + }, + headers: { + Authorization: `Client-ID ${UNSPLASH_ACCESS_KEY}` + } + }); + + const downloadPromises = response.data.results.map((photo, index) => { + const filename = path.join(__dirname, 'static', 'test_images', 'cats', `cat${index + 1}.jpg`); + return downloadImage(photo.urls.regular, filename); + }); + + await Promise.all(downloadPromises); + console.log('All cat images downloaded successfully!'); + } catch (error) { + console.error('Error:', error.message); + } +} + +main(); diff --git a/download_dog_images.js b/download_dog_images.js new file mode 100644 index 00000000..08d9c948 --- /dev/null +++ b/download_dog_images.js @@ -0,0 +1,45 @@ +const axios = require('axios'); +const fs = require('fs'); +const path = require('path'); + +const downloadImage = async (url, filepath) => { + const response = await axios({ + url, + method: 'GET', + responseType: 'stream' + }); + + return new Promise((resolve, reject) => { + const writer = fs.createWriteStream(filepath); + response.data.pipe(writer); + writer.on('finish', resolve); + writer.on('error', reject); + }); +}; + +async function downloadDogImages() { + const outputDir = path.join(__dirname, 'static', 'test_images', 'dogs'); + + // Ensure the directory exists + if (!fs.existsSync(outputDir)) { + fs.mkdirSync(outputDir, { recursive: true }); + } + + try { + // Get 10 random dog images + for (let i = 1; i <= 10; i++) { + const response = await axios.get('https://dog.ceo/api/breeds/image/random'); + const imageUrl = response.data.message; + const outputPath = path.join(outputDir, `dog${i}.jpg`); + + await downloadImage(imageUrl, outputPath); + console.log(`Downloaded dog${i}.jpg`); + } + + console.log('All dog images downloaded successfully'); + } catch (error) { + console.error('Error downloading dog images:', error); + } +} + +downloadDogImages(); diff --git a/generate_better_dog_images.js b/generate_better_dog_images.js new file mode 100644 index 00000000..ab3c1213 --- /dev/null +++ b/generate_better_dog_images.js @@ -0,0 +1,59 @@ +const sharp = require('sharp'); +const fs = require('fs').promises; +const path = require('path'); + +async function generateDogImage(index) { + // Create a more detailed synthetic dog image with better quality + const width = 300; + const height = 300; + + // Generate a more complex pattern for dogs with multiple shapes + const svg = ` + + + + + + + + + + + + + + + + + + + + + `; + + const outputDir = path.join(__dirname, 'static', 'test_images', 'dogs'); + const outputPath = path.join(outputDir, `dog${index}.jpg`); + + // Ensure higher quality with better compression settings + await sharp(Buffer.from(svg)) + .jpeg({ + quality: 90, + chromaSubsampling: '4:4:4' + }) + .toFile(outputPath); + + console.log(`Generated dog${index}.jpg`); +} + +async function generateAllDogImages() { + try { + // Generate 10 dog images + const promises = Array.from({ length: 10 }, (_, i) => generateDogImage(i + 1)); + await Promise.all(promises); + console.log('All dog images generated successfully'); + } catch (error) { + console.error('Error generating dog images:', error); + } +} + +generateAllDogImages(); diff --git a/generate_cat_images.js b/generate_cat_images.js new file mode 100644 index 00000000..31178205 --- /dev/null +++ b/generate_cat_images.js @@ -0,0 +1,39 @@ +const sharp = require('sharp'); +const fs = require('fs').promises; +const path = require('path'); + +async function generateCatImage(index, color) { + const width = 300; + const height = 300; + const text = `Cat ${index}`; + + const svg = ` + + + + + + + + ${text} + `; + + const outputPath = path.join(__dirname, 'static', 'test_images', 'cats', `cat${index}.jpg`); + await sharp(Buffer.from(svg)) + .jpeg() + .toFile(outputPath); + console.log(`Generated ${outputPath}`); +} + +async function main() { + const colors = [ + '#FF6B6B', '#4ECDC4', '#45B7D1', '#96CEB4', '#FFEEAD', + '#D4A5A5', '#9B59B6', '#3498DB', '#E74C3C', '#2ECC71' + ]; + + for (let i = 0; i < 10; i++) { + await generateCatImage(i + 1, colors[i]); + } +} + +main().catch(console.error); diff --git a/generate_dog_images.js b/generate_dog_images.js new file mode 100644 index 00000000..504cf0e1 --- /dev/null +++ b/generate_dog_images.js @@ -0,0 +1,37 @@ +const sharp = require('sharp'); +const fs = require('fs'); +const path = require('path'); + +const outputDir = path.join(__dirname, 'static', 'test_images', 'dogs'); + +// Ensure the output directory exists +if (!fs.existsSync(outputDir)) { + fs.mkdirSync(outputDir, { recursive: true }); +} + +// Generate 10 different colored rectangles as placeholder dog images +for (let i = 1; i <= 10; i++) { + const width = 300; + const height = 300; + const r = Math.floor(Math.random() * 100 + 155); + const g = Math.floor(Math.random() * 100); + const b = Math.floor(Math.random() * 100); + const color = { r, g, b }; // Brownish colors as RGB object + + sharp({ + create: { + width: width, + height: height, + channels: 3, + background: color + } + }) + .jpeg() + .toFile(path.join(outputDir, `dog${i}.jpg`)) + .then(() => { + console.log(`Generated ${path.join(outputDir, `dog${i}.jpg`)}`); + }) + .catch(err => { + console.error(`Error generating dog${i}.jpg:`, err); + }); +} diff --git a/generate_test_images.js b/generate_test_images.js new file mode 100644 index 00000000..54363544 --- /dev/null +++ b/generate_test_images.js @@ -0,0 +1,42 @@ +const sharp = require('sharp'); +const fs = require('fs').promises; +const path = require('path'); + +async function generateTestImages() { + // Create directories if they don't exist + const catsDir = path.join(__dirname, 'static', 'test_images', 'cats'); + const dogsDir = path.join(__dirname, 'static', 'test_images', 'dogs'); + + await fs.mkdir(catsDir, { recursive: true }); + await fs.mkdir(dogsDir, { recursive: true }); + + // Generate 10 cat images (orange rectangles) + for (let i = 1; i <= 10; i++) { + await sharp({ + create: { + width: 300, + height: 200, + channels: 4, + background: { r: 255, g: 165, b: 0, alpha: 1 } + } + }) + .jpeg() + .toFile(path.join(catsDir, `cat${i}.jpg`)); + } + + // Generate 10 dog images (blue rectangles) + for (let i = 1; i <= 10; i++) { + await sharp({ + create: { + width: 300, + height: 200, + channels: 4, + background: { r: 0, g: 0, b: 255, alpha: 1 } + } + }) + .jpeg() + .toFile(path.join(dogsDir, `dog${i}.jpg`)); + } +} + +generateTestImages().catch(console.error); diff --git a/index.js b/index.js index 8b42f6b5..ae8a96d6 100644 --- a/index.js +++ b/index.js @@ -1,77 +1,68 @@ -const path = require('path') -const express = require('express') -const cors = require('cors') -const bodyParser = require('body-parser') -const router = require('./router') -const fs = require('fs') -const bb = require('express-busboy') -const https = require('https') -const args = require('minimist')(process.argv.slice(2)) -const { create } = require('express-handlebars') +require('dotenv').config(); +const express = require('express'); +const exphbs = require('express-handlebars'); +const bodyParser = require('body-parser'); +const path = require('path'); +const router = require('./router'); +const cors = require('cors'); -// Set default port if not provided in environment -const PORT = process.env.PORT || process.env.SERVER_PORT || 2634; +const app = express(); +const port = process.env.PORT || 2634; +const host = process.env.HOST || '0.0.0.0'; -// SSL configuration from environment variables -const SSL_KEY_PATH = process.env.SSL_KEY_PATH; -const SSL_CERT_PATH = process.env.SSL_CERT_PATH; +// Configure body-parser first +app.use(bodyParser.json({limit: '50mb'})); +app.use(bodyParser.urlencoded({ extended: true, limit: '50mb' })); -const app = express() -app.use(cors()) +// Configure CORS +app.use(cors()); -const hbs = create({ - defaultLayout: 'main' -}) +// Check and log environment variables +console.log('Environment Variables Check:'); +console.log('UCLASSIFY_READ_API_KEY:', process.env.UCLASSIFY_READ_API_KEY ? 'Present' : 'Missing'); +console.log('UCLASSIFY_WRITE_API_KEY:', process.env.UCLASSIFY_WRITE_API_KEY ? 'Present' : 'Missing'); +console.log('CLARIFAI_API_KEY:', process.env.CLARIFAI_API_KEY ? 'Present' : 'Missing'); -app.engine('handlebars', hbs.engine) -app.set('view engine', 'handlebars') +// Configure handlebars +const hbs = exphbs.create({ + defaultLayout: 'main', + extname: '.handlebars', + layoutsDir: path.join(__dirname, 'views', 'layouts'), + partialsDir: path.join(__dirname, 'views', 'partials') +}); -app.use(express.static(path.join(__dirname, 'static'))) +// Set up view engine +app.engine('handlebars', hbs.engine); +app.set('view engine', 'handlebars'); +app.set('views', path.join(__dirname, 'views')); -app.use(bodyParser.json({limit: '337mb'})) -app.use(bodyParser.urlencoded({ - extended: false, - limit: '50mb' -})) -app.use(express.static('static')) - -app.use(router) - -bb.extend(app, { - upload: true -}) +// Serve static files with proper content types and logging +app.use('/static', express.static(path.join(__dirname, 'static'), { + setHeaders: (res, filepath) => { + // Set appropriate content types for different file extensions + if (filepath.endsWith('.jpg') || filepath.endsWith('.jpeg')) { + res.set('Content-Type', 'image/jpeg'); + } else if (filepath.endsWith('.png')) { + res.set('Content-Type', 'image/png'); + } else if (filepath.endsWith('.svg')) { + res.set('Content-Type', 'image/svg+xml'); + } else if (filepath.endsWith('.js')) { + res.set('Content-Type', 'application/javascript'); + } else if (filepath.endsWith('.css')) { + res.set('Content-Type', 'text/css'); + } -// Validate required environment variables -if (!process.env.CLARIFAI_API_KEY) { - console.warn('CLARIFAI_API_KEY is missing, vision classification will be disabled'); - // Continue without vision classification -} + // Log detailed information about the served file + const relativePath = filepath.replace(__dirname, ''); + console.log(`Serving static file: ${relativePath} (${res.get('Content-Type')})`); + }, + fallthrough: false, // Return 404 if file not found + index: false // Disable directory indexing +})); -if (!process.env.UCLASSIFY_READ_API_KEY || !process.env.UCLASSIFY_WRITE_API_KEY) { - console.error('UCLASSIFY_READ_API_KEY and UCLASSIFY_WRITE_API_KEY environment variables are required'); - process.exit(1); -} +// Routes +app.use('/', router); -// Start server with appropriate protocol -if (args.http === true || !SSL_KEY_PATH || !SSL_CERT_PATH) { - app.listen(PORT, () => { - console.log(`Server running at http://localhost:${PORT}`) - }) -} else { - try { - const options = { - key: fs.readFileSync(SSL_KEY_PATH), - cert: fs.readFileSync(SSL_CERT_PATH) - } - const server = https.createServer(options, app) - server.listen(PORT, () => { - console.log(`Server running at https://localhost:${PORT}`) - }) - } catch (error) { - console.error('SSL configuration error:', error.message) - console.log('Falling back to HTTP') - app.listen(PORT, () => { - console.log(`Server running at http://localhost:${PORT}`) - }) - } -} +app.listen(port, host, () => { + console.log(`Server running on ${host}:${port}`); +}); diff --git a/logs/app.log b/logs/app.log new file mode 100644 index 00000000..9a6db603 --- /dev/null +++ b/logs/app.log @@ -0,0 +1,6504 @@ +Warning: uClassify API keys not found in environment variables +Sat, 02 Nov 2024 06:32:05 GMT express:router:route new '/list' +Sat, 02 Nov 2024 06:32:05 GMT express:router:layer new '/list' +Sat, 02 Nov 2024 06:32:05 GMT express:router:route get '/list' +Sat, 02 Nov 2024 06:32:05 GMT express:router:layer new '/' +Sat, 02 Nov 2024 06:32:05 GMT express:router:route new '/' +Sat, 02 Nov 2024 06:32:05 GMT express:router:layer new '/' +Sat, 02 Nov 2024 06:32:05 GMT express:router:route get '/' +Sat, 02 Nov 2024 06:32:05 GMT express:router:layer new '/' +Sat, 02 Nov 2024 06:32:05 GMT express:router:route new '/text_home' +Sat, 02 Nov 2024 06:32:05 GMT express:router:layer new '/text_home' +Sat, 02 Nov 2024 06:32:05 GMT express:router:route get '/text_home' +Sat, 02 Nov 2024 06:32:05 GMT express:router:layer new '/' +Sat, 02 Nov 2024 06:32:05 GMT express:router:route new '/api/text/classify' +Sat, 02 Nov 2024 06:32:05 GMT express:router:layer new '/api/text/classify' +Sat, 02 Nov 2024 06:32:05 GMT express:router:route post '/api/text/classify' +Sat, 02 Nov 2024 06:32:05 GMT express:router:layer new '/' +Sat, 02 Nov 2024 06:32:05 GMT express:router:route new '/api/text/train' +Sat, 02 Nov 2024 06:32:05 GMT express:router:layer new '/api/text/train' +Sat, 02 Nov 2024 06:32:05 GMT express:router:route post '/api/text/train' +Sat, 02 Nov 2024 06:32:05 GMT express:router:layer new '/' +Sat, 02 Nov 2024 06:32:05 GMT express:router:route new '/vision_home' +Sat, 02 Nov 2024 06:32:05 GMT express:router:layer new '/vision_home' +Sat, 02 Nov 2024 06:32:05 GMT express:router:route get '/vision_home' +Sat, 02 Nov 2024 06:32:05 GMT express:router:layer new '/' +Sat, 02 Nov 2024 06:32:05 GMT express:router:route new '/vision/classifiers' +Sat, 02 Nov 2024 06:32:05 GMT express:router:layer new '/vision/classifiers' +Sat, 02 Nov 2024 06:32:05 GMT express:router:route get '/vision/classifiers' +Sat, 02 Nov 2024 06:32:05 GMT express:router:layer new '/' +Sat, 02 Nov 2024 06:32:05 GMT express:router:route new '/api/vision/classify' +Sat, 02 Nov 2024 06:32:05 GMT express:router:layer new '/api/vision/classify' +Sat, 02 Nov 2024 06:32:05 GMT express:router:route post '/api/vision/classify' +Sat, 02 Nov 2024 06:32:05 GMT express:router:layer new '/' +Sat, 02 Nov 2024 06:32:05 GMT express:router:route new '/api/vision/classifyURLImage' +Sat, 02 Nov 2024 06:32:05 GMT express:router:layer new '/api/vision/classifyURLImage' +Sat, 02 Nov 2024 06:32:05 GMT express:router:route post '/api/vision/classifyURLImage' +Sat, 02 Nov 2024 06:32:05 GMT express:router:layer new '/' +Sat, 02 Nov 2024 06:32:05 GMT express:router:route new '/vision/classifier' +Sat, 02 Nov 2024 06:32:05 GMT express:router:layer new '/vision/classifier' +Sat, 02 Nov 2024 06:32:05 GMT express:router:route post '/vision/classifier' +Sat, 02 Nov 2024 06:32:05 GMT express:router:layer new '/' +Sat, 02 Nov 2024 06:32:05 GMT express:router:route new '/vision/train' +Sat, 02 Nov 2024 06:32:05 GMT express:router:layer new '/vision/train' +Sat, 02 Nov 2024 06:32:05 GMT express:router:route post '/vision/train' +Sat, 02 Nov 2024 06:32:05 GMT express:router:layer new '/' +Sat, 02 Nov 2024 06:32:05 GMT express:router:route new '/file/post' +Sat, 02 Nov 2024 06:32:05 GMT express:router:layer new '/file/post' +Sat, 02 Nov 2024 06:32:05 GMT express:router:route post '/file/post' +Sat, 02 Nov 2024 06:32:05 GMT express:router:layer new '/' +Sat, 02 Nov 2024 06:32:05 GMT express:router use '/test-images' router +Sat, 02 Nov 2024 06:32:05 GMT express:router:layer new '/test-images' +Sat, 02 Nov 2024 06:32:05 GMT express:router:route new '/health' +Sat, 02 Nov 2024 06:32:05 GMT express:router:layer new '/health' +Sat, 02 Nov 2024 06:32:05 GMT express:router:route get '/health' +Sat, 02 Nov 2024 06:32:05 GMT express:router:layer new '/' +Sat, 02 Nov 2024 06:32:05 GMT express:application set "x-powered-by" to true +Sat, 02 Nov 2024 06:32:05 GMT express:application set "etag" to 'weak' +Sat, 02 Nov 2024 06:32:05 GMT express:application set "etag fn" to [Function: generateETag] +Sat, 02 Nov 2024 06:32:05 GMT express:application set "env" to 'development' +Sat, 02 Nov 2024 06:32:05 GMT express:application set "query parser" to 'extended' +Sat, 02 Nov 2024 06:32:05 GMT express:application set "query parser fn" to [Function: parseExtendedQueryString] +Sat, 02 Nov 2024 06:32:05 GMT express:application set "subdomain offset" to 2 +Sat, 02 Nov 2024 06:32:05 GMT express:application set "trust proxy" to false +Sat, 02 Nov 2024 06:32:05 GMT express:application set "trust proxy fn" to [Function: trustNone] +Sat, 02 Nov 2024 06:32:05 GMT express:application booting in development mode +Sat, 02 Nov 2024 06:32:05 GMT express:application set "view" to [Function: View] +Sat, 02 Nov 2024 06:32:05 GMT express:application set "views" to '/home/ubuntu/cognimates-training/views' +Sat, 02 Nov 2024 06:32:05 GMT express:application set "jsonp callback name" to 'callback' +Sat, 02 Nov 2024 06:32:05 GMT express:router use '/' query +Sat, 02 Nov 2024 06:32:05 GMT express:router:layer new '/' +Sat, 02 Nov 2024 06:32:05 GMT express:router use '/' expressInit +Sat, 02 Nov 2024 06:32:05 GMT express:router:layer new '/' +Sat, 02 Nov 2024 06:32:05 GMT express:router use '/' jsonParser +Sat, 02 Nov 2024 06:32:05 GMT express:router:layer new '/' +Sat, 02 Nov 2024 06:32:05 GMT express:router use '/' urlencodedParser +Sat, 02 Nov 2024 06:32:05 GMT express:router:layer new '/' +Sat, 02 Nov 2024 06:32:05 GMT express:router use '/' corsMiddleware +Sat, 02 Nov 2024 06:32:05 GMT express:router:layer new '/' +Environment Variables Check: +UCLASSIFY_READ_API_KEY: Missing +UCLASSIFY_WRITE_API_KEY: Missing +CLARIFAI_API_KEY: Present +Sat, 02 Nov 2024 06:32:05 GMT express:application set "view engine" to 'handlebars' +Sat, 02 Nov 2024 06:32:05 GMT express:application set "views" to '/home/ubuntu/cognimates-training/views' +Sat, 02 Nov 2024 06:32:05 GMT express:router use '/static' serveStatic +Sat, 02 Nov 2024 06:32:05 GMT express:router:layer new '/static' +Sat, 02 Nov 2024 06:32:05 GMT express:router use '/' router +Sat, 02 Nov 2024 06:32:05 GMT express:router:layer new '/' +Server running on 0.0.0.0:2634 +Sat, 02 Nov 2024 06:32:30 GMT express:router dispatching GET /vision_home +Sat, 02 Nov 2024 06:32:30 GMT express:router query : /vision_home +Sat, 02 Nov 2024 06:32:30 GMT express:router expressInit : /vision_home +Sat, 02 Nov 2024 06:32:30 GMT express:router jsonParser : /vision_home +Sat, 02 Nov 2024 06:32:30 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:32:30 GMT express:router urlencodedParser : /vision_home +Sat, 02 Nov 2024 06:32:30 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:32:30 GMT express:router corsMiddleware : /vision_home +Sat, 02 Nov 2024 06:32:30 GMT express:router router : /vision_home +Sat, 02 Nov 2024 06:32:30 GMT express:router dispatching GET /vision_home +Sat, 02 Nov 2024 06:32:30 GMT express:view lookup "models/vision/vision_classifiers.handlebars" +Sat, 02 Nov 2024 06:32:30 GMT express:view stat "/home/ubuntu/cognimates-training/views/models/vision/vision_classifiers.handlebars" +Sat, 02 Nov 2024 06:32:30 GMT express:view render "/home/ubuntu/cognimates-training/views/models/vision/vision_classifiers.handlebars" +Sat, 02 Nov 2024 06:32:30 GMT express:router dispatching GET /static/css/style.css +Sat, 02 Nov 2024 06:32:30 GMT express:router query : /static/css/style.css +Sat, 02 Nov 2024 06:32:30 GMT express:router expressInit : /static/css/style.css +Sat, 02 Nov 2024 06:32:30 GMT express:router jsonParser : /static/css/style.css +Sat, 02 Nov 2024 06:32:30 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:32:30 GMT express:router urlencodedParser : /static/css/style.css +Sat, 02 Nov 2024 06:32:30 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:32:30 GMT express:router corsMiddleware : /static/css/style.css +Sat, 02 Nov 2024 06:32:30 GMT express:router trim prefix (/static) from url /static/css/style.css +Sat, 02 Nov 2024 06:32:30 GMT express:router serveStatic /static : /static/css/style.css +Sat, 02 Nov 2024 06:32:30 GMT send stat "/home/ubuntu/cognimates-training/static/css/style.css" +Sat, 02 Nov 2024 06:32:30 GMT send pipe "/home/ubuntu/cognimates-training/static/css/style.css" +Serving static file: /static/css/style.css (text/css; charset=utf-8) +Sat, 02 Nov 2024 06:32:30 GMT send accept ranges +Sat, 02 Nov 2024 06:32:30 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:32:30 GMT send modified Thu, 31 Oct 2024 20:44:26 GMT +Sat, 02 Nov 2024 06:32:30 GMT send etag W/"7702-192e45284c7" +Sat, 02 Nov 2024 06:32:30 GMT express:router dispatching GET /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:32:30 GMT express:router query : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:32:30 GMT express:router expressInit : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:32:30 GMT express:router jsonParser : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:32:30 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:32:30 GMT express:router urlencodedParser : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:32:30 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:32:30 GMT express:router corsMiddleware : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:32:30 GMT express:router trim prefix (/static) from url /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:32:30 GMT express:router serveStatic /static : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:32:30 GMT send stat "/home/ubuntu/cognimates-training/static/images/cognimates-logo--codelab.svg" +Sat, 02 Nov 2024 06:32:30 GMT send pipe "/home/ubuntu/cognimates-training/static/images/cognimates-logo--codelab.svg" +Serving static file: /static/images/cognimates-logo--codelab.svg (image/svg+xml) +Sat, 02 Nov 2024 06:32:30 GMT send accept ranges +Sat, 02 Nov 2024 06:32:30 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:32:30 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:32:30 GMT send etag W/"9f5-192da706627" +Sat, 02 Nov 2024 06:32:30 GMT express:router dispatching GET /static/images/vision_banner.png +Sat, 02 Nov 2024 06:32:30 GMT express:router query : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:32:30 GMT express:router expressInit : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:32:30 GMT express:router jsonParser : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:32:30 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:32:30 GMT express:router urlencodedParser : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:32:30 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:32:30 GMT express:router corsMiddleware : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:32:30 GMT express:router trim prefix (/static) from url /static/images/vision_banner.png +Sat, 02 Nov 2024 06:32:30 GMT express:router serveStatic /static : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:32:30 GMT send stat "/home/ubuntu/cognimates-training/static/images/vision_banner.png" +Sat, 02 Nov 2024 06:32:30 GMT express:router dispatching GET /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:32:30 GMT express:router query : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:32:30 GMT express:router expressInit : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:32:30 GMT express:router jsonParser : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:32:30 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:32:30 GMT express:router urlencodedParser : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:32:30 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:32:30 GMT express:router corsMiddleware : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:32:30 GMT express:router trim prefix (/static) from url /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:32:30 GMT express:router serveStatic /static : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:32:30 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/mit-media-lab--white.svg" +Sat, 02 Nov 2024 06:32:30 GMT express:router dispatching GET /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:32:30 GMT express:router query : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:32:30 GMT express:router expressInit : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:32:30 GMT express:router jsonParser : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:32:30 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:32:30 GMT express:router urlencodedParser : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:32:30 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:32:30 GMT express:router corsMiddleware : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:32:30 GMT express:router trim prefix (/static) from url /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:32:30 GMT express:router serveStatic /static : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:32:30 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/twitter--white.svg" +Sat, 02 Nov 2024 06:32:30 GMT express:router dispatching GET /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:32:30 GMT express:router query : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:32:30 GMT express:router expressInit : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:32:30 GMT express:router jsonParser : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:32:30 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:32:30 GMT express:router urlencodedParser : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:32:30 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:32:30 GMT express:router corsMiddleware : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:32:30 GMT express:router trim prefix (/static) from url /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:32:30 GMT express:router serveStatic /static : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:32:30 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/instagram--white.svg" +Sat, 02 Nov 2024 06:32:30 GMT send pipe "/home/ubuntu/cognimates-training/static/images/vision_banner.png" +Serving static file: /static/images/vision_banner.png (image/png) +Sat, 02 Nov 2024 06:32:30 GMT send accept ranges +Sat, 02 Nov 2024 06:32:30 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:32:30 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:32:30 GMT send etag W/"20212-192da70662f" +Sat, 02 Nov 2024 06:32:30 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/mit-media-lab--white.svg" +Serving static file: /static/images/social/mit-media-lab--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:32:30 GMT send accept ranges +Sat, 02 Nov 2024 06:32:30 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:32:30 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:32:30 GMT send etag W/"a7c5-192da70662b" +Sat, 02 Nov 2024 06:32:30 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/twitter--white.svg" +Serving static file: /static/images/social/twitter--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:32:30 GMT send accept ranges +Sat, 02 Nov 2024 06:32:30 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:32:30 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:32:30 GMT send etag W/"712c-192da70662b" +Sat, 02 Nov 2024 06:32:30 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/instagram--white.svg" +Serving static file: /static/images/social/instagram--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:32:30 GMT send accept ranges +Sat, 02 Nov 2024 06:32:30 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:32:30 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:32:30 GMT send etag W/"6ec0-192da70662b" +Sat, 02 Nov 2024 06:32:30 GMT express:router dispatching GET /static/js/main.js +Sat, 02 Nov 2024 06:32:30 GMT express:router query : /static/js/main.js +Sat, 02 Nov 2024 06:32:30 GMT express:router expressInit : /static/js/main.js +Sat, 02 Nov 2024 06:32:30 GMT express:router jsonParser : /static/js/main.js +Sat, 02 Nov 2024 06:32:30 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:32:30 GMT express:router urlencodedParser : /static/js/main.js +Sat, 02 Nov 2024 06:32:30 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:32:30 GMT express:router corsMiddleware : /static/js/main.js +Sat, 02 Nov 2024 06:32:30 GMT express:router trim prefix (/static) from url /static/js/main.js +Sat, 02 Nov 2024 06:32:30 GMT express:router serveStatic /static : /static/js/main.js +Sat, 02 Nov 2024 06:32:30 GMT send stat "/home/ubuntu/cognimates-training/static/js/main.js" +Sat, 02 Nov 2024 06:32:30 GMT send pipe "/home/ubuntu/cognimates-training/static/js/main.js" +Serving static file: /static/js/main.js (application/javascript; charset=utf-8) +Sat, 02 Nov 2024 06:32:30 GMT send accept ranges +Sat, 02 Nov 2024 06:32:30 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:32:30 GMT send modified Fri, 01 Nov 2024 00:40:49 GMT +Sat, 02 Nov 2024 06:32:30 GMT send etag W/"fb8-192e52aef40" +Sat, 02 Nov 2024 06:32:30 GMT express:router dispatching GET /static/js/vision-classifier-utils.js +Sat, 02 Nov 2024 06:32:30 GMT express:router query : /static/js/vision-classifier-utils.js +Sat, 02 Nov 2024 06:32:30 GMT express:router expressInit : /static/js/vision-classifier-utils.js +Sat, 02 Nov 2024 06:32:30 GMT express:router jsonParser : /static/js/vision-classifier-utils.js +Sat, 02 Nov 2024 06:32:30 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:32:30 GMT express:router urlencodedParser : /static/js/vision-classifier-utils.js +Sat, 02 Nov 2024 06:32:30 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:32:30 GMT express:router corsMiddleware : /static/js/vision-classifier-utils.js +Sat, 02 Nov 2024 06:32:30 GMT express:router trim prefix (/static) from url /static/js/vision-classifier-utils.js +Sat, 02 Nov 2024 06:32:30 GMT express:router serveStatic /static : /static/js/vision-classifier-utils.js +Sat, 02 Nov 2024 06:32:30 GMT send stat "/home/ubuntu/cognimates-training/static/js/vision-classifier-utils.js" +Sat, 02 Nov 2024 06:32:30 GMT express:router dispatching GET /static/js/vision-classifier.js +Sat, 02 Nov 2024 06:32:30 GMT express:router query : /static/js/vision-classifier.js +Sat, 02 Nov 2024 06:32:30 GMT express:router expressInit : /static/js/vision-classifier.js +Sat, 02 Nov 2024 06:32:30 GMT express:router jsonParser : /static/js/vision-classifier.js +Sat, 02 Nov 2024 06:32:30 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:32:30 GMT express:router urlencodedParser : /static/js/vision-classifier.js +Sat, 02 Nov 2024 06:32:30 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:32:30 GMT express:router corsMiddleware : /static/js/vision-classifier.js +Sat, 02 Nov 2024 06:32:30 GMT express:router trim prefix (/static) from url /static/js/vision-classifier.js +Sat, 02 Nov 2024 06:32:30 GMT express:router serveStatic /static : /static/js/vision-classifier.js +Sat, 02 Nov 2024 06:32:30 GMT send stat "/home/ubuntu/cognimates-training/static/js/vision-classifier.js" +Sat, 02 Nov 2024 06:32:30 GMT express:router dispatching GET /static/js/test-image-loader.js +Sat, 02 Nov 2024 06:32:30 GMT express:router query : /static/js/test-image-loader.js +Sat, 02 Nov 2024 06:32:30 GMT express:router expressInit : /static/js/test-image-loader.js +Sat, 02 Nov 2024 06:32:30 GMT express:router jsonParser : /static/js/test-image-loader.js +Sat, 02 Nov 2024 06:32:30 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:32:30 GMT express:router urlencodedParser : /static/js/test-image-loader.js +Sat, 02 Nov 2024 06:32:30 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:32:30 GMT express:router corsMiddleware : /static/js/test-image-loader.js +Sat, 02 Nov 2024 06:32:30 GMT express:router trim prefix (/static) from url /static/js/test-image-loader.js +Sat, 02 Nov 2024 06:32:30 GMT express:router serveStatic /static : /static/js/test-image-loader.js +Sat, 02 Nov 2024 06:32:30 GMT send stat "/home/ubuntu/cognimates-training/static/js/test-image-loader.js" +Sat, 02 Nov 2024 06:32:30 GMT express:router dispatching GET /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:32:30 GMT express:router query : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:32:30 GMT express:router expressInit : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:32:30 GMT express:router jsonParser : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:32:30 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:32:30 GMT express:router urlencodedParser : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:32:30 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:32:30 GMT express:router corsMiddleware : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:32:30 GMT express:router trim prefix (/static) from url /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:32:30 GMT express:router serveStatic /static : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:32:30 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/vimeo--white.svg" +Sat, 02 Nov 2024 06:32:30 GMT express:router dispatching GET /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:32:30 GMT express:router query : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:32:30 GMT express:router expressInit : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:32:30 GMT express:router jsonParser : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:32:30 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:32:30 GMT express:router urlencodedParser : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:32:30 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:32:30 GMT express:router corsMiddleware : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:32:30 GMT express:router trim prefix (/static) from url /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:32:30 GMT express:router serveStatic /static : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:32:30 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/facebook--white.svg" +Sat, 02 Nov 2024 06:32:30 GMT send pipe "/home/ubuntu/cognimates-training/static/js/vision-classifier-utils.js" +Serving static file: /static/js/vision-classifier-utils.js (application/javascript; charset=utf-8) +Sat, 02 Nov 2024 06:32:30 GMT send accept ranges +Sat, 02 Nov 2024 06:32:30 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:32:30 GMT send modified Sat, 02 Nov 2024 02:16:12 GMT +Sat, 02 Nov 2024 06:32:30 GMT send etag W/"de8-192eaa89e31" +Sat, 02 Nov 2024 06:32:30 GMT send pipe "/home/ubuntu/cognimates-training/static/js/vision-classifier.js" +Serving static file: /static/js/vision-classifier.js (application/javascript; charset=utf-8) +Sat, 02 Nov 2024 06:32:30 GMT send accept ranges +Sat, 02 Nov 2024 06:32:30 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:32:30 GMT send modified Fri, 01 Nov 2024 23:36:08 GMT +Sat, 02 Nov 2024 06:32:30 GMT send etag W/"169b-192ea16144a" +Sat, 02 Nov 2024 06:32:30 GMT send pipe "/home/ubuntu/cognimates-training/static/js/test-image-loader.js" +Serving static file: /static/js/test-image-loader.js (application/javascript; charset=utf-8) +Sat, 02 Nov 2024 06:32:30 GMT send accept ranges +Sat, 02 Nov 2024 06:32:30 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:32:30 GMT send modified Sat, 02 Nov 2024 05:58:56 GMT +Sat, 02 Nov 2024 06:32:30 GMT send etag W/"1335-192eb7489b2" +Sat, 02 Nov 2024 06:32:30 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/vimeo--white.svg" +Serving static file: /static/images/social/vimeo--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:32:30 GMT send accept ranges +Sat, 02 Nov 2024 06:32:30 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:32:30 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:32:30 GMT send etag W/"6b42-192da70662b" +Sat, 02 Nov 2024 06:32:30 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/facebook--white.svg" +Serving static file: /static/images/social/facebook--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:32:30 GMT send accept ranges +Sat, 02 Nov 2024 06:32:30 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:32:30 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:32:30 GMT send etag W/"69e4-192da70662b" +Sat, 02 Nov 2024 06:32:30 GMT express:router dispatching GET /vision/classifiers +Sat, 02 Nov 2024 06:32:30 GMT express:router query : /vision/classifiers +Sat, 02 Nov 2024 06:32:30 GMT express:router expressInit : /vision/classifiers +Sat, 02 Nov 2024 06:32:30 GMT express:router jsonParser : /vision/classifiers +Sat, 02 Nov 2024 06:32:30 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:32:30 GMT express:router urlencodedParser : /vision/classifiers +Sat, 02 Nov 2024 06:32:30 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:32:30 GMT express:router corsMiddleware : /vision/classifiers +Sat, 02 Nov 2024 06:32:30 GMT express:router router : /vision/classifiers +Sat, 02 Nov 2024 06:32:30 GMT express:router dispatching GET /vision/classifiers +Sat, 02 Nov 2024 06:32:30 GMT express:router dispatching GET /vision/classifiers +Sat, 02 Nov 2024 06:32:30 GMT express:router query : /vision/classifiers +Sat, 02 Nov 2024 06:32:30 GMT express:router expressInit : /vision/classifiers +Sat, 02 Nov 2024 06:32:30 GMT express:router jsonParser : /vision/classifiers +Sat, 02 Nov 2024 06:32:30 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:32:30 GMT express:router urlencodedParser : /vision/classifiers +Sat, 02 Nov 2024 06:32:30 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:32:30 GMT express:router corsMiddleware : /vision/classifiers +Sat, 02 Nov 2024 06:32:30 GMT express:router router : /vision/classifiers +Sat, 02 Nov 2024 06:32:30 GMT express:router dispatching GET /vision/classifiers +Sat, 02 Nov 2024 06:32:30 GMT express:router dispatching GET /static/images/website-banner-svg/website-banner.svg +Sat, 02 Nov 2024 06:32:30 GMT express:router query : /static/images/website-banner-svg/website-banner.svg +Sat, 02 Nov 2024 06:32:30 GMT express:router expressInit : /static/images/website-banner-svg/website-banner.svg +Sat, 02 Nov 2024 06:32:30 GMT express:router jsonParser : /static/images/website-banner-svg/website-banner.svg +Sat, 02 Nov 2024 06:32:30 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:32:30 GMT express:router urlencodedParser : /static/images/website-banner-svg/website-banner.svg +Sat, 02 Nov 2024 06:32:30 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:32:30 GMT express:router corsMiddleware : /static/images/website-banner-svg/website-banner.svg +Sat, 02 Nov 2024 06:32:30 GMT express:router trim prefix (/static) from url /static/images/website-banner-svg/website-banner.svg +Sat, 02 Nov 2024 06:32:30 GMT express:router serveStatic /static : /static/images/website-banner-svg/website-banner.svg +Sat, 02 Nov 2024 06:32:30 GMT send stat "/home/ubuntu/cognimates-training/static/images/website-banner-svg/website-banner.svg" +Sat, 02 Nov 2024 06:32:30 GMT send pipe "/home/ubuntu/cognimates-training/static/images/website-banner-svg/website-banner.svg" +Serving static file: /static/images/website-banner-svg/website-banner.svg (image/svg+xml) +Sat, 02 Nov 2024 06:32:30 GMT send accept ranges +Sat, 02 Nov 2024 06:32:30 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:32:30 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:32:30 GMT send etag W/"dc73-192da706633" +Sat, 02 Nov 2024 06:32:30 GMT express:router dispatching GET /static/images/website-banner-svg/embedded-image-1.png +Sat, 02 Nov 2024 06:32:30 GMT express:router query : /static/images/website-banner-svg/embedded-image-1.png +Sat, 02 Nov 2024 06:32:30 GMT express:router expressInit : /static/images/website-banner-svg/embedded-image-1.png +Sat, 02 Nov 2024 06:32:30 GMT express:router jsonParser : /static/images/website-banner-svg/embedded-image-1.png +Sat, 02 Nov 2024 06:32:30 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:32:30 GMT express:router urlencodedParser : /static/images/website-banner-svg/embedded-image-1.png +Sat, 02 Nov 2024 06:32:30 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:32:30 GMT express:router corsMiddleware : /static/images/website-banner-svg/embedded-image-1.png +Sat, 02 Nov 2024 06:32:30 GMT express:router trim prefix (/static) from url /static/images/website-banner-svg/embedded-image-1.png +Sat, 02 Nov 2024 06:32:30 GMT express:router serveStatic /static : /static/images/website-banner-svg/embedded-image-1.png +Sat, 02 Nov 2024 06:32:30 GMT send stat "/home/ubuntu/cognimates-training/static/images/website-banner-svg/embedded-image-1.png" +Sat, 02 Nov 2024 06:32:30 GMT express:router dispatching GET /static/images/website-banner-svg/embedded-image-3.png +Sat, 02 Nov 2024 06:32:30 GMT express:router query : /static/images/website-banner-svg/embedded-image-3.png +Sat, 02 Nov 2024 06:32:30 GMT express:router expressInit : /static/images/website-banner-svg/embedded-image-3.png +Sat, 02 Nov 2024 06:32:30 GMT express:router jsonParser : /static/images/website-banner-svg/embedded-image-3.png +Sat, 02 Nov 2024 06:32:30 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:32:30 GMT express:router urlencodedParser : /static/images/website-banner-svg/embedded-image-3.png +Sat, 02 Nov 2024 06:32:30 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:32:30 GMT express:router corsMiddleware : /static/images/website-banner-svg/embedded-image-3.png +Sat, 02 Nov 2024 06:32:30 GMT express:router trim prefix (/static) from url /static/images/website-banner-svg/embedded-image-3.png +Sat, 02 Nov 2024 06:32:30 GMT express:router serveStatic /static : /static/images/website-banner-svg/embedded-image-3.png +Sat, 02 Nov 2024 06:32:30 GMT send stat "/home/ubuntu/cognimates-training/static/images/website-banner-svg/embedded-image-3.png" +Sat, 02 Nov 2024 06:32:30 GMT send pipe "/home/ubuntu/cognimates-training/static/images/website-banner-svg/embedded-image-1.png" +Serving static file: /static/images/website-banner-svg/embedded-image-1.png (image/png) +Sat, 02 Nov 2024 06:32:30 GMT send accept ranges +Sat, 02 Nov 2024 06:32:30 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:32:30 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:32:30 GMT send etag W/"38b6a-192da70662f" +Sat, 02 Nov 2024 06:32:30 GMT send pipe "/home/ubuntu/cognimates-training/static/images/website-banner-svg/embedded-image-3.png" +Serving static file: /static/images/website-banner-svg/embedded-image-3.png (image/png) +Sat, 02 Nov 2024 06:32:30 GMT send accept ranges +Sat, 02 Nov 2024 06:32:30 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:32:30 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:32:30 GMT send etag W/"3ff1a-192da706633" +Sat, 02 Nov 2024 06:32:30 GMT express:router dispatching GET /static/images/website-banner-svg/embedded-image-2.png +Sat, 02 Nov 2024 06:32:30 GMT express:router query : /static/images/website-banner-svg/embedded-image-2.png +Sat, 02 Nov 2024 06:32:30 GMT express:router expressInit : /static/images/website-banner-svg/embedded-image-2.png +Sat, 02 Nov 2024 06:32:30 GMT express:router jsonParser : /static/images/website-banner-svg/embedded-image-2.png +Sat, 02 Nov 2024 06:32:30 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:32:30 GMT express:router urlencodedParser : /static/images/website-banner-svg/embedded-image-2.png +Sat, 02 Nov 2024 06:32:30 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:32:30 GMT express:router corsMiddleware : /static/images/website-banner-svg/embedded-image-2.png +Sat, 02 Nov 2024 06:32:30 GMT express:router trim prefix (/static) from url /static/images/website-banner-svg/embedded-image-2.png +Sat, 02 Nov 2024 06:32:30 GMT express:router serveStatic /static : /static/images/website-banner-svg/embedded-image-2.png +Sat, 02 Nov 2024 06:32:30 GMT send stat "/home/ubuntu/cognimates-training/static/images/website-banner-svg/embedded-image-2.png" +Sat, 02 Nov 2024 06:32:30 GMT send pipe "/home/ubuntu/cognimates-training/static/images/website-banner-svg/embedded-image-2.png" +Serving static file: /static/images/website-banner-svg/embedded-image-2.png (image/png) +Sat, 02 Nov 2024 06:32:30 GMT send accept ranges +Sat, 02 Nov 2024 06:32:30 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:32:30 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:32:30 GMT send etag W/"3e97d-192da70662f" +Sat, 02 Nov 2024 06:32:36 GMT express:router dispatching GET /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:32:36 GMT express:router query : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:32:36 GMT express:router expressInit : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:32:36 GMT express:router jsonParser : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:32:36 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:32:36 GMT express:router urlencodedParser : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:32:36 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:32:36 GMT express:router corsMiddleware : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:32:36 GMT express:router trim prefix (/static) from url /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:32:36 GMT express:router serveStatic /static : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:32:36 GMT send stat "/home/ubuntu/cognimates-training/static/images/cognimates-logo--codelab.svg" +Sat, 02 Nov 2024 06:32:36 GMT express:router dispatching GET /static/images/vision_banner.png +Sat, 02 Nov 2024 06:32:36 GMT express:router query : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:32:36 GMT express:router expressInit : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:32:36 GMT express:router jsonParser : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:32:36 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:32:36 GMT express:router urlencodedParser : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:32:36 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:32:36 GMT express:router corsMiddleware : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:32:36 GMT express:router trim prefix (/static) from url /static/images/vision_banner.png +Sat, 02 Nov 2024 06:32:36 GMT express:router serveStatic /static : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:32:36 GMT send stat "/home/ubuntu/cognimates-training/static/images/vision_banner.png" +Sat, 02 Nov 2024 06:32:36 GMT send pipe "/home/ubuntu/cognimates-training/static/images/cognimates-logo--codelab.svg" +Serving static file: /static/images/cognimates-logo--codelab.svg (image/svg+xml) +Sat, 02 Nov 2024 06:32:36 GMT send accept ranges +Sat, 02 Nov 2024 06:32:36 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:32:36 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:32:36 GMT send etag W/"9f5-192da706627" +Sat, 02 Nov 2024 06:32:36 GMT send pipe "/home/ubuntu/cognimates-training/static/images/vision_banner.png" +Serving static file: /static/images/vision_banner.png (image/png) +Sat, 02 Nov 2024 06:32:36 GMT send accept ranges +Sat, 02 Nov 2024 06:32:36 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:32:36 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:32:36 GMT send etag W/"20212-192da70662f" +Sat, 02 Nov 2024 06:32:36 GMT express:router dispatching GET /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:32:36 GMT express:router query : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:32:36 GMT express:router expressInit : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:32:36 GMT express:router jsonParser : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:32:36 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:32:36 GMT express:router urlencodedParser : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:32:36 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:32:36 GMT express:router corsMiddleware : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:32:36 GMT express:router trim prefix (/static) from url /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:32:36 GMT express:router serveStatic /static : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:32:36 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/mit-media-lab--white.svg" +Sat, 02 Nov 2024 06:32:36 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/mit-media-lab--white.svg" +Serving static file: /static/images/social/mit-media-lab--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:32:36 GMT send accept ranges +Sat, 02 Nov 2024 06:32:36 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:32:36 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:32:36 GMT send etag W/"a7c5-192da70662b" +Sat, 02 Nov 2024 06:32:36 GMT express:router dispatching GET /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:32:36 GMT express:router query : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:32:36 GMT express:router expressInit : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:32:36 GMT express:router jsonParser : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:32:36 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:32:36 GMT express:router urlencodedParser : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:32:36 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:32:36 GMT express:router corsMiddleware : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:32:36 GMT express:router trim prefix (/static) from url /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:32:36 GMT express:router serveStatic /static : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:32:36 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/twitter--white.svg" +Sat, 02 Nov 2024 06:32:36 GMT express:router dispatching GET /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:32:36 GMT express:router query : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:32:36 GMT express:router expressInit : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:32:36 GMT express:router jsonParser : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:32:36 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:32:36 GMT express:router urlencodedParser : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:32:36 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:32:36 GMT express:router corsMiddleware : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:32:36 GMT express:router trim prefix (/static) from url /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:32:36 GMT express:router serveStatic /static : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:32:36 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/vimeo--white.svg" +Sat, 02 Nov 2024 06:32:36 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/twitter--white.svg" +Serving static file: /static/images/social/twitter--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:32:36 GMT send accept ranges +Sat, 02 Nov 2024 06:32:36 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:32:36 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:32:36 GMT send etag W/"712c-192da70662b" +Sat, 02 Nov 2024 06:32:36 GMT express:router dispatching GET /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:32:36 GMT express:router query : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:32:36 GMT express:router expressInit : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:32:36 GMT express:router jsonParser : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:32:36 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:32:36 GMT express:router urlencodedParser : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:32:36 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:32:36 GMT express:router corsMiddleware : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:32:36 GMT express:router trim prefix (/static) from url /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:32:36 GMT express:router serveStatic /static : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:32:36 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/instagram--white.svg" +Sat, 02 Nov 2024 06:32:36 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/vimeo--white.svg" +Serving static file: /static/images/social/vimeo--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:32:36 GMT send accept ranges +Sat, 02 Nov 2024 06:32:36 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:32:36 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:32:36 GMT send etag W/"6b42-192da70662b" +Sat, 02 Nov 2024 06:32:36 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/instagram--white.svg" +Serving static file: /static/images/social/instagram--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:32:36 GMT send accept ranges +Sat, 02 Nov 2024 06:32:36 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:32:36 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:32:36 GMT send etag W/"6ec0-192da70662b" +Sat, 02 Nov 2024 06:32:36 GMT express:router dispatching GET /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:32:36 GMT express:router query : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:32:36 GMT express:router expressInit : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:32:36 GMT express:router jsonParser : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:32:36 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:32:36 GMT express:router urlencodedParser : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:32:36 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:32:36 GMT express:router corsMiddleware : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:32:36 GMT express:router trim prefix (/static) from url /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:32:36 GMT express:router serveStatic /static : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:32:36 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/facebook--white.svg" +Sat, 02 Nov 2024 06:32:36 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/facebook--white.svg" +Serving static file: /static/images/social/facebook--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:32:36 GMT send accept ranges +Sat, 02 Nov 2024 06:32:36 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:32:36 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:32:36 GMT send etag W/"69e4-192da70662b" +Sat, 02 Nov 2024 06:32:48 GMT express:router dispatching GET /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:32:48 GMT express:router query : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:32:48 GMT express:router expressInit : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:32:48 GMT express:router jsonParser : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:32:48 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:32:48 GMT express:router urlencodedParser : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:32:48 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:32:48 GMT express:router corsMiddleware : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:32:48 GMT express:router trim prefix (/static) from url /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:32:48 GMT express:router serveStatic /static : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:32:48 GMT send stat "/home/ubuntu/cognimates-training/static/images/cognimates-logo--codelab.svg" +Sat, 02 Nov 2024 06:32:48 GMT express:router dispatching GET /static/images/vision_banner.png +Sat, 02 Nov 2024 06:32:48 GMT express:router query : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:32:48 GMT express:router expressInit : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:32:48 GMT express:router jsonParser : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:32:48 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:32:48 GMT express:router urlencodedParser : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:32:48 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:32:48 GMT express:router corsMiddleware : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:32:48 GMT express:router trim prefix (/static) from url /static/images/vision_banner.png +Sat, 02 Nov 2024 06:32:48 GMT express:router serveStatic /static : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:32:48 GMT send stat "/home/ubuntu/cognimates-training/static/images/vision_banner.png" +Sat, 02 Nov 2024 06:32:48 GMT express:router dispatching GET /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:32:48 GMT express:router query : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:32:48 GMT express:router expressInit : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:32:48 GMT express:router jsonParser : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:32:48 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:32:48 GMT express:router urlencodedParser : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:32:48 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:32:48 GMT express:router corsMiddleware : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:32:48 GMT express:router trim prefix (/static) from url /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:32:48 GMT express:router serveStatic /static : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:32:48 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/mit-media-lab--white.svg" +Sat, 02 Nov 2024 06:32:48 GMT express:router dispatching GET /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:32:48 GMT express:router query : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:32:48 GMT express:router expressInit : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:32:48 GMT express:router jsonParser : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:32:48 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:32:48 GMT express:router urlencodedParser : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:32:48 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:32:48 GMT express:router corsMiddleware : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:32:48 GMT express:router trim prefix (/static) from url /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:32:48 GMT express:router serveStatic /static : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:32:48 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/twitter--white.svg" +Sat, 02 Nov 2024 06:32:48 GMT send pipe "/home/ubuntu/cognimates-training/static/images/cognimates-logo--codelab.svg" +Serving static file: /static/images/cognimates-logo--codelab.svg (image/svg+xml) +Sat, 02 Nov 2024 06:32:48 GMT send accept ranges +Sat, 02 Nov 2024 06:32:48 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:32:48 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:32:48 GMT send etag W/"9f5-192da706627" +Sat, 02 Nov 2024 06:32:48 GMT send pipe "/home/ubuntu/cognimates-training/static/images/vision_banner.png" +Serving static file: /static/images/vision_banner.png (image/png) +Sat, 02 Nov 2024 06:32:48 GMT send accept ranges +Sat, 02 Nov 2024 06:32:48 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:32:48 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:32:48 GMT send etag W/"20212-192da70662f" +Sat, 02 Nov 2024 06:32:48 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/mit-media-lab--white.svg" +Serving static file: /static/images/social/mit-media-lab--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:32:48 GMT send accept ranges +Sat, 02 Nov 2024 06:32:48 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:32:48 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:32:48 GMT send etag W/"a7c5-192da70662b" +Sat, 02 Nov 2024 06:32:48 GMT express:router dispatching GET /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:32:48 GMT express:router query : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:32:48 GMT express:router expressInit : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:32:48 GMT express:router jsonParser : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:32:48 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:32:48 GMT express:router urlencodedParser : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:32:48 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:32:48 GMT express:router corsMiddleware : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:32:48 GMT express:router trim prefix (/static) from url /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:32:48 GMT express:router serveStatic /static : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:32:48 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/instagram--white.svg" +Sat, 02 Nov 2024 06:32:48 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/twitter--white.svg" +Serving static file: /static/images/social/twitter--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:32:48 GMT send accept ranges +Sat, 02 Nov 2024 06:32:48 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:32:48 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:32:48 GMT send etag W/"712c-192da70662b" +Sat, 02 Nov 2024 06:32:48 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/instagram--white.svg" +Serving static file: /static/images/social/instagram--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:32:48 GMT send accept ranges +Sat, 02 Nov 2024 06:32:48 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:32:48 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:32:48 GMT send etag W/"6ec0-192da70662b" +Sat, 02 Nov 2024 06:32:48 GMT express:router dispatching GET /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:32:48 GMT express:router query : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:32:48 GMT express:router expressInit : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:32:48 GMT express:router jsonParser : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:32:48 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:32:48 GMT express:router urlencodedParser : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:32:48 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:32:48 GMT express:router corsMiddleware : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:32:48 GMT express:router trim prefix (/static) from url /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:32:48 GMT express:router serveStatic /static : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:32:48 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/vimeo--white.svg" +Sat, 02 Nov 2024 06:32:48 GMT express:router dispatching GET /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:32:48 GMT express:router query : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:32:48 GMT express:router expressInit : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:32:48 GMT express:router jsonParser : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:32:48 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:32:48 GMT express:router urlencodedParser : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:32:48 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:32:48 GMT express:router corsMiddleware : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:32:48 GMT express:router trim prefix (/static) from url /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:32:48 GMT express:router serveStatic /static : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:32:48 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/facebook--white.svg" +Sat, 02 Nov 2024 06:32:48 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/vimeo--white.svg" +Serving static file: /static/images/social/vimeo--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:32:48 GMT send accept ranges +Sat, 02 Nov 2024 06:32:48 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:32:48 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:32:48 GMT send etag W/"6b42-192da70662b" +Sat, 02 Nov 2024 06:32:48 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/facebook--white.svg" +Serving static file: /static/images/social/facebook--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:32:48 GMT send accept ranges +Sat, 02 Nov 2024 06:32:48 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:32:48 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:32:48 GMT send etag W/"69e4-192da70662b" +Sat, 02 Nov 2024 06:32:53 GMT express:router dispatching GET /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:32:53 GMT express:router query : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:32:53 GMT express:router expressInit : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:32:53 GMT express:router jsonParser : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:32:53 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:32:53 GMT express:router urlencodedParser : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:32:53 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:32:53 GMT express:router corsMiddleware : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:32:53 GMT express:router trim prefix (/static) from url /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:32:53 GMT express:router serveStatic /static : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:32:53 GMT send stat "/home/ubuntu/cognimates-training/static/images/cognimates-logo--codelab.svg" +Sat, 02 Nov 2024 06:32:53 GMT express:router dispatching GET /static/images/vision_banner.png +Sat, 02 Nov 2024 06:32:53 GMT express:router query : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:32:53 GMT express:router expressInit : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:32:53 GMT express:router jsonParser : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:32:53 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:32:53 GMT express:router urlencodedParser : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:32:53 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:32:53 GMT express:router corsMiddleware : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:32:53 GMT express:router trim prefix (/static) from url /static/images/vision_banner.png +Sat, 02 Nov 2024 06:32:53 GMT express:router serveStatic /static : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:32:53 GMT send stat "/home/ubuntu/cognimates-training/static/images/vision_banner.png" +Sat, 02 Nov 2024 06:32:53 GMT express:router dispatching GET /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:32:53 GMT express:router query : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:32:53 GMT express:router expressInit : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:32:53 GMT express:router jsonParser : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:32:53 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:32:53 GMT express:router urlencodedParser : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:32:53 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:32:53 GMT express:router corsMiddleware : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:32:53 GMT express:router trim prefix (/static) from url /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:32:53 GMT express:router serveStatic /static : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:32:53 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/mit-media-lab--white.svg" +Sat, 02 Nov 2024 06:32:53 GMT express:router dispatching GET /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:32:53 GMT express:router query : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:32:53 GMT express:router expressInit : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:32:53 GMT express:router jsonParser : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:32:53 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:32:53 GMT express:router urlencodedParser : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:32:53 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:32:53 GMT express:router corsMiddleware : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:32:53 GMT express:router trim prefix (/static) from url /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:32:53 GMT express:router serveStatic /static : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:32:53 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/twitter--white.svg" +Sat, 02 Nov 2024 06:32:53 GMT send pipe "/home/ubuntu/cognimates-training/static/images/cognimates-logo--codelab.svg" +Serving static file: /static/images/cognimates-logo--codelab.svg (image/svg+xml) +Sat, 02 Nov 2024 06:32:53 GMT send accept ranges +Sat, 02 Nov 2024 06:32:53 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:32:53 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:32:53 GMT send etag W/"9f5-192da706627" +Sat, 02 Nov 2024 06:32:53 GMT send pipe "/home/ubuntu/cognimates-training/static/images/vision_banner.png" +Serving static file: /static/images/vision_banner.png (image/png) +Sat, 02 Nov 2024 06:32:53 GMT send accept ranges +Sat, 02 Nov 2024 06:32:53 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:32:53 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:32:53 GMT send etag W/"20212-192da70662f" +Sat, 02 Nov 2024 06:32:53 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/mit-media-lab--white.svg" +Serving static file: /static/images/social/mit-media-lab--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:32:53 GMT send accept ranges +Sat, 02 Nov 2024 06:32:53 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:32:53 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:32:53 GMT send etag W/"a7c5-192da70662b" +Sat, 02 Nov 2024 06:32:53 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/twitter--white.svg" +Serving static file: /static/images/social/twitter--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:32:53 GMT send accept ranges +Sat, 02 Nov 2024 06:32:53 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:32:53 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:32:53 GMT send etag W/"712c-192da70662b" +Sat, 02 Nov 2024 06:32:53 GMT express:router dispatching GET /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:32:53 GMT express:router query : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:32:53 GMT express:router expressInit : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:32:53 GMT express:router jsonParser : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:32:53 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:32:53 GMT express:router urlencodedParser : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:32:53 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:32:53 GMT express:router corsMiddleware : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:32:53 GMT express:router trim prefix (/static) from url /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:32:53 GMT express:router serveStatic /static : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:32:53 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/instagram--white.svg" +Sat, 02 Nov 2024 06:32:53 GMT express:router dispatching GET /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:32:53 GMT express:router query : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:32:53 GMT express:router expressInit : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:32:53 GMT express:router jsonParser : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:32:53 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:32:53 GMT express:router urlencodedParser : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:32:53 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:32:53 GMT express:router corsMiddleware : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:32:53 GMT express:router trim prefix (/static) from url /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:32:53 GMT express:router serveStatic /static : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:32:53 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/vimeo--white.svg" +Sat, 02 Nov 2024 06:32:53 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/instagram--white.svg" +Serving static file: /static/images/social/instagram--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:32:53 GMT send accept ranges +Sat, 02 Nov 2024 06:32:53 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:32:53 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:32:53 GMT send etag W/"6ec0-192da70662b" +Sat, 02 Nov 2024 06:32:53 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/vimeo--white.svg" +Serving static file: /static/images/social/vimeo--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:32:53 GMT send accept ranges +Sat, 02 Nov 2024 06:32:53 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:32:53 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:32:53 GMT send etag W/"6b42-192da70662b" +Sat, 02 Nov 2024 06:32:53 GMT express:router dispatching GET /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:32:53 GMT express:router query : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:32:53 GMT express:router expressInit : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:32:53 GMT express:router jsonParser : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:32:53 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:32:53 GMT express:router urlencodedParser : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:32:53 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:32:53 GMT express:router corsMiddleware : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:32:53 GMT express:router trim prefix (/static) from url /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:32:53 GMT express:router serveStatic /static : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:32:53 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/facebook--white.svg" +Sat, 02 Nov 2024 06:32:53 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/facebook--white.svg" +Serving static file: /static/images/social/facebook--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:32:53 GMT send accept ranges +Sat, 02 Nov 2024 06:32:53 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:32:53 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:32:53 GMT send etag W/"69e4-192da70662b" +Sat, 02 Nov 2024 06:32:57 GMT express:router dispatching GET /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:32:57 GMT express:router query : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:32:57 GMT express:router expressInit : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:32:57 GMT express:router jsonParser : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:32:57 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:32:57 GMT express:router urlencodedParser : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:32:57 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:32:57 GMT express:router corsMiddleware : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:32:57 GMT express:router trim prefix (/static) from url /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:32:57 GMT express:router serveStatic /static : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:32:57 GMT send stat "/home/ubuntu/cognimates-training/static/images/cognimates-logo--codelab.svg" +Sat, 02 Nov 2024 06:32:57 GMT express:router dispatching GET /static/images/vision_banner.png +Sat, 02 Nov 2024 06:32:57 GMT express:router query : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:32:57 GMT express:router expressInit : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:32:57 GMT express:router jsonParser : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:32:57 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:32:57 GMT express:router urlencodedParser : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:32:57 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:32:57 GMT express:router corsMiddleware : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:32:57 GMT express:router trim prefix (/static) from url /static/images/vision_banner.png +Sat, 02 Nov 2024 06:32:57 GMT express:router serveStatic /static : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:32:57 GMT send stat "/home/ubuntu/cognimates-training/static/images/vision_banner.png" +Sat, 02 Nov 2024 06:32:57 GMT express:router dispatching GET /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:32:57 GMT express:router query : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:32:57 GMT express:router expressInit : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:32:57 GMT express:router jsonParser : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:32:57 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:32:57 GMT express:router urlencodedParser : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:32:57 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:32:57 GMT express:router corsMiddleware : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:32:57 GMT express:router trim prefix (/static) from url /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:32:57 GMT express:router serveStatic /static : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:32:57 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/mit-media-lab--white.svg" +Sat, 02 Nov 2024 06:32:57 GMT send pipe "/home/ubuntu/cognimates-training/static/images/cognimates-logo--codelab.svg" +Serving static file: /static/images/cognimates-logo--codelab.svg (image/svg+xml) +Sat, 02 Nov 2024 06:32:57 GMT send accept ranges +Sat, 02 Nov 2024 06:32:57 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:32:57 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:32:57 GMT send etag W/"9f5-192da706627" +Sat, 02 Nov 2024 06:32:57 GMT send pipe "/home/ubuntu/cognimates-training/static/images/vision_banner.png" +Serving static file: /static/images/vision_banner.png (image/png) +Sat, 02 Nov 2024 06:32:57 GMT send accept ranges +Sat, 02 Nov 2024 06:32:57 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:32:57 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:32:57 GMT send etag W/"20212-192da70662f" +Sat, 02 Nov 2024 06:32:57 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/mit-media-lab--white.svg" +Serving static file: /static/images/social/mit-media-lab--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:32:57 GMT send accept ranges +Sat, 02 Nov 2024 06:32:57 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:32:57 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:32:57 GMT send etag W/"a7c5-192da70662b" +Sat, 02 Nov 2024 06:32:57 GMT express:router dispatching GET /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:32:57 GMT express:router query : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:32:57 GMT express:router expressInit : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:32:57 GMT express:router jsonParser : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:32:57 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:32:57 GMT express:router urlencodedParser : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:32:57 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:32:57 GMT express:router corsMiddleware : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:32:57 GMT express:router trim prefix (/static) from url /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:32:57 GMT express:router serveStatic /static : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:32:57 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/twitter--white.svg" +Sat, 02 Nov 2024 06:32:57 GMT express:router dispatching GET /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:32:57 GMT express:router query : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:32:57 GMT express:router expressInit : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:32:57 GMT express:router jsonParser : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:32:57 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:32:57 GMT express:router urlencodedParser : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:32:57 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:32:57 GMT express:router corsMiddleware : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:32:57 GMT express:router trim prefix (/static) from url /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:32:57 GMT express:router serveStatic /static : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:32:57 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/instagram--white.svg" +Sat, 02 Nov 2024 06:32:57 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/twitter--white.svg" +Serving static file: /static/images/social/twitter--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:32:57 GMT send accept ranges +Sat, 02 Nov 2024 06:32:57 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:32:57 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:32:57 GMT send etag W/"712c-192da70662b" +Sat, 02 Nov 2024 06:32:57 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/instagram--white.svg" +Serving static file: /static/images/social/instagram--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:32:57 GMT send accept ranges +Sat, 02 Nov 2024 06:32:57 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:32:57 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:32:57 GMT send etag W/"6ec0-192da70662b" +Sat, 02 Nov 2024 06:32:57 GMT express:router dispatching GET /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:32:57 GMT express:router query : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:32:57 GMT express:router expressInit : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:32:57 GMT express:router jsonParser : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:32:57 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:32:57 GMT express:router urlencodedParser : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:32:57 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:32:57 GMT express:router corsMiddleware : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:32:57 GMT express:router trim prefix (/static) from url /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:32:57 GMT express:router serveStatic /static : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:32:57 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/vimeo--white.svg" +Sat, 02 Nov 2024 06:32:57 GMT express:router dispatching GET /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:32:57 GMT express:router query : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:32:57 GMT express:router expressInit : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:32:57 GMT express:router jsonParser : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:32:57 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:32:57 GMT express:router urlencodedParser : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:32:57 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:32:57 GMT express:router corsMiddleware : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:32:57 GMT express:router trim prefix (/static) from url /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:32:57 GMT express:router serveStatic /static : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:32:57 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/facebook--white.svg" +Sat, 02 Nov 2024 06:32:57 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/vimeo--white.svg" +Serving static file: /static/images/social/vimeo--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:32:57 GMT send accept ranges +Sat, 02 Nov 2024 06:32:57 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:32:57 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:32:57 GMT send etag W/"6b42-192da70662b" +Sat, 02 Nov 2024 06:32:57 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/facebook--white.svg" +Serving static file: /static/images/social/facebook--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:32:57 GMT send accept ranges +Sat, 02 Nov 2024 06:32:57 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:32:57 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:32:57 GMT send etag W/"69e4-192da70662b" +Sat, 02 Nov 2024 06:33:02 GMT express:router dispatching GET /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:33:02 GMT express:router query : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:33:02 GMT express:router expressInit : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:33:02 GMT express:router jsonParser : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:33:02 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:33:02 GMT express:router urlencodedParser : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:33:02 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:33:02 GMT express:router corsMiddleware : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:33:02 GMT express:router trim prefix (/static) from url /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:33:02 GMT express:router serveStatic /static : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:33:02 GMT send stat "/home/ubuntu/cognimates-training/static/images/cognimates-logo--codelab.svg" +Sat, 02 Nov 2024 06:33:02 GMT express:router dispatching GET /static/images/vision_banner.png +Sat, 02 Nov 2024 06:33:02 GMT express:router query : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:33:02 GMT express:router expressInit : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:33:02 GMT express:router jsonParser : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:33:02 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:33:02 GMT express:router urlencodedParser : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:33:02 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:33:02 GMT express:router corsMiddleware : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:33:02 GMT express:router trim prefix (/static) from url /static/images/vision_banner.png +Sat, 02 Nov 2024 06:33:02 GMT express:router serveStatic /static : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:33:02 GMT send stat "/home/ubuntu/cognimates-training/static/images/vision_banner.png" +Sat, 02 Nov 2024 06:33:02 GMT send pipe "/home/ubuntu/cognimates-training/static/images/cognimates-logo--codelab.svg" +Serving static file: /static/images/cognimates-logo--codelab.svg (image/svg+xml) +Sat, 02 Nov 2024 06:33:02 GMT send accept ranges +Sat, 02 Nov 2024 06:33:02 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:33:02 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:33:02 GMT send etag W/"9f5-192da706627" +Sat, 02 Nov 2024 06:33:02 GMT send pipe "/home/ubuntu/cognimates-training/static/images/vision_banner.png" +Serving static file: /static/images/vision_banner.png (image/png) +Sat, 02 Nov 2024 06:33:02 GMT send accept ranges +Sat, 02 Nov 2024 06:33:02 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:33:02 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:33:02 GMT send etag W/"20212-192da70662f" +Sat, 02 Nov 2024 06:33:02 GMT express:router dispatching GET /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:33:02 GMT express:router query : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:33:02 GMT express:router expressInit : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:33:02 GMT express:router jsonParser : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:33:02 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:33:02 GMT express:router urlencodedParser : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:33:02 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:33:02 GMT express:router corsMiddleware : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:33:02 GMT express:router trim prefix (/static) from url /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:33:02 GMT express:router serveStatic /static : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:33:02 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/mit-media-lab--white.svg" +Sat, 02 Nov 2024 06:33:02 GMT express:router dispatching GET /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:33:02 GMT express:router query : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:33:02 GMT express:router expressInit : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:33:02 GMT express:router jsonParser : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:33:02 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:33:02 GMT express:router urlencodedParser : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:33:02 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:33:02 GMT express:router corsMiddleware : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:33:02 GMT express:router trim prefix (/static) from url /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:33:02 GMT express:router serveStatic /static : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:33:02 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/twitter--white.svg" +Sat, 02 Nov 2024 06:33:02 GMT express:router dispatching GET /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:33:02 GMT express:router query : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:33:02 GMT express:router expressInit : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:33:02 GMT express:router jsonParser : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:33:02 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:33:02 GMT express:router urlencodedParser : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:33:02 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:33:02 GMT express:router corsMiddleware : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:33:02 GMT express:router trim prefix (/static) from url /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:33:02 GMT express:router serveStatic /static : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:33:02 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/instagram--white.svg" +Sat, 02 Nov 2024 06:33:02 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/mit-media-lab--white.svg" +Serving static file: /static/images/social/mit-media-lab--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:33:02 GMT send accept ranges +Sat, 02 Nov 2024 06:33:02 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:33:02 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:33:02 GMT send etag W/"a7c5-192da70662b" +Sat, 02 Nov 2024 06:33:02 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/twitter--white.svg" +Serving static file: /static/images/social/twitter--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:33:02 GMT send accept ranges +Sat, 02 Nov 2024 06:33:02 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:33:02 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:33:02 GMT send etag W/"712c-192da70662b" +Sat, 02 Nov 2024 06:33:02 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/instagram--white.svg" +Serving static file: /static/images/social/instagram--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:33:02 GMT send accept ranges +Sat, 02 Nov 2024 06:33:02 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:33:02 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:33:02 GMT send etag W/"6ec0-192da70662b" +Sat, 02 Nov 2024 06:33:02 GMT express:router dispatching GET /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:33:02 GMT express:router query : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:33:02 GMT express:router expressInit : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:33:02 GMT express:router jsonParser : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:33:02 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:33:02 GMT express:router urlencodedParser : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:33:02 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:33:02 GMT express:router corsMiddleware : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:33:02 GMT express:router trim prefix (/static) from url /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:33:02 GMT express:router serveStatic /static : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:33:02 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/vimeo--white.svg" +Sat, 02 Nov 2024 06:33:02 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/vimeo--white.svg" +Serving static file: /static/images/social/vimeo--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:33:02 GMT send accept ranges +Sat, 02 Nov 2024 06:33:02 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:33:02 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:33:02 GMT send etag W/"6b42-192da70662b" +Sat, 02 Nov 2024 06:33:02 GMT express:router dispatching GET /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:33:02 GMT express:router query : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:33:02 GMT express:router expressInit : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:33:02 GMT express:router jsonParser : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:33:02 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:33:02 GMT express:router urlencodedParser : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:33:02 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:33:02 GMT express:router corsMiddleware : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:33:02 GMT express:router trim prefix (/static) from url /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:33:02 GMT express:router serveStatic /static : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:33:02 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/facebook--white.svg" +Sat, 02 Nov 2024 06:33:02 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/facebook--white.svg" +Serving static file: /static/images/social/facebook--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:33:02 GMT send accept ranges +Sat, 02 Nov 2024 06:33:02 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:33:02 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:33:02 GMT send etag W/"69e4-192da70662b" +Sat, 02 Nov 2024 06:33:06 GMT express:router dispatching GET /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:33:06 GMT express:router query : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:33:06 GMT express:router expressInit : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:33:06 GMT express:router jsonParser : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:33:06 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:33:06 GMT express:router urlencodedParser : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:33:06 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:33:06 GMT express:router corsMiddleware : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:33:06 GMT express:router trim prefix (/static) from url /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:33:06 GMT express:router serveStatic /static : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:33:06 GMT send stat "/home/ubuntu/cognimates-training/static/images/cognimates-logo--codelab.svg" +Sat, 02 Nov 2024 06:33:06 GMT express:router dispatching GET /static/images/vision_banner.png +Sat, 02 Nov 2024 06:33:06 GMT express:router query : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:33:06 GMT express:router expressInit : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:33:06 GMT express:router jsonParser : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:33:06 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:33:06 GMT express:router urlencodedParser : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:33:06 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:33:06 GMT express:router corsMiddleware : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:33:06 GMT express:router trim prefix (/static) from url /static/images/vision_banner.png +Sat, 02 Nov 2024 06:33:06 GMT express:router serveStatic /static : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:33:06 GMT send stat "/home/ubuntu/cognimates-training/static/images/vision_banner.png" +Sat, 02 Nov 2024 06:33:06 GMT express:router dispatching GET /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:33:06 GMT express:router query : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:33:06 GMT express:router expressInit : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:33:06 GMT express:router jsonParser : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:33:06 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:33:06 GMT express:router urlencodedParser : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:33:06 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:33:06 GMT express:router corsMiddleware : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:33:06 GMT express:router trim prefix (/static) from url /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:33:06 GMT express:router serveStatic /static : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:33:06 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/mit-media-lab--white.svg" +Sat, 02 Nov 2024 06:33:06 GMT express:router dispatching GET /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:33:06 GMT express:router query : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:33:06 GMT express:router expressInit : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:33:06 GMT express:router jsonParser : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:33:06 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:33:06 GMT express:router urlencodedParser : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:33:06 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:33:06 GMT express:router corsMiddleware : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:33:06 GMT express:router trim prefix (/static) from url /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:33:06 GMT express:router serveStatic /static : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:33:06 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/twitter--white.svg" +Sat, 02 Nov 2024 06:33:06 GMT express:router dispatching GET /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:33:06 GMT express:router query : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:33:06 GMT express:router expressInit : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:33:06 GMT express:router jsonParser : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:33:06 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:33:06 GMT express:router urlencodedParser : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:33:06 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:33:06 GMT express:router corsMiddleware : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:33:06 GMT express:router trim prefix (/static) from url /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:33:06 GMT express:router serveStatic /static : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:33:06 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/instagram--white.svg" +Sat, 02 Nov 2024 06:33:06 GMT send pipe "/home/ubuntu/cognimates-training/static/images/cognimates-logo--codelab.svg" +Serving static file: /static/images/cognimates-logo--codelab.svg (image/svg+xml) +Sat, 02 Nov 2024 06:33:06 GMT send accept ranges +Sat, 02 Nov 2024 06:33:06 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:33:06 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:33:06 GMT send etag W/"9f5-192da706627" +Sat, 02 Nov 2024 06:33:06 GMT send pipe "/home/ubuntu/cognimates-training/static/images/vision_banner.png" +Serving static file: /static/images/vision_banner.png (image/png) +Sat, 02 Nov 2024 06:33:06 GMT send accept ranges +Sat, 02 Nov 2024 06:33:06 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:33:06 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:33:06 GMT send etag W/"20212-192da70662f" +Sat, 02 Nov 2024 06:33:06 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/mit-media-lab--white.svg" +Serving static file: /static/images/social/mit-media-lab--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:33:06 GMT send accept ranges +Sat, 02 Nov 2024 06:33:06 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:33:06 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:33:06 GMT send etag W/"a7c5-192da70662b" +Sat, 02 Nov 2024 06:33:06 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/twitter--white.svg" +Serving static file: /static/images/social/twitter--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:33:06 GMT send accept ranges +Sat, 02 Nov 2024 06:33:06 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:33:06 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:33:06 GMT send etag W/"712c-192da70662b" +Sat, 02 Nov 2024 06:33:06 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/instagram--white.svg" +Serving static file: /static/images/social/instagram--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:33:06 GMT send accept ranges +Sat, 02 Nov 2024 06:33:06 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:33:06 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:33:06 GMT send etag W/"6ec0-192da70662b" +Sat, 02 Nov 2024 06:33:06 GMT express:router dispatching GET /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:33:06 GMT express:router query : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:33:06 GMT express:router expressInit : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:33:06 GMT express:router jsonParser : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:33:06 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:33:06 GMT express:router urlencodedParser : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:33:06 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:33:06 GMT express:router corsMiddleware : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:33:06 GMT express:router trim prefix (/static) from url /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:33:06 GMT express:router serveStatic /static : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:33:06 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/facebook--white.svg" +Sat, 02 Nov 2024 06:33:06 GMT express:router dispatching GET /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:33:06 GMT express:router query : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:33:06 GMT express:router expressInit : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:33:06 GMT express:router jsonParser : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:33:06 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:33:06 GMT express:router urlencodedParser : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:33:06 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:33:06 GMT express:router corsMiddleware : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:33:06 GMT express:router trim prefix (/static) from url /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:33:06 GMT express:router serveStatic /static : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:33:06 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/vimeo--white.svg" +Sat, 02 Nov 2024 06:33:06 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/facebook--white.svg" +Serving static file: /static/images/social/facebook--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:33:06 GMT send accept ranges +Sat, 02 Nov 2024 06:33:06 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:33:06 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:33:06 GMT send etag W/"69e4-192da70662b" +Sat, 02 Nov 2024 06:33:06 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/vimeo--white.svg" +Serving static file: /static/images/social/vimeo--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:33:06 GMT send accept ranges +Sat, 02 Nov 2024 06:33:06 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:33:06 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:33:06 GMT send etag W/"6b42-192da70662b" +Sat, 02 Nov 2024 06:33:25 GMT express:router dispatching GET /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:33:25 GMT express:router query : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:33:25 GMT express:router expressInit : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:33:25 GMT express:router jsonParser : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:33:25 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:33:25 GMT express:router urlencodedParser : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:33:25 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:33:25 GMT express:router corsMiddleware : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:33:25 GMT express:router trim prefix (/static) from url /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:33:25 GMT express:router serveStatic /static : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:33:25 GMT send stat "/home/ubuntu/cognimates-training/static/images/cognimates-logo--codelab.svg" +Sat, 02 Nov 2024 06:33:25 GMT send pipe "/home/ubuntu/cognimates-training/static/images/cognimates-logo--codelab.svg" +Serving static file: /static/images/cognimates-logo--codelab.svg (image/svg+xml) +Sat, 02 Nov 2024 06:33:25 GMT send accept ranges +Sat, 02 Nov 2024 06:33:25 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:33:25 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:33:25 GMT send etag W/"9f5-192da706627" +Sat, 02 Nov 2024 06:33:25 GMT express:router dispatching GET /static/images/vision_banner.png +Sat, 02 Nov 2024 06:33:25 GMT express:router query : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:33:25 GMT express:router expressInit : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:33:25 GMT express:router jsonParser : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:33:25 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:33:25 GMT express:router urlencodedParser : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:33:25 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:33:25 GMT express:router corsMiddleware : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:33:25 GMT express:router trim prefix (/static) from url /static/images/vision_banner.png +Sat, 02 Nov 2024 06:33:25 GMT express:router serveStatic /static : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:33:25 GMT send stat "/home/ubuntu/cognimates-training/static/images/vision_banner.png" +Sat, 02 Nov 2024 06:33:25 GMT send pipe "/home/ubuntu/cognimates-training/static/images/vision_banner.png" +Serving static file: /static/images/vision_banner.png (image/png) +Sat, 02 Nov 2024 06:33:25 GMT send accept ranges +Sat, 02 Nov 2024 06:33:25 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:33:25 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:33:25 GMT send etag W/"20212-192da70662f" +Sat, 02 Nov 2024 06:33:25 GMT express:router dispatching GET /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:33:25 GMT express:router query : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:33:25 GMT express:router expressInit : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:33:25 GMT express:router jsonParser : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:33:25 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:33:25 GMT express:router urlencodedParser : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:33:25 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:33:25 GMT express:router corsMiddleware : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:33:25 GMT express:router trim prefix (/static) from url /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:33:25 GMT express:router serveStatic /static : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:33:25 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/mit-media-lab--white.svg" +Sat, 02 Nov 2024 06:33:25 GMT express:router dispatching GET /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:33:25 GMT express:router query : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:33:25 GMT express:router expressInit : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:33:25 GMT express:router jsonParser : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:33:25 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:33:25 GMT express:router urlencodedParser : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:33:25 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:33:25 GMT express:router corsMiddleware : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:33:25 GMT express:router trim prefix (/static) from url /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:33:25 GMT express:router serveStatic /static : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:33:25 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/twitter--white.svg" +Sat, 02 Nov 2024 06:33:25 GMT express:router dispatching GET /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:33:25 GMT express:router query : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:33:25 GMT express:router expressInit : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:33:25 GMT express:router jsonParser : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:33:25 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:33:25 GMT express:router urlencodedParser : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:33:25 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:33:25 GMT express:router corsMiddleware : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:33:25 GMT express:router trim prefix (/static) from url /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:33:25 GMT express:router serveStatic /static : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:33:25 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/instagram--white.svg" +Sat, 02 Nov 2024 06:33:25 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/mit-media-lab--white.svg" +Serving static file: /static/images/social/mit-media-lab--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:33:25 GMT send accept ranges +Sat, 02 Nov 2024 06:33:25 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:33:25 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:33:25 GMT send etag W/"a7c5-192da70662b" +Sat, 02 Nov 2024 06:33:25 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/twitter--white.svg" +Serving static file: /static/images/social/twitter--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:33:25 GMT send accept ranges +Sat, 02 Nov 2024 06:33:25 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:33:25 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:33:25 GMT send etag W/"712c-192da70662b" +Sat, 02 Nov 2024 06:33:25 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/instagram--white.svg" +Serving static file: /static/images/social/instagram--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:33:25 GMT send accept ranges +Sat, 02 Nov 2024 06:33:25 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:33:25 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:33:25 GMT send etag W/"6ec0-192da70662b" +Sat, 02 Nov 2024 06:33:25 GMT express:router dispatching GET /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:33:25 GMT express:router query : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:33:25 GMT express:router expressInit : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:33:25 GMT express:router jsonParser : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:33:25 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:33:25 GMT express:router urlencodedParser : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:33:25 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:33:25 GMT express:router corsMiddleware : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:33:25 GMT express:router trim prefix (/static) from url /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:33:25 GMT express:router serveStatic /static : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:33:25 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/vimeo--white.svg" +Sat, 02 Nov 2024 06:33:25 GMT express:router dispatching GET /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:33:25 GMT express:router query : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:33:25 GMT express:router expressInit : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:33:25 GMT express:router jsonParser : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:33:25 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:33:25 GMT express:router urlencodedParser : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:33:25 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:33:25 GMT express:router corsMiddleware : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:33:25 GMT express:router trim prefix (/static) from url /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:33:25 GMT express:router serveStatic /static : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:33:25 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/facebook--white.svg" +Sat, 02 Nov 2024 06:33:25 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/vimeo--white.svg" +Serving static file: /static/images/social/vimeo--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:33:25 GMT send accept ranges +Sat, 02 Nov 2024 06:33:25 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:33:25 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:33:25 GMT send etag W/"6b42-192da70662b" +Sat, 02 Nov 2024 06:33:25 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/facebook--white.svg" +Serving static file: /static/images/social/facebook--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:33:25 GMT send accept ranges +Sat, 02 Nov 2024 06:33:25 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:33:25 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:33:25 GMT send etag W/"69e4-192da70662b" +Sat, 02 Nov 2024 06:33:39 GMT express:router dispatching GET /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:33:39 GMT express:router query : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:33:39 GMT express:router expressInit : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:33:39 GMT express:router jsonParser : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:33:39 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:33:39 GMT express:router urlencodedParser : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:33:39 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:33:39 GMT express:router corsMiddleware : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:33:39 GMT express:router trim prefix (/static) from url /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:33:39 GMT express:router serveStatic /static : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:33:39 GMT send stat "/home/ubuntu/cognimates-training/static/images/cognimates-logo--codelab.svg" +Sat, 02 Nov 2024 06:33:39 GMT express:router dispatching GET /static/images/vision_banner.png +Sat, 02 Nov 2024 06:33:39 GMT express:router query : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:33:39 GMT express:router expressInit : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:33:39 GMT express:router jsonParser : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:33:39 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:33:39 GMT express:router urlencodedParser : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:33:39 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:33:39 GMT express:router corsMiddleware : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:33:39 GMT express:router trim prefix (/static) from url /static/images/vision_banner.png +Sat, 02 Nov 2024 06:33:39 GMT express:router serveStatic /static : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:33:39 GMT send stat "/home/ubuntu/cognimates-training/static/images/vision_banner.png" +Sat, 02 Nov 2024 06:33:39 GMT express:router dispatching GET /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:33:39 GMT express:router query : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:33:39 GMT express:router expressInit : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:33:39 GMT express:router jsonParser : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:33:39 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:33:39 GMT express:router urlencodedParser : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:33:39 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:33:39 GMT express:router corsMiddleware : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:33:39 GMT express:router trim prefix (/static) from url /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:33:39 GMT express:router serveStatic /static : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:33:39 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/mit-media-lab--white.svg" +Sat, 02 Nov 2024 06:33:39 GMT express:router dispatching GET /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:33:39 GMT express:router query : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:33:39 GMT express:router expressInit : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:33:39 GMT express:router jsonParser : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:33:39 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:33:39 GMT express:router urlencodedParser : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:33:39 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:33:39 GMT express:router corsMiddleware : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:33:39 GMT express:router trim prefix (/static) from url /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:33:39 GMT express:router serveStatic /static : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:33:39 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/twitter--white.svg" +Sat, 02 Nov 2024 06:33:39 GMT send pipe "/home/ubuntu/cognimates-training/static/images/cognimates-logo--codelab.svg" +Serving static file: /static/images/cognimates-logo--codelab.svg (image/svg+xml) +Sat, 02 Nov 2024 06:33:39 GMT send accept ranges +Sat, 02 Nov 2024 06:33:39 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:33:39 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:33:39 GMT send etag W/"9f5-192da706627" +Sat, 02 Nov 2024 06:33:39 GMT send pipe "/home/ubuntu/cognimates-training/static/images/vision_banner.png" +Serving static file: /static/images/vision_banner.png (image/png) +Sat, 02 Nov 2024 06:33:39 GMT send accept ranges +Sat, 02 Nov 2024 06:33:39 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:33:39 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:33:39 GMT send etag W/"20212-192da70662f" +Sat, 02 Nov 2024 06:33:39 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/mit-media-lab--white.svg" +Serving static file: /static/images/social/mit-media-lab--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:33:39 GMT send accept ranges +Sat, 02 Nov 2024 06:33:39 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:33:39 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:33:39 GMT send etag W/"a7c5-192da70662b" +Sat, 02 Nov 2024 06:33:39 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/twitter--white.svg" +Serving static file: /static/images/social/twitter--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:33:39 GMT send accept ranges +Sat, 02 Nov 2024 06:33:39 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:33:39 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:33:39 GMT send etag W/"712c-192da70662b" +Sat, 02 Nov 2024 06:33:39 GMT express:router dispatching GET /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:33:39 GMT express:router query : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:33:39 GMT express:router expressInit : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:33:39 GMT express:router jsonParser : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:33:39 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:33:39 GMT express:router urlencodedParser : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:33:39 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:33:39 GMT express:router corsMiddleware : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:33:39 GMT express:router trim prefix (/static) from url /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:33:39 GMT express:router serveStatic /static : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:33:39 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/instagram--white.svg" +Sat, 02 Nov 2024 06:33:39 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/instagram--white.svg" +Serving static file: /static/images/social/instagram--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:33:39 GMT send accept ranges +Sat, 02 Nov 2024 06:33:39 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:33:39 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:33:39 GMT send etag W/"6ec0-192da70662b" +Sat, 02 Nov 2024 06:33:39 GMT express:router dispatching GET /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:33:39 GMT express:router query : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:33:39 GMT express:router expressInit : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:33:39 GMT express:router jsonParser : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:33:39 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:33:39 GMT express:router urlencodedParser : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:33:39 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:33:39 GMT express:router corsMiddleware : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:33:39 GMT express:router trim prefix (/static) from url /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:33:39 GMT express:router serveStatic /static : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:33:39 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/vimeo--white.svg" +Sat, 02 Nov 2024 06:33:39 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/vimeo--white.svg" +Serving static file: /static/images/social/vimeo--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:33:39 GMT send accept ranges +Sat, 02 Nov 2024 06:33:39 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:33:39 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:33:39 GMT send etag W/"6b42-192da70662b" +Sat, 02 Nov 2024 06:33:39 GMT express:router dispatching GET /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:33:39 GMT express:router query : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:33:39 GMT express:router expressInit : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:33:39 GMT express:router jsonParser : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:33:39 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:33:39 GMT express:router urlencodedParser : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:33:39 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:33:39 GMT express:router corsMiddleware : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:33:39 GMT express:router trim prefix (/static) from url /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:33:39 GMT express:router serveStatic /static : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:33:39 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/facebook--white.svg" +Sat, 02 Nov 2024 06:33:39 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/facebook--white.svg" +Serving static file: /static/images/social/facebook--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:33:39 GMT send accept ranges +Sat, 02 Nov 2024 06:33:39 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:33:39 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:33:39 GMT send etag W/"69e4-192da70662b" +Sat, 02 Nov 2024 06:33:58 GMT express:router dispatching GET /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:33:58 GMT express:router query : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:33:58 GMT express:router expressInit : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:33:58 GMT express:router jsonParser : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:33:58 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:33:58 GMT express:router urlencodedParser : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:33:58 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:33:58 GMT express:router corsMiddleware : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:33:58 GMT express:router trim prefix (/static) from url /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:33:58 GMT express:router serveStatic /static : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:33:58 GMT send stat "/home/ubuntu/cognimates-training/static/images/cognimates-logo--codelab.svg" +Sat, 02 Nov 2024 06:33:58 GMT express:router dispatching GET /static/images/vision_banner.png +Sat, 02 Nov 2024 06:33:58 GMT express:router query : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:33:58 GMT express:router expressInit : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:33:58 GMT express:router jsonParser : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:33:58 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:33:58 GMT express:router urlencodedParser : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:33:58 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:33:58 GMT express:router corsMiddleware : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:33:58 GMT express:router trim prefix (/static) from url /static/images/vision_banner.png +Sat, 02 Nov 2024 06:33:58 GMT express:router serveStatic /static : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:33:58 GMT send stat "/home/ubuntu/cognimates-training/static/images/vision_banner.png" +Sat, 02 Nov 2024 06:33:58 GMT send pipe "/home/ubuntu/cognimates-training/static/images/cognimates-logo--codelab.svg" +Serving static file: /static/images/cognimates-logo--codelab.svg (image/svg+xml) +Sat, 02 Nov 2024 06:33:58 GMT send accept ranges +Sat, 02 Nov 2024 06:33:58 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:33:58 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:33:58 GMT send etag W/"9f5-192da706627" +Sat, 02 Nov 2024 06:33:58 GMT express:router dispatching GET /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:33:58 GMT express:router query : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:33:58 GMT express:router expressInit : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:33:58 GMT express:router jsonParser : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:33:58 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:33:58 GMT express:router urlencodedParser : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:33:58 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:33:58 GMT express:router corsMiddleware : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:33:58 GMT express:router trim prefix (/static) from url /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:33:58 GMT express:router serveStatic /static : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:33:58 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/mit-media-lab--white.svg" +Sat, 02 Nov 2024 06:33:58 GMT send pipe "/home/ubuntu/cognimates-training/static/images/vision_banner.png" +Serving static file: /static/images/vision_banner.png (image/png) +Sat, 02 Nov 2024 06:33:58 GMT send accept ranges +Sat, 02 Nov 2024 06:33:58 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:33:58 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:33:58 GMT send etag W/"20212-192da70662f" +Sat, 02 Nov 2024 06:33:58 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/mit-media-lab--white.svg" +Serving static file: /static/images/social/mit-media-lab--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:33:58 GMT send accept ranges +Sat, 02 Nov 2024 06:33:58 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:33:58 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:33:58 GMT send etag W/"a7c5-192da70662b" +Sat, 02 Nov 2024 06:33:58 GMT express:router dispatching GET /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:33:58 GMT express:router query : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:33:58 GMT express:router expressInit : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:33:58 GMT express:router jsonParser : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:33:58 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:33:58 GMT express:router urlencodedParser : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:33:58 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:33:58 GMT express:router corsMiddleware : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:33:58 GMT express:router trim prefix (/static) from url /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:33:58 GMT express:router serveStatic /static : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:33:58 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/twitter--white.svg" +Sat, 02 Nov 2024 06:33:58 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/twitter--white.svg" +Serving static file: /static/images/social/twitter--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:33:58 GMT send accept ranges +Sat, 02 Nov 2024 06:33:58 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:33:58 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:33:58 GMT send etag W/"712c-192da70662b" +Sat, 02 Nov 2024 06:33:58 GMT express:router dispatching GET /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:33:58 GMT express:router query : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:33:58 GMT express:router expressInit : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:33:58 GMT express:router jsonParser : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:33:58 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:33:58 GMT express:router urlencodedParser : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:33:58 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:33:58 GMT express:router corsMiddleware : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:33:58 GMT express:router trim prefix (/static) from url /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:33:58 GMT express:router serveStatic /static : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:33:58 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/instagram--white.svg" +Sat, 02 Nov 2024 06:33:58 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/instagram--white.svg" +Serving static file: /static/images/social/instagram--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:33:58 GMT send accept ranges +Sat, 02 Nov 2024 06:33:58 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:33:58 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:33:58 GMT send etag W/"6ec0-192da70662b" +Sat, 02 Nov 2024 06:33:58 GMT express:router dispatching GET /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:33:58 GMT express:router query : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:33:58 GMT express:router expressInit : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:33:58 GMT express:router jsonParser : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:33:58 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:33:58 GMT express:router urlencodedParser : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:33:58 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:33:58 GMT express:router corsMiddleware : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:33:58 GMT express:router trim prefix (/static) from url /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:33:58 GMT express:router serveStatic /static : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:33:58 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/vimeo--white.svg" +Sat, 02 Nov 2024 06:33:58 GMT express:router dispatching GET /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:33:58 GMT express:router query : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:33:58 GMT express:router expressInit : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:33:58 GMT express:router jsonParser : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:33:58 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:33:58 GMT express:router urlencodedParser : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:33:58 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:33:58 GMT express:router corsMiddleware : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:33:58 GMT express:router trim prefix (/static) from url /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:33:58 GMT express:router serveStatic /static : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:33:58 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/facebook--white.svg" +Sat, 02 Nov 2024 06:33:58 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/vimeo--white.svg" +Serving static file: /static/images/social/vimeo--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:33:58 GMT send accept ranges +Sat, 02 Nov 2024 06:33:58 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:33:58 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:33:58 GMT send etag W/"6b42-192da70662b" +Sat, 02 Nov 2024 06:33:58 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/facebook--white.svg" +Serving static file: /static/images/social/facebook--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:33:58 GMT send accept ranges +Sat, 02 Nov 2024 06:33:58 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:33:58 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:33:58 GMT send etag W/"69e4-192da70662b" +Sat, 02 Nov 2024 06:34:13 GMT express:router dispatching GET /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:34:13 GMT express:router query : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:34:13 GMT express:router expressInit : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:34:13 GMT express:router jsonParser : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:34:13 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:34:13 GMT express:router urlencodedParser : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:34:13 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:34:13 GMT express:router corsMiddleware : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:34:13 GMT express:router trim prefix (/static) from url /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:34:13 GMT express:router serveStatic /static : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:34:13 GMT send stat "/home/ubuntu/cognimates-training/static/images/cognimates-logo--codelab.svg" +Sat, 02 Nov 2024 06:34:13 GMT express:router dispatching GET /static/images/vision_banner.png +Sat, 02 Nov 2024 06:34:13 GMT express:router query : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:34:13 GMT express:router expressInit : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:34:13 GMT express:router jsonParser : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:34:13 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:34:13 GMT express:router urlencodedParser : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:34:13 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:34:13 GMT express:router corsMiddleware : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:34:13 GMT express:router trim prefix (/static) from url /static/images/vision_banner.png +Sat, 02 Nov 2024 06:34:13 GMT express:router serveStatic /static : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:34:13 GMT send stat "/home/ubuntu/cognimates-training/static/images/vision_banner.png" +Sat, 02 Nov 2024 06:34:13 GMT express:router dispatching GET /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:34:13 GMT express:router query : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:34:13 GMT express:router expressInit : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:34:13 GMT express:router jsonParser : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:34:13 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:34:13 GMT express:router urlencodedParser : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:34:13 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:34:13 GMT express:router corsMiddleware : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:34:13 GMT express:router trim prefix (/static) from url /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:34:13 GMT express:router serveStatic /static : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:34:13 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/mit-media-lab--white.svg" +Sat, 02 Nov 2024 06:34:13 GMT express:router dispatching GET /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:34:13 GMT express:router query : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:34:13 GMT express:router expressInit : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:34:13 GMT express:router jsonParser : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:34:13 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:34:13 GMT express:router urlencodedParser : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:34:13 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:34:13 GMT express:router corsMiddleware : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:34:13 GMT express:router trim prefix (/static) from url /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:34:13 GMT express:router serveStatic /static : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:34:13 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/twitter--white.svg" +Sat, 02 Nov 2024 06:34:13 GMT express:router dispatching GET /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:34:13 GMT express:router query : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:34:13 GMT express:router expressInit : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:34:13 GMT express:router jsonParser : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:34:13 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:34:13 GMT express:router urlencodedParser : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:34:13 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:34:13 GMT express:router corsMiddleware : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:34:13 GMT express:router trim prefix (/static) from url /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:34:13 GMT express:router serveStatic /static : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:34:13 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/instagram--white.svg" +Sat, 02 Nov 2024 06:34:13 GMT send pipe "/home/ubuntu/cognimates-training/static/images/cognimates-logo--codelab.svg" +Serving static file: /static/images/cognimates-logo--codelab.svg (image/svg+xml) +Sat, 02 Nov 2024 06:34:13 GMT send accept ranges +Sat, 02 Nov 2024 06:34:13 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:34:13 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:34:13 GMT send etag W/"9f5-192da706627" +Sat, 02 Nov 2024 06:34:13 GMT send pipe "/home/ubuntu/cognimates-training/static/images/vision_banner.png" +Serving static file: /static/images/vision_banner.png (image/png) +Sat, 02 Nov 2024 06:34:13 GMT send accept ranges +Sat, 02 Nov 2024 06:34:13 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:34:13 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:34:13 GMT send etag W/"20212-192da70662f" +Sat, 02 Nov 2024 06:34:13 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/mit-media-lab--white.svg" +Serving static file: /static/images/social/mit-media-lab--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:34:13 GMT send accept ranges +Sat, 02 Nov 2024 06:34:13 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:34:13 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:34:13 GMT send etag W/"a7c5-192da70662b" +Sat, 02 Nov 2024 06:34:13 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/twitter--white.svg" +Serving static file: /static/images/social/twitter--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:34:13 GMT send accept ranges +Sat, 02 Nov 2024 06:34:13 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:34:13 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:34:13 GMT send etag W/"712c-192da70662b" +Sat, 02 Nov 2024 06:34:13 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/instagram--white.svg" +Serving static file: /static/images/social/instagram--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:34:13 GMT send accept ranges +Sat, 02 Nov 2024 06:34:13 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:34:13 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:34:13 GMT send etag W/"6ec0-192da70662b" +Sat, 02 Nov 2024 06:34:13 GMT express:router dispatching GET /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:34:13 GMT express:router query : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:34:13 GMT express:router expressInit : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:34:13 GMT express:router jsonParser : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:34:13 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:34:13 GMT express:router urlencodedParser : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:34:13 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:34:13 GMT express:router corsMiddleware : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:34:13 GMT express:router trim prefix (/static) from url /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:34:13 GMT express:router serveStatic /static : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:34:13 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/vimeo--white.svg" +Sat, 02 Nov 2024 06:34:13 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/vimeo--white.svg" +Serving static file: /static/images/social/vimeo--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:34:13 GMT send accept ranges +Sat, 02 Nov 2024 06:34:13 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:34:13 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:34:13 GMT send etag W/"6b42-192da70662b" +Sat, 02 Nov 2024 06:34:13 GMT express:router dispatching GET /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:34:13 GMT express:router query : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:34:13 GMT express:router expressInit : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:34:13 GMT express:router jsonParser : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:34:13 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:34:13 GMT express:router urlencodedParser : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:34:13 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:34:13 GMT express:router corsMiddleware : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:34:13 GMT express:router trim prefix (/static) from url /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:34:13 GMT express:router serveStatic /static : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:34:13 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/facebook--white.svg" +Sat, 02 Nov 2024 06:34:13 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/facebook--white.svg" +Serving static file: /static/images/social/facebook--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:34:13 GMT send accept ranges +Sat, 02 Nov 2024 06:34:13 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:34:13 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:34:13 GMT send etag W/"69e4-192da70662b" +Sat, 02 Nov 2024 06:34:43 GMT express:router dispatching GET /static/test_images/cats/cat1.jpg +Sat, 02 Nov 2024 06:34:43 GMT express:router query : /static/test_images/cats/cat1.jpg +Sat, 02 Nov 2024 06:34:43 GMT express:router expressInit : /static/test_images/cats/cat1.jpg +Sat, 02 Nov 2024 06:34:43 GMT express:router jsonParser : /static/test_images/cats/cat1.jpg +Sat, 02 Nov 2024 06:34:43 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:34:43 GMT express:router urlencodedParser : /static/test_images/cats/cat1.jpg +Sat, 02 Nov 2024 06:34:43 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:34:43 GMT express:router corsMiddleware : /static/test_images/cats/cat1.jpg +Sat, 02 Nov 2024 06:34:43 GMT express:router trim prefix (/static) from url /static/test_images/cats/cat1.jpg +Sat, 02 Nov 2024 06:34:43 GMT express:router serveStatic /static : /static/test_images/cats/cat1.jpg +Sat, 02 Nov 2024 06:34:43 GMT send stat "/home/ubuntu/cognimates-training/static/test_images/cats/cat1.jpg" +Sat, 02 Nov 2024 06:34:43 GMT send pipe "/home/ubuntu/cognimates-training/static/test_images/cats/cat1.jpg" +Serving static file: /static/test_images/cats/cat1.jpg (image/jpeg) +Sat, 02 Nov 2024 06:34:43 GMT send accept ranges +Sat, 02 Nov 2024 06:34:43 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:34:43 GMT send modified Fri, 01 Nov 2024 20:10:14 GMT +Sat, 02 Nov 2024 06:34:43 GMT send etag W/"27f-192e9599453" +Sat, 02 Nov 2024 06:34:44 GMT express:router dispatching GET /static/test_images/cats/cat2.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router query : /static/test_images/cats/cat2.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router expressInit : /static/test_images/cats/cat2.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router jsonParser : /static/test_images/cats/cat2.jpg +Sat, 02 Nov 2024 06:34:44 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:34:44 GMT express:router urlencodedParser : /static/test_images/cats/cat2.jpg +Sat, 02 Nov 2024 06:34:44 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:34:44 GMT express:router corsMiddleware : /static/test_images/cats/cat2.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router trim prefix (/static) from url /static/test_images/cats/cat2.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router serveStatic /static : /static/test_images/cats/cat2.jpg +Sat, 02 Nov 2024 06:34:44 GMT send stat "/home/ubuntu/cognimates-training/static/test_images/cats/cat2.jpg" +Sat, 02 Nov 2024 06:34:44 GMT send pipe "/home/ubuntu/cognimates-training/static/test_images/cats/cat2.jpg" +Serving static file: /static/test_images/cats/cat2.jpg (image/jpeg) +Sat, 02 Nov 2024 06:34:44 GMT send accept ranges +Sat, 02 Nov 2024 06:34:44 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:34:44 GMT send modified Fri, 01 Nov 2024 20:10:14 GMT +Sat, 02 Nov 2024 06:34:44 GMT send etag W/"27f-192e9599453" +Sat, 02 Nov 2024 06:34:44 GMT express:router dispatching GET /static/test_images/cats/cat3.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router query : /static/test_images/cats/cat3.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router expressInit : /static/test_images/cats/cat3.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router jsonParser : /static/test_images/cats/cat3.jpg +Sat, 02 Nov 2024 06:34:44 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:34:44 GMT express:router urlencodedParser : /static/test_images/cats/cat3.jpg +Sat, 02 Nov 2024 06:34:44 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:34:44 GMT express:router corsMiddleware : /static/test_images/cats/cat3.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router trim prefix (/static) from url /static/test_images/cats/cat3.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router serveStatic /static : /static/test_images/cats/cat3.jpg +Sat, 02 Nov 2024 06:34:44 GMT send stat "/home/ubuntu/cognimates-training/static/test_images/cats/cat3.jpg" +Sat, 02 Nov 2024 06:34:44 GMT send pipe "/home/ubuntu/cognimates-training/static/test_images/cats/cat3.jpg" +Serving static file: /static/test_images/cats/cat3.jpg (image/jpeg) +Sat, 02 Nov 2024 06:34:44 GMT send accept ranges +Sat, 02 Nov 2024 06:34:44 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:34:44 GMT send modified Fri, 01 Nov 2024 20:10:14 GMT +Sat, 02 Nov 2024 06:34:44 GMT send etag W/"27f-192e9599457" +Sat, 02 Nov 2024 06:34:44 GMT express:router dispatching GET /static/test_images/cats/cat4.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router query : /static/test_images/cats/cat4.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router expressInit : /static/test_images/cats/cat4.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router jsonParser : /static/test_images/cats/cat4.jpg +Sat, 02 Nov 2024 06:34:44 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:34:44 GMT express:router urlencodedParser : /static/test_images/cats/cat4.jpg +Sat, 02 Nov 2024 06:34:44 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:34:44 GMT express:router corsMiddleware : /static/test_images/cats/cat4.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router trim prefix (/static) from url /static/test_images/cats/cat4.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router serveStatic /static : /static/test_images/cats/cat4.jpg +Sat, 02 Nov 2024 06:34:44 GMT send stat "/home/ubuntu/cognimates-training/static/test_images/cats/cat4.jpg" +Sat, 02 Nov 2024 06:34:44 GMT send pipe "/home/ubuntu/cognimates-training/static/test_images/cats/cat4.jpg" +Serving static file: /static/test_images/cats/cat4.jpg (image/jpeg) +Sat, 02 Nov 2024 06:34:44 GMT send accept ranges +Sat, 02 Nov 2024 06:34:44 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:34:44 GMT send modified Fri, 01 Nov 2024 20:10:14 GMT +Sat, 02 Nov 2024 06:34:44 GMT send etag W/"27f-192e9599457" +Sat, 02 Nov 2024 06:34:44 GMT express:router dispatching GET /static/test_images/cats/cat5.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router query : /static/test_images/cats/cat5.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router expressInit : /static/test_images/cats/cat5.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router jsonParser : /static/test_images/cats/cat5.jpg +Sat, 02 Nov 2024 06:34:44 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:34:44 GMT express:router urlencodedParser : /static/test_images/cats/cat5.jpg +Sat, 02 Nov 2024 06:34:44 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:34:44 GMT express:router corsMiddleware : /static/test_images/cats/cat5.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router trim prefix (/static) from url /static/test_images/cats/cat5.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router serveStatic /static : /static/test_images/cats/cat5.jpg +Sat, 02 Nov 2024 06:34:44 GMT send stat "/home/ubuntu/cognimates-training/static/test_images/cats/cat5.jpg" +Sat, 02 Nov 2024 06:34:44 GMT send pipe "/home/ubuntu/cognimates-training/static/test_images/cats/cat5.jpg" +Serving static file: /static/test_images/cats/cat5.jpg (image/jpeg) +Sat, 02 Nov 2024 06:34:44 GMT send accept ranges +Sat, 02 Nov 2024 06:34:44 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:34:44 GMT send modified Fri, 01 Nov 2024 20:10:15 GMT +Sat, 02 Nov 2024 06:34:44 GMT send etag W/"27f-192e959945b" +Sat, 02 Nov 2024 06:34:44 GMT express:router dispatching GET /static/test_images/cats/cat6.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router query : /static/test_images/cats/cat6.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router expressInit : /static/test_images/cats/cat6.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router jsonParser : /static/test_images/cats/cat6.jpg +Sat, 02 Nov 2024 06:34:44 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:34:44 GMT express:router urlencodedParser : /static/test_images/cats/cat6.jpg +Sat, 02 Nov 2024 06:34:44 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:34:44 GMT express:router corsMiddleware : /static/test_images/cats/cat6.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router trim prefix (/static) from url /static/test_images/cats/cat6.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router serveStatic /static : /static/test_images/cats/cat6.jpg +Sat, 02 Nov 2024 06:34:44 GMT send stat "/home/ubuntu/cognimates-training/static/test_images/cats/cat6.jpg" +Sat, 02 Nov 2024 06:34:44 GMT send pipe "/home/ubuntu/cognimates-training/static/test_images/cats/cat6.jpg" +Serving static file: /static/test_images/cats/cat6.jpg (image/jpeg) +Sat, 02 Nov 2024 06:34:44 GMT send accept ranges +Sat, 02 Nov 2024 06:34:44 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:34:44 GMT send modified Fri, 01 Nov 2024 20:10:15 GMT +Sat, 02 Nov 2024 06:34:44 GMT send etag W/"27f-192e959945b" +Sat, 02 Nov 2024 06:34:44 GMT express:router dispatching GET /static/test_images/cats/cat7.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router query : /static/test_images/cats/cat7.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router expressInit : /static/test_images/cats/cat7.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router jsonParser : /static/test_images/cats/cat7.jpg +Sat, 02 Nov 2024 06:34:44 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:34:44 GMT express:router urlencodedParser : /static/test_images/cats/cat7.jpg +Sat, 02 Nov 2024 06:34:44 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:34:44 GMT express:router corsMiddleware : /static/test_images/cats/cat7.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router trim prefix (/static) from url /static/test_images/cats/cat7.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router serveStatic /static : /static/test_images/cats/cat7.jpg +Sat, 02 Nov 2024 06:34:44 GMT send stat "/home/ubuntu/cognimates-training/static/test_images/cats/cat7.jpg" +Sat, 02 Nov 2024 06:34:44 GMT send pipe "/home/ubuntu/cognimates-training/static/test_images/cats/cat7.jpg" +Serving static file: /static/test_images/cats/cat7.jpg (image/jpeg) +Sat, 02 Nov 2024 06:34:44 GMT send accept ranges +Sat, 02 Nov 2024 06:34:44 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:34:44 GMT send modified Fri, 01 Nov 2024 20:10:15 GMT +Sat, 02 Nov 2024 06:34:44 GMT send etag W/"27f-192e959945f" +Sat, 02 Nov 2024 06:34:44 GMT express:router dispatching GET /static/test_images/cats/cat8.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router query : /static/test_images/cats/cat8.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router expressInit : /static/test_images/cats/cat8.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router jsonParser : /static/test_images/cats/cat8.jpg +Sat, 02 Nov 2024 06:34:44 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:34:44 GMT express:router urlencodedParser : /static/test_images/cats/cat8.jpg +Sat, 02 Nov 2024 06:34:44 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:34:44 GMT express:router corsMiddleware : /static/test_images/cats/cat8.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router trim prefix (/static) from url /static/test_images/cats/cat8.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router serveStatic /static : /static/test_images/cats/cat8.jpg +Sat, 02 Nov 2024 06:34:44 GMT send stat "/home/ubuntu/cognimates-training/static/test_images/cats/cat8.jpg" +Sat, 02 Nov 2024 06:34:44 GMT send pipe "/home/ubuntu/cognimates-training/static/test_images/cats/cat8.jpg" +Serving static file: /static/test_images/cats/cat8.jpg (image/jpeg) +Sat, 02 Nov 2024 06:34:44 GMT send accept ranges +Sat, 02 Nov 2024 06:34:44 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:34:44 GMT send modified Fri, 01 Nov 2024 20:10:15 GMT +Sat, 02 Nov 2024 06:34:44 GMT send etag W/"27f-192e959945f" +Sat, 02 Nov 2024 06:34:44 GMT express:router dispatching GET /static/test_images/cats/cat9.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router query : /static/test_images/cats/cat9.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router expressInit : /static/test_images/cats/cat9.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router jsonParser : /static/test_images/cats/cat9.jpg +Sat, 02 Nov 2024 06:34:44 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:34:44 GMT express:router urlencodedParser : /static/test_images/cats/cat9.jpg +Sat, 02 Nov 2024 06:34:44 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:34:44 GMT express:router corsMiddleware : /static/test_images/cats/cat9.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router trim prefix (/static) from url /static/test_images/cats/cat9.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router serveStatic /static : /static/test_images/cats/cat9.jpg +Sat, 02 Nov 2024 06:34:44 GMT send stat "/home/ubuntu/cognimates-training/static/test_images/cats/cat9.jpg" +Sat, 02 Nov 2024 06:34:44 GMT send pipe "/home/ubuntu/cognimates-training/static/test_images/cats/cat9.jpg" +Serving static file: /static/test_images/cats/cat9.jpg (image/jpeg) +Sat, 02 Nov 2024 06:34:44 GMT send accept ranges +Sat, 02 Nov 2024 06:34:44 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:34:44 GMT send modified Fri, 01 Nov 2024 20:10:15 GMT +Sat, 02 Nov 2024 06:34:44 GMT send etag W/"27f-192e9599463" +Sat, 02 Nov 2024 06:34:44 GMT express:router dispatching GET /static/test_images/cats/cat10.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router query : /static/test_images/cats/cat10.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router expressInit : /static/test_images/cats/cat10.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router jsonParser : /static/test_images/cats/cat10.jpg +Sat, 02 Nov 2024 06:34:44 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:34:44 GMT express:router urlencodedParser : /static/test_images/cats/cat10.jpg +Sat, 02 Nov 2024 06:34:44 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:34:44 GMT express:router corsMiddleware : /static/test_images/cats/cat10.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router trim prefix (/static) from url /static/test_images/cats/cat10.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router serveStatic /static : /static/test_images/cats/cat10.jpg +Sat, 02 Nov 2024 06:34:44 GMT send stat "/home/ubuntu/cognimates-training/static/test_images/cats/cat10.jpg" +Sat, 02 Nov 2024 06:34:44 GMT send pipe "/home/ubuntu/cognimates-training/static/test_images/cats/cat10.jpg" +Serving static file: /static/test_images/cats/cat10.jpg (image/jpeg) +Sat, 02 Nov 2024 06:34:44 GMT send accept ranges +Sat, 02 Nov 2024 06:34:44 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:34:44 GMT send modified Fri, 01 Nov 2024 20:10:15 GMT +Sat, 02 Nov 2024 06:34:44 GMT send etag W/"27f-192e9599463" +Sat, 02 Nov 2024 06:34:44 GMT express:router dispatching GET /static/test_images/dogs/dog1.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router query : /static/test_images/dogs/dog1.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router expressInit : /static/test_images/dogs/dog1.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router jsonParser : /static/test_images/dogs/dog1.jpg +Sat, 02 Nov 2024 06:34:44 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:34:44 GMT express:router urlencodedParser : /static/test_images/dogs/dog1.jpg +Sat, 02 Nov 2024 06:34:44 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:34:44 GMT express:router corsMiddleware : /static/test_images/dogs/dog1.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router trim prefix (/static) from url /static/test_images/dogs/dog1.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router serveStatic /static : /static/test_images/dogs/dog1.jpg +Sat, 02 Nov 2024 06:34:44 GMT send stat "/home/ubuntu/cognimates-training/static/test_images/dogs/dog1.jpg" +Sat, 02 Nov 2024 06:34:44 GMT send pipe "/home/ubuntu/cognimates-training/static/test_images/dogs/dog1.jpg" +Serving static file: /static/test_images/dogs/dog1.jpg (image/jpeg) +Sat, 02 Nov 2024 06:34:44 GMT send accept ranges +Sat, 02 Nov 2024 06:34:44 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:34:44 GMT send modified Fri, 01 Nov 2024 20:10:15 GMT +Sat, 02 Nov 2024 06:34:44 GMT send etag W/"280-192e9599467" +Sat, 02 Nov 2024 06:34:44 GMT express:router dispatching GET /static/test_images/dogs/dog2.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router query : /static/test_images/dogs/dog2.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router expressInit : /static/test_images/dogs/dog2.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router jsonParser : /static/test_images/dogs/dog2.jpg +Sat, 02 Nov 2024 06:34:44 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:34:44 GMT express:router urlencodedParser : /static/test_images/dogs/dog2.jpg +Sat, 02 Nov 2024 06:34:44 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:34:44 GMT express:router corsMiddleware : /static/test_images/dogs/dog2.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router trim prefix (/static) from url /static/test_images/dogs/dog2.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router serveStatic /static : /static/test_images/dogs/dog2.jpg +Sat, 02 Nov 2024 06:34:44 GMT send stat "/home/ubuntu/cognimates-training/static/test_images/dogs/dog2.jpg" +Sat, 02 Nov 2024 06:34:44 GMT send pipe "/home/ubuntu/cognimates-training/static/test_images/dogs/dog2.jpg" +Serving static file: /static/test_images/dogs/dog2.jpg (image/jpeg) +Sat, 02 Nov 2024 06:34:44 GMT send accept ranges +Sat, 02 Nov 2024 06:34:44 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:34:44 GMT send modified Fri, 01 Nov 2024 20:10:15 GMT +Sat, 02 Nov 2024 06:34:44 GMT send etag W/"280-192e9599467" +Sat, 02 Nov 2024 06:34:44 GMT express:router dispatching GET /static/test_images/dogs/dog3.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router query : /static/test_images/dogs/dog3.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router expressInit : /static/test_images/dogs/dog3.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router jsonParser : /static/test_images/dogs/dog3.jpg +Sat, 02 Nov 2024 06:34:44 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:34:44 GMT express:router urlencodedParser : /static/test_images/dogs/dog3.jpg +Sat, 02 Nov 2024 06:34:44 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:34:44 GMT express:router corsMiddleware : /static/test_images/dogs/dog3.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router trim prefix (/static) from url /static/test_images/dogs/dog3.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router serveStatic /static : /static/test_images/dogs/dog3.jpg +Sat, 02 Nov 2024 06:34:44 GMT send stat "/home/ubuntu/cognimates-training/static/test_images/dogs/dog3.jpg" +Sat, 02 Nov 2024 06:34:44 GMT send pipe "/home/ubuntu/cognimates-training/static/test_images/dogs/dog3.jpg" +Serving static file: /static/test_images/dogs/dog3.jpg (image/jpeg) +Sat, 02 Nov 2024 06:34:44 GMT send accept ranges +Sat, 02 Nov 2024 06:34:44 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:34:44 GMT send modified Fri, 01 Nov 2024 20:10:15 GMT +Sat, 02 Nov 2024 06:34:44 GMT send etag W/"280-192e959946b" +Sat, 02 Nov 2024 06:34:44 GMT express:router dispatching GET /static/test_images/dogs/dog4.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router query : /static/test_images/dogs/dog4.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router expressInit : /static/test_images/dogs/dog4.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router jsonParser : /static/test_images/dogs/dog4.jpg +Sat, 02 Nov 2024 06:34:44 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:34:44 GMT express:router urlencodedParser : /static/test_images/dogs/dog4.jpg +Sat, 02 Nov 2024 06:34:44 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:34:44 GMT express:router corsMiddleware : /static/test_images/dogs/dog4.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router trim prefix (/static) from url /static/test_images/dogs/dog4.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router serveStatic /static : /static/test_images/dogs/dog4.jpg +Sat, 02 Nov 2024 06:34:44 GMT send stat "/home/ubuntu/cognimates-training/static/test_images/dogs/dog4.jpg" +Sat, 02 Nov 2024 06:34:44 GMT send pipe "/home/ubuntu/cognimates-training/static/test_images/dogs/dog4.jpg" +Serving static file: /static/test_images/dogs/dog4.jpg (image/jpeg) +Sat, 02 Nov 2024 06:34:44 GMT send accept ranges +Sat, 02 Nov 2024 06:34:44 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:34:44 GMT send modified Fri, 01 Nov 2024 20:10:15 GMT +Sat, 02 Nov 2024 06:34:44 GMT send etag W/"280-192e959946b" +Sat, 02 Nov 2024 06:34:44 GMT express:router dispatching GET /static/test_images/dogs/dog5.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router query : /static/test_images/dogs/dog5.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router expressInit : /static/test_images/dogs/dog5.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router jsonParser : /static/test_images/dogs/dog5.jpg +Sat, 02 Nov 2024 06:34:44 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:34:44 GMT express:router urlencodedParser : /static/test_images/dogs/dog5.jpg +Sat, 02 Nov 2024 06:34:44 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:34:44 GMT express:router corsMiddleware : /static/test_images/dogs/dog5.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router trim prefix (/static) from url /static/test_images/dogs/dog5.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router serveStatic /static : /static/test_images/dogs/dog5.jpg +Sat, 02 Nov 2024 06:34:44 GMT send stat "/home/ubuntu/cognimates-training/static/test_images/dogs/dog5.jpg" +Sat, 02 Nov 2024 06:34:44 GMT send pipe "/home/ubuntu/cognimates-training/static/test_images/dogs/dog5.jpg" +Serving static file: /static/test_images/dogs/dog5.jpg (image/jpeg) +Sat, 02 Nov 2024 06:34:44 GMT send accept ranges +Sat, 02 Nov 2024 06:34:44 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:34:44 GMT send modified Fri, 01 Nov 2024 20:10:15 GMT +Sat, 02 Nov 2024 06:34:44 GMT send etag W/"280-192e959946f" +Sat, 02 Nov 2024 06:34:44 GMT express:router dispatching GET /static/test_images/dogs/dog6.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router query : /static/test_images/dogs/dog6.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router expressInit : /static/test_images/dogs/dog6.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router jsonParser : /static/test_images/dogs/dog6.jpg +Sat, 02 Nov 2024 06:34:44 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:34:44 GMT express:router urlencodedParser : /static/test_images/dogs/dog6.jpg +Sat, 02 Nov 2024 06:34:44 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:34:44 GMT express:router corsMiddleware : /static/test_images/dogs/dog6.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router trim prefix (/static) from url /static/test_images/dogs/dog6.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router serveStatic /static : /static/test_images/dogs/dog6.jpg +Sat, 02 Nov 2024 06:34:44 GMT send stat "/home/ubuntu/cognimates-training/static/test_images/dogs/dog6.jpg" +Sat, 02 Nov 2024 06:34:44 GMT send pipe "/home/ubuntu/cognimates-training/static/test_images/dogs/dog6.jpg" +Serving static file: /static/test_images/dogs/dog6.jpg (image/jpeg) +Sat, 02 Nov 2024 06:34:44 GMT send accept ranges +Sat, 02 Nov 2024 06:34:44 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:34:44 GMT send modified Fri, 01 Nov 2024 20:10:15 GMT +Sat, 02 Nov 2024 06:34:44 GMT send etag W/"280-192e959946f" +Sat, 02 Nov 2024 06:34:44 GMT express:router dispatching GET /static/test_images/dogs/dog7.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router query : /static/test_images/dogs/dog7.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router expressInit : /static/test_images/dogs/dog7.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router jsonParser : /static/test_images/dogs/dog7.jpg +Sat, 02 Nov 2024 06:34:44 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:34:44 GMT express:router urlencodedParser : /static/test_images/dogs/dog7.jpg +Sat, 02 Nov 2024 06:34:44 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:34:44 GMT express:router corsMiddleware : /static/test_images/dogs/dog7.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router trim prefix (/static) from url /static/test_images/dogs/dog7.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router serveStatic /static : /static/test_images/dogs/dog7.jpg +Sat, 02 Nov 2024 06:34:44 GMT send stat "/home/ubuntu/cognimates-training/static/test_images/dogs/dog7.jpg" +Sat, 02 Nov 2024 06:34:44 GMT send pipe "/home/ubuntu/cognimates-training/static/test_images/dogs/dog7.jpg" +Serving static file: /static/test_images/dogs/dog7.jpg (image/jpeg) +Sat, 02 Nov 2024 06:34:44 GMT send accept ranges +Sat, 02 Nov 2024 06:34:44 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:34:44 GMT send modified Fri, 01 Nov 2024 20:10:15 GMT +Sat, 02 Nov 2024 06:34:44 GMT send etag W/"280-192e9599473" +Sat, 02 Nov 2024 06:34:44 GMT express:router dispatching GET /static/test_images/dogs/dog8.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router query : /static/test_images/dogs/dog8.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router expressInit : /static/test_images/dogs/dog8.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router jsonParser : /static/test_images/dogs/dog8.jpg +Sat, 02 Nov 2024 06:34:44 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:34:44 GMT express:router urlencodedParser : /static/test_images/dogs/dog8.jpg +Sat, 02 Nov 2024 06:34:44 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:34:44 GMT express:router corsMiddleware : /static/test_images/dogs/dog8.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router trim prefix (/static) from url /static/test_images/dogs/dog8.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router serveStatic /static : /static/test_images/dogs/dog8.jpg +Sat, 02 Nov 2024 06:34:44 GMT send stat "/home/ubuntu/cognimates-training/static/test_images/dogs/dog8.jpg" +Sat, 02 Nov 2024 06:34:44 GMT send pipe "/home/ubuntu/cognimates-training/static/test_images/dogs/dog8.jpg" +Serving static file: /static/test_images/dogs/dog8.jpg (image/jpeg) +Sat, 02 Nov 2024 06:34:44 GMT send accept ranges +Sat, 02 Nov 2024 06:34:44 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:34:44 GMT send modified Fri, 01 Nov 2024 20:10:15 GMT +Sat, 02 Nov 2024 06:34:44 GMT send etag W/"280-192e9599473" +Sat, 02 Nov 2024 06:34:44 GMT express:router dispatching GET /static/test_images/dogs/dog9.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router query : /static/test_images/dogs/dog9.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router expressInit : /static/test_images/dogs/dog9.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router jsonParser : /static/test_images/dogs/dog9.jpg +Sat, 02 Nov 2024 06:34:44 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:34:44 GMT express:router urlencodedParser : /static/test_images/dogs/dog9.jpg +Sat, 02 Nov 2024 06:34:44 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:34:44 GMT express:router corsMiddleware : /static/test_images/dogs/dog9.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router trim prefix (/static) from url /static/test_images/dogs/dog9.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router serveStatic /static : /static/test_images/dogs/dog9.jpg +Sat, 02 Nov 2024 06:34:44 GMT send stat "/home/ubuntu/cognimates-training/static/test_images/dogs/dog9.jpg" +Sat, 02 Nov 2024 06:34:44 GMT send pipe "/home/ubuntu/cognimates-training/static/test_images/dogs/dog9.jpg" +Serving static file: /static/test_images/dogs/dog9.jpg (image/jpeg) +Sat, 02 Nov 2024 06:34:44 GMT send accept ranges +Sat, 02 Nov 2024 06:34:44 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:34:44 GMT send modified Fri, 01 Nov 2024 20:10:15 GMT +Sat, 02 Nov 2024 06:34:44 GMT send etag W/"280-192e9599477" +Sat, 02 Nov 2024 06:34:44 GMT express:router dispatching GET /static/test_images/dogs/dog10.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router query : /static/test_images/dogs/dog10.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router expressInit : /static/test_images/dogs/dog10.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router jsonParser : /static/test_images/dogs/dog10.jpg +Sat, 02 Nov 2024 06:34:44 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:34:44 GMT express:router urlencodedParser : /static/test_images/dogs/dog10.jpg +Sat, 02 Nov 2024 06:34:44 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:34:44 GMT express:router corsMiddleware : /static/test_images/dogs/dog10.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router trim prefix (/static) from url /static/test_images/dogs/dog10.jpg +Sat, 02 Nov 2024 06:34:44 GMT express:router serveStatic /static : /static/test_images/dogs/dog10.jpg +Sat, 02 Nov 2024 06:34:44 GMT send stat "/home/ubuntu/cognimates-training/static/test_images/dogs/dog10.jpg" +Sat, 02 Nov 2024 06:34:44 GMT send pipe "/home/ubuntu/cognimates-training/static/test_images/dogs/dog10.jpg" +Serving static file: /static/test_images/dogs/dog10.jpg (image/jpeg) +Sat, 02 Nov 2024 06:34:44 GMT send accept ranges +Sat, 02 Nov 2024 06:34:44 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:34:44 GMT send modified Fri, 01 Nov 2024 20:10:15 GMT +Sat, 02 Nov 2024 06:34:44 GMT send etag W/"280-192e9599477" +Sat, 02 Nov 2024 06:34:47 GMT express:router dispatching GET /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:34:47 GMT express:router query : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:34:47 GMT express:router expressInit : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:34:47 GMT express:router jsonParser : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:34:47 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:34:47 GMT express:router urlencodedParser : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:34:47 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:34:47 GMT express:router corsMiddleware : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:34:47 GMT express:router trim prefix (/static) from url /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:34:47 GMT express:router serveStatic /static : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:34:47 GMT send stat "/home/ubuntu/cognimates-training/static/images/cognimates-logo--codelab.svg" +Sat, 02 Nov 2024 06:34:47 GMT express:router dispatching GET /static/images/vision_banner.png +Sat, 02 Nov 2024 06:34:47 GMT express:router query : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:34:47 GMT express:router expressInit : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:34:47 GMT express:router jsonParser : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:34:47 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:34:47 GMT express:router urlencodedParser : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:34:47 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:34:47 GMT express:router corsMiddleware : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:34:47 GMT express:router trim prefix (/static) from url /static/images/vision_banner.png +Sat, 02 Nov 2024 06:34:47 GMT express:router serveStatic /static : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:34:47 GMT send stat "/home/ubuntu/cognimates-training/static/images/vision_banner.png" +Sat, 02 Nov 2024 06:34:47 GMT express:router dispatching GET /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:34:47 GMT express:router query : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:34:47 GMT express:router expressInit : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:34:47 GMT express:router jsonParser : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:34:47 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:34:47 GMT express:router urlencodedParser : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:34:47 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:34:47 GMT express:router corsMiddleware : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:34:47 GMT express:router trim prefix (/static) from url /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:34:47 GMT express:router serveStatic /static : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:34:47 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/mit-media-lab--white.svg" +Sat, 02 Nov 2024 06:34:47 GMT send pipe "/home/ubuntu/cognimates-training/static/images/cognimates-logo--codelab.svg" +Serving static file: /static/images/cognimates-logo--codelab.svg (image/svg+xml) +Sat, 02 Nov 2024 06:34:47 GMT send accept ranges +Sat, 02 Nov 2024 06:34:47 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:34:47 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:34:47 GMT send etag W/"9f5-192da706627" +Sat, 02 Nov 2024 06:34:47 GMT send pipe "/home/ubuntu/cognimates-training/static/images/vision_banner.png" +Serving static file: /static/images/vision_banner.png (image/png) +Sat, 02 Nov 2024 06:34:47 GMT send accept ranges +Sat, 02 Nov 2024 06:34:47 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:34:47 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:34:47 GMT send etag W/"20212-192da70662f" +Sat, 02 Nov 2024 06:34:47 GMT express:router dispatching GET /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:34:47 GMT express:router query : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:34:47 GMT express:router expressInit : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:34:47 GMT express:router jsonParser : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:34:47 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:34:47 GMT express:router urlencodedParser : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:34:47 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:34:47 GMT express:router corsMiddleware : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:34:47 GMT express:router trim prefix (/static) from url /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:34:47 GMT express:router serveStatic /static : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:34:47 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/twitter--white.svg" +Sat, 02 Nov 2024 06:34:47 GMT express:router dispatching GET /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:34:47 GMT express:router query : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:34:47 GMT express:router expressInit : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:34:47 GMT express:router jsonParser : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:34:47 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:34:47 GMT express:router urlencodedParser : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:34:47 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:34:47 GMT express:router corsMiddleware : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:34:47 GMT express:router trim prefix (/static) from url /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:34:47 GMT express:router serveStatic /static : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:34:47 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/instagram--white.svg" +Sat, 02 Nov 2024 06:34:47 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/twitter--white.svg" +Serving static file: /static/images/social/twitter--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:34:47 GMT send accept ranges +Sat, 02 Nov 2024 06:34:47 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:34:47 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:34:47 GMT send etag W/"712c-192da70662b" +Sat, 02 Nov 2024 06:34:47 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/instagram--white.svg" +Serving static file: /static/images/social/instagram--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:34:47 GMT send accept ranges +Sat, 02 Nov 2024 06:34:47 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:34:47 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:34:47 GMT send etag W/"6ec0-192da70662b" +Sat, 02 Nov 2024 06:34:47 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/mit-media-lab--white.svg" +Serving static file: /static/images/social/mit-media-lab--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:34:47 GMT send accept ranges +Sat, 02 Nov 2024 06:34:47 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:34:47 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:34:47 GMT send etag W/"a7c5-192da70662b" +Sat, 02 Nov 2024 06:34:47 GMT express:router dispatching GET /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:34:47 GMT express:router query : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:34:47 GMT express:router expressInit : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:34:47 GMT express:router jsonParser : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:34:47 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:34:47 GMT express:router urlencodedParser : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:34:47 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:34:47 GMT express:router corsMiddleware : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:34:47 GMT express:router trim prefix (/static) from url /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:34:47 GMT express:router serveStatic /static : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:34:47 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/vimeo--white.svg" +Sat, 02 Nov 2024 06:34:47 GMT express:router dispatching GET /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:34:47 GMT express:router query : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:34:47 GMT express:router expressInit : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:34:47 GMT express:router jsonParser : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:34:47 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:34:47 GMT express:router urlencodedParser : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:34:47 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:34:47 GMT express:router corsMiddleware : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:34:47 GMT express:router trim prefix (/static) from url /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:34:47 GMT express:router serveStatic /static : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:34:47 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/facebook--white.svg" +Sat, 02 Nov 2024 06:34:47 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/vimeo--white.svg" +Serving static file: /static/images/social/vimeo--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:34:47 GMT send accept ranges +Sat, 02 Nov 2024 06:34:47 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:34:47 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:34:47 GMT send etag W/"6b42-192da70662b" +Sat, 02 Nov 2024 06:34:47 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/facebook--white.svg" +Serving static file: /static/images/social/facebook--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:34:47 GMT send accept ranges +Sat, 02 Nov 2024 06:34:47 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:34:47 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:34:47 GMT send etag W/"69e4-192da70662b" +Sat, 02 Nov 2024 06:34:57 GMT express:router dispatching POST /vision/classifier +Sat, 02 Nov 2024 06:34:57 GMT express:router query : /vision/classifier +Sat, 02 Nov 2024 06:34:57 GMT express:router expressInit : /vision/classifier +Sat, 02 Nov 2024 06:34:57 GMT express:router jsonParser : /vision/classifier +Sat, 02 Nov 2024 06:34:57 GMT body-parser:json content-type "application/json" +Sat, 02 Nov 2024 06:34:57 GMT body-parser:json content-encoding "identity" +Sat, 02 Nov 2024 06:34:57 GMT body-parser:json read body +Sat, 02 Nov 2024 06:34:57 GMT body-parser:json parse body +Sat, 02 Nov 2024 06:34:57 GMT body-parser:json parse json +Sat, 02 Nov 2024 06:34:57 GMT express:router urlencodedParser : /vision/classifier +Sat, 02 Nov 2024 06:34:57 GMT body-parser:urlencoded body already parsed +Sat, 02 Nov 2024 06:34:57 GMT express:router corsMiddleware : /vision/classifier +Sat, 02 Nov 2024 06:34:57 GMT express:router router : /vision/classifier +Sat, 02 Nov 2024 06:34:57 GMT express:router dispatching POST /vision/classifier +Creating classifier with model ID: catsdogstest +Checking if model catsdogstest exists... +Sat, 02 Nov 2024 06:34:57 GMT express:router dispatching POST /vision/classifier +Sat, 02 Nov 2024 06:34:57 GMT express:router query : /vision/classifier +Sat, 02 Nov 2024 06:34:57 GMT express:router expressInit : /vision/classifier +Sat, 02 Nov 2024 06:34:57 GMT express:router jsonParser : /vision/classifier +Sat, 02 Nov 2024 06:34:57 GMT body-parser:json content-type "application/json" +Sat, 02 Nov 2024 06:34:57 GMT body-parser:json content-encoding "identity" +Sat, 02 Nov 2024 06:34:57 GMT body-parser:json read body +Sat, 02 Nov 2024 06:34:57 GMT body-parser:json parse body +Sat, 02 Nov 2024 06:34:57 GMT body-parser:json parse json +Sat, 02 Nov 2024 06:34:57 GMT express:router urlencodedParser : /vision/classifier +Sat, 02 Nov 2024 06:34:57 GMT body-parser:urlencoded body already parsed +Sat, 02 Nov 2024 06:34:57 GMT express:router corsMiddleware : /vision/classifier +Sat, 02 Nov 2024 06:34:57 GMT express:router router : /vision/classifier +Sat, 02 Nov 2024 06:34:57 GMT express:router dispatching POST /vision/classifier +Creating classifier with model ID: catsdogstest +Checking if model catsdogstest exists... +No existing model found, proceeding with creation +Creating model with request: { + "model": { + "id": "catsdogstest", + "name": "catsdogstest", + "model_type_id": "embedding-classifier", + "concepts": [ + { + "id": "dogs", + "name": "dogs" + }, + { + "id": "cats", + "name": "cats" + } + ], + "output_info": { + "data": { + "concepts": [ + { + "id": "dogs", + "name": "dogs" + }, + { + "id": "cats", + "name": "cats" + } + ] + }, + "output_config": { + "concepts_mutually_exclusive": false, + "closed_environment": false, + "max_concepts": 2 + } + } + } +} +No existing model found, proceeding with creation +Creating model with request: { + "model": { + "id": "catsdogstest", + "name": "catsdogstest", + "model_type_id": "embedding-classifier", + "concepts": [ + { + "id": "dogs", + "name": "dogs" + }, + { + "id": "cats", + "name": "cats" + } + ], + "output_info": { + "data": { + "concepts": [ + { + "id": "dogs", + "name": "dogs" + }, + { + "id": "cats", + "name": "cats" + } + ] + }, + "output_config": { + "concepts_mutually_exclusive": false, + "closed_environment": false, + "max_concepts": 2 + } + } + } +} +Create model failed. Details: { + statusCode: 21202, + description: 'Invalid model argument', + modelRequest: { + model: { + id: 'catsdogstest', + name: 'catsdogstest', + model_type_id: 'embedding-classifier', + concepts: [Array], + output_info: [Object] + } + }, + response: { + status: { + stack_trace: [], + code: 21202, + description: 'Invalid model argument', + details: "Model already exists with ID 'catsdogstest'", + percent_completed: 0, + time_remaining: 0, + req_id: 'e5207dc91f4d406abbd6e4b2aa258887', + internal_details: '', + redirect_info: null, + developer_notes: '' + }, + model: null + } +} +Error creating classifier: { + error: 'Create model failed: Invalid model argument (code: 21202)', + stack: 'Error: Create model failed: Invalid model argument (code: 21202)\n' + + ' at exports.createClassifier (/home/ubuntu/cognimates-training/controllers/clarifai.js:293:19)\n' + + ' at process.processTicksAndRejections (node:internal/process/task_queues:95:5)', + modelId: 'catsdogstest', + concepts: [ 'dogs', 'cats' ] +} +Model created successfully: { + "toolkits": [], + "use_cases": [], + "languages": [], + "languages_full": [], + "check_consents": [], + "id": "catsdogstest", + "name": "catsdogstest", + "created_at": { + "seconds": "1730529297", + "nanos": 560840000 + }, + "app_id": "e72f0cd142ab492bba34c28b9c929323", + "output_info": null, + "model_version": null, + "display_name": "", + "user_id": "c7zlh09yxmbf", + "model_type_id": "embedding-classifier", + "visibility": { + "gettable": 10 + }, + "description": "", + "metadata": { + "fields": {} + }, + "notes": "", + "modified_at": { + "seconds": "1730529297", + "nanos": 560840000 + }, + "is_starred": false, + "star_count": 0, + "task": "", + "presets": null, + "workflow_recommended": { + "value": false + }, + "default_eval_info": null, + "bookmark_origin": null, + "image": null, + "license_type": 0, + "source": 0, + "creator": "" +} +Waiting for model initialization... +Sat, 02 Nov 2024 06:35:00 GMT express:router dispatching GET /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:35:00 GMT express:router query : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:35:00 GMT express:router expressInit : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:35:00 GMT express:router jsonParser : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:35:00 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:35:00 GMT express:router urlencodedParser : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:35:00 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:35:00 GMT express:router corsMiddleware : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:35:00 GMT express:router trim prefix (/static) from url /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:35:00 GMT express:router serveStatic /static : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:35:00 GMT send stat "/home/ubuntu/cognimates-training/static/images/cognimates-logo--codelab.svg" +Sat, 02 Nov 2024 06:35:00 GMT express:router dispatching GET /static/images/vision_banner.png +Sat, 02 Nov 2024 06:35:00 GMT express:router query : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:35:00 GMT express:router expressInit : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:35:00 GMT express:router jsonParser : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:35:00 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:35:00 GMT express:router urlencodedParser : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:35:00 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:35:00 GMT express:router corsMiddleware : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:35:00 GMT express:router trim prefix (/static) from url /static/images/vision_banner.png +Sat, 02 Nov 2024 06:35:00 GMT express:router serveStatic /static : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:35:00 GMT send stat "/home/ubuntu/cognimates-training/static/images/vision_banner.png" +Sat, 02 Nov 2024 06:35:00 GMT send pipe "/home/ubuntu/cognimates-training/static/images/cognimates-logo--codelab.svg" +Serving static file: /static/images/cognimates-logo--codelab.svg (image/svg+xml) +Sat, 02 Nov 2024 06:35:00 GMT send accept ranges +Sat, 02 Nov 2024 06:35:00 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:35:00 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:35:00 GMT send etag W/"9f5-192da706627" +Sat, 02 Nov 2024 06:35:00 GMT send pipe "/home/ubuntu/cognimates-training/static/images/vision_banner.png" +Serving static file: /static/images/vision_banner.png (image/png) +Sat, 02 Nov 2024 06:35:00 GMT send accept ranges +Sat, 02 Nov 2024 06:35:00 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:35:00 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:35:00 GMT send etag W/"20212-192da70662f" +Sat, 02 Nov 2024 06:35:00 GMT express:router dispatching GET /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:35:00 GMT express:router query : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:35:00 GMT express:router expressInit : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:35:00 GMT express:router jsonParser : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:35:00 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:35:00 GMT express:router urlencodedParser : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:35:00 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:35:00 GMT express:router corsMiddleware : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:35:00 GMT express:router trim prefix (/static) from url /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:35:00 GMT express:router serveStatic /static : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:35:00 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/mit-media-lab--white.svg" +Sat, 02 Nov 2024 06:35:00 GMT express:router dispatching GET /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:35:00 GMT express:router query : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:35:00 GMT express:router expressInit : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:35:00 GMT express:router jsonParser : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:35:00 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:35:00 GMT express:router urlencodedParser : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:35:00 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:35:00 GMT express:router corsMiddleware : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:35:00 GMT express:router trim prefix (/static) from url /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:35:00 GMT express:router serveStatic /static : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:35:00 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/twitter--white.svg" +Sat, 02 Nov 2024 06:35:00 GMT express:router dispatching GET /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:35:00 GMT express:router query : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:35:00 GMT express:router expressInit : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:35:00 GMT express:router jsonParser : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:35:00 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:35:00 GMT express:router urlencodedParser : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:35:00 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:35:00 GMT express:router corsMiddleware : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:35:00 GMT express:router trim prefix (/static) from url /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:35:00 GMT express:router serveStatic /static : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:35:00 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/instagram--white.svg" +Sat, 02 Nov 2024 06:35:00 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/mit-media-lab--white.svg" +Serving static file: /static/images/social/mit-media-lab--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:35:00 GMT send accept ranges +Sat, 02 Nov 2024 06:35:00 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:35:00 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:35:00 GMT send etag W/"a7c5-192da70662b" +Sat, 02 Nov 2024 06:35:00 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/twitter--white.svg" +Serving static file: /static/images/social/twitter--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:35:00 GMT send accept ranges +Sat, 02 Nov 2024 06:35:00 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:35:00 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:35:00 GMT send etag W/"712c-192da70662b" +Sat, 02 Nov 2024 06:35:00 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/instagram--white.svg" +Serving static file: /static/images/social/instagram--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:35:00 GMT send accept ranges +Sat, 02 Nov 2024 06:35:00 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:35:00 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:35:00 GMT send etag W/"6ec0-192da70662b" +Sat, 02 Nov 2024 06:35:00 GMT express:router dispatching GET /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:35:00 GMT express:router query : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:35:00 GMT express:router expressInit : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:35:00 GMT express:router jsonParser : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:35:00 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:35:00 GMT express:router urlencodedParser : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:35:00 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:35:00 GMT express:router corsMiddleware : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:35:00 GMT express:router trim prefix (/static) from url /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:35:00 GMT express:router serveStatic /static : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:35:00 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/vimeo--white.svg" +Sat, 02 Nov 2024 06:35:00 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/vimeo--white.svg" +Serving static file: /static/images/social/vimeo--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:35:00 GMT send accept ranges +Sat, 02 Nov 2024 06:35:00 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:35:00 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:35:00 GMT send etag W/"6b42-192da70662b" +Sat, 02 Nov 2024 06:35:00 GMT express:router dispatching GET /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:35:00 GMT express:router query : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:35:00 GMT express:router expressInit : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:35:00 GMT express:router jsonParser : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:35:00 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:35:00 GMT express:router urlencodedParser : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:35:00 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:35:00 GMT express:router corsMiddleware : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:35:00 GMT express:router trim prefix (/static) from url /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:35:00 GMT express:router serveStatic /static : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:35:00 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/facebook--white.svg" +Sat, 02 Nov 2024 06:35:00 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/facebook--white.svg" +Serving static file: /static/images/social/facebook--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:35:00 GMT send accept ranges +Sat, 02 Nov 2024 06:35:00 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:35:00 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:35:00 GMT send etag W/"69e4-192da70662b" +Model initialization wait complete +Sat, 02 Nov 2024 06:35:02 GMT express:router dispatching POST /vision/train +Sat, 02 Nov 2024 06:35:02 GMT express:router query : /vision/train +Sat, 02 Nov 2024 06:35:02 GMT express:router expressInit : /vision/train +Sat, 02 Nov 2024 06:35:02 GMT express:router jsonParser : /vision/train +Sat, 02 Nov 2024 06:35:02 GMT body-parser:json content-type "application/json" +Sat, 02 Nov 2024 06:35:02 GMT body-parser:json content-encoding "identity" +Sat, 02 Nov 2024 06:35:02 GMT body-parser:json read body +Sat, 02 Nov 2024 06:35:02 GMT body-parser:json parse body +Sat, 02 Nov 2024 06:35:02 GMT body-parser:json parse json +Sat, 02 Nov 2024 06:35:02 GMT express:router urlencodedParser : /vision/train +Sat, 02 Nov 2024 06:35:02 GMT body-parser:urlencoded body already parsed +Sat, 02 Nov 2024 06:35:02 GMT express:router corsMiddleware : /vision/train +Sat, 02 Nov 2024 06:35:02 GMT express:router router : /vision/train +Sat, 02 Nov 2024 06:35:02 GMT express:router dispatching POST /vision/train +Training classifier with model ID: catsdogstest +Verifying model exists... +Model verification response: { + status: { + stack_trace: [], + code: 10000, + description: 'Ok', + details: '', + percent_completed: 0, + time_remaining: 0, + req_id: '8b593f29c12b496ca23bd73899b8ff8c', + internal_details: '', + redirect_info: null, + developer_notes: '' + }, + model: { + toolkits: [], + use_cases: [], + languages: [], + languages_full: [], + check_consents: [], + id: 'catsdogstest', + name: 'catsdogstest', + created_at: { seconds: '1730529297', nanos: 560840000 }, + app_id: 'e72f0cd142ab492bba34c28b9c929323', + output_info: null, + model_version: null, + display_name: '', + user_id: 'c7zlh09yxmbf', + model_type_id: 'embedding-classifier', + visibility: { gettable: 10 }, + description: '', + metadata: { fields: {} }, + notes: '', + modified_at: { seconds: '1730529297', nanos: 560840000 }, + is_starred: false, + star_count: 0, + task: '', + presets: null, + workflow_recommended: { value: false }, + default_eval_info: null, + bookmark_origin: null, + image: null, + license_type: 0, + source: 0, + creator: '' + } +} +Model found, preparing training data... +Prepared input 1: { category: 'dogs', conceptId: 'dogs', imageSize: 856 } +Prepared input 2: { category: 'dogs', conceptId: 'dogs', imageSize: 856 } +Prepared input 3: { category: 'dogs', conceptId: 'dogs', imageSize: 856 } +Prepared input 4: { category: 'dogs', conceptId: 'dogs', imageSize: 856 } +Prepared input 5: { category: 'dogs', conceptId: 'dogs', imageSize: 856 } +Prepared input 6: { category: 'dogs', conceptId: 'dogs', imageSize: 856 } +Prepared input 7: { category: 'dogs', conceptId: 'dogs', imageSize: 856 } +Prepared input 8: { category: 'dogs', conceptId: 'dogs', imageSize: 856 } +Prepared input 9: { category: 'dogs', conceptId: 'dogs', imageSize: 856 } +Prepared input 10: { category: 'dogs', conceptId: 'dogs', imageSize: 856 } +Prepared input 11: { category: 'cats', conceptId: 'cats', imageSize: 852 } +Prepared input 12: { category: 'cats', conceptId: 'cats', imageSize: 852 } +Prepared input 13: { category: 'cats', conceptId: 'cats', imageSize: 852 } +Prepared input 14: { category: 'cats', conceptId: 'cats', imageSize: 852 } +Prepared input 15: { category: 'cats', conceptId: 'cats', imageSize: 852 } +Prepared input 16: { category: 'cats', conceptId: 'cats', imageSize: 852 } +Prepared input 17: { category: 'cats', conceptId: 'cats', imageSize: 852 } +Prepared input 18: { category: 'cats', conceptId: 'cats', imageSize: 852 } +Prepared input 19: { category: 'cats', conceptId: 'cats', imageSize: 852 } +Prepared input 20: { category: 'cats', conceptId: 'cats', imageSize: 852 } +Adding 20 inputs to model... +Inputs added successfully: { + status: { + stack_trace: [], + code: 10000, + description: 'Ok', + details: 'All inputs successfully added', + percent_completed: 0, + time_remaining: 0, + req_id: '7f9b639624b943debdf1902d3d773c6a', + internal_details: '', + redirect_info: null, + developer_notes: '' + }, + inputCount: 20 +} +Inputs added successfully, waiting for processing... +Starting model training... +Creating model version: version-1730529318171 +Training initiated: { + status: { + stack_trace: [], + code: 21202, + description: 'Invalid model argument', + details: 'The model requires concepts.', + percent_completed: 0, + time_remaining: 0, + req_id: '5b8219cbe1ea4450a69d1093bc42f9ef', + internal_details: '', + redirect_info: null, + developer_notes: '' + }, + modelId: 'catsdogstest', + versionId: 'version-1730529318171' +} +Training failed: { + stack_trace: [], + code: 21202, + description: 'Invalid model argument', + details: 'The model requires concepts.', + percent_completed: 0, + time_remaining: 0, + req_id: '5b8219cbe1ea4450a69d1093bc42f9ef', + internal_details: '', + redirect_info: null, + developer_notes: '' +} +Error training classifier: Error: Training failed: Invalid model argument + at exports.trainClassifier (/home/ubuntu/cognimates-training/controllers/clarifai.js:520:19) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) +Sat, 02 Nov 2024 06:36:08 GMT express:router dispatching GET /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:36:08 GMT express:router query : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:36:08 GMT express:router expressInit : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:36:08 GMT express:router jsonParser : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:36:08 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:36:08 GMT express:router urlencodedParser : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:36:08 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:36:08 GMT express:router corsMiddleware : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:36:08 GMT express:router trim prefix (/static) from url /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:36:08 GMT express:router serveStatic /static : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:36:08 GMT send stat "/home/ubuntu/cognimates-training/static/images/cognimates-logo--codelab.svg" +Sat, 02 Nov 2024 06:36:08 GMT express:router dispatching GET /static/images/vision_banner.png +Sat, 02 Nov 2024 06:36:08 GMT express:router query : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:36:08 GMT express:router expressInit : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:36:08 GMT express:router jsonParser : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:36:08 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:36:08 GMT express:router urlencodedParser : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:36:08 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:36:08 GMT express:router corsMiddleware : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:36:08 GMT express:router trim prefix (/static) from url /static/images/vision_banner.png +Sat, 02 Nov 2024 06:36:08 GMT express:router serveStatic /static : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:36:08 GMT send stat "/home/ubuntu/cognimates-training/static/images/vision_banner.png" +Sat, 02 Nov 2024 06:36:08 GMT express:router dispatching GET /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:36:08 GMT express:router query : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:36:08 GMT express:router expressInit : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:36:08 GMT express:router jsonParser : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:36:08 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:36:08 GMT express:router urlencodedParser : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:36:08 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:36:08 GMT express:router corsMiddleware : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:36:08 GMT express:router trim prefix (/static) from url /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:36:08 GMT express:router serveStatic /static : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:36:08 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/mit-media-lab--white.svg" +Sat, 02 Nov 2024 06:36:08 GMT send pipe "/home/ubuntu/cognimates-training/static/images/cognimates-logo--codelab.svg" +Serving static file: /static/images/cognimates-logo--codelab.svg (image/svg+xml) +Sat, 02 Nov 2024 06:36:08 GMT send accept ranges +Sat, 02 Nov 2024 06:36:08 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:36:08 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:36:08 GMT send etag W/"9f5-192da706627" +Sat, 02 Nov 2024 06:36:08 GMT send pipe "/home/ubuntu/cognimates-training/static/images/vision_banner.png" +Serving static file: /static/images/vision_banner.png (image/png) +Sat, 02 Nov 2024 06:36:08 GMT send accept ranges +Sat, 02 Nov 2024 06:36:08 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:36:08 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:36:08 GMT send etag W/"20212-192da70662f" +Sat, 02 Nov 2024 06:36:08 GMT express:router dispatching GET /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:36:08 GMT express:router query : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:36:08 GMT express:router expressInit : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:36:08 GMT express:router jsonParser : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:36:08 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:36:08 GMT express:router urlencodedParser : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:36:08 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:36:08 GMT express:router corsMiddleware : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:36:08 GMT express:router trim prefix (/static) from url /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:36:08 GMT express:router serveStatic /static : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:36:08 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/twitter--white.svg" +Sat, 02 Nov 2024 06:36:08 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/mit-media-lab--white.svg" +Serving static file: /static/images/social/mit-media-lab--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:36:08 GMT send accept ranges +Sat, 02 Nov 2024 06:36:08 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:36:08 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:36:08 GMT send etag W/"a7c5-192da70662b" +Sat, 02 Nov 2024 06:36:08 GMT express:router dispatching GET /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:36:08 GMT express:router query : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:36:08 GMT express:router expressInit : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:36:08 GMT express:router jsonParser : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:36:08 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:36:08 GMT express:router urlencodedParser : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:36:08 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:36:08 GMT express:router corsMiddleware : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:36:08 GMT express:router trim prefix (/static) from url /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:36:08 GMT express:router serveStatic /static : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:36:08 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/instagram--white.svg" +Sat, 02 Nov 2024 06:36:08 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/twitter--white.svg" +Serving static file: /static/images/social/twitter--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:36:08 GMT send accept ranges +Sat, 02 Nov 2024 06:36:08 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:36:08 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:36:08 GMT send etag W/"712c-192da70662b" +Sat, 02 Nov 2024 06:36:08 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/instagram--white.svg" +Serving static file: /static/images/social/instagram--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:36:08 GMT send accept ranges +Sat, 02 Nov 2024 06:36:08 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:36:08 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:36:08 GMT send etag W/"6ec0-192da70662b" +Sat, 02 Nov 2024 06:36:08 GMT express:router dispatching GET /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:36:08 GMT express:router query : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:36:08 GMT express:router expressInit : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:36:08 GMT express:router jsonParser : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:36:08 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:36:08 GMT express:router urlencodedParser : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:36:08 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:36:08 GMT express:router corsMiddleware : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:36:08 GMT express:router trim prefix (/static) from url /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:36:08 GMT express:router serveStatic /static : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:36:08 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/vimeo--white.svg" +Sat, 02 Nov 2024 06:36:08 GMT express:router dispatching GET /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:36:08 GMT express:router query : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:36:08 GMT express:router expressInit : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:36:08 GMT express:router jsonParser : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:36:08 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:36:08 GMT express:router urlencodedParser : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:36:08 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:36:08 GMT express:router corsMiddleware : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:36:08 GMT express:router trim prefix (/static) from url /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:36:08 GMT express:router serveStatic /static : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:36:08 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/facebook--white.svg" +Sat, 02 Nov 2024 06:36:08 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/vimeo--white.svg" +Serving static file: /static/images/social/vimeo--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:36:08 GMT send accept ranges +Sat, 02 Nov 2024 06:36:08 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:36:08 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:36:08 GMT send etag W/"6b42-192da70662b" +Sat, 02 Nov 2024 06:36:08 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/facebook--white.svg" +Serving static file: /static/images/social/facebook--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:36:08 GMT send accept ranges +Sat, 02 Nov 2024 06:36:08 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:36:08 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:36:08 GMT send etag W/"69e4-192da70662b" +Sat, 02 Nov 2024 06:36:21 GMT express:router dispatching GET /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:36:21 GMT express:router query : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:36:21 GMT express:router expressInit : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:36:21 GMT express:router jsonParser : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:36:21 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:36:21 GMT express:router urlencodedParser : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:36:21 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:36:21 GMT express:router corsMiddleware : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:36:21 GMT express:router trim prefix (/static) from url /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:36:21 GMT express:router serveStatic /static : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:36:21 GMT send stat "/home/ubuntu/cognimates-training/static/images/cognimates-logo--codelab.svg" +Sat, 02 Nov 2024 06:36:21 GMT express:router dispatching GET /static/images/vision_banner.png +Sat, 02 Nov 2024 06:36:21 GMT express:router query : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:36:21 GMT express:router expressInit : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:36:21 GMT express:router jsonParser : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:36:21 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:36:21 GMT express:router urlencodedParser : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:36:21 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:36:21 GMT express:router corsMiddleware : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:36:21 GMT express:router trim prefix (/static) from url /static/images/vision_banner.png +Sat, 02 Nov 2024 06:36:21 GMT express:router serveStatic /static : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:36:21 GMT send stat "/home/ubuntu/cognimates-training/static/images/vision_banner.png" +Sat, 02 Nov 2024 06:36:21 GMT send pipe "/home/ubuntu/cognimates-training/static/images/cognimates-logo--codelab.svg" +Serving static file: /static/images/cognimates-logo--codelab.svg (image/svg+xml) +Sat, 02 Nov 2024 06:36:21 GMT send accept ranges +Sat, 02 Nov 2024 06:36:21 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:36:21 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:36:21 GMT send etag W/"9f5-192da706627" +Sat, 02 Nov 2024 06:36:21 GMT express:router dispatching GET /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:36:21 GMT express:router query : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:36:21 GMT express:router expressInit : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:36:21 GMT express:router jsonParser : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:36:21 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:36:21 GMT express:router urlencodedParser : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:36:21 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:36:21 GMT express:router corsMiddleware : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:36:21 GMT express:router trim prefix (/static) from url /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:36:21 GMT express:router serveStatic /static : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:36:21 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/mit-media-lab--white.svg" +Sat, 02 Nov 2024 06:36:21 GMT send pipe "/home/ubuntu/cognimates-training/static/images/vision_banner.png" +Serving static file: /static/images/vision_banner.png (image/png) +Sat, 02 Nov 2024 06:36:21 GMT send accept ranges +Sat, 02 Nov 2024 06:36:21 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:36:21 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:36:21 GMT send etag W/"20212-192da70662f" +Sat, 02 Nov 2024 06:36:21 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/mit-media-lab--white.svg" +Serving static file: /static/images/social/mit-media-lab--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:36:21 GMT send accept ranges +Sat, 02 Nov 2024 06:36:21 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:36:21 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:36:21 GMT send etag W/"a7c5-192da70662b" +Sat, 02 Nov 2024 06:36:21 GMT express:router dispatching GET /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:36:21 GMT express:router query : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:36:21 GMT express:router expressInit : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:36:21 GMT express:router jsonParser : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:36:21 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:36:21 GMT express:router urlencodedParser : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:36:21 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:36:21 GMT express:router corsMiddleware : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:36:21 GMT express:router trim prefix (/static) from url /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:36:21 GMT express:router serveStatic /static : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:36:21 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/twitter--white.svg" +Sat, 02 Nov 2024 06:36:21 GMT express:router dispatching GET /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:36:21 GMT express:router query : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:36:21 GMT express:router expressInit : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:36:21 GMT express:router jsonParser : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:36:21 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:36:21 GMT express:router urlencodedParser : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:36:21 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:36:21 GMT express:router corsMiddleware : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:36:21 GMT express:router trim prefix (/static) from url /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:36:21 GMT express:router serveStatic /static : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:36:21 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/instagram--white.svg" +Sat, 02 Nov 2024 06:36:21 GMT express:router dispatching GET /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:36:21 GMT express:router query : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:36:21 GMT express:router expressInit : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:36:21 GMT express:router jsonParser : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:36:21 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:36:21 GMT express:router urlencodedParser : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:36:21 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:36:21 GMT express:router corsMiddleware : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:36:21 GMT express:router trim prefix (/static) from url /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:36:21 GMT express:router serveStatic /static : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:36:21 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/vimeo--white.svg" +Sat, 02 Nov 2024 06:36:21 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/twitter--white.svg" +Serving static file: /static/images/social/twitter--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:36:21 GMT send accept ranges +Sat, 02 Nov 2024 06:36:21 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:36:21 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:36:21 GMT send etag W/"712c-192da70662b" +Sat, 02 Nov 2024 06:36:21 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/vimeo--white.svg" +Serving static file: /static/images/social/vimeo--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:36:21 GMT send accept ranges +Sat, 02 Nov 2024 06:36:21 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:36:21 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:36:21 GMT send etag W/"6b42-192da70662b" +Sat, 02 Nov 2024 06:36:21 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/instagram--white.svg" +Serving static file: /static/images/social/instagram--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:36:21 GMT send accept ranges +Sat, 02 Nov 2024 06:36:21 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:36:21 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:36:21 GMT send etag W/"6ec0-192da70662b" +Sat, 02 Nov 2024 06:36:21 GMT express:router dispatching GET /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:36:21 GMT express:router query : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:36:21 GMT express:router expressInit : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:36:21 GMT express:router jsonParser : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:36:21 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:36:21 GMT express:router urlencodedParser : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:36:21 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:36:21 GMT express:router corsMiddleware : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:36:21 GMT express:router trim prefix (/static) from url /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:36:21 GMT express:router serveStatic /static : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:36:21 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/facebook--white.svg" +Sat, 02 Nov 2024 06:36:21 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/facebook--white.svg" +Serving static file: /static/images/social/facebook--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:36:21 GMT send accept ranges +Sat, 02 Nov 2024 06:36:21 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:36:21 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:36:21 GMT send etag W/"69e4-192da70662b" +Sat, 02 Nov 2024 06:36:37 GMT express:router dispatching GET /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:36:37 GMT express:router query : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:36:37 GMT express:router expressInit : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:36:37 GMT express:router jsonParser : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:36:37 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:36:37 GMT express:router urlencodedParser : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:36:37 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:36:37 GMT express:router corsMiddleware : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:36:37 GMT express:router trim prefix (/static) from url /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:36:37 GMT express:router serveStatic /static : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:36:37 GMT send stat "/home/ubuntu/cognimates-training/static/images/cognimates-logo--codelab.svg" +Sat, 02 Nov 2024 06:36:37 GMT express:router dispatching GET /static/images/vision_banner.png +Sat, 02 Nov 2024 06:36:37 GMT express:router query : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:36:37 GMT express:router expressInit : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:36:37 GMT express:router jsonParser : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:36:37 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:36:37 GMT express:router urlencodedParser : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:36:37 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:36:37 GMT express:router corsMiddleware : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:36:37 GMT express:router trim prefix (/static) from url /static/images/vision_banner.png +Sat, 02 Nov 2024 06:36:37 GMT express:router serveStatic /static : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:36:37 GMT send stat "/home/ubuntu/cognimates-training/static/images/vision_banner.png" +Sat, 02 Nov 2024 06:36:37 GMT express:router dispatching GET /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:36:37 GMT express:router query : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:36:37 GMT express:router expressInit : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:36:37 GMT express:router jsonParser : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:36:37 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:36:37 GMT express:router urlencodedParser : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:36:37 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:36:37 GMT express:router corsMiddleware : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:36:37 GMT express:router trim prefix (/static) from url /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:36:37 GMT express:router serveStatic /static : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:36:37 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/mit-media-lab--white.svg" +Sat, 02 Nov 2024 06:36:37 GMT express:router dispatching GET /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:36:37 GMT express:router query : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:36:37 GMT express:router expressInit : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:36:37 GMT express:router jsonParser : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:36:37 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:36:37 GMT express:router urlencodedParser : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:36:37 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:36:37 GMT express:router corsMiddleware : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:36:37 GMT express:router trim prefix (/static) from url /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:36:37 GMT express:router serveStatic /static : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:36:37 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/twitter--white.svg" +Sat, 02 Nov 2024 06:36:37 GMT express:router dispatching GET /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:36:37 GMT express:router query : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:36:37 GMT express:router expressInit : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:36:37 GMT express:router jsonParser : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:36:37 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:36:37 GMT express:router urlencodedParser : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:36:37 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:36:37 GMT express:router corsMiddleware : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:36:37 GMT express:router trim prefix (/static) from url /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:36:37 GMT express:router serveStatic /static : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:36:37 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/instagram--white.svg" +Sat, 02 Nov 2024 06:36:37 GMT express:router dispatching GET /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:36:37 GMT express:router query : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:36:37 GMT express:router expressInit : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:36:37 GMT express:router jsonParser : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:36:37 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:36:37 GMT express:router urlencodedParser : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:36:37 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:36:37 GMT express:router corsMiddleware : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:36:37 GMT express:router trim prefix (/static) from url /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:36:37 GMT express:router serveStatic /static : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:36:37 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/vimeo--white.svg" +Sat, 02 Nov 2024 06:36:37 GMT send pipe "/home/ubuntu/cognimates-training/static/images/cognimates-logo--codelab.svg" +Serving static file: /static/images/cognimates-logo--codelab.svg (image/svg+xml) +Sat, 02 Nov 2024 06:36:37 GMT send accept ranges +Sat, 02 Nov 2024 06:36:37 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:36:37 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:36:37 GMT send etag W/"9f5-192da706627" +Sat, 02 Nov 2024 06:36:37 GMT send pipe "/home/ubuntu/cognimates-training/static/images/vision_banner.png" +Serving static file: /static/images/vision_banner.png (image/png) +Sat, 02 Nov 2024 06:36:37 GMT send accept ranges +Sat, 02 Nov 2024 06:36:37 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:36:37 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:36:37 GMT send etag W/"20212-192da70662f" +Sat, 02 Nov 2024 06:36:37 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/mit-media-lab--white.svg" +Serving static file: /static/images/social/mit-media-lab--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:36:37 GMT send accept ranges +Sat, 02 Nov 2024 06:36:37 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:36:37 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:36:37 GMT send etag W/"a7c5-192da70662b" +Sat, 02 Nov 2024 06:36:37 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/twitter--white.svg" +Serving static file: /static/images/social/twitter--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:36:37 GMT send accept ranges +Sat, 02 Nov 2024 06:36:37 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:36:37 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:36:37 GMT send etag W/"712c-192da70662b" +Sat, 02 Nov 2024 06:36:37 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/instagram--white.svg" +Serving static file: /static/images/social/instagram--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:36:37 GMT send accept ranges +Sat, 02 Nov 2024 06:36:37 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:36:37 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:36:37 GMT send etag W/"6ec0-192da70662b" +Sat, 02 Nov 2024 06:36:37 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/vimeo--white.svg" +Serving static file: /static/images/social/vimeo--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:36:37 GMT send accept ranges +Sat, 02 Nov 2024 06:36:37 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:36:37 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:36:37 GMT send etag W/"6b42-192da70662b" +Sat, 02 Nov 2024 06:36:37 GMT express:router dispatching GET /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:36:37 GMT express:router query : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:36:37 GMT express:router expressInit : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:36:37 GMT express:router jsonParser : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:36:37 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:36:37 GMT express:router urlencodedParser : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:36:37 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:36:37 GMT express:router corsMiddleware : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:36:37 GMT express:router trim prefix (/static) from url /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:36:37 GMT express:router serveStatic /static : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:36:37 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/facebook--white.svg" +Sat, 02 Nov 2024 06:36:37 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/facebook--white.svg" +Serving static file: /static/images/social/facebook--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:36:37 GMT send accept ranges +Sat, 02 Nov 2024 06:36:37 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:36:37 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:36:37 GMT send etag W/"69e4-192da70662b" +Sat, 02 Nov 2024 06:36:56 GMT express:router dispatching GET /static/test_images/cats/cat1.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router query : /static/test_images/cats/cat1.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router expressInit : /static/test_images/cats/cat1.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router jsonParser : /static/test_images/cats/cat1.jpg +Sat, 02 Nov 2024 06:36:56 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:36:56 GMT express:router urlencodedParser : /static/test_images/cats/cat1.jpg +Sat, 02 Nov 2024 06:36:56 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:36:56 GMT express:router corsMiddleware : /static/test_images/cats/cat1.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router trim prefix (/static) from url /static/test_images/cats/cat1.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router serveStatic /static : /static/test_images/cats/cat1.jpg +Sat, 02 Nov 2024 06:36:56 GMT send stat "/home/ubuntu/cognimates-training/static/test_images/cats/cat1.jpg" +Sat, 02 Nov 2024 06:36:56 GMT send pipe "/home/ubuntu/cognimates-training/static/test_images/cats/cat1.jpg" +Serving static file: /static/test_images/cats/cat1.jpg (image/jpeg) +Sat, 02 Nov 2024 06:36:56 GMT send accept ranges +Sat, 02 Nov 2024 06:36:56 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:36:56 GMT send modified Fri, 01 Nov 2024 20:10:14 GMT +Sat, 02 Nov 2024 06:36:56 GMT send etag W/"27f-192e9599453" +Sat, 02 Nov 2024 06:36:56 GMT express:router dispatching GET /static/test_images/cats/cat2.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router query : /static/test_images/cats/cat2.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router expressInit : /static/test_images/cats/cat2.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router jsonParser : /static/test_images/cats/cat2.jpg +Sat, 02 Nov 2024 06:36:56 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:36:56 GMT express:router urlencodedParser : /static/test_images/cats/cat2.jpg +Sat, 02 Nov 2024 06:36:56 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:36:56 GMT express:router corsMiddleware : /static/test_images/cats/cat2.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router trim prefix (/static) from url /static/test_images/cats/cat2.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router serveStatic /static : /static/test_images/cats/cat2.jpg +Sat, 02 Nov 2024 06:36:56 GMT send stat "/home/ubuntu/cognimates-training/static/test_images/cats/cat2.jpg" +Sat, 02 Nov 2024 06:36:56 GMT send pipe "/home/ubuntu/cognimates-training/static/test_images/cats/cat2.jpg" +Serving static file: /static/test_images/cats/cat2.jpg (image/jpeg) +Sat, 02 Nov 2024 06:36:56 GMT send accept ranges +Sat, 02 Nov 2024 06:36:56 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:36:56 GMT send modified Fri, 01 Nov 2024 20:10:14 GMT +Sat, 02 Nov 2024 06:36:56 GMT send etag W/"27f-192e9599453" +Sat, 02 Nov 2024 06:36:56 GMT express:router dispatching GET /static/test_images/cats/cat3.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router query : /static/test_images/cats/cat3.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router expressInit : /static/test_images/cats/cat3.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router jsonParser : /static/test_images/cats/cat3.jpg +Sat, 02 Nov 2024 06:36:56 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:36:56 GMT express:router urlencodedParser : /static/test_images/cats/cat3.jpg +Sat, 02 Nov 2024 06:36:56 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:36:56 GMT express:router corsMiddleware : /static/test_images/cats/cat3.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router trim prefix (/static) from url /static/test_images/cats/cat3.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router serveStatic /static : /static/test_images/cats/cat3.jpg +Sat, 02 Nov 2024 06:36:56 GMT send stat "/home/ubuntu/cognimates-training/static/test_images/cats/cat3.jpg" +Sat, 02 Nov 2024 06:36:56 GMT send pipe "/home/ubuntu/cognimates-training/static/test_images/cats/cat3.jpg" +Serving static file: /static/test_images/cats/cat3.jpg (image/jpeg) +Sat, 02 Nov 2024 06:36:56 GMT send accept ranges +Sat, 02 Nov 2024 06:36:56 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:36:56 GMT send modified Fri, 01 Nov 2024 20:10:14 GMT +Sat, 02 Nov 2024 06:36:56 GMT send etag W/"27f-192e9599457" +Sat, 02 Nov 2024 06:36:56 GMT express:router dispatching GET /static/test_images/cats/cat4.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router query : /static/test_images/cats/cat4.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router expressInit : /static/test_images/cats/cat4.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router jsonParser : /static/test_images/cats/cat4.jpg +Sat, 02 Nov 2024 06:36:56 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:36:56 GMT express:router urlencodedParser : /static/test_images/cats/cat4.jpg +Sat, 02 Nov 2024 06:36:56 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:36:56 GMT express:router corsMiddleware : /static/test_images/cats/cat4.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router trim prefix (/static) from url /static/test_images/cats/cat4.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router serveStatic /static : /static/test_images/cats/cat4.jpg +Sat, 02 Nov 2024 06:36:56 GMT send stat "/home/ubuntu/cognimates-training/static/test_images/cats/cat4.jpg" +Sat, 02 Nov 2024 06:36:56 GMT send pipe "/home/ubuntu/cognimates-training/static/test_images/cats/cat4.jpg" +Serving static file: /static/test_images/cats/cat4.jpg (image/jpeg) +Sat, 02 Nov 2024 06:36:56 GMT send accept ranges +Sat, 02 Nov 2024 06:36:56 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:36:56 GMT send modified Fri, 01 Nov 2024 20:10:14 GMT +Sat, 02 Nov 2024 06:36:56 GMT send etag W/"27f-192e9599457" +Sat, 02 Nov 2024 06:36:56 GMT express:router dispatching GET /static/test_images/cats/cat5.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router query : /static/test_images/cats/cat5.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router expressInit : /static/test_images/cats/cat5.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router jsonParser : /static/test_images/cats/cat5.jpg +Sat, 02 Nov 2024 06:36:56 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:36:56 GMT express:router urlencodedParser : /static/test_images/cats/cat5.jpg +Sat, 02 Nov 2024 06:36:56 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:36:56 GMT express:router corsMiddleware : /static/test_images/cats/cat5.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router trim prefix (/static) from url /static/test_images/cats/cat5.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router serveStatic /static : /static/test_images/cats/cat5.jpg +Sat, 02 Nov 2024 06:36:56 GMT send stat "/home/ubuntu/cognimates-training/static/test_images/cats/cat5.jpg" +Sat, 02 Nov 2024 06:36:56 GMT send pipe "/home/ubuntu/cognimates-training/static/test_images/cats/cat5.jpg" +Serving static file: /static/test_images/cats/cat5.jpg (image/jpeg) +Sat, 02 Nov 2024 06:36:56 GMT send accept ranges +Sat, 02 Nov 2024 06:36:56 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:36:56 GMT send modified Fri, 01 Nov 2024 20:10:15 GMT +Sat, 02 Nov 2024 06:36:56 GMT send etag W/"27f-192e959945b" +Sat, 02 Nov 2024 06:36:56 GMT express:router dispatching GET /static/test_images/cats/cat6.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router query : /static/test_images/cats/cat6.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router expressInit : /static/test_images/cats/cat6.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router jsonParser : /static/test_images/cats/cat6.jpg +Sat, 02 Nov 2024 06:36:56 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:36:56 GMT express:router urlencodedParser : /static/test_images/cats/cat6.jpg +Sat, 02 Nov 2024 06:36:56 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:36:56 GMT express:router corsMiddleware : /static/test_images/cats/cat6.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router trim prefix (/static) from url /static/test_images/cats/cat6.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router serveStatic /static : /static/test_images/cats/cat6.jpg +Sat, 02 Nov 2024 06:36:56 GMT send stat "/home/ubuntu/cognimates-training/static/test_images/cats/cat6.jpg" +Sat, 02 Nov 2024 06:36:56 GMT send pipe "/home/ubuntu/cognimates-training/static/test_images/cats/cat6.jpg" +Serving static file: /static/test_images/cats/cat6.jpg (image/jpeg) +Sat, 02 Nov 2024 06:36:56 GMT send accept ranges +Sat, 02 Nov 2024 06:36:56 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:36:56 GMT send modified Fri, 01 Nov 2024 20:10:15 GMT +Sat, 02 Nov 2024 06:36:56 GMT send etag W/"27f-192e959945b" +Sat, 02 Nov 2024 06:36:56 GMT express:router dispatching GET /static/test_images/cats/cat7.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router query : /static/test_images/cats/cat7.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router expressInit : /static/test_images/cats/cat7.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router jsonParser : /static/test_images/cats/cat7.jpg +Sat, 02 Nov 2024 06:36:56 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:36:56 GMT express:router urlencodedParser : /static/test_images/cats/cat7.jpg +Sat, 02 Nov 2024 06:36:56 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:36:56 GMT express:router corsMiddleware : /static/test_images/cats/cat7.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router trim prefix (/static) from url /static/test_images/cats/cat7.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router serveStatic /static : /static/test_images/cats/cat7.jpg +Sat, 02 Nov 2024 06:36:56 GMT send stat "/home/ubuntu/cognimates-training/static/test_images/cats/cat7.jpg" +Sat, 02 Nov 2024 06:36:56 GMT send pipe "/home/ubuntu/cognimates-training/static/test_images/cats/cat7.jpg" +Serving static file: /static/test_images/cats/cat7.jpg (image/jpeg) +Sat, 02 Nov 2024 06:36:56 GMT send accept ranges +Sat, 02 Nov 2024 06:36:56 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:36:56 GMT send modified Fri, 01 Nov 2024 20:10:15 GMT +Sat, 02 Nov 2024 06:36:56 GMT send etag W/"27f-192e959945f" +Sat, 02 Nov 2024 06:36:56 GMT express:router dispatching GET /static/test_images/cats/cat8.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router query : /static/test_images/cats/cat8.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router expressInit : /static/test_images/cats/cat8.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router jsonParser : /static/test_images/cats/cat8.jpg +Sat, 02 Nov 2024 06:36:56 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:36:56 GMT express:router urlencodedParser : /static/test_images/cats/cat8.jpg +Sat, 02 Nov 2024 06:36:56 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:36:56 GMT express:router corsMiddleware : /static/test_images/cats/cat8.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router trim prefix (/static) from url /static/test_images/cats/cat8.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router serveStatic /static : /static/test_images/cats/cat8.jpg +Sat, 02 Nov 2024 06:36:56 GMT send stat "/home/ubuntu/cognimates-training/static/test_images/cats/cat8.jpg" +Sat, 02 Nov 2024 06:36:56 GMT send pipe "/home/ubuntu/cognimates-training/static/test_images/cats/cat8.jpg" +Serving static file: /static/test_images/cats/cat8.jpg (image/jpeg) +Sat, 02 Nov 2024 06:36:56 GMT send accept ranges +Sat, 02 Nov 2024 06:36:56 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:36:56 GMT send modified Fri, 01 Nov 2024 20:10:15 GMT +Sat, 02 Nov 2024 06:36:56 GMT send etag W/"27f-192e959945f" +Sat, 02 Nov 2024 06:36:56 GMT express:router dispatching GET /static/test_images/cats/cat9.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router query : /static/test_images/cats/cat9.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router expressInit : /static/test_images/cats/cat9.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router jsonParser : /static/test_images/cats/cat9.jpg +Sat, 02 Nov 2024 06:36:56 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:36:56 GMT express:router urlencodedParser : /static/test_images/cats/cat9.jpg +Sat, 02 Nov 2024 06:36:56 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:36:56 GMT express:router corsMiddleware : /static/test_images/cats/cat9.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router trim prefix (/static) from url /static/test_images/cats/cat9.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router serveStatic /static : /static/test_images/cats/cat9.jpg +Sat, 02 Nov 2024 06:36:56 GMT send stat "/home/ubuntu/cognimates-training/static/test_images/cats/cat9.jpg" +Sat, 02 Nov 2024 06:36:56 GMT send pipe "/home/ubuntu/cognimates-training/static/test_images/cats/cat9.jpg" +Serving static file: /static/test_images/cats/cat9.jpg (image/jpeg) +Sat, 02 Nov 2024 06:36:56 GMT send accept ranges +Sat, 02 Nov 2024 06:36:56 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:36:56 GMT send modified Fri, 01 Nov 2024 20:10:15 GMT +Sat, 02 Nov 2024 06:36:56 GMT send etag W/"27f-192e9599463" +Sat, 02 Nov 2024 06:36:56 GMT express:router dispatching GET /static/test_images/cats/cat10.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router query : /static/test_images/cats/cat10.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router expressInit : /static/test_images/cats/cat10.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router jsonParser : /static/test_images/cats/cat10.jpg +Sat, 02 Nov 2024 06:36:56 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:36:56 GMT express:router urlencodedParser : /static/test_images/cats/cat10.jpg +Sat, 02 Nov 2024 06:36:56 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:36:56 GMT express:router corsMiddleware : /static/test_images/cats/cat10.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router trim prefix (/static) from url /static/test_images/cats/cat10.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router serveStatic /static : /static/test_images/cats/cat10.jpg +Sat, 02 Nov 2024 06:36:56 GMT send stat "/home/ubuntu/cognimates-training/static/test_images/cats/cat10.jpg" +Sat, 02 Nov 2024 06:36:56 GMT send pipe "/home/ubuntu/cognimates-training/static/test_images/cats/cat10.jpg" +Serving static file: /static/test_images/cats/cat10.jpg (image/jpeg) +Sat, 02 Nov 2024 06:36:56 GMT send accept ranges +Sat, 02 Nov 2024 06:36:56 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:36:56 GMT send modified Fri, 01 Nov 2024 20:10:15 GMT +Sat, 02 Nov 2024 06:36:56 GMT send etag W/"27f-192e9599463" +Sat, 02 Nov 2024 06:36:56 GMT express:router dispatching GET /static/test_images/dogs/dog1.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router query : /static/test_images/dogs/dog1.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router expressInit : /static/test_images/dogs/dog1.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router jsonParser : /static/test_images/dogs/dog1.jpg +Sat, 02 Nov 2024 06:36:56 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:36:56 GMT express:router urlencodedParser : /static/test_images/dogs/dog1.jpg +Sat, 02 Nov 2024 06:36:56 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:36:56 GMT express:router corsMiddleware : /static/test_images/dogs/dog1.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router trim prefix (/static) from url /static/test_images/dogs/dog1.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router serveStatic /static : /static/test_images/dogs/dog1.jpg +Sat, 02 Nov 2024 06:36:56 GMT send stat "/home/ubuntu/cognimates-training/static/test_images/dogs/dog1.jpg" +Sat, 02 Nov 2024 06:36:56 GMT send pipe "/home/ubuntu/cognimates-training/static/test_images/dogs/dog1.jpg" +Serving static file: /static/test_images/dogs/dog1.jpg (image/jpeg) +Sat, 02 Nov 2024 06:36:56 GMT send accept ranges +Sat, 02 Nov 2024 06:36:56 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:36:56 GMT send modified Fri, 01 Nov 2024 20:10:15 GMT +Sat, 02 Nov 2024 06:36:56 GMT send etag W/"280-192e9599467" +Sat, 02 Nov 2024 06:36:56 GMT express:router dispatching GET /static/test_images/dogs/dog2.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router query : /static/test_images/dogs/dog2.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router expressInit : /static/test_images/dogs/dog2.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router jsonParser : /static/test_images/dogs/dog2.jpg +Sat, 02 Nov 2024 06:36:56 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:36:56 GMT express:router urlencodedParser : /static/test_images/dogs/dog2.jpg +Sat, 02 Nov 2024 06:36:56 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:36:56 GMT express:router corsMiddleware : /static/test_images/dogs/dog2.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router trim prefix (/static) from url /static/test_images/dogs/dog2.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router serveStatic /static : /static/test_images/dogs/dog2.jpg +Sat, 02 Nov 2024 06:36:56 GMT send stat "/home/ubuntu/cognimates-training/static/test_images/dogs/dog2.jpg" +Sat, 02 Nov 2024 06:36:56 GMT send pipe "/home/ubuntu/cognimates-training/static/test_images/dogs/dog2.jpg" +Serving static file: /static/test_images/dogs/dog2.jpg (image/jpeg) +Sat, 02 Nov 2024 06:36:56 GMT send accept ranges +Sat, 02 Nov 2024 06:36:56 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:36:56 GMT send modified Fri, 01 Nov 2024 20:10:15 GMT +Sat, 02 Nov 2024 06:36:56 GMT send etag W/"280-192e9599467" +Sat, 02 Nov 2024 06:36:56 GMT express:router dispatching GET /static/test_images/dogs/dog3.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router query : /static/test_images/dogs/dog3.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router expressInit : /static/test_images/dogs/dog3.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router jsonParser : /static/test_images/dogs/dog3.jpg +Sat, 02 Nov 2024 06:36:56 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:36:56 GMT express:router urlencodedParser : /static/test_images/dogs/dog3.jpg +Sat, 02 Nov 2024 06:36:56 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:36:56 GMT express:router corsMiddleware : /static/test_images/dogs/dog3.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router trim prefix (/static) from url /static/test_images/dogs/dog3.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router serveStatic /static : /static/test_images/dogs/dog3.jpg +Sat, 02 Nov 2024 06:36:56 GMT send stat "/home/ubuntu/cognimates-training/static/test_images/dogs/dog3.jpg" +Sat, 02 Nov 2024 06:36:56 GMT send pipe "/home/ubuntu/cognimates-training/static/test_images/dogs/dog3.jpg" +Serving static file: /static/test_images/dogs/dog3.jpg (image/jpeg) +Sat, 02 Nov 2024 06:36:56 GMT send accept ranges +Sat, 02 Nov 2024 06:36:56 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:36:56 GMT send modified Fri, 01 Nov 2024 20:10:15 GMT +Sat, 02 Nov 2024 06:36:56 GMT send etag W/"280-192e959946b" +Sat, 02 Nov 2024 06:36:56 GMT express:router dispatching GET /static/test_images/dogs/dog4.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router query : /static/test_images/dogs/dog4.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router expressInit : /static/test_images/dogs/dog4.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router jsonParser : /static/test_images/dogs/dog4.jpg +Sat, 02 Nov 2024 06:36:56 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:36:56 GMT express:router urlencodedParser : /static/test_images/dogs/dog4.jpg +Sat, 02 Nov 2024 06:36:56 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:36:56 GMT express:router corsMiddleware : /static/test_images/dogs/dog4.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router trim prefix (/static) from url /static/test_images/dogs/dog4.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router serveStatic /static : /static/test_images/dogs/dog4.jpg +Sat, 02 Nov 2024 06:36:56 GMT send stat "/home/ubuntu/cognimates-training/static/test_images/dogs/dog4.jpg" +Sat, 02 Nov 2024 06:36:56 GMT send pipe "/home/ubuntu/cognimates-training/static/test_images/dogs/dog4.jpg" +Serving static file: /static/test_images/dogs/dog4.jpg (image/jpeg) +Sat, 02 Nov 2024 06:36:56 GMT send accept ranges +Sat, 02 Nov 2024 06:36:56 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:36:56 GMT send modified Fri, 01 Nov 2024 20:10:15 GMT +Sat, 02 Nov 2024 06:36:56 GMT send etag W/"280-192e959946b" +Sat, 02 Nov 2024 06:36:56 GMT express:router dispatching GET /static/test_images/dogs/dog5.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router query : /static/test_images/dogs/dog5.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router expressInit : /static/test_images/dogs/dog5.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router jsonParser : /static/test_images/dogs/dog5.jpg +Sat, 02 Nov 2024 06:36:56 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:36:56 GMT express:router urlencodedParser : /static/test_images/dogs/dog5.jpg +Sat, 02 Nov 2024 06:36:56 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:36:56 GMT express:router corsMiddleware : /static/test_images/dogs/dog5.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router trim prefix (/static) from url /static/test_images/dogs/dog5.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router serveStatic /static : /static/test_images/dogs/dog5.jpg +Sat, 02 Nov 2024 06:36:56 GMT send stat "/home/ubuntu/cognimates-training/static/test_images/dogs/dog5.jpg" +Sat, 02 Nov 2024 06:36:56 GMT send pipe "/home/ubuntu/cognimates-training/static/test_images/dogs/dog5.jpg" +Serving static file: /static/test_images/dogs/dog5.jpg (image/jpeg) +Sat, 02 Nov 2024 06:36:56 GMT send accept ranges +Sat, 02 Nov 2024 06:36:56 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:36:56 GMT send modified Fri, 01 Nov 2024 20:10:15 GMT +Sat, 02 Nov 2024 06:36:56 GMT send etag W/"280-192e959946f" +Sat, 02 Nov 2024 06:36:56 GMT express:router dispatching GET /static/test_images/dogs/dog6.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router query : /static/test_images/dogs/dog6.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router expressInit : /static/test_images/dogs/dog6.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router jsonParser : /static/test_images/dogs/dog6.jpg +Sat, 02 Nov 2024 06:36:56 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:36:56 GMT express:router urlencodedParser : /static/test_images/dogs/dog6.jpg +Sat, 02 Nov 2024 06:36:56 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:36:56 GMT express:router corsMiddleware : /static/test_images/dogs/dog6.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router trim prefix (/static) from url /static/test_images/dogs/dog6.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router serveStatic /static : /static/test_images/dogs/dog6.jpg +Sat, 02 Nov 2024 06:36:56 GMT send stat "/home/ubuntu/cognimates-training/static/test_images/dogs/dog6.jpg" +Sat, 02 Nov 2024 06:36:56 GMT send pipe "/home/ubuntu/cognimates-training/static/test_images/dogs/dog6.jpg" +Serving static file: /static/test_images/dogs/dog6.jpg (image/jpeg) +Sat, 02 Nov 2024 06:36:56 GMT send accept ranges +Sat, 02 Nov 2024 06:36:56 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:36:56 GMT send modified Fri, 01 Nov 2024 20:10:15 GMT +Sat, 02 Nov 2024 06:36:56 GMT send etag W/"280-192e959946f" +Sat, 02 Nov 2024 06:36:56 GMT express:router dispatching GET /static/test_images/dogs/dog7.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router query : /static/test_images/dogs/dog7.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router expressInit : /static/test_images/dogs/dog7.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router jsonParser : /static/test_images/dogs/dog7.jpg +Sat, 02 Nov 2024 06:36:56 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:36:56 GMT express:router urlencodedParser : /static/test_images/dogs/dog7.jpg +Sat, 02 Nov 2024 06:36:56 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:36:56 GMT express:router corsMiddleware : /static/test_images/dogs/dog7.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router trim prefix (/static) from url /static/test_images/dogs/dog7.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router serveStatic /static : /static/test_images/dogs/dog7.jpg +Sat, 02 Nov 2024 06:36:56 GMT send stat "/home/ubuntu/cognimates-training/static/test_images/dogs/dog7.jpg" +Sat, 02 Nov 2024 06:36:56 GMT send pipe "/home/ubuntu/cognimates-training/static/test_images/dogs/dog7.jpg" +Serving static file: /static/test_images/dogs/dog7.jpg (image/jpeg) +Sat, 02 Nov 2024 06:36:56 GMT send accept ranges +Sat, 02 Nov 2024 06:36:56 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:36:56 GMT send modified Fri, 01 Nov 2024 20:10:15 GMT +Sat, 02 Nov 2024 06:36:56 GMT send etag W/"280-192e9599473" +Sat, 02 Nov 2024 06:36:56 GMT express:router dispatching GET /static/test_images/dogs/dog8.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router query : /static/test_images/dogs/dog8.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router expressInit : /static/test_images/dogs/dog8.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router jsonParser : /static/test_images/dogs/dog8.jpg +Sat, 02 Nov 2024 06:36:56 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:36:56 GMT express:router urlencodedParser : /static/test_images/dogs/dog8.jpg +Sat, 02 Nov 2024 06:36:56 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:36:56 GMT express:router corsMiddleware : /static/test_images/dogs/dog8.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router trim prefix (/static) from url /static/test_images/dogs/dog8.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router serveStatic /static : /static/test_images/dogs/dog8.jpg +Sat, 02 Nov 2024 06:36:56 GMT send stat "/home/ubuntu/cognimates-training/static/test_images/dogs/dog8.jpg" +Sat, 02 Nov 2024 06:36:56 GMT send pipe "/home/ubuntu/cognimates-training/static/test_images/dogs/dog8.jpg" +Serving static file: /static/test_images/dogs/dog8.jpg (image/jpeg) +Sat, 02 Nov 2024 06:36:56 GMT send accept ranges +Sat, 02 Nov 2024 06:36:56 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:36:56 GMT send modified Fri, 01 Nov 2024 20:10:15 GMT +Sat, 02 Nov 2024 06:36:56 GMT send etag W/"280-192e9599473" +Sat, 02 Nov 2024 06:36:56 GMT express:router dispatching GET /static/test_images/dogs/dog9.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router query : /static/test_images/dogs/dog9.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router expressInit : /static/test_images/dogs/dog9.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router jsonParser : /static/test_images/dogs/dog9.jpg +Sat, 02 Nov 2024 06:36:56 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:36:56 GMT express:router urlencodedParser : /static/test_images/dogs/dog9.jpg +Sat, 02 Nov 2024 06:36:56 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:36:56 GMT express:router corsMiddleware : /static/test_images/dogs/dog9.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router trim prefix (/static) from url /static/test_images/dogs/dog9.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router serveStatic /static : /static/test_images/dogs/dog9.jpg +Sat, 02 Nov 2024 06:36:56 GMT send stat "/home/ubuntu/cognimates-training/static/test_images/dogs/dog9.jpg" +Sat, 02 Nov 2024 06:36:56 GMT send pipe "/home/ubuntu/cognimates-training/static/test_images/dogs/dog9.jpg" +Serving static file: /static/test_images/dogs/dog9.jpg (image/jpeg) +Sat, 02 Nov 2024 06:36:56 GMT send accept ranges +Sat, 02 Nov 2024 06:36:56 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:36:56 GMT send modified Fri, 01 Nov 2024 20:10:15 GMT +Sat, 02 Nov 2024 06:36:56 GMT send etag W/"280-192e9599477" +Sat, 02 Nov 2024 06:36:56 GMT express:router dispatching GET /static/test_images/dogs/dog10.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router query : /static/test_images/dogs/dog10.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router expressInit : /static/test_images/dogs/dog10.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router jsonParser : /static/test_images/dogs/dog10.jpg +Sat, 02 Nov 2024 06:36:56 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:36:56 GMT express:router urlencodedParser : /static/test_images/dogs/dog10.jpg +Sat, 02 Nov 2024 06:36:56 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:36:56 GMT express:router corsMiddleware : /static/test_images/dogs/dog10.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router trim prefix (/static) from url /static/test_images/dogs/dog10.jpg +Sat, 02 Nov 2024 06:36:56 GMT express:router serveStatic /static : /static/test_images/dogs/dog10.jpg +Sat, 02 Nov 2024 06:36:56 GMT send stat "/home/ubuntu/cognimates-training/static/test_images/dogs/dog10.jpg" +Sat, 02 Nov 2024 06:36:56 GMT send pipe "/home/ubuntu/cognimates-training/static/test_images/dogs/dog10.jpg" +Serving static file: /static/test_images/dogs/dog10.jpg (image/jpeg) +Sat, 02 Nov 2024 06:36:56 GMT send accept ranges +Sat, 02 Nov 2024 06:36:56 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:36:56 GMT send modified Fri, 01 Nov 2024 20:10:15 GMT +Sat, 02 Nov 2024 06:36:56 GMT send etag W/"280-192e9599477" +Sat, 02 Nov 2024 06:36:59 GMT express:router dispatching GET /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:36:59 GMT express:router query : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:36:59 GMT express:router expressInit : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:36:59 GMT express:router jsonParser : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:36:59 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:36:59 GMT express:router urlencodedParser : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:36:59 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:36:59 GMT express:router corsMiddleware : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:36:59 GMT express:router trim prefix (/static) from url /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:36:59 GMT express:router serveStatic /static : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:36:59 GMT send stat "/home/ubuntu/cognimates-training/static/images/cognimates-logo--codelab.svg" +Sat, 02 Nov 2024 06:36:59 GMT express:router dispatching GET /static/images/vision_banner.png +Sat, 02 Nov 2024 06:36:59 GMT express:router query : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:36:59 GMT express:router expressInit : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:36:59 GMT express:router jsonParser : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:36:59 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:36:59 GMT express:router urlencodedParser : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:36:59 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:36:59 GMT express:router corsMiddleware : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:36:59 GMT express:router trim prefix (/static) from url /static/images/vision_banner.png +Sat, 02 Nov 2024 06:36:59 GMT express:router serveStatic /static : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:36:59 GMT send stat "/home/ubuntu/cognimates-training/static/images/vision_banner.png" +Sat, 02 Nov 2024 06:36:59 GMT send pipe "/home/ubuntu/cognimates-training/static/images/cognimates-logo--codelab.svg" +Serving static file: /static/images/cognimates-logo--codelab.svg (image/svg+xml) +Sat, 02 Nov 2024 06:36:59 GMT send accept ranges +Sat, 02 Nov 2024 06:36:59 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:36:59 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:36:59 GMT send etag W/"9f5-192da706627" +Sat, 02 Nov 2024 06:36:59 GMT send pipe "/home/ubuntu/cognimates-training/static/images/vision_banner.png" +Serving static file: /static/images/vision_banner.png (image/png) +Sat, 02 Nov 2024 06:36:59 GMT send accept ranges +Sat, 02 Nov 2024 06:36:59 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:36:59 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:36:59 GMT send etag W/"20212-192da70662f" +Sat, 02 Nov 2024 06:36:59 GMT express:router dispatching GET /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:36:59 GMT express:router query : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:36:59 GMT express:router expressInit : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:36:59 GMT express:router jsonParser : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:36:59 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:36:59 GMT express:router urlencodedParser : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:36:59 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:36:59 GMT express:router corsMiddleware : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:36:59 GMT express:router trim prefix (/static) from url /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:36:59 GMT express:router serveStatic /static : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:36:59 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/mit-media-lab--white.svg" +Sat, 02 Nov 2024 06:36:59 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/mit-media-lab--white.svg" +Serving static file: /static/images/social/mit-media-lab--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:36:59 GMT send accept ranges +Sat, 02 Nov 2024 06:36:59 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:36:59 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:36:59 GMT send etag W/"a7c5-192da70662b" +Sat, 02 Nov 2024 06:36:59 GMT express:router dispatching GET /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:36:59 GMT express:router query : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:36:59 GMT express:router expressInit : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:36:59 GMT express:router jsonParser : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:36:59 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:36:59 GMT express:router urlencodedParser : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:36:59 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:36:59 GMT express:router corsMiddleware : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:36:59 GMT express:router trim prefix (/static) from url /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:36:59 GMT express:router serveStatic /static : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:36:59 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/twitter--white.svg" +Sat, 02 Nov 2024 06:36:59 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/twitter--white.svg" +Serving static file: /static/images/social/twitter--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:36:59 GMT send accept ranges +Sat, 02 Nov 2024 06:36:59 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:36:59 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:36:59 GMT send etag W/"712c-192da70662b" +Sat, 02 Nov 2024 06:36:59 GMT express:router dispatching GET /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:36:59 GMT express:router query : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:36:59 GMT express:router expressInit : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:36:59 GMT express:router jsonParser : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:36:59 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:36:59 GMT express:router urlencodedParser : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:36:59 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:36:59 GMT express:router corsMiddleware : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:36:59 GMT express:router trim prefix (/static) from url /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:36:59 GMT express:router serveStatic /static : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:36:59 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/instagram--white.svg" +Sat, 02 Nov 2024 06:36:59 GMT express:router dispatching GET /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:36:59 GMT express:router query : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:36:59 GMT express:router expressInit : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:36:59 GMT express:router jsonParser : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:36:59 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:36:59 GMT express:router urlencodedParser : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:36:59 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:36:59 GMT express:router corsMiddleware : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:36:59 GMT express:router trim prefix (/static) from url /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:36:59 GMT express:router serveStatic /static : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:36:59 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/vimeo--white.svg" +Sat, 02 Nov 2024 06:36:59 GMT express:router dispatching GET /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:36:59 GMT express:router query : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:36:59 GMT express:router expressInit : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:36:59 GMT express:router jsonParser : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:36:59 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:36:59 GMT express:router urlencodedParser : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:36:59 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:36:59 GMT express:router corsMiddleware : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:36:59 GMT express:router trim prefix (/static) from url /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:36:59 GMT express:router serveStatic /static : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:36:59 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/facebook--white.svg" +Sat, 02 Nov 2024 06:36:59 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/instagram--white.svg" +Serving static file: /static/images/social/instagram--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:36:59 GMT send accept ranges +Sat, 02 Nov 2024 06:36:59 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:36:59 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:36:59 GMT send etag W/"6ec0-192da70662b" +Sat, 02 Nov 2024 06:36:59 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/vimeo--white.svg" +Serving static file: /static/images/social/vimeo--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:36:59 GMT send accept ranges +Sat, 02 Nov 2024 06:36:59 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:36:59 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:36:59 GMT send etag W/"6b42-192da70662b" +Sat, 02 Nov 2024 06:36:59 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/facebook--white.svg" +Serving static file: /static/images/social/facebook--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:36:59 GMT send accept ranges +Sat, 02 Nov 2024 06:36:59 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:36:59 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:36:59 GMT send etag W/"69e4-192da70662b" +Sat, 02 Nov 2024 06:37:16 GMT express:router dispatching POST /vision/classifier +Sat, 02 Nov 2024 06:37:16 GMT express:router query : /vision/classifier +Sat, 02 Nov 2024 06:37:16 GMT express:router expressInit : /vision/classifier +Sat, 02 Nov 2024 06:37:16 GMT express:router jsonParser : /vision/classifier +Sat, 02 Nov 2024 06:37:16 GMT body-parser:json content-type "application/json" +Sat, 02 Nov 2024 06:37:16 GMT body-parser:json content-encoding "identity" +Sat, 02 Nov 2024 06:37:16 GMT body-parser:json read body +Sat, 02 Nov 2024 06:37:16 GMT body-parser:json parse body +Sat, 02 Nov 2024 06:37:16 GMT body-parser:json parse json +Sat, 02 Nov 2024 06:37:16 GMT express:router urlencodedParser : /vision/classifier +Sat, 02 Nov 2024 06:37:16 GMT body-parser:urlencoded body already parsed +Sat, 02 Nov 2024 06:37:16 GMT express:router corsMiddleware : /vision/classifier +Sat, 02 Nov 2024 06:37:16 GMT express:router router : /vision/classifier +Sat, 02 Nov 2024 06:37:16 GMT express:router dispatching POST /vision/classifier +Creating classifier with model ID: catsdogstest +Checking if model catsdogstest exists... +Sat, 02 Nov 2024 06:37:16 GMT express:router dispatching POST /vision/classifier +Sat, 02 Nov 2024 06:37:16 GMT express:router query : /vision/classifier +Sat, 02 Nov 2024 06:37:16 GMT express:router expressInit : /vision/classifier +Sat, 02 Nov 2024 06:37:16 GMT express:router jsonParser : /vision/classifier +Sat, 02 Nov 2024 06:37:16 GMT body-parser:json content-type "application/json" +Sat, 02 Nov 2024 06:37:16 GMT body-parser:json content-encoding "identity" +Sat, 02 Nov 2024 06:37:16 GMT body-parser:json read body +Sat, 02 Nov 2024 06:37:16 GMT body-parser:json parse body +Sat, 02 Nov 2024 06:37:16 GMT body-parser:json parse json +Sat, 02 Nov 2024 06:37:16 GMT express:router urlencodedParser : /vision/classifier +Sat, 02 Nov 2024 06:37:16 GMT body-parser:urlencoded body already parsed +Sat, 02 Nov 2024 06:37:16 GMT express:router corsMiddleware : /vision/classifier +Sat, 02 Nov 2024 06:37:16 GMT express:router router : /vision/classifier +Sat, 02 Nov 2024 06:37:16 GMT express:router dispatching POST /vision/classifier +Creating classifier with model ID: catsdogstest +Checking if model catsdogstest exists... +Attempt 1: Existing model found with version none, deleting... +Attempt 1: Existing model found with version none, deleting... +Model deletion requested, waiting for confirmation... +Model deletion requested, waiting for confirmation... +Verifying model deletion... +Verifying model deletion... +Attempt 1: Model still exists, retrying... +Attempt 1: Model still exists, retrying... +Sat, 02 Nov 2024 06:37:19 GMT express:router dispatching GET /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:37:19 GMT express:router query : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:37:19 GMT express:router expressInit : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:37:19 GMT express:router jsonParser : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:37:19 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:37:19 GMT express:router urlencodedParser : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:37:19 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:37:19 GMT express:router corsMiddleware : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:37:19 GMT express:router trim prefix (/static) from url /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:37:19 GMT express:router serveStatic /static : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:37:19 GMT send stat "/home/ubuntu/cognimates-training/static/images/cognimates-logo--codelab.svg" +Sat, 02 Nov 2024 06:37:19 GMT send pipe "/home/ubuntu/cognimates-training/static/images/cognimates-logo--codelab.svg" +Serving static file: /static/images/cognimates-logo--codelab.svg (image/svg+xml) +Sat, 02 Nov 2024 06:37:19 GMT send accept ranges +Sat, 02 Nov 2024 06:37:19 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:37:19 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:37:19 GMT send etag W/"9f5-192da706627" +Sat, 02 Nov 2024 06:37:19 GMT express:router dispatching GET /static/images/vision_banner.png +Sat, 02 Nov 2024 06:37:19 GMT express:router query : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:37:19 GMT express:router expressInit : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:37:19 GMT express:router jsonParser : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:37:19 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:37:19 GMT express:router urlencodedParser : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:37:19 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:37:19 GMT express:router corsMiddleware : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:37:19 GMT express:router trim prefix (/static) from url /static/images/vision_banner.png +Sat, 02 Nov 2024 06:37:19 GMT express:router serveStatic /static : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:37:19 GMT send stat "/home/ubuntu/cognimates-training/static/images/vision_banner.png" +Sat, 02 Nov 2024 06:37:19 GMT express:router dispatching GET /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:37:19 GMT express:router query : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:37:19 GMT express:router expressInit : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:37:19 GMT express:router jsonParser : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:37:19 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:37:19 GMT express:router urlencodedParser : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:37:19 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:37:19 GMT express:router corsMiddleware : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:37:19 GMT express:router trim prefix (/static) from url /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:37:19 GMT express:router serveStatic /static : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:37:19 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/mit-media-lab--white.svg" +Sat, 02 Nov 2024 06:37:19 GMT express:router dispatching GET /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:37:19 GMT express:router query : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:37:19 GMT express:router expressInit : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:37:19 GMT express:router jsonParser : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:37:19 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:37:19 GMT express:router urlencodedParser : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:37:19 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:37:19 GMT express:router corsMiddleware : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:37:19 GMT express:router trim prefix (/static) from url /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:37:19 GMT express:router serveStatic /static : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:37:19 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/twitter--white.svg" +Sat, 02 Nov 2024 06:37:19 GMT express:router dispatching GET /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:37:19 GMT express:router query : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:37:19 GMT express:router expressInit : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:37:19 GMT express:router jsonParser : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:37:19 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:37:19 GMT express:router urlencodedParser : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:37:19 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:37:19 GMT express:router corsMiddleware : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:37:19 GMT express:router trim prefix (/static) from url /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:37:19 GMT express:router serveStatic /static : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:37:19 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/instagram--white.svg" +Sat, 02 Nov 2024 06:37:19 GMT send pipe "/home/ubuntu/cognimates-training/static/images/vision_banner.png" +Serving static file: /static/images/vision_banner.png (image/png) +Sat, 02 Nov 2024 06:37:19 GMT send accept ranges +Sat, 02 Nov 2024 06:37:19 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:37:19 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:37:19 GMT send etag W/"20212-192da70662f" +Sat, 02 Nov 2024 06:37:19 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/mit-media-lab--white.svg" +Serving static file: /static/images/social/mit-media-lab--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:37:19 GMT send accept ranges +Sat, 02 Nov 2024 06:37:19 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:37:19 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:37:19 GMT send etag W/"a7c5-192da70662b" +Sat, 02 Nov 2024 06:37:19 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/twitter--white.svg" +Serving static file: /static/images/social/twitter--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:37:19 GMT send accept ranges +Sat, 02 Nov 2024 06:37:19 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:37:19 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:37:19 GMT send etag W/"712c-192da70662b" +Sat, 02 Nov 2024 06:37:19 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/instagram--white.svg" +Serving static file: /static/images/social/instagram--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:37:19 GMT send accept ranges +Sat, 02 Nov 2024 06:37:19 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:37:19 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:37:19 GMT send etag W/"6ec0-192da70662b" +Sat, 02 Nov 2024 06:37:19 GMT express:router dispatching GET /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:37:19 GMT express:router query : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:37:19 GMT express:router expressInit : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:37:19 GMT express:router jsonParser : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:37:19 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:37:19 GMT express:router urlencodedParser : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:37:19 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:37:19 GMT express:router corsMiddleware : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:37:19 GMT express:router trim prefix (/static) from url /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:37:19 GMT express:router serveStatic /static : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:37:19 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/vimeo--white.svg" +Sat, 02 Nov 2024 06:37:19 GMT express:router dispatching GET /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:37:19 GMT express:router query : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:37:19 GMT express:router expressInit : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:37:19 GMT express:router jsonParser : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:37:19 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:37:19 GMT express:router urlencodedParser : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:37:19 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:37:19 GMT express:router corsMiddleware : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:37:19 GMT express:router trim prefix (/static) from url /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:37:19 GMT express:router serveStatic /static : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:37:19 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/facebook--white.svg" +Sat, 02 Nov 2024 06:37:19 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/vimeo--white.svg" +Serving static file: /static/images/social/vimeo--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:37:19 GMT send accept ranges +Sat, 02 Nov 2024 06:37:19 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:37:19 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:37:19 GMT send etag W/"6b42-192da70662b" +Sat, 02 Nov 2024 06:37:19 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/facebook--white.svg" +Serving static file: /static/images/social/facebook--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:37:19 GMT send accept ranges +Sat, 02 Nov 2024 06:37:19 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:37:19 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:37:19 GMT send etag W/"69e4-192da70662b" +Checking if model catsdogstest exists... +Checking if model catsdogstest exists... +No existing model found, proceeding with creation +Creating model with request: { + "model": { + "id": "catsdogstest", + "name": "catsdogstest", + "model_type_id": "embedding-classifier", + "concepts": [ + { + "id": "dogs", + "name": "dogs" + }, + { + "id": "cats", + "name": "cats" + } + ], + "output_info": { + "data": { + "concepts": [ + { + "id": "dogs", + "name": "dogs" + }, + { + "id": "cats", + "name": "cats" + } + ] + }, + "output_config": { + "concepts_mutually_exclusive": false, + "closed_environment": false, + "max_concepts": 2 + } + } + } +} +No existing model found, proceeding with creation +Creating model with request: { + "model": { + "id": "catsdogstest", + "name": "catsdogstest", + "model_type_id": "embedding-classifier", + "concepts": [ + { + "id": "dogs", + "name": "dogs" + }, + { + "id": "cats", + "name": "cats" + } + ], + "output_info": { + "data": { + "concepts": [ + { + "id": "dogs", + "name": "dogs" + }, + { + "id": "cats", + "name": "cats" + } + ] + }, + "output_config": { + "concepts_mutually_exclusive": false, + "closed_environment": false, + "max_concepts": 2 + } + } + } +} +Create model failed. Details: { + statusCode: 21202, + description: 'Invalid model argument', + modelRequest: { + model: { + id: 'catsdogstest', + name: 'catsdogstest', + model_type_id: 'embedding-classifier', + concepts: [Array], + output_info: [Object] + } + }, + response: { + status: { + stack_trace: [], + code: 21202, + description: 'Invalid model argument', + details: "Model already exists with ID 'catsdogstest'", + percent_completed: 0, + time_remaining: 0, + req_id: 'ce9416a9b41d4cfdbc0876ee6267c05a', + internal_details: '', + redirect_info: null, + developer_notes: '' + }, + model: null + } +} +Error creating classifier: { + error: 'Create model failed: Invalid model argument (code: 21202)', + stack: 'Error: Create model failed: Invalid model argument (code: 21202)\n' + + ' at exports.createClassifier (/home/ubuntu/cognimates-training/controllers/clarifai.js:293:19)\n' + + ' at process.processTicksAndRejections (node:internal/process/task_queues:95:5)', + modelId: 'catsdogstest', + concepts: [ 'dogs', 'cats' ] +} +Model created successfully: { + "toolkits": [], + "use_cases": [], + "languages": [], + "languages_full": [], + "check_consents": [], + "id": "catsdogstest", + "name": "catsdogstest", + "created_at": { + "seconds": "1730529442", + "nanos": 815177539 + }, + "app_id": "e72f0cd142ab492bba34c28b9c929323", + "output_info": null, + "model_version": null, + "display_name": "", + "user_id": "c7zlh09yxmbf", + "model_type_id": "embedding-classifier", + "visibility": { + "gettable": 10 + }, + "description": "", + "metadata": { + "fields": {} + }, + "notes": "", + "modified_at": { + "seconds": "1730529442", + "nanos": 815177539 + }, + "is_starred": false, + "star_count": 0, + "task": "", + "presets": null, + "workflow_recommended": { + "value": false + }, + "default_eval_info": null, + "bookmark_origin": null, + "image": null, + "license_type": 0, + "source": 0, + "creator": "" +} +Waiting for model initialization... +Model initialization wait complete +Sat, 02 Nov 2024 06:37:27 GMT express:router dispatching POST /vision/train +Sat, 02 Nov 2024 06:37:27 GMT express:router query : /vision/train +Sat, 02 Nov 2024 06:37:27 GMT express:router expressInit : /vision/train +Sat, 02 Nov 2024 06:37:27 GMT express:router jsonParser : /vision/train +Sat, 02 Nov 2024 06:37:27 GMT body-parser:json content-type "application/json" +Sat, 02 Nov 2024 06:37:27 GMT body-parser:json content-encoding "identity" +Sat, 02 Nov 2024 06:37:27 GMT body-parser:json read body +Sat, 02 Nov 2024 06:37:27 GMT body-parser:json parse body +Sat, 02 Nov 2024 06:37:27 GMT body-parser:json parse json +Sat, 02 Nov 2024 06:37:27 GMT express:router urlencodedParser : /vision/train +Sat, 02 Nov 2024 06:37:27 GMT body-parser:urlencoded body already parsed +Sat, 02 Nov 2024 06:37:27 GMT express:router corsMiddleware : /vision/train +Sat, 02 Nov 2024 06:37:27 GMT express:router router : /vision/train +Sat, 02 Nov 2024 06:37:27 GMT express:router dispatching POST /vision/train +Training classifier with model ID: catsdogstest +Verifying model exists... +Model verification response: { + status: { + stack_trace: [], + code: 10000, + description: 'Ok', + details: '', + percent_completed: 0, + time_remaining: 0, + req_id: '277af01473ce4047b0c16db875d99e95', + internal_details: '', + redirect_info: null, + developer_notes: '' + }, + model: { + toolkits: [], + use_cases: [], + languages: [], + languages_full: [], + check_consents: [], + id: 'catsdogstest', + name: 'catsdogstest', + created_at: { seconds: '1730529442', nanos: 815177000 }, + app_id: 'e72f0cd142ab492bba34c28b9c929323', + output_info: null, + model_version: null, + display_name: '', + user_id: 'c7zlh09yxmbf', + model_type_id: 'embedding-classifier', + visibility: { gettable: 10 }, + description: '', + metadata: { fields: {} }, + notes: '', + modified_at: { seconds: '1730529442', nanos: 815177000 }, + is_starred: false, + star_count: 0, + task: '', + presets: null, + workflow_recommended: { value: false }, + default_eval_info: null, + bookmark_origin: null, + image: null, + license_type: 0, + source: 0, + creator: '' + } +} +Model found, preparing training data... +Prepared input 1: { category: 'dogs', conceptId: 'dogs', imageSize: 856 } +Prepared input 2: { category: 'dogs', conceptId: 'dogs', imageSize: 856 } +Prepared input 3: { category: 'dogs', conceptId: 'dogs', imageSize: 856 } +Prepared input 4: { category: 'dogs', conceptId: 'dogs', imageSize: 856 } +Prepared input 5: { category: 'dogs', conceptId: 'dogs', imageSize: 856 } +Prepared input 6: { category: 'dogs', conceptId: 'dogs', imageSize: 856 } +Prepared input 7: { category: 'dogs', conceptId: 'dogs', imageSize: 856 } +Prepared input 8: { category: 'dogs', conceptId: 'dogs', imageSize: 856 } +Prepared input 9: { category: 'dogs', conceptId: 'dogs', imageSize: 856 } +Prepared input 10: { category: 'dogs', conceptId: 'dogs', imageSize: 856 } +Prepared input 11: { category: 'dogs', conceptId: 'dogs', imageSize: 856 } +Prepared input 12: { category: 'dogs', conceptId: 'dogs', imageSize: 856 } +Prepared input 13: { category: 'dogs', conceptId: 'dogs', imageSize: 856 } +Prepared input 14: { category: 'dogs', conceptId: 'dogs', imageSize: 856 } +Prepared input 15: { category: 'dogs', conceptId: 'dogs', imageSize: 856 } +Prepared input 16: { category: 'dogs', conceptId: 'dogs', imageSize: 856 } +Prepared input 17: { category: 'dogs', conceptId: 'dogs', imageSize: 856 } +Prepared input 18: { category: 'dogs', conceptId: 'dogs', imageSize: 856 } +Prepared input 19: { category: 'dogs', conceptId: 'dogs', imageSize: 856 } +Prepared input 20: { category: 'dogs', conceptId: 'dogs', imageSize: 856 } +Prepared input 21: { category: 'cats', conceptId: 'cats', imageSize: 852 } +Prepared input 22: { category: 'cats', conceptId: 'cats', imageSize: 852 } +Prepared input 23: { category: 'cats', conceptId: 'cats', imageSize: 852 } +Prepared input 24: { category: 'cats', conceptId: 'cats', imageSize: 852 } +Prepared input 25: { category: 'cats', conceptId: 'cats', imageSize: 852 } +Prepared input 26: { category: 'cats', conceptId: 'cats', imageSize: 852 } +Prepared input 27: { category: 'cats', conceptId: 'cats', imageSize: 852 } +Prepared input 28: { category: 'cats', conceptId: 'cats', imageSize: 852 } +Prepared input 29: { category: 'cats', conceptId: 'cats', imageSize: 852 } +Prepared input 30: { category: 'cats', conceptId: 'cats', imageSize: 852 } +Prepared input 31: { category: 'cats', conceptId: 'cats', imageSize: 852 } +Prepared input 32: { category: 'cats', conceptId: 'cats', imageSize: 852 } +Prepared input 33: { category: 'cats', conceptId: 'cats', imageSize: 852 } +Prepared input 34: { category: 'cats', conceptId: 'cats', imageSize: 852 } +Prepared input 35: { category: 'cats', conceptId: 'cats', imageSize: 852 } +Prepared input 36: { category: 'cats', conceptId: 'cats', imageSize: 852 } +Prepared input 37: { category: 'cats', conceptId: 'cats', imageSize: 852 } +Prepared input 38: { category: 'cats', conceptId: 'cats', imageSize: 852 } +Prepared input 39: { category: 'cats', conceptId: 'cats', imageSize: 852 } +Prepared input 40: { category: 'cats', conceptId: 'cats', imageSize: 852 } +Adding 40 inputs to model... +Inputs added successfully: { + status: { + stack_trace: [], + code: 10000, + description: 'Ok', + details: 'All inputs successfully added', + percent_completed: 0, + time_remaining: 0, + req_id: '4d4592bd021649aab3401c755fc276f4', + internal_details: '', + redirect_info: null, + developer_notes: '' + }, + inputCount: 40 +} +Inputs added successfully, waiting for processing... +Starting model training... +Creating model version: version-1730529463691 +Training initiated: { + status: { + stack_trace: [], + code: 21202, + description: 'Invalid model argument', + details: 'The model requires concepts.', + percent_completed: 0, + time_remaining: 0, + req_id: '01aefa8b7ecd4ebc92a0eb1cd1c6dadc', + internal_details: '', + redirect_info: null, + developer_notes: '' + }, + modelId: 'catsdogstest', + versionId: 'version-1730529463691' +} +Training failed: { + stack_trace: [], + code: 21202, + description: 'Invalid model argument', + details: 'The model requires concepts.', + percent_completed: 0, + time_remaining: 0, + req_id: '01aefa8b7ecd4ebc92a0eb1cd1c6dadc', + internal_details: '', + redirect_info: null, + developer_notes: '' +} +Error training classifier: Error: Training failed: Invalid model argument + at exports.trainClassifier (/home/ubuntu/cognimates-training/controllers/clarifai.js:520:19) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) +Sat, 02 Nov 2024 06:39:25 GMT express:router dispatching GET /vision_home +Sat, 02 Nov 2024 06:39:25 GMT express:router query : /vision_home +Sat, 02 Nov 2024 06:39:25 GMT express:router expressInit : /vision_home +Sat, 02 Nov 2024 06:39:25 GMT express:router jsonParser : /vision_home +Sat, 02 Nov 2024 06:39:25 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:39:25 GMT express:router urlencodedParser : /vision_home +Sat, 02 Nov 2024 06:39:25 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:39:25 GMT express:router corsMiddleware : /vision_home +Sat, 02 Nov 2024 06:39:25 GMT express:router router : /vision_home +Sat, 02 Nov 2024 06:39:25 GMT express:router dispatching GET /vision_home +Sat, 02 Nov 2024 06:39:25 GMT express:view lookup "models/vision/vision_classifiers.handlebars" +Sat, 02 Nov 2024 06:39:25 GMT express:view stat "/home/ubuntu/cognimates-training/views/models/vision/vision_classifiers.handlebars" +Sat, 02 Nov 2024 06:39:25 GMT express:view render "/home/ubuntu/cognimates-training/views/models/vision/vision_classifiers.handlebars" +Sat, 02 Nov 2024 06:39:25 GMT express:router dispatching GET /static/css/style.css +Sat, 02 Nov 2024 06:39:25 GMT express:router query : /static/css/style.css +Sat, 02 Nov 2024 06:39:25 GMT express:router expressInit : /static/css/style.css +Sat, 02 Nov 2024 06:39:25 GMT express:router jsonParser : /static/css/style.css +Sat, 02 Nov 2024 06:39:25 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:39:25 GMT express:router urlencodedParser : /static/css/style.css +Sat, 02 Nov 2024 06:39:25 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:39:25 GMT express:router corsMiddleware : /static/css/style.css +Sat, 02 Nov 2024 06:39:25 GMT express:router trim prefix (/static) from url /static/css/style.css +Sat, 02 Nov 2024 06:39:25 GMT express:router serveStatic /static : /static/css/style.css +Sat, 02 Nov 2024 06:39:25 GMT send stat "/home/ubuntu/cognimates-training/static/css/style.css" +Sat, 02 Nov 2024 06:39:25 GMT express:router dispatching GET /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:39:25 GMT express:router query : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:39:25 GMT express:router expressInit : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:39:25 GMT express:router jsonParser : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:39:25 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:39:25 GMT express:router urlencodedParser : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:39:25 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:39:25 GMT express:router corsMiddleware : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:39:25 GMT express:router trim prefix (/static) from url /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:39:25 GMT express:router serveStatic /static : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:39:25 GMT send stat "/home/ubuntu/cognimates-training/static/images/cognimates-logo--codelab.svg" +Sat, 02 Nov 2024 06:39:25 GMT express:router dispatching GET /static/images/vision_banner.png +Sat, 02 Nov 2024 06:39:25 GMT express:router query : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:39:25 GMT express:router expressInit : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:39:25 GMT express:router jsonParser : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:39:25 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:39:25 GMT express:router urlencodedParser : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:39:25 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:39:25 GMT express:router corsMiddleware : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:39:25 GMT express:router trim prefix (/static) from url /static/images/vision_banner.png +Sat, 02 Nov 2024 06:39:25 GMT express:router serveStatic /static : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:39:25 GMT send stat "/home/ubuntu/cognimates-training/static/images/vision_banner.png" +Sat, 02 Nov 2024 06:39:25 GMT express:router dispatching GET /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:39:25 GMT express:router query : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:39:25 GMT express:router expressInit : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:39:25 GMT express:router jsonParser : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:39:25 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:39:25 GMT express:router urlencodedParser : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:39:25 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:39:25 GMT express:router corsMiddleware : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:39:25 GMT express:router trim prefix (/static) from url /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:39:25 GMT express:router serveStatic /static : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:39:25 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/mit-media-lab--white.svg" +Sat, 02 Nov 2024 06:39:25 GMT send pipe "/home/ubuntu/cognimates-training/static/css/style.css" +Serving static file: /static/css/style.css (text/css; charset=utf-8) +Sat, 02 Nov 2024 06:39:25 GMT send accept ranges +Sat, 02 Nov 2024 06:39:25 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:39:25 GMT send modified Thu, 31 Oct 2024 20:44:26 GMT +Sat, 02 Nov 2024 06:39:25 GMT send etag W/"7702-192e45284c7" +Sat, 02 Nov 2024 06:39:25 GMT send pipe "/home/ubuntu/cognimates-training/static/images/cognimates-logo--codelab.svg" +Serving static file: /static/images/cognimates-logo--codelab.svg (image/svg+xml) +Sat, 02 Nov 2024 06:39:25 GMT send accept ranges +Sat, 02 Nov 2024 06:39:25 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:39:25 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:39:25 GMT send etag W/"9f5-192da706627" +Sat, 02 Nov 2024 06:39:25 GMT send pipe "/home/ubuntu/cognimates-training/static/images/vision_banner.png" +Serving static file: /static/images/vision_banner.png (image/png) +Sat, 02 Nov 2024 06:39:25 GMT send accept ranges +Sat, 02 Nov 2024 06:39:25 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:39:25 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:39:25 GMT send etag W/"20212-192da70662f" +Sat, 02 Nov 2024 06:39:25 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/mit-media-lab--white.svg" +Serving static file: /static/images/social/mit-media-lab--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:39:25 GMT send accept ranges +Sat, 02 Nov 2024 06:39:25 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:39:25 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:39:25 GMT send etag W/"a7c5-192da70662b" +Sat, 02 Nov 2024 06:39:25 GMT express:router dispatching GET /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:39:25 GMT express:router query : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:39:25 GMT express:router expressInit : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:39:25 GMT express:router jsonParser : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:39:25 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:39:25 GMT express:router urlencodedParser : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:39:25 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:39:25 GMT express:router corsMiddleware : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:39:25 GMT express:router trim prefix (/static) from url /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:39:25 GMT express:router serveStatic /static : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:39:25 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/twitter--white.svg" +Sat, 02 Nov 2024 06:39:25 GMT express:router dispatching GET /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:39:25 GMT express:router query : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:39:25 GMT express:router expressInit : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:39:25 GMT express:router jsonParser : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:39:25 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:39:25 GMT express:router urlencodedParser : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:39:25 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:39:25 GMT express:router corsMiddleware : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:39:25 GMT express:router trim prefix (/static) from url /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:39:25 GMT express:router serveStatic /static : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:39:25 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/instagram--white.svg" +Sat, 02 Nov 2024 06:39:25 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/twitter--white.svg" +Serving static file: /static/images/social/twitter--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:39:25 GMT send accept ranges +Sat, 02 Nov 2024 06:39:25 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:39:25 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:39:25 GMT send etag W/"712c-192da70662b" +Sat, 02 Nov 2024 06:39:25 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/instagram--white.svg" +Serving static file: /static/images/social/instagram--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:39:25 GMT send accept ranges +Sat, 02 Nov 2024 06:39:25 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:39:25 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:39:25 GMT send etag W/"6ec0-192da70662b" +Sat, 02 Nov 2024 06:39:25 GMT express:router dispatching GET /static/js/main.js +Sat, 02 Nov 2024 06:39:25 GMT express:router query : /static/js/main.js +Sat, 02 Nov 2024 06:39:25 GMT express:router expressInit : /static/js/main.js +Sat, 02 Nov 2024 06:39:25 GMT express:router jsonParser : /static/js/main.js +Sat, 02 Nov 2024 06:39:25 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:39:25 GMT express:router urlencodedParser : /static/js/main.js +Sat, 02 Nov 2024 06:39:25 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:39:25 GMT express:router corsMiddleware : /static/js/main.js +Sat, 02 Nov 2024 06:39:25 GMT express:router trim prefix (/static) from url /static/js/main.js +Sat, 02 Nov 2024 06:39:25 GMT express:router serveStatic /static : /static/js/main.js +Sat, 02 Nov 2024 06:39:25 GMT send stat "/home/ubuntu/cognimates-training/static/js/main.js" +Sat, 02 Nov 2024 06:39:25 GMT send pipe "/home/ubuntu/cognimates-training/static/js/main.js" +Serving static file: /static/js/main.js (application/javascript; charset=utf-8) +Sat, 02 Nov 2024 06:39:25 GMT send accept ranges +Sat, 02 Nov 2024 06:39:25 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:39:25 GMT send modified Fri, 01 Nov 2024 00:40:49 GMT +Sat, 02 Nov 2024 06:39:25 GMT send etag W/"fb8-192e52aef40" +Sat, 02 Nov 2024 06:39:25 GMT express:router dispatching GET /static/js/vision-classifier-utils.js +Sat, 02 Nov 2024 06:39:25 GMT express:router query : /static/js/vision-classifier-utils.js +Sat, 02 Nov 2024 06:39:25 GMT express:router expressInit : /static/js/vision-classifier-utils.js +Sat, 02 Nov 2024 06:39:25 GMT express:router jsonParser : /static/js/vision-classifier-utils.js +Sat, 02 Nov 2024 06:39:25 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:39:25 GMT express:router urlencodedParser : /static/js/vision-classifier-utils.js +Sat, 02 Nov 2024 06:39:25 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:39:25 GMT express:router corsMiddleware : /static/js/vision-classifier-utils.js +Sat, 02 Nov 2024 06:39:25 GMT express:router trim prefix (/static) from url /static/js/vision-classifier-utils.js +Sat, 02 Nov 2024 06:39:25 GMT express:router serveStatic /static : /static/js/vision-classifier-utils.js +Sat, 02 Nov 2024 06:39:25 GMT send stat "/home/ubuntu/cognimates-training/static/js/vision-classifier-utils.js" +Sat, 02 Nov 2024 06:39:25 GMT send pipe "/home/ubuntu/cognimates-training/static/js/vision-classifier-utils.js" +Serving static file: /static/js/vision-classifier-utils.js (application/javascript; charset=utf-8) +Sat, 02 Nov 2024 06:39:25 GMT send accept ranges +Sat, 02 Nov 2024 06:39:25 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:39:25 GMT send modified Sat, 02 Nov 2024 02:16:12 GMT +Sat, 02 Nov 2024 06:39:25 GMT send etag W/"de8-192eaa89e31" +Sat, 02 Nov 2024 06:39:25 GMT express:router dispatching GET /static/js/vision-classifier.js +Sat, 02 Nov 2024 06:39:25 GMT express:router query : /static/js/vision-classifier.js +Sat, 02 Nov 2024 06:39:25 GMT express:router expressInit : /static/js/vision-classifier.js +Sat, 02 Nov 2024 06:39:25 GMT express:router jsonParser : /static/js/vision-classifier.js +Sat, 02 Nov 2024 06:39:25 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:39:25 GMT express:router urlencodedParser : /static/js/vision-classifier.js +Sat, 02 Nov 2024 06:39:25 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:39:25 GMT express:router corsMiddleware : /static/js/vision-classifier.js +Sat, 02 Nov 2024 06:39:25 GMT express:router trim prefix (/static) from url /static/js/vision-classifier.js +Sat, 02 Nov 2024 06:39:25 GMT express:router serveStatic /static : /static/js/vision-classifier.js +Sat, 02 Nov 2024 06:39:25 GMT send stat "/home/ubuntu/cognimates-training/static/js/vision-classifier.js" +Sat, 02 Nov 2024 06:39:25 GMT express:router dispatching GET /static/js/test-image-loader.js +Sat, 02 Nov 2024 06:39:25 GMT express:router query : /static/js/test-image-loader.js +Sat, 02 Nov 2024 06:39:25 GMT express:router expressInit : /static/js/test-image-loader.js +Sat, 02 Nov 2024 06:39:25 GMT express:router jsonParser : /static/js/test-image-loader.js +Sat, 02 Nov 2024 06:39:25 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:39:25 GMT express:router urlencodedParser : /static/js/test-image-loader.js +Sat, 02 Nov 2024 06:39:25 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:39:25 GMT express:router corsMiddleware : /static/js/test-image-loader.js +Sat, 02 Nov 2024 06:39:25 GMT express:router trim prefix (/static) from url /static/js/test-image-loader.js +Sat, 02 Nov 2024 06:39:25 GMT express:router serveStatic /static : /static/js/test-image-loader.js +Sat, 02 Nov 2024 06:39:25 GMT send stat "/home/ubuntu/cognimates-training/static/js/test-image-loader.js" +Sat, 02 Nov 2024 06:39:25 GMT express:router dispatching GET /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:39:25 GMT express:router query : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:39:25 GMT express:router expressInit : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:39:25 GMT express:router jsonParser : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:39:25 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:39:25 GMT express:router urlencodedParser : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:39:25 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:39:25 GMT express:router corsMiddleware : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:39:25 GMT express:router trim prefix (/static) from url /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:39:25 GMT express:router serveStatic /static : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:39:25 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/vimeo--white.svg" +Sat, 02 Nov 2024 06:39:25 GMT express:router dispatching GET /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:39:25 GMT express:router query : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:39:25 GMT express:router expressInit : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:39:25 GMT express:router jsonParser : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:39:25 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:39:25 GMT express:router urlencodedParser : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:39:25 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:39:25 GMT express:router corsMiddleware : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:39:25 GMT express:router trim prefix (/static) from url /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:39:25 GMT express:router serveStatic /static : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:39:25 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/facebook--white.svg" +Sat, 02 Nov 2024 06:39:25 GMT send pipe "/home/ubuntu/cognimates-training/static/js/vision-classifier.js" +Serving static file: /static/js/vision-classifier.js (application/javascript; charset=utf-8) +Sat, 02 Nov 2024 06:39:25 GMT send accept ranges +Sat, 02 Nov 2024 06:39:25 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:39:25 GMT send modified Fri, 01 Nov 2024 23:36:08 GMT +Sat, 02 Nov 2024 06:39:25 GMT send etag W/"169b-192ea16144a" +Sat, 02 Nov 2024 06:39:25 GMT send pipe "/home/ubuntu/cognimates-training/static/js/test-image-loader.js" +Serving static file: /static/js/test-image-loader.js (application/javascript; charset=utf-8) +Sat, 02 Nov 2024 06:39:25 GMT send accept ranges +Sat, 02 Nov 2024 06:39:25 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:39:25 GMT send modified Sat, 02 Nov 2024 05:58:56 GMT +Sat, 02 Nov 2024 06:39:25 GMT send etag W/"1335-192eb7489b2" +Sat, 02 Nov 2024 06:39:25 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/vimeo--white.svg" +Serving static file: /static/images/social/vimeo--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:39:25 GMT send accept ranges +Sat, 02 Nov 2024 06:39:25 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:39:25 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:39:25 GMT send etag W/"6b42-192da70662b" +Sat, 02 Nov 2024 06:39:25 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/facebook--white.svg" +Serving static file: /static/images/social/facebook--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:39:25 GMT send accept ranges +Sat, 02 Nov 2024 06:39:25 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:39:25 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:39:25 GMT send etag W/"69e4-192da70662b" +Sat, 02 Nov 2024 06:39:26 GMT express:router dispatching GET /vision/classifiers +Sat, 02 Nov 2024 06:39:26 GMT express:router query : /vision/classifiers +Sat, 02 Nov 2024 06:39:26 GMT express:router expressInit : /vision/classifiers +Sat, 02 Nov 2024 06:39:26 GMT express:router jsonParser : /vision/classifiers +Sat, 02 Nov 2024 06:39:26 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:39:26 GMT express:router urlencodedParser : /vision/classifiers +Sat, 02 Nov 2024 06:39:26 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:39:26 GMT express:router corsMiddleware : /vision/classifiers +Sat, 02 Nov 2024 06:39:26 GMT express:router router : /vision/classifiers +Sat, 02 Nov 2024 06:39:26 GMT express:router dispatching GET /vision/classifiers +Sat, 02 Nov 2024 06:39:26 GMT express:router dispatching GET /vision/classifiers +Sat, 02 Nov 2024 06:39:26 GMT express:router query : /vision/classifiers +Sat, 02 Nov 2024 06:39:26 GMT express:router expressInit : /vision/classifiers +Sat, 02 Nov 2024 06:39:26 GMT express:router jsonParser : /vision/classifiers +Sat, 02 Nov 2024 06:39:26 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:39:26 GMT express:router urlencodedParser : /vision/classifiers +Sat, 02 Nov 2024 06:39:26 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:39:26 GMT express:router corsMiddleware : /vision/classifiers +Sat, 02 Nov 2024 06:39:26 GMT express:router router : /vision/classifiers +Sat, 02 Nov 2024 06:39:26 GMT express:router dispatching GET /vision/classifiers +Sat, 02 Nov 2024 06:39:26 GMT express:router dispatching GET /static/images/website-banner-svg/website-banner.svg +Sat, 02 Nov 2024 06:39:26 GMT express:router query : /static/images/website-banner-svg/website-banner.svg +Sat, 02 Nov 2024 06:39:26 GMT express:router expressInit : /static/images/website-banner-svg/website-banner.svg +Sat, 02 Nov 2024 06:39:26 GMT express:router jsonParser : /static/images/website-banner-svg/website-banner.svg +Sat, 02 Nov 2024 06:39:26 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:39:26 GMT express:router urlencodedParser : /static/images/website-banner-svg/website-banner.svg +Sat, 02 Nov 2024 06:39:26 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:39:26 GMT express:router corsMiddleware : /static/images/website-banner-svg/website-banner.svg +Sat, 02 Nov 2024 06:39:26 GMT express:router trim prefix (/static) from url /static/images/website-banner-svg/website-banner.svg +Sat, 02 Nov 2024 06:39:26 GMT express:router serveStatic /static : /static/images/website-banner-svg/website-banner.svg +Sat, 02 Nov 2024 06:39:26 GMT send stat "/home/ubuntu/cognimates-training/static/images/website-banner-svg/website-banner.svg" +Sat, 02 Nov 2024 06:39:26 GMT send pipe "/home/ubuntu/cognimates-training/static/images/website-banner-svg/website-banner.svg" +Serving static file: /static/images/website-banner-svg/website-banner.svg (image/svg+xml) +Sat, 02 Nov 2024 06:39:26 GMT send accept ranges +Sat, 02 Nov 2024 06:39:26 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:39:26 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:39:26 GMT send etag W/"dc73-192da706633" +Sat, 02 Nov 2024 06:39:26 GMT express:router dispatching GET /static/images/website-banner-svg/embedded-image-1.png +Sat, 02 Nov 2024 06:39:26 GMT express:router query : /static/images/website-banner-svg/embedded-image-1.png +Sat, 02 Nov 2024 06:39:26 GMT express:router expressInit : /static/images/website-banner-svg/embedded-image-1.png +Sat, 02 Nov 2024 06:39:26 GMT express:router jsonParser : /static/images/website-banner-svg/embedded-image-1.png +Sat, 02 Nov 2024 06:39:26 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:39:26 GMT express:router urlencodedParser : /static/images/website-banner-svg/embedded-image-1.png +Sat, 02 Nov 2024 06:39:26 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:39:26 GMT express:router corsMiddleware : /static/images/website-banner-svg/embedded-image-1.png +Sat, 02 Nov 2024 06:39:26 GMT express:router trim prefix (/static) from url /static/images/website-banner-svg/embedded-image-1.png +Sat, 02 Nov 2024 06:39:26 GMT express:router serveStatic /static : /static/images/website-banner-svg/embedded-image-1.png +Sat, 02 Nov 2024 06:39:26 GMT send stat "/home/ubuntu/cognimates-training/static/images/website-banner-svg/embedded-image-1.png" +Sat, 02 Nov 2024 06:39:26 GMT express:router dispatching GET /static/images/website-banner-svg/embedded-image-3.png +Sat, 02 Nov 2024 06:39:26 GMT express:router query : /static/images/website-banner-svg/embedded-image-3.png +Sat, 02 Nov 2024 06:39:26 GMT express:router expressInit : /static/images/website-banner-svg/embedded-image-3.png +Sat, 02 Nov 2024 06:39:26 GMT express:router jsonParser : /static/images/website-banner-svg/embedded-image-3.png +Sat, 02 Nov 2024 06:39:26 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:39:26 GMT express:router urlencodedParser : /static/images/website-banner-svg/embedded-image-3.png +Sat, 02 Nov 2024 06:39:26 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:39:26 GMT express:router corsMiddleware : /static/images/website-banner-svg/embedded-image-3.png +Sat, 02 Nov 2024 06:39:26 GMT express:router trim prefix (/static) from url /static/images/website-banner-svg/embedded-image-3.png +Sat, 02 Nov 2024 06:39:26 GMT express:router serveStatic /static : /static/images/website-banner-svg/embedded-image-3.png +Sat, 02 Nov 2024 06:39:26 GMT send stat "/home/ubuntu/cognimates-training/static/images/website-banner-svg/embedded-image-3.png" +Sat, 02 Nov 2024 06:39:26 GMT send pipe "/home/ubuntu/cognimates-training/static/images/website-banner-svg/embedded-image-1.png" +Serving static file: /static/images/website-banner-svg/embedded-image-1.png (image/png) +Sat, 02 Nov 2024 06:39:26 GMT send accept ranges +Sat, 02 Nov 2024 06:39:26 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:39:26 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:39:26 GMT send etag W/"38b6a-192da70662f" +Sat, 02 Nov 2024 06:39:26 GMT send pipe "/home/ubuntu/cognimates-training/static/images/website-banner-svg/embedded-image-3.png" +Serving static file: /static/images/website-banner-svg/embedded-image-3.png (image/png) +Sat, 02 Nov 2024 06:39:26 GMT send accept ranges +Sat, 02 Nov 2024 06:39:26 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:39:26 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:39:26 GMT send etag W/"3ff1a-192da706633" +Sat, 02 Nov 2024 06:39:26 GMT express:router dispatching GET /static/images/website-banner-svg/embedded-image-2.png +Sat, 02 Nov 2024 06:39:26 GMT express:router query : /static/images/website-banner-svg/embedded-image-2.png +Sat, 02 Nov 2024 06:39:26 GMT express:router expressInit : /static/images/website-banner-svg/embedded-image-2.png +Sat, 02 Nov 2024 06:39:26 GMT express:router jsonParser : /static/images/website-banner-svg/embedded-image-2.png +Sat, 02 Nov 2024 06:39:26 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:39:26 GMT express:router urlencodedParser : /static/images/website-banner-svg/embedded-image-2.png +Sat, 02 Nov 2024 06:39:26 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:39:26 GMT express:router corsMiddleware : /static/images/website-banner-svg/embedded-image-2.png +Sat, 02 Nov 2024 06:39:26 GMT express:router trim prefix (/static) from url /static/images/website-banner-svg/embedded-image-2.png +Sat, 02 Nov 2024 06:39:26 GMT express:router serveStatic /static : /static/images/website-banner-svg/embedded-image-2.png +Sat, 02 Nov 2024 06:39:26 GMT send stat "/home/ubuntu/cognimates-training/static/images/website-banner-svg/embedded-image-2.png" +Sat, 02 Nov 2024 06:39:26 GMT send pipe "/home/ubuntu/cognimates-training/static/images/website-banner-svg/embedded-image-2.png" +Serving static file: /static/images/website-banner-svg/embedded-image-2.png (image/png) +Sat, 02 Nov 2024 06:39:26 GMT send accept ranges +Sat, 02 Nov 2024 06:39:26 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:39:26 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:39:26 GMT send etag W/"3e97d-192da70662f" +Sat, 02 Nov 2024 06:39:31 GMT express:router dispatching GET /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:39:31 GMT express:router query : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:39:31 GMT express:router expressInit : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:39:31 GMT express:router jsonParser : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:39:31 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:39:31 GMT express:router urlencodedParser : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:39:31 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:39:31 GMT express:router corsMiddleware : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:39:31 GMT express:router trim prefix (/static) from url /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:39:31 GMT express:router serveStatic /static : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:39:31 GMT send stat "/home/ubuntu/cognimates-training/static/images/cognimates-logo--codelab.svg" +Sat, 02 Nov 2024 06:39:31 GMT express:router dispatching GET /static/images/vision_banner.png +Sat, 02 Nov 2024 06:39:31 GMT express:router query : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:39:31 GMT express:router expressInit : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:39:31 GMT express:router jsonParser : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:39:31 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:39:31 GMT express:router urlencodedParser : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:39:31 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:39:31 GMT express:router corsMiddleware : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:39:31 GMT express:router trim prefix (/static) from url /static/images/vision_banner.png +Sat, 02 Nov 2024 06:39:31 GMT express:router serveStatic /static : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:39:31 GMT send stat "/home/ubuntu/cognimates-training/static/images/vision_banner.png" +Sat, 02 Nov 2024 06:39:31 GMT express:router dispatching GET /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:39:31 GMT express:router query : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:39:31 GMT express:router expressInit : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:39:31 GMT express:router jsonParser : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:39:31 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:39:31 GMT express:router urlencodedParser : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:39:31 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:39:31 GMT express:router corsMiddleware : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:39:31 GMT express:router trim prefix (/static) from url /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:39:31 GMT express:router serveStatic /static : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:39:31 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/mit-media-lab--white.svg" +Sat, 02 Nov 2024 06:39:31 GMT express:router dispatching GET /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:39:31 GMT express:router query : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:39:31 GMT express:router expressInit : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:39:31 GMT express:router jsonParser : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:39:31 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:39:31 GMT express:router urlencodedParser : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:39:31 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:39:31 GMT express:router corsMiddleware : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:39:31 GMT express:router trim prefix (/static) from url /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:39:31 GMT express:router serveStatic /static : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:39:31 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/twitter--white.svg" +Sat, 02 Nov 2024 06:39:31 GMT send pipe "/home/ubuntu/cognimates-training/static/images/cognimates-logo--codelab.svg" +Serving static file: /static/images/cognimates-logo--codelab.svg (image/svg+xml) +Sat, 02 Nov 2024 06:39:31 GMT send accept ranges +Sat, 02 Nov 2024 06:39:31 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:39:31 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:39:31 GMT send etag W/"9f5-192da706627" +Sat, 02 Nov 2024 06:39:31 GMT send pipe "/home/ubuntu/cognimates-training/static/images/vision_banner.png" +Serving static file: /static/images/vision_banner.png (image/png) +Sat, 02 Nov 2024 06:39:31 GMT send accept ranges +Sat, 02 Nov 2024 06:39:31 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:39:31 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:39:31 GMT send etag W/"20212-192da70662f" +Sat, 02 Nov 2024 06:39:31 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/mit-media-lab--white.svg" +Serving static file: /static/images/social/mit-media-lab--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:39:31 GMT send accept ranges +Sat, 02 Nov 2024 06:39:31 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:39:31 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:39:31 GMT send etag W/"a7c5-192da70662b" +Sat, 02 Nov 2024 06:39:31 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/twitter--white.svg" +Serving static file: /static/images/social/twitter--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:39:31 GMT send accept ranges +Sat, 02 Nov 2024 06:39:31 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:39:31 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:39:31 GMT send etag W/"712c-192da70662b" +Sat, 02 Nov 2024 06:39:31 GMT express:router dispatching GET /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:39:31 GMT express:router query : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:39:31 GMT express:router expressInit : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:39:31 GMT express:router jsonParser : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:39:31 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:39:31 GMT express:router urlencodedParser : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:39:31 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:39:31 GMT express:router corsMiddleware : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:39:31 GMT express:router trim prefix (/static) from url /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:39:31 GMT express:router serveStatic /static : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:39:31 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/instagram--white.svg" +Sat, 02 Nov 2024 06:39:31 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/instagram--white.svg" +Serving static file: /static/images/social/instagram--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:39:31 GMT send accept ranges +Sat, 02 Nov 2024 06:39:31 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:39:31 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:39:31 GMT send etag W/"6ec0-192da70662b" +Sat, 02 Nov 2024 06:39:31 GMT express:router dispatching GET /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:39:31 GMT express:router query : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:39:31 GMT express:router expressInit : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:39:31 GMT express:router jsonParser : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:39:31 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:39:31 GMT express:router urlencodedParser : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:39:31 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:39:31 GMT express:router corsMiddleware : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:39:31 GMT express:router trim prefix (/static) from url /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:39:31 GMT express:router serveStatic /static : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:39:31 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/vimeo--white.svg" +Sat, 02 Nov 2024 06:39:31 GMT express:router dispatching GET /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:39:31 GMT express:router query : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:39:31 GMT express:router expressInit : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:39:31 GMT express:router jsonParser : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:39:31 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:39:31 GMT express:router urlencodedParser : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:39:31 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:39:31 GMT express:router corsMiddleware : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:39:31 GMT express:router trim prefix (/static) from url /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:39:31 GMT express:router serveStatic /static : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:39:31 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/facebook--white.svg" +Sat, 02 Nov 2024 06:39:31 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/vimeo--white.svg" +Serving static file: /static/images/social/vimeo--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:39:31 GMT send accept ranges +Sat, 02 Nov 2024 06:39:31 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:39:31 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:39:31 GMT send etag W/"6b42-192da70662b" +Sat, 02 Nov 2024 06:39:31 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/facebook--white.svg" +Serving static file: /static/images/social/facebook--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:39:31 GMT send accept ranges +Sat, 02 Nov 2024 06:39:31 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:39:31 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:39:31 GMT send etag W/"69e4-192da70662b" +Sat, 02 Nov 2024 06:39:52 GMT express:router dispatching GET /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:39:52 GMT express:router query : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:39:52 GMT express:router expressInit : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:39:52 GMT express:router jsonParser : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:39:52 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:39:52 GMT express:router urlencodedParser : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:39:52 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:39:52 GMT express:router corsMiddleware : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:39:52 GMT express:router trim prefix (/static) from url /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:39:52 GMT express:router serveStatic /static : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:39:52 GMT send stat "/home/ubuntu/cognimates-training/static/images/cognimates-logo--codelab.svg" +Sat, 02 Nov 2024 06:39:52 GMT express:router dispatching GET /static/images/vision_banner.png +Sat, 02 Nov 2024 06:39:52 GMT express:router query : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:39:52 GMT express:router expressInit : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:39:52 GMT express:router jsonParser : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:39:52 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:39:52 GMT express:router urlencodedParser : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:39:52 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:39:52 GMT express:router corsMiddleware : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:39:52 GMT express:router trim prefix (/static) from url /static/images/vision_banner.png +Sat, 02 Nov 2024 06:39:52 GMT express:router serveStatic /static : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:39:52 GMT send stat "/home/ubuntu/cognimates-training/static/images/vision_banner.png" +Sat, 02 Nov 2024 06:39:52 GMT express:router dispatching GET /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:39:52 GMT express:router query : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:39:52 GMT express:router expressInit : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:39:52 GMT express:router jsonParser : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:39:52 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:39:52 GMT express:router urlencodedParser : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:39:52 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:39:52 GMT express:router corsMiddleware : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:39:52 GMT express:router trim prefix (/static) from url /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:39:52 GMT express:router serveStatic /static : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:39:52 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/mit-media-lab--white.svg" +Sat, 02 Nov 2024 06:39:52 GMT express:router dispatching GET /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:39:52 GMT express:router query : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:39:52 GMT express:router expressInit : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:39:52 GMT express:router jsonParser : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:39:52 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:39:52 GMT express:router urlencodedParser : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:39:52 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:39:52 GMT express:router corsMiddleware : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:39:52 GMT express:router trim prefix (/static) from url /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:39:52 GMT express:router serveStatic /static : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:39:52 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/twitter--white.svg" +Sat, 02 Nov 2024 06:39:52 GMT send pipe "/home/ubuntu/cognimates-training/static/images/cognimates-logo--codelab.svg" +Serving static file: /static/images/cognimates-logo--codelab.svg (image/svg+xml) +Sat, 02 Nov 2024 06:39:52 GMT send accept ranges +Sat, 02 Nov 2024 06:39:52 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:39:52 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:39:52 GMT send etag W/"9f5-192da706627" +Sat, 02 Nov 2024 06:39:52 GMT send pipe "/home/ubuntu/cognimates-training/static/images/vision_banner.png" +Serving static file: /static/images/vision_banner.png (image/png) +Sat, 02 Nov 2024 06:39:52 GMT send accept ranges +Sat, 02 Nov 2024 06:39:52 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:39:52 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:39:52 GMT send etag W/"20212-192da70662f" +Sat, 02 Nov 2024 06:39:52 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/mit-media-lab--white.svg" +Serving static file: /static/images/social/mit-media-lab--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:39:52 GMT send accept ranges +Sat, 02 Nov 2024 06:39:52 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:39:52 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:39:52 GMT send etag W/"a7c5-192da70662b" +Sat, 02 Nov 2024 06:39:52 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/twitter--white.svg" +Serving static file: /static/images/social/twitter--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:39:52 GMT send accept ranges +Sat, 02 Nov 2024 06:39:52 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:39:52 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:39:52 GMT send etag W/"712c-192da70662b" +Sat, 02 Nov 2024 06:39:52 GMT express:router dispatching GET /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:39:52 GMT express:router query : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:39:52 GMT express:router expressInit : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:39:52 GMT express:router jsonParser : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:39:52 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:39:52 GMT express:router urlencodedParser : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:39:52 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:39:52 GMT express:router corsMiddleware : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:39:52 GMT express:router trim prefix (/static) from url /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:39:52 GMT express:router serveStatic /static : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:39:52 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/instagram--white.svg" +Sat, 02 Nov 2024 06:39:52 GMT express:router dispatching GET /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:39:52 GMT express:router query : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:39:52 GMT express:router expressInit : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:39:52 GMT express:router jsonParser : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:39:52 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:39:52 GMT express:router urlencodedParser : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:39:52 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:39:52 GMT express:router corsMiddleware : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:39:52 GMT express:router trim prefix (/static) from url /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:39:52 GMT express:router serveStatic /static : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:39:52 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/vimeo--white.svg" +Sat, 02 Nov 2024 06:39:52 GMT express:router dispatching GET /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:39:52 GMT express:router query : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:39:52 GMT express:router expressInit : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:39:52 GMT express:router jsonParser : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:39:52 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:39:52 GMT express:router urlencodedParser : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:39:52 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:39:52 GMT express:router corsMiddleware : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:39:52 GMT express:router trim prefix (/static) from url /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:39:52 GMT express:router serveStatic /static : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:39:52 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/facebook--white.svg" +Sat, 02 Nov 2024 06:39:52 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/instagram--white.svg" +Serving static file: /static/images/social/instagram--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:39:52 GMT send accept ranges +Sat, 02 Nov 2024 06:39:52 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:39:52 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:39:52 GMT send etag W/"6ec0-192da70662b" +Sat, 02 Nov 2024 06:39:52 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/vimeo--white.svg" +Serving static file: /static/images/social/vimeo--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:39:52 GMT send accept ranges +Sat, 02 Nov 2024 06:39:52 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:39:52 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:39:52 GMT send etag W/"6b42-192da70662b" +Sat, 02 Nov 2024 06:39:52 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/facebook--white.svg" +Serving static file: /static/images/social/facebook--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:39:52 GMT send accept ranges +Sat, 02 Nov 2024 06:39:52 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:39:52 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:39:52 GMT send etag W/"69e4-192da70662b" +Sat, 02 Nov 2024 06:39:56 GMT express:router dispatching GET /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:39:56 GMT express:router query : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:39:56 GMT express:router expressInit : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:39:56 GMT express:router jsonParser : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:39:56 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:39:56 GMT express:router urlencodedParser : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:39:56 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:39:56 GMT express:router corsMiddleware : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:39:56 GMT express:router trim prefix (/static) from url /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:39:56 GMT express:router serveStatic /static : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:39:56 GMT send stat "/home/ubuntu/cognimates-training/static/images/cognimates-logo--codelab.svg" +Sat, 02 Nov 2024 06:39:56 GMT express:router dispatching GET /static/images/vision_banner.png +Sat, 02 Nov 2024 06:39:56 GMT express:router query : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:39:56 GMT express:router expressInit : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:39:56 GMT express:router jsonParser : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:39:56 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:39:56 GMT express:router urlencodedParser : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:39:56 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:39:56 GMT express:router corsMiddleware : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:39:56 GMT express:router trim prefix (/static) from url /static/images/vision_banner.png +Sat, 02 Nov 2024 06:39:56 GMT express:router serveStatic /static : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:39:56 GMT send stat "/home/ubuntu/cognimates-training/static/images/vision_banner.png" +Sat, 02 Nov 2024 06:39:56 GMT send pipe "/home/ubuntu/cognimates-training/static/images/cognimates-logo--codelab.svg" +Serving static file: /static/images/cognimates-logo--codelab.svg (image/svg+xml) +Sat, 02 Nov 2024 06:39:56 GMT send accept ranges +Sat, 02 Nov 2024 06:39:56 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:39:56 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:39:56 GMT send etag W/"9f5-192da706627" +Sat, 02 Nov 2024 06:39:56 GMT send pipe "/home/ubuntu/cognimates-training/static/images/vision_banner.png" +Serving static file: /static/images/vision_banner.png (image/png) +Sat, 02 Nov 2024 06:39:56 GMT send accept ranges +Sat, 02 Nov 2024 06:39:56 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:39:56 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:39:56 GMT send etag W/"20212-192da70662f" +Sat, 02 Nov 2024 06:39:56 GMT express:router dispatching GET /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:39:56 GMT express:router query : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:39:56 GMT express:router expressInit : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:39:56 GMT express:router jsonParser : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:39:56 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:39:56 GMT express:router urlencodedParser : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:39:56 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:39:56 GMT express:router corsMiddleware : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:39:56 GMT express:router trim prefix (/static) from url /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:39:56 GMT express:router serveStatic /static : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:39:56 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/mit-media-lab--white.svg" +Sat, 02 Nov 2024 06:39:56 GMT express:router dispatching GET /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:39:56 GMT express:router query : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:39:56 GMT express:router expressInit : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:39:56 GMT express:router jsonParser : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:39:56 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:39:56 GMT express:router urlencodedParser : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:39:56 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:39:56 GMT express:router corsMiddleware : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:39:56 GMT express:router trim prefix (/static) from url /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:39:56 GMT express:router serveStatic /static : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:39:56 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/twitter--white.svg" +Sat, 02 Nov 2024 06:39:56 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/mit-media-lab--white.svg" +Serving static file: /static/images/social/mit-media-lab--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:39:56 GMT send accept ranges +Sat, 02 Nov 2024 06:39:56 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:39:56 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:39:56 GMT send etag W/"a7c5-192da70662b" +Sat, 02 Nov 2024 06:39:56 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/twitter--white.svg" +Serving static file: /static/images/social/twitter--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:39:56 GMT send accept ranges +Sat, 02 Nov 2024 06:39:56 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:39:56 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:39:56 GMT send etag W/"712c-192da70662b" +Sat, 02 Nov 2024 06:39:56 GMT express:router dispatching GET /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:39:56 GMT express:router query : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:39:56 GMT express:router expressInit : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:39:56 GMT express:router jsonParser : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:39:56 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:39:56 GMT express:router urlencodedParser : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:39:56 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:39:56 GMT express:router corsMiddleware : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:39:56 GMT express:router trim prefix (/static) from url /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:39:56 GMT express:router serveStatic /static : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:39:56 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/instagram--white.svg" +Sat, 02 Nov 2024 06:39:56 GMT express:router dispatching GET /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:39:56 GMT express:router query : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:39:56 GMT express:router expressInit : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:39:56 GMT express:router jsonParser : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:39:56 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:39:56 GMT express:router urlencodedParser : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:39:56 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:39:56 GMT express:router corsMiddleware : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:39:56 GMT express:router trim prefix (/static) from url /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:39:56 GMT express:router serveStatic /static : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:39:56 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/vimeo--white.svg" +Sat, 02 Nov 2024 06:39:56 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/instagram--white.svg" +Serving static file: /static/images/social/instagram--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:39:56 GMT send accept ranges +Sat, 02 Nov 2024 06:39:56 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:39:56 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:39:56 GMT send etag W/"6ec0-192da70662b" +Sat, 02 Nov 2024 06:39:56 GMT express:router dispatching GET /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:39:56 GMT express:router query : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:39:56 GMT express:router expressInit : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:39:56 GMT express:router jsonParser : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:39:56 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:39:56 GMT express:router urlencodedParser : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:39:56 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:39:56 GMT express:router corsMiddleware : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:39:56 GMT express:router trim prefix (/static) from url /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:39:56 GMT express:router serveStatic /static : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:39:56 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/facebook--white.svg" +Sat, 02 Nov 2024 06:39:56 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/vimeo--white.svg" +Serving static file: /static/images/social/vimeo--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:39:56 GMT send accept ranges +Sat, 02 Nov 2024 06:39:56 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:39:56 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:39:56 GMT send etag W/"6b42-192da70662b" +Sat, 02 Nov 2024 06:39:56 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/facebook--white.svg" +Serving static file: /static/images/social/facebook--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:39:56 GMT send accept ranges +Sat, 02 Nov 2024 06:39:56 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:39:56 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:39:56 GMT send etag W/"69e4-192da70662b" +Sat, 02 Nov 2024 06:40:01 GMT express:router dispatching GET /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:40:01 GMT express:router query : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:40:01 GMT express:router expressInit : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:40:01 GMT express:router jsonParser : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:40:01 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:40:01 GMT express:router urlencodedParser : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:40:01 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:40:01 GMT express:router corsMiddleware : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:40:01 GMT express:router trim prefix (/static) from url /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:40:01 GMT express:router serveStatic /static : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:40:01 GMT send stat "/home/ubuntu/cognimates-training/static/images/cognimates-logo--codelab.svg" +Sat, 02 Nov 2024 06:40:01 GMT send pipe "/home/ubuntu/cognimates-training/static/images/cognimates-logo--codelab.svg" +Serving static file: /static/images/cognimates-logo--codelab.svg (image/svg+xml) +Sat, 02 Nov 2024 06:40:01 GMT send accept ranges +Sat, 02 Nov 2024 06:40:01 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:40:01 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:40:01 GMT send etag W/"9f5-192da706627" +Sat, 02 Nov 2024 06:40:01 GMT express:router dispatching GET /static/images/vision_banner.png +Sat, 02 Nov 2024 06:40:01 GMT express:router query : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:40:01 GMT express:router expressInit : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:40:01 GMT express:router jsonParser : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:40:01 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:40:01 GMT express:router urlencodedParser : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:40:01 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:40:01 GMT express:router corsMiddleware : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:40:01 GMT express:router trim prefix (/static) from url /static/images/vision_banner.png +Sat, 02 Nov 2024 06:40:01 GMT express:router serveStatic /static : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:40:01 GMT send stat "/home/ubuntu/cognimates-training/static/images/vision_banner.png" +Sat, 02 Nov 2024 06:40:01 GMT express:router dispatching GET /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:40:01 GMT express:router query : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:40:01 GMT express:router expressInit : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:40:01 GMT express:router jsonParser : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:40:01 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:40:01 GMT express:router urlencodedParser : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:40:01 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:40:01 GMT express:router corsMiddleware : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:40:01 GMT express:router trim prefix (/static) from url /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:40:01 GMT express:router serveStatic /static : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:40:01 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/mit-media-lab--white.svg" +Sat, 02 Nov 2024 06:40:01 GMT express:router dispatching GET /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:40:01 GMT express:router query : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:40:01 GMT express:router expressInit : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:40:01 GMT express:router jsonParser : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:40:01 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:40:01 GMT express:router urlencodedParser : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:40:01 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:40:01 GMT express:router corsMiddleware : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:40:01 GMT express:router trim prefix (/static) from url /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:40:01 GMT express:router serveStatic /static : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:40:01 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/twitter--white.svg" +Sat, 02 Nov 2024 06:40:01 GMT express:router dispatching GET /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:40:01 GMT express:router query : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:40:01 GMT express:router expressInit : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:40:01 GMT express:router jsonParser : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:40:01 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:40:01 GMT express:router urlencodedParser : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:40:01 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:40:01 GMT express:router corsMiddleware : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:40:01 GMT express:router trim prefix (/static) from url /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:40:01 GMT express:router serveStatic /static : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:40:01 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/instagram--white.svg" +Sat, 02 Nov 2024 06:40:01 GMT express:router dispatching GET /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:40:01 GMT express:router query : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:40:01 GMT express:router expressInit : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:40:01 GMT express:router jsonParser : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:40:01 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:40:01 GMT express:router urlencodedParser : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:40:01 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:40:01 GMT express:router corsMiddleware : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:40:01 GMT express:router trim prefix (/static) from url /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:40:01 GMT express:router serveStatic /static : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:40:01 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/vimeo--white.svg" +Sat, 02 Nov 2024 06:40:01 GMT send pipe "/home/ubuntu/cognimates-training/static/images/vision_banner.png" +Serving static file: /static/images/vision_banner.png (image/png) +Sat, 02 Nov 2024 06:40:01 GMT send accept ranges +Sat, 02 Nov 2024 06:40:01 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:40:01 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:40:01 GMT send etag W/"20212-192da70662f" +Sat, 02 Nov 2024 06:40:01 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/mit-media-lab--white.svg" +Serving static file: /static/images/social/mit-media-lab--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:40:01 GMT send accept ranges +Sat, 02 Nov 2024 06:40:01 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:40:01 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:40:01 GMT send etag W/"a7c5-192da70662b" +Sat, 02 Nov 2024 06:40:01 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/twitter--white.svg" +Serving static file: /static/images/social/twitter--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:40:01 GMT send accept ranges +Sat, 02 Nov 2024 06:40:01 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:40:01 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:40:01 GMT send etag W/"712c-192da70662b" +Sat, 02 Nov 2024 06:40:01 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/instagram--white.svg" +Serving static file: /static/images/social/instagram--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:40:01 GMT send accept ranges +Sat, 02 Nov 2024 06:40:01 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:40:01 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:40:01 GMT send etag W/"6ec0-192da70662b" +Sat, 02 Nov 2024 06:40:01 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/vimeo--white.svg" +Serving static file: /static/images/social/vimeo--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:40:01 GMT send accept ranges +Sat, 02 Nov 2024 06:40:01 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:40:01 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:40:01 GMT send etag W/"6b42-192da70662b" +Sat, 02 Nov 2024 06:40:01 GMT express:router dispatching GET /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:40:01 GMT express:router query : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:40:01 GMT express:router expressInit : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:40:01 GMT express:router jsonParser : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:40:01 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:40:01 GMT express:router urlencodedParser : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:40:01 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:40:01 GMT express:router corsMiddleware : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:40:01 GMT express:router trim prefix (/static) from url /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:40:01 GMT express:router serveStatic /static : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:40:01 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/facebook--white.svg" +Sat, 02 Nov 2024 06:40:01 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/facebook--white.svg" +Serving static file: /static/images/social/facebook--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:40:01 GMT send accept ranges +Sat, 02 Nov 2024 06:40:01 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:40:01 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:40:01 GMT send etag W/"69e4-192da70662b" +Sat, 02 Nov 2024 06:40:06 GMT express:router dispatching GET /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:40:06 GMT express:router query : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:40:06 GMT express:router expressInit : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:40:06 GMT express:router jsonParser : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:40:06 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:40:06 GMT express:router urlencodedParser : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:40:06 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:40:06 GMT express:router corsMiddleware : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:40:06 GMT express:router trim prefix (/static) from url /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:40:06 GMT express:router serveStatic /static : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:40:06 GMT send stat "/home/ubuntu/cognimates-training/static/images/cognimates-logo--codelab.svg" +Sat, 02 Nov 2024 06:40:06 GMT send pipe "/home/ubuntu/cognimates-training/static/images/cognimates-logo--codelab.svg" +Serving static file: /static/images/cognimates-logo--codelab.svg (image/svg+xml) +Sat, 02 Nov 2024 06:40:06 GMT send accept ranges +Sat, 02 Nov 2024 06:40:06 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:40:06 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:40:06 GMT send etag W/"9f5-192da706627" +Sat, 02 Nov 2024 06:40:06 GMT express:router dispatching GET /static/images/vision_banner.png +Sat, 02 Nov 2024 06:40:06 GMT express:router query : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:40:06 GMT express:router expressInit : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:40:06 GMT express:router jsonParser : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:40:06 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:40:06 GMT express:router urlencodedParser : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:40:06 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:40:06 GMT express:router corsMiddleware : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:40:06 GMT express:router trim prefix (/static) from url /static/images/vision_banner.png +Sat, 02 Nov 2024 06:40:06 GMT express:router serveStatic /static : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:40:06 GMT send stat "/home/ubuntu/cognimates-training/static/images/vision_banner.png" +Sat, 02 Nov 2024 06:40:06 GMT express:router dispatching GET /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:40:06 GMT express:router query : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:40:06 GMT express:router expressInit : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:40:06 GMT express:router jsonParser : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:40:06 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:40:06 GMT express:router urlencodedParser : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:40:06 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:40:06 GMT express:router corsMiddleware : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:40:06 GMT express:router trim prefix (/static) from url /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:40:06 GMT express:router serveStatic /static : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:40:06 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/mit-media-lab--white.svg" +Sat, 02 Nov 2024 06:40:06 GMT send pipe "/home/ubuntu/cognimates-training/static/images/vision_banner.png" +Serving static file: /static/images/vision_banner.png (image/png) +Sat, 02 Nov 2024 06:40:07 GMT send accept ranges +Sat, 02 Nov 2024 06:40:07 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:40:07 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:40:07 GMT send etag W/"20212-192da70662f" +Sat, 02 Nov 2024 06:40:07 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/mit-media-lab--white.svg" +Serving static file: /static/images/social/mit-media-lab--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:40:07 GMT send accept ranges +Sat, 02 Nov 2024 06:40:07 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:40:07 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:40:07 GMT send etag W/"a7c5-192da70662b" +Sat, 02 Nov 2024 06:40:07 GMT express:router dispatching GET /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:40:07 GMT express:router query : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:40:07 GMT express:router expressInit : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:40:07 GMT express:router jsonParser : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:40:07 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:40:07 GMT express:router urlencodedParser : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:40:07 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:40:07 GMT express:router corsMiddleware : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:40:07 GMT express:router trim prefix (/static) from url /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:40:07 GMT express:router serveStatic /static : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:40:07 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/twitter--white.svg" +Sat, 02 Nov 2024 06:40:07 GMT express:router dispatching GET /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:40:07 GMT express:router query : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:40:07 GMT express:router expressInit : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:40:07 GMT express:router jsonParser : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:40:07 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:40:07 GMT express:router urlencodedParser : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:40:07 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:40:07 GMT express:router corsMiddleware : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:40:07 GMT express:router trim prefix (/static) from url /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:40:07 GMT express:router serveStatic /static : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:40:07 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/instagram--white.svg" +Sat, 02 Nov 2024 06:40:07 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/twitter--white.svg" +Serving static file: /static/images/social/twitter--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:40:07 GMT send accept ranges +Sat, 02 Nov 2024 06:40:07 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:40:07 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:40:07 GMT send etag W/"712c-192da70662b" +Sat, 02 Nov 2024 06:40:07 GMT express:router dispatching GET /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:40:07 GMT express:router query : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:40:07 GMT express:router expressInit : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:40:07 GMT express:router jsonParser : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:40:07 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:40:07 GMT express:router urlencodedParser : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:40:07 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:40:07 GMT express:router corsMiddleware : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:40:07 GMT express:router trim prefix (/static) from url /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:40:07 GMT express:router serveStatic /static : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:40:07 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/vimeo--white.svg" +Sat, 02 Nov 2024 06:40:07 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/instagram--white.svg" +Serving static file: /static/images/social/instagram--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:40:07 GMT send accept ranges +Sat, 02 Nov 2024 06:40:07 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:40:07 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:40:07 GMT send etag W/"6ec0-192da70662b" +Sat, 02 Nov 2024 06:40:07 GMT express:router dispatching GET /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:40:07 GMT express:router query : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:40:07 GMT express:router expressInit : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:40:07 GMT express:router jsonParser : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:40:07 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:40:07 GMT express:router urlencodedParser : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:40:07 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:40:07 GMT express:router corsMiddleware : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:40:07 GMT express:router trim prefix (/static) from url /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:40:07 GMT express:router serveStatic /static : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:40:07 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/facebook--white.svg" +Sat, 02 Nov 2024 06:40:07 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/vimeo--white.svg" +Serving static file: /static/images/social/vimeo--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:40:07 GMT send accept ranges +Sat, 02 Nov 2024 06:40:07 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:40:07 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:40:07 GMT send etag W/"6b42-192da70662b" +Sat, 02 Nov 2024 06:40:07 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/facebook--white.svg" +Serving static file: /static/images/social/facebook--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:40:07 GMT send accept ranges +Sat, 02 Nov 2024 06:40:07 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:40:07 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:40:07 GMT send etag W/"69e4-192da70662b" +Sat, 02 Nov 2024 06:40:11 GMT express:router dispatching GET /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:40:11 GMT express:router query : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:40:11 GMT express:router expressInit : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:40:11 GMT express:router jsonParser : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:40:11 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:40:11 GMT express:router urlencodedParser : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:40:11 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:40:11 GMT express:router corsMiddleware : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:40:11 GMT express:router trim prefix (/static) from url /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:40:11 GMT express:router serveStatic /static : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:40:11 GMT send stat "/home/ubuntu/cognimates-training/static/images/cognimates-logo--codelab.svg" +Sat, 02 Nov 2024 06:40:11 GMT express:router dispatching GET /static/images/vision_banner.png +Sat, 02 Nov 2024 06:40:11 GMT express:router query : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:40:11 GMT express:router expressInit : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:40:11 GMT express:router jsonParser : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:40:11 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:40:11 GMT express:router urlencodedParser : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:40:11 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:40:11 GMT express:router corsMiddleware : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:40:11 GMT express:router trim prefix (/static) from url /static/images/vision_banner.png +Sat, 02 Nov 2024 06:40:11 GMT express:router serveStatic /static : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:40:11 GMT send stat "/home/ubuntu/cognimates-training/static/images/vision_banner.png" +Sat, 02 Nov 2024 06:40:11 GMT express:router dispatching GET /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:40:11 GMT express:router query : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:40:11 GMT express:router expressInit : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:40:11 GMT express:router jsonParser : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:40:11 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:40:11 GMT express:router urlencodedParser : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:40:11 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:40:11 GMT express:router corsMiddleware : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:40:11 GMT express:router trim prefix (/static) from url /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:40:11 GMT express:router serveStatic /static : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:40:11 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/mit-media-lab--white.svg" +Sat, 02 Nov 2024 06:40:11 GMT send pipe "/home/ubuntu/cognimates-training/static/images/cognimates-logo--codelab.svg" +Serving static file: /static/images/cognimates-logo--codelab.svg (image/svg+xml) +Sat, 02 Nov 2024 06:40:11 GMT send accept ranges +Sat, 02 Nov 2024 06:40:11 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:40:11 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:40:11 GMT send etag W/"9f5-192da706627" +Sat, 02 Nov 2024 06:40:11 GMT send pipe "/home/ubuntu/cognimates-training/static/images/vision_banner.png" +Serving static file: /static/images/vision_banner.png (image/png) +Sat, 02 Nov 2024 06:40:11 GMT send accept ranges +Sat, 02 Nov 2024 06:40:11 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:40:11 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:40:11 GMT send etag W/"20212-192da70662f" +Sat, 02 Nov 2024 06:40:11 GMT express:router dispatching GET /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:40:11 GMT express:router query : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:40:11 GMT express:router expressInit : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:40:11 GMT express:router jsonParser : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:40:11 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:40:11 GMT express:router urlencodedParser : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:40:11 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:40:11 GMT express:router corsMiddleware : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:40:11 GMT express:router trim prefix (/static) from url /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:40:11 GMT express:router serveStatic /static : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:40:11 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/twitter--white.svg" +Sat, 02 Nov 2024 06:40:11 GMT express:router dispatching GET /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:40:11 GMT express:router query : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:40:11 GMT express:router expressInit : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:40:11 GMT express:router jsonParser : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:40:11 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:40:11 GMT express:router urlencodedParser : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:40:11 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:40:11 GMT express:router corsMiddleware : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:40:11 GMT express:router trim prefix (/static) from url /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:40:11 GMT express:router serveStatic /static : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:40:11 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/instagram--white.svg" +Sat, 02 Nov 2024 06:40:11 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/mit-media-lab--white.svg" +Serving static file: /static/images/social/mit-media-lab--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:40:11 GMT send accept ranges +Sat, 02 Nov 2024 06:40:11 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:40:11 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:40:11 GMT send etag W/"a7c5-192da70662b" +Sat, 02 Nov 2024 06:40:11 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/twitter--white.svg" +Serving static file: /static/images/social/twitter--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:40:11 GMT send accept ranges +Sat, 02 Nov 2024 06:40:11 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:40:11 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:40:11 GMT send etag W/"712c-192da70662b" +Sat, 02 Nov 2024 06:40:11 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/instagram--white.svg" +Serving static file: /static/images/social/instagram--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:40:11 GMT send accept ranges +Sat, 02 Nov 2024 06:40:11 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:40:11 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:40:11 GMT send etag W/"6ec0-192da70662b" +Sat, 02 Nov 2024 06:40:11 GMT express:router dispatching GET /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:40:11 GMT express:router query : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:40:11 GMT express:router expressInit : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:40:11 GMT express:router jsonParser : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:40:11 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:40:11 GMT express:router urlencodedParser : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:40:11 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:40:11 GMT express:router corsMiddleware : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:40:11 GMT express:router trim prefix (/static) from url /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:40:11 GMT express:router serveStatic /static : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:40:11 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/vimeo--white.svg" +Sat, 02 Nov 2024 06:40:11 GMT express:router dispatching GET /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:40:11 GMT express:router query : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:40:11 GMT express:router expressInit : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:40:11 GMT express:router jsonParser : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:40:11 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:40:11 GMT express:router urlencodedParser : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:40:11 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:40:11 GMT express:router corsMiddleware : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:40:11 GMT express:router trim prefix (/static) from url /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:40:11 GMT express:router serveStatic /static : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:40:11 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/facebook--white.svg" +Sat, 02 Nov 2024 06:40:11 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/vimeo--white.svg" +Serving static file: /static/images/social/vimeo--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:40:11 GMT send accept ranges +Sat, 02 Nov 2024 06:40:11 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:40:11 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:40:11 GMT send etag W/"6b42-192da70662b" +Sat, 02 Nov 2024 06:40:11 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/facebook--white.svg" +Serving static file: /static/images/social/facebook--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:40:11 GMT send accept ranges +Sat, 02 Nov 2024 06:40:11 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:40:11 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:40:11 GMT send etag W/"69e4-192da70662b" +Sat, 02 Nov 2024 06:40:31 GMT express:router dispatching GET /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:40:31 GMT express:router query : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:40:31 GMT express:router expressInit : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:40:31 GMT express:router jsonParser : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:40:31 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:40:31 GMT express:router urlencodedParser : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:40:31 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:40:31 GMT express:router corsMiddleware : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:40:31 GMT express:router trim prefix (/static) from url /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:40:31 GMT express:router serveStatic /static : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:40:31 GMT send stat "/home/ubuntu/cognimates-training/static/images/cognimates-logo--codelab.svg" +Sat, 02 Nov 2024 06:40:31 GMT express:router dispatching GET /static/images/vision_banner.png +Sat, 02 Nov 2024 06:40:31 GMT express:router query : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:40:31 GMT express:router expressInit : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:40:31 GMT express:router jsonParser : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:40:31 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:40:31 GMT express:router urlencodedParser : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:40:31 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:40:31 GMT express:router corsMiddleware : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:40:31 GMT express:router trim prefix (/static) from url /static/images/vision_banner.png +Sat, 02 Nov 2024 06:40:31 GMT express:router serveStatic /static : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:40:31 GMT send stat "/home/ubuntu/cognimates-training/static/images/vision_banner.png" +Sat, 02 Nov 2024 06:40:31 GMT express:router dispatching GET /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:40:31 GMT express:router query : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:40:31 GMT express:router expressInit : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:40:31 GMT express:router jsonParser : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:40:31 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:40:31 GMT express:router urlencodedParser : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:40:31 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:40:31 GMT express:router corsMiddleware : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:40:31 GMT express:router trim prefix (/static) from url /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:40:31 GMT express:router serveStatic /static : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:40:31 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/mit-media-lab--white.svg" +Sat, 02 Nov 2024 06:40:31 GMT express:router dispatching GET /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:40:31 GMT express:router query : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:40:31 GMT express:router expressInit : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:40:31 GMT express:router jsonParser : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:40:31 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:40:31 GMT express:router urlencodedParser : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:40:31 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:40:31 GMT express:router corsMiddleware : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:40:31 GMT express:router trim prefix (/static) from url /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:40:31 GMT express:router serveStatic /static : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:40:31 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/twitter--white.svg" +Sat, 02 Nov 2024 06:40:31 GMT send pipe "/home/ubuntu/cognimates-training/static/images/cognimates-logo--codelab.svg" +Serving static file: /static/images/cognimates-logo--codelab.svg (image/svg+xml) +Sat, 02 Nov 2024 06:40:31 GMT send accept ranges +Sat, 02 Nov 2024 06:40:31 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:40:31 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:40:31 GMT send etag W/"9f5-192da706627" +Sat, 02 Nov 2024 06:40:31 GMT send pipe "/home/ubuntu/cognimates-training/static/images/vision_banner.png" +Serving static file: /static/images/vision_banner.png (image/png) +Sat, 02 Nov 2024 06:40:31 GMT send accept ranges +Sat, 02 Nov 2024 06:40:31 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:40:31 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:40:31 GMT send etag W/"20212-192da70662f" +Sat, 02 Nov 2024 06:40:31 GMT express:router dispatching GET /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:40:31 GMT express:router query : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:40:31 GMT express:router expressInit : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:40:31 GMT express:router jsonParser : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:40:31 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:40:31 GMT express:router urlencodedParser : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:40:31 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:40:31 GMT express:router corsMiddleware : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:40:31 GMT express:router trim prefix (/static) from url /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:40:31 GMT express:router serveStatic /static : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:40:31 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/instagram--white.svg" +Sat, 02 Nov 2024 06:40:31 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/mit-media-lab--white.svg" +Serving static file: /static/images/social/mit-media-lab--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:40:31 GMT send accept ranges +Sat, 02 Nov 2024 06:40:31 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:40:31 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:40:31 GMT send etag W/"a7c5-192da70662b" +Sat, 02 Nov 2024 06:40:31 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/twitter--white.svg" +Serving static file: /static/images/social/twitter--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:40:31 GMT send accept ranges +Sat, 02 Nov 2024 06:40:31 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:40:31 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:40:31 GMT send etag W/"712c-192da70662b" +Sat, 02 Nov 2024 06:40:31 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/instagram--white.svg" +Serving static file: /static/images/social/instagram--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:40:31 GMT send accept ranges +Sat, 02 Nov 2024 06:40:31 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:40:31 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:40:31 GMT send etag W/"6ec0-192da70662b" +Sat, 02 Nov 2024 06:40:31 GMT express:router dispatching GET /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:40:31 GMT express:router query : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:40:31 GMT express:router expressInit : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:40:31 GMT express:router jsonParser : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:40:31 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:40:31 GMT express:router urlencodedParser : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:40:31 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:40:31 GMT express:router corsMiddleware : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:40:31 GMT express:router trim prefix (/static) from url /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:40:31 GMT express:router serveStatic /static : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:40:31 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/vimeo--white.svg" +Sat, 02 Nov 2024 06:40:31 GMT express:router dispatching GET /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:40:31 GMT express:router query : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:40:31 GMT express:router expressInit : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:40:31 GMT express:router jsonParser : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:40:31 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:40:31 GMT express:router urlencodedParser : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:40:31 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:40:31 GMT express:router corsMiddleware : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:40:31 GMT express:router trim prefix (/static) from url /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:40:31 GMT express:router serveStatic /static : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:40:31 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/facebook--white.svg" +Sat, 02 Nov 2024 06:40:31 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/vimeo--white.svg" +Serving static file: /static/images/social/vimeo--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:40:31 GMT send accept ranges +Sat, 02 Nov 2024 06:40:31 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:40:31 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:40:31 GMT send etag W/"6b42-192da70662b" +Sat, 02 Nov 2024 06:40:31 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/facebook--white.svg" +Serving static file: /static/images/social/facebook--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:40:31 GMT send accept ranges +Sat, 02 Nov 2024 06:40:31 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:40:31 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:40:31 GMT send etag W/"69e4-192da70662b" +Sat, 02 Nov 2024 06:40:43 GMT express:router dispatching GET /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:40:43 GMT express:router query : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:40:43 GMT express:router expressInit : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:40:43 GMT express:router jsonParser : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:40:43 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:40:43 GMT express:router urlencodedParser : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:40:43 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:40:43 GMT express:router corsMiddleware : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:40:43 GMT express:router trim prefix (/static) from url /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:40:43 GMT express:router serveStatic /static : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:40:43 GMT send stat "/home/ubuntu/cognimates-training/static/images/cognimates-logo--codelab.svg" +Sat, 02 Nov 2024 06:40:43 GMT express:router dispatching GET /static/images/vision_banner.png +Sat, 02 Nov 2024 06:40:43 GMT express:router query : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:40:43 GMT express:router expressInit : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:40:43 GMT express:router jsonParser : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:40:43 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:40:43 GMT express:router urlencodedParser : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:40:43 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:40:43 GMT express:router corsMiddleware : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:40:43 GMT express:router trim prefix (/static) from url /static/images/vision_banner.png +Sat, 02 Nov 2024 06:40:43 GMT express:router serveStatic /static : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:40:43 GMT send stat "/home/ubuntu/cognimates-training/static/images/vision_banner.png" +Sat, 02 Nov 2024 06:40:43 GMT express:router dispatching GET /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:40:43 GMT express:router query : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:40:43 GMT express:router expressInit : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:40:43 GMT express:router jsonParser : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:40:43 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:40:43 GMT express:router urlencodedParser : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:40:43 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:40:43 GMT express:router corsMiddleware : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:40:43 GMT express:router trim prefix (/static) from url /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:40:43 GMT express:router serveStatic /static : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:40:43 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/mit-media-lab--white.svg" +Sat, 02 Nov 2024 06:40:43 GMT express:router dispatching GET /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:40:43 GMT express:router query : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:40:43 GMT express:router expressInit : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:40:43 GMT express:router jsonParser : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:40:43 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:40:43 GMT express:router urlencodedParser : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:40:43 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:40:43 GMT express:router corsMiddleware : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:40:43 GMT express:router trim prefix (/static) from url /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:40:43 GMT express:router serveStatic /static : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:40:43 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/twitter--white.svg" +Sat, 02 Nov 2024 06:40:43 GMT express:router dispatching GET /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:40:43 GMT express:router query : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:40:43 GMT express:router expressInit : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:40:43 GMT express:router jsonParser : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:40:43 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:40:43 GMT express:router urlencodedParser : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:40:43 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:40:43 GMT express:router corsMiddleware : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:40:43 GMT express:router trim prefix (/static) from url /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:40:43 GMT express:router serveStatic /static : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:40:43 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/instagram--white.svg" +Sat, 02 Nov 2024 06:40:43 GMT express:router dispatching GET /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:40:43 GMT express:router query : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:40:43 GMT express:router expressInit : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:40:43 GMT express:router jsonParser : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:40:43 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:40:43 GMT express:router urlencodedParser : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:40:43 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:40:43 GMT express:router corsMiddleware : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:40:43 GMT express:router trim prefix (/static) from url /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:40:43 GMT express:router serveStatic /static : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:40:43 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/vimeo--white.svg" +Sat, 02 Nov 2024 06:40:43 GMT send pipe "/home/ubuntu/cognimates-training/static/images/cognimates-logo--codelab.svg" +Serving static file: /static/images/cognimates-logo--codelab.svg (image/svg+xml) +Sat, 02 Nov 2024 06:40:43 GMT send accept ranges +Sat, 02 Nov 2024 06:40:43 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:40:43 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:40:43 GMT send etag W/"9f5-192da706627" +Sat, 02 Nov 2024 06:40:43 GMT send pipe "/home/ubuntu/cognimates-training/static/images/vision_banner.png" +Serving static file: /static/images/vision_banner.png (image/png) +Sat, 02 Nov 2024 06:40:43 GMT send accept ranges +Sat, 02 Nov 2024 06:40:43 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:40:43 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:40:43 GMT send etag W/"20212-192da70662f" +Sat, 02 Nov 2024 06:40:43 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/mit-media-lab--white.svg" +Serving static file: /static/images/social/mit-media-lab--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:40:43 GMT send accept ranges +Sat, 02 Nov 2024 06:40:43 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:40:43 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:40:43 GMT send etag W/"a7c5-192da70662b" +Sat, 02 Nov 2024 06:40:43 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/twitter--white.svg" +Serving static file: /static/images/social/twitter--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:40:43 GMT send accept ranges +Sat, 02 Nov 2024 06:40:43 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:40:43 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:40:43 GMT send etag W/"712c-192da70662b" +Sat, 02 Nov 2024 06:40:43 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/instagram--white.svg" +Serving static file: /static/images/social/instagram--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:40:43 GMT send accept ranges +Sat, 02 Nov 2024 06:40:43 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:40:43 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:40:43 GMT send etag W/"6ec0-192da70662b" +Sat, 02 Nov 2024 06:40:43 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/vimeo--white.svg" +Serving static file: /static/images/social/vimeo--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:40:43 GMT send accept ranges +Sat, 02 Nov 2024 06:40:43 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:40:43 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:40:43 GMT send etag W/"6b42-192da70662b" +Sat, 02 Nov 2024 06:40:43 GMT express:router dispatching GET /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:40:43 GMT express:router query : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:40:43 GMT express:router expressInit : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:40:43 GMT express:router jsonParser : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:40:43 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:40:43 GMT express:router urlencodedParser : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:40:43 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:40:43 GMT express:router corsMiddleware : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:40:43 GMT express:router trim prefix (/static) from url /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:40:43 GMT express:router serveStatic /static : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:40:43 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/facebook--white.svg" +Sat, 02 Nov 2024 06:40:43 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/facebook--white.svg" +Serving static file: /static/images/social/facebook--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:40:43 GMT send accept ranges +Sat, 02 Nov 2024 06:40:43 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:40:43 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:40:43 GMT send etag W/"69e4-192da70662b" +Sat, 02 Nov 2024 06:40:55 GMT express:router dispatching GET /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:40:55 GMT express:router query : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:40:55 GMT express:router expressInit : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:40:55 GMT express:router jsonParser : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:40:55 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:40:55 GMT express:router urlencodedParser : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:40:55 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:40:55 GMT express:router corsMiddleware : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:40:55 GMT express:router trim prefix (/static) from url /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:40:55 GMT express:router serveStatic /static : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:40:55 GMT send stat "/home/ubuntu/cognimates-training/static/images/cognimates-logo--codelab.svg" +Sat, 02 Nov 2024 06:40:55 GMT express:router dispatching GET /static/images/vision_banner.png +Sat, 02 Nov 2024 06:40:55 GMT express:router query : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:40:55 GMT express:router expressInit : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:40:55 GMT express:router jsonParser : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:40:55 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:40:55 GMT express:router urlencodedParser : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:40:55 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:40:55 GMT express:router corsMiddleware : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:40:55 GMT express:router trim prefix (/static) from url /static/images/vision_banner.png +Sat, 02 Nov 2024 06:40:55 GMT express:router serveStatic /static : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:40:55 GMT send stat "/home/ubuntu/cognimates-training/static/images/vision_banner.png" +Sat, 02 Nov 2024 06:40:55 GMT express:router dispatching GET /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:40:55 GMT express:router query : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:40:55 GMT express:router expressInit : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:40:55 GMT express:router jsonParser : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:40:55 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:40:55 GMT express:router urlencodedParser : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:40:55 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:40:55 GMT express:router corsMiddleware : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:40:55 GMT express:router trim prefix (/static) from url /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:40:55 GMT express:router serveStatic /static : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:40:55 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/mit-media-lab--white.svg" +Sat, 02 Nov 2024 06:40:55 GMT express:router dispatching GET /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:40:55 GMT express:router query : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:40:55 GMT express:router expressInit : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:40:55 GMT express:router jsonParser : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:40:55 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:40:55 GMT express:router urlencodedParser : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:40:55 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:40:55 GMT express:router corsMiddleware : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:40:55 GMT express:router trim prefix (/static) from url /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:40:55 GMT express:router serveStatic /static : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:40:55 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/twitter--white.svg" +Sat, 02 Nov 2024 06:40:55 GMT send pipe "/home/ubuntu/cognimates-training/static/images/cognimates-logo--codelab.svg" +Serving static file: /static/images/cognimates-logo--codelab.svg (image/svg+xml) +Sat, 02 Nov 2024 06:40:55 GMT send accept ranges +Sat, 02 Nov 2024 06:40:55 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:40:55 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:40:55 GMT send etag W/"9f5-192da706627" +Sat, 02 Nov 2024 06:40:55 GMT send pipe "/home/ubuntu/cognimates-training/static/images/vision_banner.png" +Serving static file: /static/images/vision_banner.png (image/png) +Sat, 02 Nov 2024 06:40:55 GMT send accept ranges +Sat, 02 Nov 2024 06:40:55 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:40:55 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:40:55 GMT send etag W/"20212-192da70662f" +Sat, 02 Nov 2024 06:40:55 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/mit-media-lab--white.svg" +Serving static file: /static/images/social/mit-media-lab--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:40:55 GMT send accept ranges +Sat, 02 Nov 2024 06:40:55 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:40:55 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:40:55 GMT send etag W/"a7c5-192da70662b" +Sat, 02 Nov 2024 06:40:55 GMT express:router dispatching GET /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:40:55 GMT express:router query : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:40:55 GMT express:router expressInit : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:40:55 GMT express:router jsonParser : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:40:55 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:40:55 GMT express:router urlencodedParser : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:40:55 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:40:55 GMT express:router corsMiddleware : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:40:55 GMT express:router trim prefix (/static) from url /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:40:55 GMT express:router serveStatic /static : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:40:55 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/instagram--white.svg" +Sat, 02 Nov 2024 06:40:55 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/twitter--white.svg" +Serving static file: /static/images/social/twitter--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:40:55 GMT send accept ranges +Sat, 02 Nov 2024 06:40:55 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:40:55 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:40:55 GMT send etag W/"712c-192da70662b" +Sat, 02 Nov 2024 06:40:55 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/instagram--white.svg" +Serving static file: /static/images/social/instagram--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:40:55 GMT send accept ranges +Sat, 02 Nov 2024 06:40:55 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:40:55 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:40:55 GMT send etag W/"6ec0-192da70662b" +Sat, 02 Nov 2024 06:40:55 GMT express:router dispatching GET /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:40:55 GMT express:router query : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:40:55 GMT express:router expressInit : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:40:55 GMT express:router jsonParser : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:40:55 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:40:55 GMT express:router urlencodedParser : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:40:55 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:40:55 GMT express:router corsMiddleware : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:40:55 GMT express:router trim prefix (/static) from url /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:40:55 GMT express:router serveStatic /static : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:40:55 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/vimeo--white.svg" +Sat, 02 Nov 2024 06:40:55 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/vimeo--white.svg" +Serving static file: /static/images/social/vimeo--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:40:55 GMT send accept ranges +Sat, 02 Nov 2024 06:40:55 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:40:55 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:40:55 GMT send etag W/"6b42-192da70662b" +Sat, 02 Nov 2024 06:40:55 GMT express:router dispatching GET /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:40:55 GMT express:router query : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:40:55 GMT express:router expressInit : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:40:55 GMT express:router jsonParser : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:40:55 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:40:55 GMT express:router urlencodedParser : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:40:55 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:40:55 GMT express:router corsMiddleware : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:40:55 GMT express:router trim prefix (/static) from url /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:40:55 GMT express:router serveStatic /static : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:40:55 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/facebook--white.svg" +Sat, 02 Nov 2024 06:40:55 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/facebook--white.svg" +Serving static file: /static/images/social/facebook--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:40:55 GMT send accept ranges +Sat, 02 Nov 2024 06:40:55 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:40:55 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:40:55 GMT send etag W/"69e4-192da70662b" +Sat, 02 Nov 2024 06:41:03 GMT express:router dispatching GET /static/test_images/cats/cat1.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router query : /static/test_images/cats/cat1.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router expressInit : /static/test_images/cats/cat1.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router jsonParser : /static/test_images/cats/cat1.jpg +Sat, 02 Nov 2024 06:41:03 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:41:03 GMT express:router urlencodedParser : /static/test_images/cats/cat1.jpg +Sat, 02 Nov 2024 06:41:03 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:41:03 GMT express:router corsMiddleware : /static/test_images/cats/cat1.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router trim prefix (/static) from url /static/test_images/cats/cat1.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router serveStatic /static : /static/test_images/cats/cat1.jpg +Sat, 02 Nov 2024 06:41:03 GMT send stat "/home/ubuntu/cognimates-training/static/test_images/cats/cat1.jpg" +Sat, 02 Nov 2024 06:41:03 GMT send pipe "/home/ubuntu/cognimates-training/static/test_images/cats/cat1.jpg" +Serving static file: /static/test_images/cats/cat1.jpg (image/jpeg) +Sat, 02 Nov 2024 06:41:03 GMT send accept ranges +Sat, 02 Nov 2024 06:41:03 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:41:03 GMT send modified Fri, 01 Nov 2024 20:10:14 GMT +Sat, 02 Nov 2024 06:41:03 GMT send etag W/"27f-192e9599453" +Sat, 02 Nov 2024 06:41:03 GMT express:router dispatching GET /static/test_images/cats/cat2.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router query : /static/test_images/cats/cat2.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router expressInit : /static/test_images/cats/cat2.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router jsonParser : /static/test_images/cats/cat2.jpg +Sat, 02 Nov 2024 06:41:03 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:41:03 GMT express:router urlencodedParser : /static/test_images/cats/cat2.jpg +Sat, 02 Nov 2024 06:41:03 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:41:03 GMT express:router corsMiddleware : /static/test_images/cats/cat2.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router trim prefix (/static) from url /static/test_images/cats/cat2.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router serveStatic /static : /static/test_images/cats/cat2.jpg +Sat, 02 Nov 2024 06:41:03 GMT send stat "/home/ubuntu/cognimates-training/static/test_images/cats/cat2.jpg" +Sat, 02 Nov 2024 06:41:03 GMT send pipe "/home/ubuntu/cognimates-training/static/test_images/cats/cat2.jpg" +Serving static file: /static/test_images/cats/cat2.jpg (image/jpeg) +Sat, 02 Nov 2024 06:41:03 GMT send accept ranges +Sat, 02 Nov 2024 06:41:03 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:41:03 GMT send modified Fri, 01 Nov 2024 20:10:14 GMT +Sat, 02 Nov 2024 06:41:03 GMT send etag W/"27f-192e9599453" +Sat, 02 Nov 2024 06:41:03 GMT express:router dispatching GET /static/test_images/cats/cat3.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router query : /static/test_images/cats/cat3.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router expressInit : /static/test_images/cats/cat3.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router jsonParser : /static/test_images/cats/cat3.jpg +Sat, 02 Nov 2024 06:41:03 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:41:03 GMT express:router urlencodedParser : /static/test_images/cats/cat3.jpg +Sat, 02 Nov 2024 06:41:03 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:41:03 GMT express:router corsMiddleware : /static/test_images/cats/cat3.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router trim prefix (/static) from url /static/test_images/cats/cat3.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router serveStatic /static : /static/test_images/cats/cat3.jpg +Sat, 02 Nov 2024 06:41:03 GMT send stat "/home/ubuntu/cognimates-training/static/test_images/cats/cat3.jpg" +Sat, 02 Nov 2024 06:41:03 GMT send pipe "/home/ubuntu/cognimates-training/static/test_images/cats/cat3.jpg" +Serving static file: /static/test_images/cats/cat3.jpg (image/jpeg) +Sat, 02 Nov 2024 06:41:03 GMT send accept ranges +Sat, 02 Nov 2024 06:41:03 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:41:03 GMT send modified Fri, 01 Nov 2024 20:10:14 GMT +Sat, 02 Nov 2024 06:41:03 GMT send etag W/"27f-192e9599457" +Sat, 02 Nov 2024 06:41:03 GMT express:router dispatching GET /static/test_images/cats/cat4.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router query : /static/test_images/cats/cat4.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router expressInit : /static/test_images/cats/cat4.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router jsonParser : /static/test_images/cats/cat4.jpg +Sat, 02 Nov 2024 06:41:03 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:41:03 GMT express:router urlencodedParser : /static/test_images/cats/cat4.jpg +Sat, 02 Nov 2024 06:41:03 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:41:03 GMT express:router corsMiddleware : /static/test_images/cats/cat4.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router trim prefix (/static) from url /static/test_images/cats/cat4.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router serveStatic /static : /static/test_images/cats/cat4.jpg +Sat, 02 Nov 2024 06:41:03 GMT send stat "/home/ubuntu/cognimates-training/static/test_images/cats/cat4.jpg" +Sat, 02 Nov 2024 06:41:03 GMT send pipe "/home/ubuntu/cognimates-training/static/test_images/cats/cat4.jpg" +Serving static file: /static/test_images/cats/cat4.jpg (image/jpeg) +Sat, 02 Nov 2024 06:41:03 GMT send accept ranges +Sat, 02 Nov 2024 06:41:03 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:41:03 GMT send modified Fri, 01 Nov 2024 20:10:14 GMT +Sat, 02 Nov 2024 06:41:03 GMT send etag W/"27f-192e9599457" +Sat, 02 Nov 2024 06:41:03 GMT express:router dispatching GET /static/test_images/cats/cat5.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router query : /static/test_images/cats/cat5.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router expressInit : /static/test_images/cats/cat5.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router jsonParser : /static/test_images/cats/cat5.jpg +Sat, 02 Nov 2024 06:41:03 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:41:03 GMT express:router urlencodedParser : /static/test_images/cats/cat5.jpg +Sat, 02 Nov 2024 06:41:03 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:41:03 GMT express:router corsMiddleware : /static/test_images/cats/cat5.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router trim prefix (/static) from url /static/test_images/cats/cat5.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router serveStatic /static : /static/test_images/cats/cat5.jpg +Sat, 02 Nov 2024 06:41:03 GMT send stat "/home/ubuntu/cognimates-training/static/test_images/cats/cat5.jpg" +Sat, 02 Nov 2024 06:41:03 GMT send pipe "/home/ubuntu/cognimates-training/static/test_images/cats/cat5.jpg" +Serving static file: /static/test_images/cats/cat5.jpg (image/jpeg) +Sat, 02 Nov 2024 06:41:03 GMT send accept ranges +Sat, 02 Nov 2024 06:41:03 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:41:03 GMT send modified Fri, 01 Nov 2024 20:10:15 GMT +Sat, 02 Nov 2024 06:41:03 GMT send etag W/"27f-192e959945b" +Sat, 02 Nov 2024 06:41:03 GMT express:router dispatching GET /static/test_images/cats/cat6.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router query : /static/test_images/cats/cat6.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router expressInit : /static/test_images/cats/cat6.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router jsonParser : /static/test_images/cats/cat6.jpg +Sat, 02 Nov 2024 06:41:03 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:41:03 GMT express:router urlencodedParser : /static/test_images/cats/cat6.jpg +Sat, 02 Nov 2024 06:41:03 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:41:03 GMT express:router corsMiddleware : /static/test_images/cats/cat6.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router trim prefix (/static) from url /static/test_images/cats/cat6.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router serveStatic /static : /static/test_images/cats/cat6.jpg +Sat, 02 Nov 2024 06:41:03 GMT send stat "/home/ubuntu/cognimates-training/static/test_images/cats/cat6.jpg" +Sat, 02 Nov 2024 06:41:03 GMT send pipe "/home/ubuntu/cognimates-training/static/test_images/cats/cat6.jpg" +Serving static file: /static/test_images/cats/cat6.jpg (image/jpeg) +Sat, 02 Nov 2024 06:41:03 GMT send accept ranges +Sat, 02 Nov 2024 06:41:03 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:41:03 GMT send modified Fri, 01 Nov 2024 20:10:15 GMT +Sat, 02 Nov 2024 06:41:03 GMT send etag W/"27f-192e959945b" +Sat, 02 Nov 2024 06:41:03 GMT express:router dispatching GET /static/test_images/cats/cat7.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router query : /static/test_images/cats/cat7.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router expressInit : /static/test_images/cats/cat7.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router jsonParser : /static/test_images/cats/cat7.jpg +Sat, 02 Nov 2024 06:41:03 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:41:03 GMT express:router urlencodedParser : /static/test_images/cats/cat7.jpg +Sat, 02 Nov 2024 06:41:03 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:41:03 GMT express:router corsMiddleware : /static/test_images/cats/cat7.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router trim prefix (/static) from url /static/test_images/cats/cat7.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router serveStatic /static : /static/test_images/cats/cat7.jpg +Sat, 02 Nov 2024 06:41:03 GMT send stat "/home/ubuntu/cognimates-training/static/test_images/cats/cat7.jpg" +Sat, 02 Nov 2024 06:41:03 GMT send pipe "/home/ubuntu/cognimates-training/static/test_images/cats/cat7.jpg" +Serving static file: /static/test_images/cats/cat7.jpg (image/jpeg) +Sat, 02 Nov 2024 06:41:03 GMT send accept ranges +Sat, 02 Nov 2024 06:41:03 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:41:03 GMT send modified Fri, 01 Nov 2024 20:10:15 GMT +Sat, 02 Nov 2024 06:41:03 GMT send etag W/"27f-192e959945f" +Sat, 02 Nov 2024 06:41:03 GMT express:router dispatching GET /static/test_images/cats/cat8.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router query : /static/test_images/cats/cat8.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router expressInit : /static/test_images/cats/cat8.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router jsonParser : /static/test_images/cats/cat8.jpg +Sat, 02 Nov 2024 06:41:03 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:41:03 GMT express:router urlencodedParser : /static/test_images/cats/cat8.jpg +Sat, 02 Nov 2024 06:41:03 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:41:03 GMT express:router corsMiddleware : /static/test_images/cats/cat8.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router trim prefix (/static) from url /static/test_images/cats/cat8.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router serveStatic /static : /static/test_images/cats/cat8.jpg +Sat, 02 Nov 2024 06:41:03 GMT send stat "/home/ubuntu/cognimates-training/static/test_images/cats/cat8.jpg" +Sat, 02 Nov 2024 06:41:03 GMT send pipe "/home/ubuntu/cognimates-training/static/test_images/cats/cat8.jpg" +Serving static file: /static/test_images/cats/cat8.jpg (image/jpeg) +Sat, 02 Nov 2024 06:41:03 GMT send accept ranges +Sat, 02 Nov 2024 06:41:03 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:41:03 GMT send modified Fri, 01 Nov 2024 20:10:15 GMT +Sat, 02 Nov 2024 06:41:03 GMT send etag W/"27f-192e959945f" +Sat, 02 Nov 2024 06:41:03 GMT express:router dispatching GET /static/test_images/cats/cat9.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router query : /static/test_images/cats/cat9.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router expressInit : /static/test_images/cats/cat9.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router jsonParser : /static/test_images/cats/cat9.jpg +Sat, 02 Nov 2024 06:41:03 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:41:03 GMT express:router urlencodedParser : /static/test_images/cats/cat9.jpg +Sat, 02 Nov 2024 06:41:03 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:41:03 GMT express:router corsMiddleware : /static/test_images/cats/cat9.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router trim prefix (/static) from url /static/test_images/cats/cat9.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router serveStatic /static : /static/test_images/cats/cat9.jpg +Sat, 02 Nov 2024 06:41:03 GMT send stat "/home/ubuntu/cognimates-training/static/test_images/cats/cat9.jpg" +Sat, 02 Nov 2024 06:41:03 GMT send pipe "/home/ubuntu/cognimates-training/static/test_images/cats/cat9.jpg" +Serving static file: /static/test_images/cats/cat9.jpg (image/jpeg) +Sat, 02 Nov 2024 06:41:03 GMT send accept ranges +Sat, 02 Nov 2024 06:41:03 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:41:03 GMT send modified Fri, 01 Nov 2024 20:10:15 GMT +Sat, 02 Nov 2024 06:41:03 GMT send etag W/"27f-192e9599463" +Sat, 02 Nov 2024 06:41:03 GMT express:router dispatching GET /static/test_images/cats/cat10.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router query : /static/test_images/cats/cat10.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router expressInit : /static/test_images/cats/cat10.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router jsonParser : /static/test_images/cats/cat10.jpg +Sat, 02 Nov 2024 06:41:03 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:41:03 GMT express:router urlencodedParser : /static/test_images/cats/cat10.jpg +Sat, 02 Nov 2024 06:41:03 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:41:03 GMT express:router corsMiddleware : /static/test_images/cats/cat10.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router trim prefix (/static) from url /static/test_images/cats/cat10.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router serveStatic /static : /static/test_images/cats/cat10.jpg +Sat, 02 Nov 2024 06:41:03 GMT send stat "/home/ubuntu/cognimates-training/static/test_images/cats/cat10.jpg" +Sat, 02 Nov 2024 06:41:03 GMT send pipe "/home/ubuntu/cognimates-training/static/test_images/cats/cat10.jpg" +Serving static file: /static/test_images/cats/cat10.jpg (image/jpeg) +Sat, 02 Nov 2024 06:41:03 GMT send accept ranges +Sat, 02 Nov 2024 06:41:03 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:41:03 GMT send modified Fri, 01 Nov 2024 20:10:15 GMT +Sat, 02 Nov 2024 06:41:03 GMT send etag W/"27f-192e9599463" +Sat, 02 Nov 2024 06:41:03 GMT express:router dispatching GET /static/test_images/dogs/dog1.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router query : /static/test_images/dogs/dog1.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router expressInit : /static/test_images/dogs/dog1.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router jsonParser : /static/test_images/dogs/dog1.jpg +Sat, 02 Nov 2024 06:41:03 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:41:03 GMT express:router urlencodedParser : /static/test_images/dogs/dog1.jpg +Sat, 02 Nov 2024 06:41:03 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:41:03 GMT express:router corsMiddleware : /static/test_images/dogs/dog1.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router trim prefix (/static) from url /static/test_images/dogs/dog1.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router serveStatic /static : /static/test_images/dogs/dog1.jpg +Sat, 02 Nov 2024 06:41:03 GMT send stat "/home/ubuntu/cognimates-training/static/test_images/dogs/dog1.jpg" +Sat, 02 Nov 2024 06:41:03 GMT send pipe "/home/ubuntu/cognimates-training/static/test_images/dogs/dog1.jpg" +Serving static file: /static/test_images/dogs/dog1.jpg (image/jpeg) +Sat, 02 Nov 2024 06:41:03 GMT send accept ranges +Sat, 02 Nov 2024 06:41:03 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:41:03 GMT send modified Fri, 01 Nov 2024 20:10:15 GMT +Sat, 02 Nov 2024 06:41:03 GMT send etag W/"280-192e9599467" +Sat, 02 Nov 2024 06:41:03 GMT express:router dispatching GET /static/test_images/dogs/dog2.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router query : /static/test_images/dogs/dog2.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router expressInit : /static/test_images/dogs/dog2.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router jsonParser : /static/test_images/dogs/dog2.jpg +Sat, 02 Nov 2024 06:41:03 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:41:03 GMT express:router urlencodedParser : /static/test_images/dogs/dog2.jpg +Sat, 02 Nov 2024 06:41:03 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:41:03 GMT express:router corsMiddleware : /static/test_images/dogs/dog2.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router trim prefix (/static) from url /static/test_images/dogs/dog2.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router serveStatic /static : /static/test_images/dogs/dog2.jpg +Sat, 02 Nov 2024 06:41:03 GMT send stat "/home/ubuntu/cognimates-training/static/test_images/dogs/dog2.jpg" +Sat, 02 Nov 2024 06:41:03 GMT send pipe "/home/ubuntu/cognimates-training/static/test_images/dogs/dog2.jpg" +Serving static file: /static/test_images/dogs/dog2.jpg (image/jpeg) +Sat, 02 Nov 2024 06:41:03 GMT send accept ranges +Sat, 02 Nov 2024 06:41:03 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:41:03 GMT send modified Fri, 01 Nov 2024 20:10:15 GMT +Sat, 02 Nov 2024 06:41:03 GMT send etag W/"280-192e9599467" +Sat, 02 Nov 2024 06:41:03 GMT express:router dispatching GET /static/test_images/dogs/dog3.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router query : /static/test_images/dogs/dog3.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router expressInit : /static/test_images/dogs/dog3.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router jsonParser : /static/test_images/dogs/dog3.jpg +Sat, 02 Nov 2024 06:41:03 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:41:03 GMT express:router urlencodedParser : /static/test_images/dogs/dog3.jpg +Sat, 02 Nov 2024 06:41:03 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:41:03 GMT express:router corsMiddleware : /static/test_images/dogs/dog3.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router trim prefix (/static) from url /static/test_images/dogs/dog3.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router serveStatic /static : /static/test_images/dogs/dog3.jpg +Sat, 02 Nov 2024 06:41:03 GMT send stat "/home/ubuntu/cognimates-training/static/test_images/dogs/dog3.jpg" +Sat, 02 Nov 2024 06:41:03 GMT send pipe "/home/ubuntu/cognimates-training/static/test_images/dogs/dog3.jpg" +Serving static file: /static/test_images/dogs/dog3.jpg (image/jpeg) +Sat, 02 Nov 2024 06:41:03 GMT send accept ranges +Sat, 02 Nov 2024 06:41:03 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:41:03 GMT send modified Fri, 01 Nov 2024 20:10:15 GMT +Sat, 02 Nov 2024 06:41:03 GMT send etag W/"280-192e959946b" +Sat, 02 Nov 2024 06:41:03 GMT express:router dispatching GET /static/test_images/dogs/dog4.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router query : /static/test_images/dogs/dog4.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router expressInit : /static/test_images/dogs/dog4.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router jsonParser : /static/test_images/dogs/dog4.jpg +Sat, 02 Nov 2024 06:41:03 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:41:03 GMT express:router urlencodedParser : /static/test_images/dogs/dog4.jpg +Sat, 02 Nov 2024 06:41:03 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:41:03 GMT express:router corsMiddleware : /static/test_images/dogs/dog4.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router trim prefix (/static) from url /static/test_images/dogs/dog4.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router serveStatic /static : /static/test_images/dogs/dog4.jpg +Sat, 02 Nov 2024 06:41:03 GMT send stat "/home/ubuntu/cognimates-training/static/test_images/dogs/dog4.jpg" +Sat, 02 Nov 2024 06:41:03 GMT send pipe "/home/ubuntu/cognimates-training/static/test_images/dogs/dog4.jpg" +Serving static file: /static/test_images/dogs/dog4.jpg (image/jpeg) +Sat, 02 Nov 2024 06:41:03 GMT send accept ranges +Sat, 02 Nov 2024 06:41:03 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:41:03 GMT send modified Fri, 01 Nov 2024 20:10:15 GMT +Sat, 02 Nov 2024 06:41:03 GMT send etag W/"280-192e959946b" +Sat, 02 Nov 2024 06:41:03 GMT express:router dispatching GET /static/test_images/dogs/dog5.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router query : /static/test_images/dogs/dog5.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router expressInit : /static/test_images/dogs/dog5.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router jsonParser : /static/test_images/dogs/dog5.jpg +Sat, 02 Nov 2024 06:41:03 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:41:03 GMT express:router urlencodedParser : /static/test_images/dogs/dog5.jpg +Sat, 02 Nov 2024 06:41:03 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:41:03 GMT express:router corsMiddleware : /static/test_images/dogs/dog5.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router trim prefix (/static) from url /static/test_images/dogs/dog5.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router serveStatic /static : /static/test_images/dogs/dog5.jpg +Sat, 02 Nov 2024 06:41:03 GMT send stat "/home/ubuntu/cognimates-training/static/test_images/dogs/dog5.jpg" +Sat, 02 Nov 2024 06:41:03 GMT send pipe "/home/ubuntu/cognimates-training/static/test_images/dogs/dog5.jpg" +Serving static file: /static/test_images/dogs/dog5.jpg (image/jpeg) +Sat, 02 Nov 2024 06:41:03 GMT send accept ranges +Sat, 02 Nov 2024 06:41:03 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:41:03 GMT send modified Fri, 01 Nov 2024 20:10:15 GMT +Sat, 02 Nov 2024 06:41:03 GMT send etag W/"280-192e959946f" +Sat, 02 Nov 2024 06:41:03 GMT express:router dispatching GET /static/test_images/dogs/dog6.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router query : /static/test_images/dogs/dog6.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router expressInit : /static/test_images/dogs/dog6.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router jsonParser : /static/test_images/dogs/dog6.jpg +Sat, 02 Nov 2024 06:41:03 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:41:03 GMT express:router urlencodedParser : /static/test_images/dogs/dog6.jpg +Sat, 02 Nov 2024 06:41:03 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:41:03 GMT express:router corsMiddleware : /static/test_images/dogs/dog6.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router trim prefix (/static) from url /static/test_images/dogs/dog6.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router serveStatic /static : /static/test_images/dogs/dog6.jpg +Sat, 02 Nov 2024 06:41:03 GMT send stat "/home/ubuntu/cognimates-training/static/test_images/dogs/dog6.jpg" +Sat, 02 Nov 2024 06:41:03 GMT send pipe "/home/ubuntu/cognimates-training/static/test_images/dogs/dog6.jpg" +Serving static file: /static/test_images/dogs/dog6.jpg (image/jpeg) +Sat, 02 Nov 2024 06:41:03 GMT send accept ranges +Sat, 02 Nov 2024 06:41:03 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:41:03 GMT send modified Fri, 01 Nov 2024 20:10:15 GMT +Sat, 02 Nov 2024 06:41:03 GMT send etag W/"280-192e959946f" +Sat, 02 Nov 2024 06:41:03 GMT express:router dispatching GET /static/test_images/dogs/dog7.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router query : /static/test_images/dogs/dog7.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router expressInit : /static/test_images/dogs/dog7.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router jsonParser : /static/test_images/dogs/dog7.jpg +Sat, 02 Nov 2024 06:41:03 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:41:03 GMT express:router urlencodedParser : /static/test_images/dogs/dog7.jpg +Sat, 02 Nov 2024 06:41:03 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:41:03 GMT express:router corsMiddleware : /static/test_images/dogs/dog7.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router trim prefix (/static) from url /static/test_images/dogs/dog7.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router serveStatic /static : /static/test_images/dogs/dog7.jpg +Sat, 02 Nov 2024 06:41:03 GMT send stat "/home/ubuntu/cognimates-training/static/test_images/dogs/dog7.jpg" +Sat, 02 Nov 2024 06:41:03 GMT send pipe "/home/ubuntu/cognimates-training/static/test_images/dogs/dog7.jpg" +Serving static file: /static/test_images/dogs/dog7.jpg (image/jpeg) +Sat, 02 Nov 2024 06:41:03 GMT send accept ranges +Sat, 02 Nov 2024 06:41:03 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:41:03 GMT send modified Fri, 01 Nov 2024 20:10:15 GMT +Sat, 02 Nov 2024 06:41:03 GMT send etag W/"280-192e9599473" +Sat, 02 Nov 2024 06:41:03 GMT express:router dispatching GET /static/test_images/dogs/dog8.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router query : /static/test_images/dogs/dog8.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router expressInit : /static/test_images/dogs/dog8.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router jsonParser : /static/test_images/dogs/dog8.jpg +Sat, 02 Nov 2024 06:41:03 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:41:03 GMT express:router urlencodedParser : /static/test_images/dogs/dog8.jpg +Sat, 02 Nov 2024 06:41:03 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:41:03 GMT express:router corsMiddleware : /static/test_images/dogs/dog8.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router trim prefix (/static) from url /static/test_images/dogs/dog8.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router serveStatic /static : /static/test_images/dogs/dog8.jpg +Sat, 02 Nov 2024 06:41:03 GMT send stat "/home/ubuntu/cognimates-training/static/test_images/dogs/dog8.jpg" +Sat, 02 Nov 2024 06:41:03 GMT send pipe "/home/ubuntu/cognimates-training/static/test_images/dogs/dog8.jpg" +Serving static file: /static/test_images/dogs/dog8.jpg (image/jpeg) +Sat, 02 Nov 2024 06:41:03 GMT send accept ranges +Sat, 02 Nov 2024 06:41:03 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:41:03 GMT send modified Fri, 01 Nov 2024 20:10:15 GMT +Sat, 02 Nov 2024 06:41:03 GMT send etag W/"280-192e9599473" +Sat, 02 Nov 2024 06:41:03 GMT express:router dispatching GET /static/test_images/dogs/dog9.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router query : /static/test_images/dogs/dog9.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router expressInit : /static/test_images/dogs/dog9.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router jsonParser : /static/test_images/dogs/dog9.jpg +Sat, 02 Nov 2024 06:41:03 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:41:03 GMT express:router urlencodedParser : /static/test_images/dogs/dog9.jpg +Sat, 02 Nov 2024 06:41:03 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:41:03 GMT express:router corsMiddleware : /static/test_images/dogs/dog9.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router trim prefix (/static) from url /static/test_images/dogs/dog9.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router serveStatic /static : /static/test_images/dogs/dog9.jpg +Sat, 02 Nov 2024 06:41:03 GMT send stat "/home/ubuntu/cognimates-training/static/test_images/dogs/dog9.jpg" +Sat, 02 Nov 2024 06:41:03 GMT send pipe "/home/ubuntu/cognimates-training/static/test_images/dogs/dog9.jpg" +Serving static file: /static/test_images/dogs/dog9.jpg (image/jpeg) +Sat, 02 Nov 2024 06:41:03 GMT send accept ranges +Sat, 02 Nov 2024 06:41:03 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:41:03 GMT send modified Fri, 01 Nov 2024 20:10:15 GMT +Sat, 02 Nov 2024 06:41:03 GMT send etag W/"280-192e9599477" +Sat, 02 Nov 2024 06:41:03 GMT express:router dispatching GET /static/test_images/dogs/dog10.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router query : /static/test_images/dogs/dog10.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router expressInit : /static/test_images/dogs/dog10.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router jsonParser : /static/test_images/dogs/dog10.jpg +Sat, 02 Nov 2024 06:41:03 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:41:03 GMT express:router urlencodedParser : /static/test_images/dogs/dog10.jpg +Sat, 02 Nov 2024 06:41:03 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:41:03 GMT express:router corsMiddleware : /static/test_images/dogs/dog10.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router trim prefix (/static) from url /static/test_images/dogs/dog10.jpg +Sat, 02 Nov 2024 06:41:03 GMT express:router serveStatic /static : /static/test_images/dogs/dog10.jpg +Sat, 02 Nov 2024 06:41:03 GMT send stat "/home/ubuntu/cognimates-training/static/test_images/dogs/dog10.jpg" +Sat, 02 Nov 2024 06:41:03 GMT send pipe "/home/ubuntu/cognimates-training/static/test_images/dogs/dog10.jpg" +Serving static file: /static/test_images/dogs/dog10.jpg (image/jpeg) +Sat, 02 Nov 2024 06:41:03 GMT send accept ranges +Sat, 02 Nov 2024 06:41:03 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:41:03 GMT send modified Fri, 01 Nov 2024 20:10:15 GMT +Sat, 02 Nov 2024 06:41:03 GMT send etag W/"280-192e9599477" +Sat, 02 Nov 2024 06:41:06 GMT express:router dispatching GET /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:41:06 GMT express:router query : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:41:06 GMT express:router expressInit : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:41:06 GMT express:router jsonParser : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:41:06 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:41:06 GMT express:router urlencodedParser : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:41:06 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:41:06 GMT express:router corsMiddleware : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:41:06 GMT express:router trim prefix (/static) from url /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:41:06 GMT express:router serveStatic /static : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:41:06 GMT send stat "/home/ubuntu/cognimates-training/static/images/cognimates-logo--codelab.svg" +Sat, 02 Nov 2024 06:41:06 GMT send pipe "/home/ubuntu/cognimates-training/static/images/cognimates-logo--codelab.svg" +Serving static file: /static/images/cognimates-logo--codelab.svg (image/svg+xml) +Sat, 02 Nov 2024 06:41:06 GMT send accept ranges +Sat, 02 Nov 2024 06:41:06 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:41:06 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:41:06 GMT send etag W/"9f5-192da706627" +Sat, 02 Nov 2024 06:41:06 GMT express:router dispatching GET /static/images/vision_banner.png +Sat, 02 Nov 2024 06:41:06 GMT express:router query : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:41:06 GMT express:router expressInit : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:41:06 GMT express:router jsonParser : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:41:06 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:41:06 GMT express:router urlencodedParser : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:41:06 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:41:06 GMT express:router corsMiddleware : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:41:06 GMT express:router trim prefix (/static) from url /static/images/vision_banner.png +Sat, 02 Nov 2024 06:41:06 GMT express:router serveStatic /static : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:41:06 GMT send stat "/home/ubuntu/cognimates-training/static/images/vision_banner.png" +Sat, 02 Nov 2024 06:41:06 GMT express:router dispatching GET /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:41:06 GMT express:router query : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:41:06 GMT express:router expressInit : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:41:06 GMT express:router jsonParser : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:41:06 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:41:06 GMT express:router urlencodedParser : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:41:06 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:41:06 GMT express:router corsMiddleware : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:41:06 GMT express:router trim prefix (/static) from url /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:41:06 GMT express:router serveStatic /static : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:41:06 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/mit-media-lab--white.svg" +Sat, 02 Nov 2024 06:41:06 GMT send pipe "/home/ubuntu/cognimates-training/static/images/vision_banner.png" +Serving static file: /static/images/vision_banner.png (image/png) +Sat, 02 Nov 2024 06:41:06 GMT send accept ranges +Sat, 02 Nov 2024 06:41:06 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:41:06 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:41:06 GMT send etag W/"20212-192da70662f" +Sat, 02 Nov 2024 06:41:06 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/mit-media-lab--white.svg" +Serving static file: /static/images/social/mit-media-lab--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:41:06 GMT send accept ranges +Sat, 02 Nov 2024 06:41:06 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:41:06 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:41:06 GMT send etag W/"a7c5-192da70662b" +Sat, 02 Nov 2024 06:41:06 GMT express:router dispatching GET /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:41:06 GMT express:router query : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:41:06 GMT express:router expressInit : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:41:06 GMT express:router jsonParser : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:41:06 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:41:06 GMT express:router urlencodedParser : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:41:06 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:41:06 GMT express:router corsMiddleware : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:41:06 GMT express:router trim prefix (/static) from url /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:41:06 GMT express:router serveStatic /static : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:41:06 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/twitter--white.svg" +Sat, 02 Nov 2024 06:41:06 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/twitter--white.svg" +Serving static file: /static/images/social/twitter--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:41:06 GMT send accept ranges +Sat, 02 Nov 2024 06:41:06 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:41:06 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:41:06 GMT send etag W/"712c-192da70662b" +Sat, 02 Nov 2024 06:41:06 GMT express:router dispatching GET /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:41:06 GMT express:router query : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:41:06 GMT express:router expressInit : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:41:06 GMT express:router jsonParser : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:41:06 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:41:06 GMT express:router urlencodedParser : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:41:06 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:41:06 GMT express:router corsMiddleware : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:41:06 GMT express:router trim prefix (/static) from url /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:41:06 GMT express:router serveStatic /static : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:41:06 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/instagram--white.svg" +Sat, 02 Nov 2024 06:41:06 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/instagram--white.svg" +Serving static file: /static/images/social/instagram--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:41:06 GMT send accept ranges +Sat, 02 Nov 2024 06:41:06 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:41:06 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:41:06 GMT send etag W/"6ec0-192da70662b" +Sat, 02 Nov 2024 06:41:06 GMT express:router dispatching GET /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:41:06 GMT express:router query : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:41:06 GMT express:router expressInit : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:41:06 GMT express:router jsonParser : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:41:06 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:41:06 GMT express:router urlencodedParser : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:41:06 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:41:06 GMT express:router corsMiddleware : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:41:06 GMT express:router trim prefix (/static) from url /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:41:06 GMT express:router serveStatic /static : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:41:06 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/vimeo--white.svg" +Sat, 02 Nov 2024 06:41:06 GMT express:router dispatching GET /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:41:06 GMT express:router query : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:41:06 GMT express:router expressInit : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:41:06 GMT express:router jsonParser : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:41:06 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:41:06 GMT express:router urlencodedParser : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:41:06 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:41:06 GMT express:router corsMiddleware : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:41:06 GMT express:router trim prefix (/static) from url /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:41:06 GMT express:router serveStatic /static : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:41:06 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/facebook--white.svg" +Sat, 02 Nov 2024 06:41:06 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/vimeo--white.svg" +Serving static file: /static/images/social/vimeo--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:41:06 GMT send accept ranges +Sat, 02 Nov 2024 06:41:06 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:41:06 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:41:06 GMT send etag W/"6b42-192da70662b" +Sat, 02 Nov 2024 06:41:06 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/facebook--white.svg" +Serving static file: /static/images/social/facebook--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:41:06 GMT send accept ranges +Sat, 02 Nov 2024 06:41:06 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:41:06 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:41:06 GMT send etag W/"69e4-192da70662b" +Sat, 02 Nov 2024 06:41:21 GMT express:router dispatching POST /vision/classifier +Sat, 02 Nov 2024 06:41:21 GMT express:router query : /vision/classifier +Sat, 02 Nov 2024 06:41:21 GMT express:router expressInit : /vision/classifier +Sat, 02 Nov 2024 06:41:21 GMT express:router jsonParser : /vision/classifier +Sat, 02 Nov 2024 06:41:21 GMT body-parser:json content-type "application/json" +Sat, 02 Nov 2024 06:41:21 GMT body-parser:json content-encoding "identity" +Sat, 02 Nov 2024 06:41:21 GMT body-parser:json read body +Sat, 02 Nov 2024 06:41:21 GMT body-parser:json parse body +Sat, 02 Nov 2024 06:41:21 GMT body-parser:json parse json +Sat, 02 Nov 2024 06:41:21 GMT express:router urlencodedParser : /vision/classifier +Sat, 02 Nov 2024 06:41:21 GMT body-parser:urlencoded body already parsed +Sat, 02 Nov 2024 06:41:21 GMT express:router corsMiddleware : /vision/classifier +Sat, 02 Nov 2024 06:41:21 GMT express:router router : /vision/classifier +Sat, 02 Nov 2024 06:41:21 GMT express:router dispatching POST /vision/classifier +Creating classifier with model ID: catsdogstest +Checking if model catsdogstest exists... +Sat, 02 Nov 2024 06:41:21 GMT express:router dispatching POST /vision/classifier +Sat, 02 Nov 2024 06:41:21 GMT express:router query : /vision/classifier +Sat, 02 Nov 2024 06:41:21 GMT express:router expressInit : /vision/classifier +Sat, 02 Nov 2024 06:41:21 GMT express:router jsonParser : /vision/classifier +Sat, 02 Nov 2024 06:41:21 GMT body-parser:json content-type "application/json" +Sat, 02 Nov 2024 06:41:21 GMT body-parser:json content-encoding "identity" +Sat, 02 Nov 2024 06:41:21 GMT body-parser:json read body +Sat, 02 Nov 2024 06:41:21 GMT body-parser:json parse body +Sat, 02 Nov 2024 06:41:21 GMT body-parser:json parse json +Sat, 02 Nov 2024 06:41:21 GMT express:router urlencodedParser : /vision/classifier +Sat, 02 Nov 2024 06:41:21 GMT body-parser:urlencoded body already parsed +Sat, 02 Nov 2024 06:41:21 GMT express:router corsMiddleware : /vision/classifier +Sat, 02 Nov 2024 06:41:21 GMT express:router router : /vision/classifier +Sat, 02 Nov 2024 06:41:21 GMT express:router dispatching POST /vision/classifier +Creating classifier with model ID: catsdogstest +Checking if model catsdogstest exists... +Attempt 1: Existing model found with version none, deleting... +Attempt 1: Existing model found with version none, deleting... +Model deletion requested, waiting for confirmation... +Model deletion requested, waiting for confirmation... +Verifying model deletion... +Verifying model deletion... +Attempt 1: Model still exists, retrying... +Attempt 1: Model still exists, retrying... +Sat, 02 Nov 2024 06:41:24 GMT express:router dispatching GET /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:41:24 GMT express:router query : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:41:24 GMT express:router expressInit : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:41:24 GMT express:router jsonParser : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:41:24 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:41:24 GMT express:router urlencodedParser : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:41:24 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:41:24 GMT express:router corsMiddleware : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:41:24 GMT express:router trim prefix (/static) from url /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:41:24 GMT express:router serveStatic /static : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:41:24 GMT send stat "/home/ubuntu/cognimates-training/static/images/cognimates-logo--codelab.svg" +Sat, 02 Nov 2024 06:41:24 GMT send pipe "/home/ubuntu/cognimates-training/static/images/cognimates-logo--codelab.svg" +Serving static file: /static/images/cognimates-logo--codelab.svg (image/svg+xml) +Sat, 02 Nov 2024 06:41:24 GMT send accept ranges +Sat, 02 Nov 2024 06:41:24 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:41:24 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:41:24 GMT send etag W/"9f5-192da706627" +Sat, 02 Nov 2024 06:41:24 GMT express:router dispatching GET /static/images/vision_banner.png +Sat, 02 Nov 2024 06:41:24 GMT express:router query : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:41:24 GMT express:router expressInit : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:41:24 GMT express:router jsonParser : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:41:24 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:41:24 GMT express:router urlencodedParser : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:41:24 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:41:24 GMT express:router corsMiddleware : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:41:24 GMT express:router trim prefix (/static) from url /static/images/vision_banner.png +Sat, 02 Nov 2024 06:41:24 GMT express:router serveStatic /static : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:41:24 GMT send stat "/home/ubuntu/cognimates-training/static/images/vision_banner.png" +Sat, 02 Nov 2024 06:41:24 GMT send pipe "/home/ubuntu/cognimates-training/static/images/vision_banner.png" +Serving static file: /static/images/vision_banner.png (image/png) +Sat, 02 Nov 2024 06:41:24 GMT send accept ranges +Sat, 02 Nov 2024 06:41:24 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:41:24 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:41:24 GMT send etag W/"20212-192da70662f" +Sat, 02 Nov 2024 06:41:24 GMT express:router dispatching GET /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:41:24 GMT express:router query : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:41:24 GMT express:router expressInit : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:41:24 GMT express:router jsonParser : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:41:24 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:41:24 GMT express:router urlencodedParser : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:41:24 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:41:24 GMT express:router corsMiddleware : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:41:24 GMT express:router trim prefix (/static) from url /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:41:24 GMT express:router serveStatic /static : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:41:24 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/mit-media-lab--white.svg" +Sat, 02 Nov 2024 06:41:24 GMT express:router dispatching GET /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:41:24 GMT express:router query : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:41:24 GMT express:router expressInit : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:41:24 GMT express:router jsonParser : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:41:24 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:41:24 GMT express:router urlencodedParser : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:41:24 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:41:24 GMT express:router corsMiddleware : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:41:24 GMT express:router trim prefix (/static) from url /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:41:24 GMT express:router serveStatic /static : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:41:24 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/twitter--white.svg" +Sat, 02 Nov 2024 06:41:24 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/mit-media-lab--white.svg" +Serving static file: /static/images/social/mit-media-lab--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:41:24 GMT send accept ranges +Sat, 02 Nov 2024 06:41:24 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:41:24 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:41:24 GMT send etag W/"a7c5-192da70662b" +Sat, 02 Nov 2024 06:41:24 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/twitter--white.svg" +Serving static file: /static/images/social/twitter--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:41:24 GMT send accept ranges +Sat, 02 Nov 2024 06:41:24 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:41:24 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:41:24 GMT send etag W/"712c-192da70662b" +Sat, 02 Nov 2024 06:41:24 GMT express:router dispatching GET /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:41:24 GMT express:router query : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:41:24 GMT express:router expressInit : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:41:24 GMT express:router jsonParser : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:41:24 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:41:24 GMT express:router urlencodedParser : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:41:24 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:41:24 GMT express:router corsMiddleware : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:41:24 GMT express:router trim prefix (/static) from url /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:41:24 GMT express:router serveStatic /static : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:41:24 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/instagram--white.svg" +Sat, 02 Nov 2024 06:41:24 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/instagram--white.svg" +Serving static file: /static/images/social/instagram--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:41:24 GMT send accept ranges +Sat, 02 Nov 2024 06:41:24 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:41:24 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:41:24 GMT send etag W/"6ec0-192da70662b" +Sat, 02 Nov 2024 06:41:24 GMT express:router dispatching GET /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:41:24 GMT express:router query : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:41:24 GMT express:router expressInit : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:41:24 GMT express:router jsonParser : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:41:24 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:41:24 GMT express:router urlencodedParser : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:41:24 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:41:24 GMT express:router corsMiddleware : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:41:24 GMT express:router trim prefix (/static) from url /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:41:24 GMT express:router serveStatic /static : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:41:24 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/vimeo--white.svg" +Sat, 02 Nov 2024 06:41:24 GMT express:router dispatching GET /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:41:24 GMT express:router query : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:41:24 GMT express:router expressInit : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:41:24 GMT express:router jsonParser : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:41:24 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:41:24 GMT express:router urlencodedParser : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:41:24 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:41:24 GMT express:router corsMiddleware : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:41:24 GMT express:router trim prefix (/static) from url /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:41:24 GMT express:router serveStatic /static : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:41:24 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/facebook--white.svg" +Sat, 02 Nov 2024 06:41:24 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/vimeo--white.svg" +Serving static file: /static/images/social/vimeo--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:41:24 GMT send accept ranges +Sat, 02 Nov 2024 06:41:24 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:41:24 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:41:24 GMT send etag W/"6b42-192da70662b" +Sat, 02 Nov 2024 06:41:24 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/facebook--white.svg" +Serving static file: /static/images/social/facebook--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:41:24 GMT send accept ranges +Sat, 02 Nov 2024 06:41:24 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:41:24 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:41:24 GMT send etag W/"69e4-192da70662b" +Checking if model catsdogstest exists... +Checking if model catsdogstest exists... +No existing model found, proceeding with creation +Creating model with request: { + "model": { + "id": "catsdogstest", + "name": "catsdogstest", + "model_type_id": "embedding-classifier", + "concepts": [ + { + "id": "dogs", + "name": "dogs" + }, + { + "id": "cats", + "name": "cats" + } + ], + "output_info": { + "data": { + "concepts": [ + { + "id": "dogs", + "name": "dogs" + }, + { + "id": "cats", + "name": "cats" + } + ] + }, + "output_config": { + "concepts_mutually_exclusive": false, + "closed_environment": false, + "max_concepts": 2 + } + } + } +} +No existing model found, proceeding with creation +Creating model with request: { + "model": { + "id": "catsdogstest", + "name": "catsdogstest", + "model_type_id": "embedding-classifier", + "concepts": [ + { + "id": "dogs", + "name": "dogs" + }, + { + "id": "cats", + "name": "cats" + } + ], + "output_info": { + "data": { + "concepts": [ + { + "id": "dogs", + "name": "dogs" + }, + { + "id": "cats", + "name": "cats" + } + ] + }, + "output_config": { + "concepts_mutually_exclusive": false, + "closed_environment": false, + "max_concepts": 2 + } + } + } +} +Create model failed. Details: { + statusCode: 21202, + description: 'Invalid model argument', + modelRequest: { + model: { + id: 'catsdogstest', + name: 'catsdogstest', + model_type_id: 'embedding-classifier', + concepts: [Array], + output_info: [Object] + } + }, + response: { + status: { + stack_trace: [], + code: 21202, + description: 'Invalid model argument', + details: "Model already exists with ID 'catsdogstest'", + percent_completed: 0, + time_remaining: 0, + req_id: 'ee5d2301d5304e219f45a1a146c4c82b', + internal_details: '', + redirect_info: null, + developer_notes: '' + }, + model: null + } +} +Error creating classifier: { + error: 'Create model failed: Invalid model argument (code: 21202)', + stack: 'Error: Create model failed: Invalid model argument (code: 21202)\n' + + ' at exports.createClassifier (/home/ubuntu/cognimates-training/controllers/clarifai.js:293:19)\n' + + ' at process.processTicksAndRejections (node:internal/process/task_queues:95:5)', + modelId: 'catsdogstest', + concepts: [ 'dogs', 'cats' ] +} +Model created successfully: { + "toolkits": [], + "use_cases": [], + "languages": [], + "languages_full": [], + "check_consents": [], + "id": "catsdogstest", + "name": "catsdogstest", + "created_at": { + "seconds": "1730529687", + "nanos": 921757944 + }, + "app_id": "e72f0cd142ab492bba34c28b9c929323", + "output_info": null, + "model_version": null, + "display_name": "", + "user_id": "c7zlh09yxmbf", + "model_type_id": "embedding-classifier", + "visibility": { + "gettable": 10 + }, + "description": "", + "metadata": { + "fields": {} + }, + "notes": "", + "modified_at": { + "seconds": "1730529687", + "nanos": 921757944 + }, + "is_starred": false, + "star_count": 0, + "task": "", + "presets": null, + "workflow_recommended": { + "value": false + }, + "default_eval_info": null, + "bookmark_origin": null, + "image": null, + "license_type": 0, + "source": 0, + "creator": "" +} +Waiting for model initialization... +Model initialization wait complete +Sat, 02 Nov 2024 06:41:33 GMT express:router dispatching POST /vision/train +Sat, 02 Nov 2024 06:41:33 GMT express:router query : /vision/train +Sat, 02 Nov 2024 06:41:33 GMT express:router expressInit : /vision/train +Sat, 02 Nov 2024 06:41:33 GMT express:router jsonParser : /vision/train +Sat, 02 Nov 2024 06:41:33 GMT body-parser:json content-type "application/json" +Sat, 02 Nov 2024 06:41:33 GMT body-parser:json content-encoding "identity" +Sat, 02 Nov 2024 06:41:33 GMT body-parser:json read body +Sat, 02 Nov 2024 06:41:33 GMT body-parser:json parse body +Sat, 02 Nov 2024 06:41:33 GMT body-parser:json parse json +Sat, 02 Nov 2024 06:41:33 GMT express:router urlencodedParser : /vision/train +Sat, 02 Nov 2024 06:41:33 GMT body-parser:urlencoded body already parsed +Sat, 02 Nov 2024 06:41:33 GMT express:router corsMiddleware : /vision/train +Sat, 02 Nov 2024 06:41:33 GMT express:router router : /vision/train +Sat, 02 Nov 2024 06:41:33 GMT express:router dispatching POST /vision/train +Training classifier with model ID: catsdogstest +Verifying model exists... +Model verification response: { + status: { + stack_trace: [], + code: 10000, + description: 'Ok', + details: '', + percent_completed: 0, + time_remaining: 0, + req_id: 'eaf07173b3b147d8acb84efe1c86aa95', + internal_details: '', + redirect_info: null, + developer_notes: '' + }, + model: { + toolkits: [], + use_cases: [], + languages: [], + languages_full: [], + check_consents: [], + id: 'catsdogstest', + name: 'catsdogstest', + created_at: { seconds: '1730529687', nanos: 921757000 }, + app_id: 'e72f0cd142ab492bba34c28b9c929323', + output_info: null, + model_version: null, + display_name: '', + user_id: 'c7zlh09yxmbf', + model_type_id: 'embedding-classifier', + visibility: { gettable: 10 }, + description: '', + metadata: { fields: {} }, + notes: '', + modified_at: { seconds: '1730529687', nanos: 921757000 }, + is_starred: false, + star_count: 0, + task: '', + presets: null, + workflow_recommended: { value: false }, + default_eval_info: null, + bookmark_origin: null, + image: null, + license_type: 0, + source: 0, + creator: '' + } +} +Model found, preparing training data... +Prepared input 1: { category: 'dogs', conceptId: 'dogs', imageSize: 856 } +Prepared input 2: { category: 'dogs', conceptId: 'dogs', imageSize: 856 } +Prepared input 3: { category: 'dogs', conceptId: 'dogs', imageSize: 856 } +Prepared input 4: { category: 'dogs', conceptId: 'dogs', imageSize: 856 } +Prepared input 5: { category: 'dogs', conceptId: 'dogs', imageSize: 856 } +Prepared input 6: { category: 'dogs', conceptId: 'dogs', imageSize: 856 } +Prepared input 7: { category: 'dogs', conceptId: 'dogs', imageSize: 856 } +Prepared input 8: { category: 'dogs', conceptId: 'dogs', imageSize: 856 } +Prepared input 9: { category: 'dogs', conceptId: 'dogs', imageSize: 856 } +Prepared input 10: { category: 'dogs', conceptId: 'dogs', imageSize: 856 } +Prepared input 11: { category: 'cats', conceptId: 'cats', imageSize: 852 } +Prepared input 12: { category: 'cats', conceptId: 'cats', imageSize: 852 } +Prepared input 13: { category: 'cats', conceptId: 'cats', imageSize: 852 } +Prepared input 14: { category: 'cats', conceptId: 'cats', imageSize: 852 } +Prepared input 15: { category: 'cats', conceptId: 'cats', imageSize: 852 } +Prepared input 16: { category: 'cats', conceptId: 'cats', imageSize: 852 } +Prepared input 17: { category: 'cats', conceptId: 'cats', imageSize: 852 } +Prepared input 18: { category: 'cats', conceptId: 'cats', imageSize: 852 } +Prepared input 19: { category: 'cats', conceptId: 'cats', imageSize: 852 } +Prepared input 20: { category: 'cats', conceptId: 'cats', imageSize: 852 } +Adding 20 inputs to model... +Inputs added successfully: { + status: { + stack_trace: [], + code: 10000, + description: 'Ok', + details: 'All inputs successfully added', + percent_completed: 0, + time_remaining: 0, + req_id: 'b8597780dca947a7a38429e88b016883', + internal_details: '', + redirect_info: null, + developer_notes: '' + }, + inputCount: 20 +} +Inputs added successfully, waiting for processing... +Starting model training... +Creating model version: version-1730529708506 +Training initiated: { + status: { + stack_trace: [], + code: 21202, + description: 'Invalid model argument', + details: 'The model requires concepts.', + percent_completed: 0, + time_remaining: 0, + req_id: '671b2a5644084a68aea10c4bbe2f6093', + internal_details: '', + redirect_info: null, + developer_notes: '' + }, + modelId: 'catsdogstest', + versionId: 'version-1730529708506' +} +Training failed: { + stack_trace: [], + code: 21202, + description: 'Invalid model argument', + details: 'The model requires concepts.', + percent_completed: 0, + time_remaining: 0, + req_id: '671b2a5644084a68aea10c4bbe2f6093', + internal_details: '', + redirect_info: null, + developer_notes: '' +} +Error training classifier: Error: Training failed: Invalid model argument + at exports.trainClassifier (/home/ubuntu/cognimates-training/controllers/clarifai.js:520:19) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) +Sat, 02 Nov 2024 06:42:47 GMT express:router dispatching POST /vision/classifier +Sat, 02 Nov 2024 06:42:47 GMT express:router query : /vision/classifier +Sat, 02 Nov 2024 06:42:47 GMT express:router expressInit : /vision/classifier +Sat, 02 Nov 2024 06:42:47 GMT express:router jsonParser : /vision/classifier +Sat, 02 Nov 2024 06:42:47 GMT body-parser:json content-type "application/json" +Sat, 02 Nov 2024 06:42:47 GMT body-parser:json content-encoding "identity" +Sat, 02 Nov 2024 06:42:47 GMT body-parser:json read body +Sat, 02 Nov 2024 06:42:47 GMT body-parser:json parse body +Sat, 02 Nov 2024 06:42:47 GMT body-parser:json parse json +Sat, 02 Nov 2024 06:42:47 GMT express:router urlencodedParser : /vision/classifier +Sat, 02 Nov 2024 06:42:47 GMT body-parser:urlencoded body already parsed +Sat, 02 Nov 2024 06:42:47 GMT express:router corsMiddleware : /vision/classifier +Sat, 02 Nov 2024 06:42:47 GMT express:router router : /vision/classifier +Sat, 02 Nov 2024 06:42:47 GMT express:router dispatching POST /vision/classifier +Creating classifier with model ID: catsdogstest +Checking if model catsdogstest exists... +Sat, 02 Nov 2024 06:42:47 GMT express:router dispatching POST /vision/classifier +Sat, 02 Nov 2024 06:42:47 GMT express:router query : /vision/classifier +Sat, 02 Nov 2024 06:42:47 GMT express:router expressInit : /vision/classifier +Sat, 02 Nov 2024 06:42:47 GMT express:router jsonParser : /vision/classifier +Sat, 02 Nov 2024 06:42:47 GMT body-parser:json content-type "application/json" +Sat, 02 Nov 2024 06:42:47 GMT body-parser:json content-encoding "identity" +Sat, 02 Nov 2024 06:42:47 GMT body-parser:json read body +Sat, 02 Nov 2024 06:42:47 GMT body-parser:json parse body +Sat, 02 Nov 2024 06:42:47 GMT body-parser:json parse json +Sat, 02 Nov 2024 06:42:47 GMT express:router urlencodedParser : /vision/classifier +Sat, 02 Nov 2024 06:42:47 GMT body-parser:urlencoded body already parsed +Sat, 02 Nov 2024 06:42:47 GMT express:router corsMiddleware : /vision/classifier +Sat, 02 Nov 2024 06:42:47 GMT express:router router : /vision/classifier +Sat, 02 Nov 2024 06:42:47 GMT express:router dispatching POST /vision/classifier +Creating classifier with model ID: catsdogstest +Checking if model catsdogstest exists... +Attempt 1: Existing model found with version none, deleting... +Attempt 1: Existing model found with version none, deleting... +Model deletion requested, waiting for confirmation... +Model deletion requested, waiting for confirmation... +Verifying model deletion... +Verifying model deletion... +Attempt 1: Model still exists, retrying... +Attempt 1: Model still exists, retrying... +Sat, 02 Nov 2024 06:42:50 GMT express:router dispatching GET /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:42:50 GMT express:router query : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:42:50 GMT express:router expressInit : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:42:50 GMT express:router jsonParser : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:42:50 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:42:50 GMT express:router urlencodedParser : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:42:50 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:42:50 GMT express:router corsMiddleware : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:42:50 GMT express:router trim prefix (/static) from url /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:42:50 GMT express:router serveStatic /static : /static/images/cognimates-logo--codelab.svg +Sat, 02 Nov 2024 06:42:50 GMT send stat "/home/ubuntu/cognimates-training/static/images/cognimates-logo--codelab.svg" +Sat, 02 Nov 2024 06:42:50 GMT express:router dispatching GET /static/images/vision_banner.png +Sat, 02 Nov 2024 06:42:50 GMT express:router query : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:42:50 GMT express:router expressInit : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:42:50 GMT express:router jsonParser : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:42:50 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:42:50 GMT express:router urlencodedParser : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:42:50 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:42:50 GMT express:router corsMiddleware : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:42:50 GMT express:router trim prefix (/static) from url /static/images/vision_banner.png +Sat, 02 Nov 2024 06:42:50 GMT express:router serveStatic /static : /static/images/vision_banner.png +Sat, 02 Nov 2024 06:42:50 GMT send stat "/home/ubuntu/cognimates-training/static/images/vision_banner.png" +Sat, 02 Nov 2024 06:42:50 GMT express:router dispatching GET /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:42:50 GMT express:router query : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:42:50 GMT express:router expressInit : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:42:50 GMT express:router jsonParser : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:42:50 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:42:50 GMT express:router urlencodedParser : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:42:50 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:42:50 GMT express:router corsMiddleware : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:42:50 GMT express:router trim prefix (/static) from url /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:42:50 GMT express:router serveStatic /static : /static/images/social/mit-media-lab--white.svg +Sat, 02 Nov 2024 06:42:50 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/mit-media-lab--white.svg" +Sat, 02 Nov 2024 06:42:50 GMT express:router dispatching GET /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:42:50 GMT express:router query : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:42:50 GMT express:router expressInit : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:42:50 GMT express:router jsonParser : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:42:50 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:42:50 GMT express:router urlencodedParser : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:42:50 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:42:50 GMT express:router corsMiddleware : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:42:50 GMT express:router trim prefix (/static) from url /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:42:50 GMT express:router serveStatic /static : /static/images/social/twitter--white.svg +Sat, 02 Nov 2024 06:42:50 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/twitter--white.svg" +Sat, 02 Nov 2024 06:42:50 GMT send pipe "/home/ubuntu/cognimates-training/static/images/cognimates-logo--codelab.svg" +Serving static file: /static/images/cognimates-logo--codelab.svg (image/svg+xml) +Sat, 02 Nov 2024 06:42:50 GMT send accept ranges +Sat, 02 Nov 2024 06:42:50 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:42:50 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:42:50 GMT send etag W/"9f5-192da706627" +Sat, 02 Nov 2024 06:42:50 GMT send pipe "/home/ubuntu/cognimates-training/static/images/vision_banner.png" +Serving static file: /static/images/vision_banner.png (image/png) +Sat, 02 Nov 2024 06:42:50 GMT send accept ranges +Sat, 02 Nov 2024 06:42:50 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:42:50 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:42:50 GMT send etag W/"20212-192da70662f" +Sat, 02 Nov 2024 06:42:50 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/mit-media-lab--white.svg" +Serving static file: /static/images/social/mit-media-lab--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:42:50 GMT send accept ranges +Sat, 02 Nov 2024 06:42:50 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:42:50 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:42:50 GMT send etag W/"a7c5-192da70662b" +Sat, 02 Nov 2024 06:42:50 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/twitter--white.svg" +Serving static file: /static/images/social/twitter--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:42:50 GMT send accept ranges +Sat, 02 Nov 2024 06:42:50 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:42:50 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:42:50 GMT send etag W/"712c-192da70662b" +Sat, 02 Nov 2024 06:42:50 GMT express:router dispatching GET /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:42:50 GMT express:router query : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:42:50 GMT express:router expressInit : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:42:50 GMT express:router jsonParser : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:42:50 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:42:50 GMT express:router urlencodedParser : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:42:50 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:42:50 GMT express:router corsMiddleware : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:42:50 GMT express:router trim prefix (/static) from url /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:42:50 GMT express:router serveStatic /static : /static/images/social/instagram--white.svg +Sat, 02 Nov 2024 06:42:50 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/instagram--white.svg" +Sat, 02 Nov 2024 06:42:50 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/instagram--white.svg" +Serving static file: /static/images/social/instagram--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:42:50 GMT send accept ranges +Sat, 02 Nov 2024 06:42:50 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:42:50 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:42:50 GMT send etag W/"6ec0-192da70662b" +Sat, 02 Nov 2024 06:42:50 GMT express:router dispatching GET /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:42:50 GMT express:router query : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:42:50 GMT express:router expressInit : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:42:50 GMT express:router jsonParser : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:42:50 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:42:50 GMT express:router urlencodedParser : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:42:50 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:42:50 GMT express:router corsMiddleware : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:42:50 GMT express:router trim prefix (/static) from url /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:42:50 GMT express:router serveStatic /static : /static/images/social/vimeo--white.svg +Sat, 02 Nov 2024 06:42:50 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/vimeo--white.svg" +Sat, 02 Nov 2024 06:42:50 GMT express:router dispatching GET /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:42:50 GMT express:router query : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:42:50 GMT express:router expressInit : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:42:50 GMT express:router jsonParser : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:42:50 GMT body-parser:json skip empty body +Sat, 02 Nov 2024 06:42:50 GMT express:router urlencodedParser : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:42:50 GMT body-parser:urlencoded skip empty body +Sat, 02 Nov 2024 06:42:50 GMT express:router corsMiddleware : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:42:50 GMT express:router trim prefix (/static) from url /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:42:50 GMT express:router serveStatic /static : /static/images/social/facebook--white.svg +Sat, 02 Nov 2024 06:42:50 GMT send stat "/home/ubuntu/cognimates-training/static/images/social/facebook--white.svg" +Sat, 02 Nov 2024 06:42:50 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/vimeo--white.svg" +Serving static file: /static/images/social/vimeo--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:42:50 GMT send accept ranges +Sat, 02 Nov 2024 06:42:50 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:42:50 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:42:50 GMT send etag W/"6b42-192da70662b" +Sat, 02 Nov 2024 06:42:50 GMT send pipe "/home/ubuntu/cognimates-training/static/images/social/facebook--white.svg" +Serving static file: /static/images/social/facebook--white.svg (image/svg+xml) +Sat, 02 Nov 2024 06:42:50 GMT send accept ranges +Sat, 02 Nov 2024 06:42:50 GMT send cache-control public, max-age=0 +Sat, 02 Nov 2024 06:42:50 GMT send modified Tue, 29 Oct 2024 22:40:52 GMT +Sat, 02 Nov 2024 06:42:50 GMT send etag W/"69e4-192da70662b" +Checking if model catsdogstest exists... +Checking if model catsdogstest exists... +No existing model found, proceeding with creation +Creating model with request: { + "model": { + "id": "catsdogstest", + "name": "catsdogstest", + "model_type_id": "embedding-classifier", + "concepts": [ + { + "id": "dogs", + "name": "dogs" + }, + { + "id": "cats", + "name": "cats" + } + ], + "output_info": { + "data": { + "concepts": [ + { + "id": "dogs", + "name": "dogs" + }, + { + "id": "cats", + "name": "cats" + } + ] + }, + "output_config": { + "concepts_mutually_exclusive": false, + "closed_environment": false, + "max_concepts": 2 + } + } + } +} +No existing model found, proceeding with creation +Creating model with request: { + "model": { + "id": "catsdogstest", + "name": "catsdogstest", + "model_type_id": "embedding-classifier", + "concepts": [ + { + "id": "dogs", + "name": "dogs" + }, + { + "id": "cats", + "name": "cats" + } + ], + "output_info": { + "data": { + "concepts": [ + { + "id": "dogs", + "name": "dogs" + }, + { + "id": "cats", + "name": "cats" + } + ] + }, + "output_config": { + "concepts_mutually_exclusive": false, + "closed_environment": false, + "max_concepts": 2 + } + } + } +} +Create model failed. Details: { + statusCode: 21202, + description: 'Invalid model argument', + modelRequest: { + model: { + id: 'catsdogstest', + name: 'catsdogstest', + model_type_id: 'embedding-classifier', + concepts: [Array], + output_info: [Object] + } + }, + response: { + status: { + stack_trace: [], + code: 21202, + description: 'Invalid model argument', + details: "Model already exists with ID 'catsdogstest'", + percent_completed: 0, + time_remaining: 0, + req_id: '2f702d248b104758a978adb8aba3d4ad', + internal_details: '', + redirect_info: null, + developer_notes: '' + }, + model: null + } +} +Error creating classifier: { + error: 'Create model failed: Invalid model argument (code: 21202)', + stack: 'Error: Create model failed: Invalid model argument (code: 21202)\n' + + ' at exports.createClassifier (/home/ubuntu/cognimates-training/controllers/clarifai.js:293:19)\n' + + ' at process.processTicksAndRejections (node:internal/process/task_queues:95:5)', + modelId: 'catsdogstest', + concepts: [ 'dogs', 'cats' ] +} +Model created successfully: { + "toolkits": [], + "use_cases": [], + "languages": [], + "languages_full": [], + "check_consents": [], + "id": "catsdogstest", + "name": "catsdogstest", + "created_at": { + "seconds": "1730529773", + "nanos": 513546657 + }, + "app_id": "e72f0cd142ab492bba34c28b9c929323", + "output_info": null, + "model_version": null, + "display_name": "", + "user_id": "c7zlh09yxmbf", + "model_type_id": "embedding-classifier", + "visibility": { + "gettable": 10 + }, + "description": "", + "metadata": { + "fields": {} + }, + "notes": "", + "modified_at": { + "seconds": "1730529773", + "nanos": 513546657 + }, + "is_starred": false, + "star_count": 0, + "task": "", + "presets": null, + "workflow_recommended": { + "value": false + }, + "default_eval_info": null, + "bookmark_origin": null, + "image": null, + "license_type": 0, + "source": 0, + "creator": "" +} +Waiting for model initialization... +Model initialization wait complete +Sat, 02 Nov 2024 06:42:58 GMT express:router dispatching POST /vision/train +Sat, 02 Nov 2024 06:42:58 GMT express:router query : /vision/train +Sat, 02 Nov 2024 06:42:58 GMT express:router expressInit : /vision/train +Sat, 02 Nov 2024 06:42:58 GMT express:router jsonParser : /vision/train +Sat, 02 Nov 2024 06:42:58 GMT body-parser:json content-type "application/json" +Sat, 02 Nov 2024 06:42:58 GMT body-parser:json content-encoding "identity" +Sat, 02 Nov 2024 06:42:58 GMT body-parser:json read body +Sat, 02 Nov 2024 06:42:58 GMT body-parser:json parse body +Sat, 02 Nov 2024 06:42:58 GMT body-parser:json parse json +Sat, 02 Nov 2024 06:42:58 GMT express:router urlencodedParser : /vision/train +Sat, 02 Nov 2024 06:42:58 GMT body-parser:urlencoded body already parsed +Sat, 02 Nov 2024 06:42:58 GMT express:router corsMiddleware : /vision/train +Sat, 02 Nov 2024 06:42:58 GMT express:router router : /vision/train +Sat, 02 Nov 2024 06:42:58 GMT express:router dispatching POST /vision/train +Training classifier with model ID: catsdogstest +Verifying model exists... +Model verification response: { + status: { + stack_trace: [], + code: 10000, + description: 'Ok', + details: '', + percent_completed: 0, + time_remaining: 0, + req_id: '773ec316cc8d4c01b1e3a2f9689377e5', + internal_details: '', + redirect_info: null, + developer_notes: '' + }, + model: { + toolkits: [], + use_cases: [], + languages: [], + languages_full: [], + check_consents: [], + id: 'catsdogstest', + name: 'catsdogstest', + created_at: { seconds: '1730529773', nanos: 513546000 }, + app_id: 'e72f0cd142ab492bba34c28b9c929323', + output_info: null, + model_version: null, + display_name: '', + user_id: 'c7zlh09yxmbf', + model_type_id: 'embedding-classifier', + visibility: { gettable: 10 }, + description: '', + metadata: { fields: {} }, + notes: '', + modified_at: { seconds: '1730529773', nanos: 513546000 }, + is_starred: false, + star_count: 0, + task: '', + presets: null, + workflow_recommended: { value: false }, + default_eval_info: null, + bookmark_origin: null, + image: null, + license_type: 0, + source: 0, + creator: '' + } +} +Model found, preparing training data... +Prepared input 1: { category: 'dogs', conceptId: 'dogs', imageSize: 856 } +Prepared input 2: { category: 'dogs', conceptId: 'dogs', imageSize: 856 } +Prepared input 3: { category: 'dogs', conceptId: 'dogs', imageSize: 856 } +Prepared input 4: { category: 'dogs', conceptId: 'dogs', imageSize: 856 } +Prepared input 5: { category: 'dogs', conceptId: 'dogs', imageSize: 856 } +Prepared input 6: { category: 'dogs', conceptId: 'dogs', imageSize: 856 } +Prepared input 7: { category: 'dogs', conceptId: 'dogs', imageSize: 856 } +Prepared input 8: { category: 'dogs', conceptId: 'dogs', imageSize: 856 } +Prepared input 9: { category: 'dogs', conceptId: 'dogs', imageSize: 856 } +Prepared input 10: { category: 'dogs', conceptId: 'dogs', imageSize: 856 } +Prepared input 11: { category: 'cats', conceptId: 'cats', imageSize: 852 } +Prepared input 12: { category: 'cats', conceptId: 'cats', imageSize: 852 } +Prepared input 13: { category: 'cats', conceptId: 'cats', imageSize: 852 } +Prepared input 14: { category: 'cats', conceptId: 'cats', imageSize: 852 } +Prepared input 15: { category: 'cats', conceptId: 'cats', imageSize: 852 } +Prepared input 16: { category: 'cats', conceptId: 'cats', imageSize: 852 } +Prepared input 17: { category: 'cats', conceptId: 'cats', imageSize: 852 } +Prepared input 18: { category: 'cats', conceptId: 'cats', imageSize: 852 } +Prepared input 19: { category: 'cats', conceptId: 'cats', imageSize: 852 } +Prepared input 20: { category: 'cats', conceptId: 'cats', imageSize: 852 } +Adding 20 inputs to model... +Inputs added successfully: { + status: { + stack_trace: [], + code: 10000, + description: 'Ok', + details: 'All inputs successfully added', + percent_completed: 0, + time_remaining: 0, + req_id: '62fc8d14b2e04ec5891b1a1cb2290e55', + internal_details: '', + redirect_info: null, + developer_notes: '' + }, + inputCount: 20 +} +Inputs added successfully, waiting for processing... +Starting model training... +Creating model version: version-1730529794085 +Training initiated: { + status: { + stack_trace: [], + code: 21202, + description: 'Invalid model argument', + details: 'The model requires concepts.', + percent_completed: 0, + time_remaining: 0, + req_id: '507fa970bc69474eb3658ed2c1e0ab11', + internal_details: '', + redirect_info: null, + developer_notes: '' + }, + modelId: 'catsdogstest', + versionId: 'version-1730529794085' +} +Training failed: { + stack_trace: [], + code: 21202, + description: 'Invalid model argument', + details: 'The model requires concepts.', + percent_completed: 0, + time_remaining: 0, + req_id: '507fa970bc69474eb3658ed2c1e0ab11', + internal_details: '', + redirect_info: null, + developer_notes: '' +} +Error training classifier: Error: Training failed: Invalid model argument + at exports.trainClassifier (/home/ubuntu/cognimates-training/controllers/clarifai.js:520:19) + at process.processTicksAndRejections (node:internal/process/task_queues:95:5) diff --git a/model_config.yaml b/model_config.yaml new file mode 100644 index 00000000..66ae5b49 --- /dev/null +++ b/model_config.yaml @@ -0,0 +1,11 @@ +template: MMClassification_EfficientNet +hyperparameters: + use_embeddings: true + epochs: 5 + batch_size: 32 + learning_rate: 0.001 +concepts: + - id: cat + name: cat + - id: dog + name: dog diff --git a/package-lock.json b/package-lock.json index b3c44a9f..eff6b3da 100644 --- a/package-lock.json +++ b/package-lock.json @@ -10,14 +10,17 @@ "dependencies": { "axios": "^1.7.7", "body-parser": "^1.20.3", + "clarifai-nodejs": "^0.0.3", "clarifai-nodejs-grpc": "^10.9.8", "cors": "^2.8.5", "dotenv": "^16.4.5", "express": "^4.21.1", "express-handlebars": "^7.1.3", + "js-yaml": "^4.1.0", "multer": "^1.4.5-lts.1", "sass": "^1.69.5", - "sharp": "^0.33.5" + "sharp": "^0.33.5", + "uuid": "^11.0.2" }, "devDependencies": { "nodemon": "^3.1.4" @@ -26,1842 +29,5995 @@ "node": "18.x" } }, - "node_modules/@emnapi/runtime": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.3.1.tgz", - "integrity": "sha512-kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw==", + "node_modules/@anthropic-ai/sdk": { + "version": "0.20.9", + "resolved": "https://registry.npmjs.org/@anthropic-ai/sdk/-/sdk-0.20.9.tgz", + "integrity": "sha512-Lq74+DhiEQO6F9/gdVOLmHx57pX45ebK2Q/zH14xYe1157a7QeUVknRqIp0Jz5gQI01o7NKbuv9Dag2uQsLjDg==", "license": "MIT", - "optional": true, "dependencies": { - "tslib": "^2.4.0" + "@types/node": "^18.11.18", + "@types/node-fetch": "^2.6.4", + "abort-controller": "^3.0.0", + "agentkeepalive": "^4.2.1", + "form-data-encoder": "1.7.2", + "formdata-node": "^4.3.2", + "node-fetch": "^2.6.7", + "web-streams-polyfill": "^3.2.1" } }, - "node_modules/@grpc/grpc-js": { - "version": "1.12.2", - "resolved": "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.12.2.tgz", - "integrity": "sha512-bgxdZmgTrJZX50OjyVwz3+mNEnCTNkh3cIqGPWVNeW9jX6bn1ZkU80uPd+67/ZpIJIjRQ9qaHCjhavyoWYxumg==", + "node_modules/@anthropic-ai/sdk/node_modules/@types/node": { + "version": "18.19.64", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.64.tgz", + "integrity": "sha512-955mDqvO2vFf/oL7V3WiUtiz+BugyX8uVbaT2H8oj3+8dRyH2FLiNdowe7eNqRM7IOIZvzDH76EoAT+gwm6aIQ==", + "license": "MIT", + "dependencies": { + "undici-types": "~5.26.4" + } + }, + "node_modules/@anthropic-ai/sdk/node_modules/undici-types": { + "version": "5.26.5", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", + "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", + "license": "MIT" + }, + "node_modules/@aws-crypto/crc32": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@aws-crypto/crc32/-/crc32-3.0.0.tgz", + "integrity": "sha512-IzSgsrxUcsrejQbPVilIKy16kAT52EwB6zSaI+M3xxIhKh5+aldEyvI+z6erM7TCLB2BJsFrtHjp6/4/sr+3dA==", "license": "Apache-2.0", "dependencies": { - "@grpc/proto-loader": "^0.7.13", - "@js-sdsl/ordered-map": "^4.4.2" - }, - "engines": { - "node": ">=12.10.0" + "@aws-crypto/util": "^3.0.0", + "@aws-sdk/types": "^3.222.0", + "tslib": "^1.11.1" } }, - "node_modules/@grpc/grpc-js/node_modules/@grpc/proto-loader": { - "version": "0.7.13", - "resolved": "https://registry.npmjs.org/@grpc/proto-loader/-/proto-loader-0.7.13.tgz", - "integrity": "sha512-AiXO/bfe9bmxBjxxtYxFAXGZvMaN5s8kO+jBHAJCON8rJoB5YS/D6X7ZNc6XQkuHNmyl4CYaMI1fJ/Gn27RGGw==", + "node_modules/@aws-crypto/crc32/node_modules/@aws-crypto/util": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@aws-crypto/util/-/util-3.0.0.tgz", + "integrity": "sha512-2OJlpeJpCR48CC8r+uKVChzs9Iungj9wkZrl8Z041DWEWvyIHILYKCPNzJghKsivj+S3mLo6BVc7mBNzdxA46w==", "license": "Apache-2.0", "dependencies": { - "lodash.camelcase": "^4.3.0", - "long": "^5.0.0", - "protobufjs": "^7.2.5", - "yargs": "^17.7.2" - }, - "bin": { - "proto-loader-gen-types": "build/bin/proto-loader-gen-types.js" + "@aws-sdk/types": "^3.222.0", + "@aws-sdk/util-utf8-browser": "^3.0.0", + "tslib": "^1.11.1" + } + }, + "node_modules/@aws-crypto/crc32/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "license": "0BSD" + }, + "node_modules/@aws-crypto/sha256-browser": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/@aws-crypto/sha256-browser/-/sha256-browser-5.2.0.tgz", + "integrity": "sha512-AXfN/lGotSQwu6HNcEsIASo7kWXZ5HYWvfOmSNKDsEqC4OashTp8alTmaz+F7TC2L083SFv5RdB+qU3Vs1kZqw==", + "license": "Apache-2.0", + "dependencies": { + "@aws-crypto/sha256-js": "^5.2.0", + "@aws-crypto/supports-web-crypto": "^5.2.0", + "@aws-crypto/util": "^5.2.0", + "@aws-sdk/types": "^3.222.0", + "@aws-sdk/util-locate-window": "^3.0.0", + "@smithy/util-utf8": "^2.0.0", + "tslib": "^2.6.2" + } + }, + "node_modules/@aws-crypto/sha256-js": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/@aws-crypto/sha256-js/-/sha256-js-5.2.0.tgz", + "integrity": "sha512-FFQQyu7edu4ufvIZ+OadFpHHOt+eSTBaYaki44c+akjg7qZg9oOQeLlk77F6tSYqjDAFClrHJk9tMf0HdVyOvA==", + "license": "Apache-2.0", + "dependencies": { + "@aws-crypto/util": "^5.2.0", + "@aws-sdk/types": "^3.222.0", + "tslib": "^2.6.2" }, "engines": { - "node": ">=6" + "node": ">=16.0.0" } }, - "node_modules/@grpc/grpc-js/node_modules/long": { - "version": "5.2.3", - "resolved": "https://registry.npmjs.org/long/-/long-5.2.3.tgz", - "integrity": "sha512-lcHwpNoggQTObv5apGNCTdJrO69eHOZMi4BNC+rTLER8iHAqGrUVeLh/irVIM7zTw2bOXA8T6uNPeujwOLg/2Q==", - "license": "Apache-2.0" + "node_modules/@aws-crypto/supports-web-crypto": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/@aws-crypto/supports-web-crypto/-/supports-web-crypto-5.2.0.tgz", + "integrity": "sha512-iAvUotm021kM33eCdNfwIN//F77/IADDSs58i+MDaOqFrVjZo9bAal0NK7HurRuWLLpF1iLX7gbWrjHjeo+YFg==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.6.2" + } }, - "node_modules/@grpc/grpc-js/node_modules/protobufjs": { - "version": "7.4.0", - "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-7.4.0.tgz", - "integrity": "sha512-mRUWCc3KUU4w1jU8sGxICXH/gNS94DvI1gxqDvBzhj1JpcsimQkYiOJfwsPUykUI5ZaspFbSgmBLER8IrQ3tqw==", - "hasInstallScript": true, - "license": "BSD-3-Clause", + "node_modules/@aws-crypto/util": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/@aws-crypto/util/-/util-5.2.0.tgz", + "integrity": "sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ==", + "license": "Apache-2.0", "dependencies": { - "@protobufjs/aspromise": "^1.1.2", - "@protobufjs/base64": "^1.1.2", - "@protobufjs/codegen": "^2.0.4", - "@protobufjs/eventemitter": "^1.1.0", - "@protobufjs/fetch": "^1.1.0", - "@protobufjs/float": "^1.0.2", - "@protobufjs/inquire": "^1.1.0", - "@protobufjs/path": "^1.1.2", - "@protobufjs/pool": "^1.1.0", - "@protobufjs/utf8": "^1.1.0", - "@types/node": ">=13.7.0", - "long": "^5.0.0" + "@aws-sdk/types": "^3.222.0", + "@smithy/util-utf8": "^2.0.0", + "tslib": "^2.6.2" + } + }, + "node_modules/@aws-sdk/client-cognito-identity": { + "version": "3.687.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-cognito-identity/-/client-cognito-identity-3.687.0.tgz", + "integrity": "sha512-jcQTioloSed+Jc3snjrgpWejkOm8t3Zt+jWrApw3ejN8qBtpFCH43M7q/CSDVZ9RS1IjX+KRWoBFnrDOnbuw0Q==", + "license": "Apache-2.0", + "dependencies": { + "@aws-crypto/sha256-browser": "5.2.0", + "@aws-crypto/sha256-js": "5.2.0", + "@aws-sdk/client-sso-oidc": "3.687.0", + "@aws-sdk/client-sts": "3.687.0", + "@aws-sdk/core": "3.686.0", + "@aws-sdk/credential-provider-node": "3.687.0", + "@aws-sdk/middleware-host-header": "3.686.0", + "@aws-sdk/middleware-logger": "3.686.0", + "@aws-sdk/middleware-recursion-detection": "3.686.0", + "@aws-sdk/middleware-user-agent": "3.687.0", + "@aws-sdk/region-config-resolver": "3.686.0", + "@aws-sdk/types": "3.686.0", + "@aws-sdk/util-endpoints": "3.686.0", + "@aws-sdk/util-user-agent-browser": "3.686.0", + "@aws-sdk/util-user-agent-node": "3.687.0", + "@smithy/config-resolver": "^3.0.10", + "@smithy/core": "^2.5.1", + "@smithy/fetch-http-handler": "^4.0.0", + "@smithy/hash-node": "^3.0.8", + "@smithy/invalid-dependency": "^3.0.8", + "@smithy/middleware-content-length": "^3.0.10", + "@smithy/middleware-endpoint": "^3.2.1", + "@smithy/middleware-retry": "^3.0.25", + "@smithy/middleware-serde": "^3.0.8", + "@smithy/middleware-stack": "^3.0.8", + "@smithy/node-config-provider": "^3.1.9", + "@smithy/node-http-handler": "^3.2.5", + "@smithy/protocol-http": "^4.1.5", + "@smithy/smithy-client": "^3.4.2", + "@smithy/types": "^3.6.0", + "@smithy/url-parser": "^3.0.8", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-body-length-node": "^3.0.0", + "@smithy/util-defaults-mode-browser": "^3.0.25", + "@smithy/util-defaults-mode-node": "^3.0.25", + "@smithy/util-endpoints": "^2.1.4", + "@smithy/util-middleware": "^3.0.8", + "@smithy/util-retry": "^3.0.8", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-cognito-identity/node_modules/@smithy/is-array-buffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/is-array-buffer/-/is-array-buffer-3.0.0.tgz", + "integrity": "sha512-+Fsu6Q6C4RSJiy81Y8eApjEB5gVtM+oFKTffg+jSuwtvomJJrhUJBu2zS8wjXSgH/g1MKEWrzyChTBe6clb5FQ==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.6.2" }, "engines": { - "node": ">=12.0.0" + "node": ">=16.0.0" } }, - "node_modules/@grpc/proto-loader": { - "version": "0.5.6", - "resolved": "https://registry.npmjs.org/@grpc/proto-loader/-/proto-loader-0.5.6.tgz", - "integrity": "sha512-DT14xgw3PSzPxwS13auTEwxhMMOoz33DPUKNtmYK/QYbBSpLXJy78FGGs5yVoxVobEqPm4iW9MOIoz0A3bLTRQ==", + "node_modules/@aws-sdk/client-cognito-identity/node_modules/@smithy/util-buffer-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-buffer-from/-/util-buffer-from-3.0.0.tgz", + "integrity": "sha512-aEOHCgq5RWFbP+UDPvPot26EJHjOC+bRgse5A8V3FSShqd5E5UN4qc7zkwsvJPPAVsf73QwYcHN1/gt/rtLwQA==", "license": "Apache-2.0", "dependencies": { - "lodash.camelcase": "^4.3.0", - "protobufjs": "^6.8.6" + "@smithy/is-array-buffer": "^3.0.0", + "tslib": "^2.6.2" }, "engines": { - "node": ">=6" + "node": ">=16.0.0" } }, - "node_modules/@img/sharp-darwin-arm64": { - "version": "0.33.5", - "resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.33.5.tgz", - "integrity": "sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==", - "cpu": [ - "arm64" - ], + "node_modules/@aws-sdk/client-cognito-identity/node_modules/@smithy/util-utf8": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-utf8/-/util-utf8-3.0.0.tgz", + "integrity": "sha512-rUeT12bxFnplYDe815GXbq/oixEGHfRFFtcTF3YdDi/JaENIM6aSYYLJydG83UNzLXeRI5K8abYd/8Sp/QM0kA==", "license": "Apache-2.0", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" - }, - "funding": { - "url": "https://opencollective.com/libvips" + "dependencies": { + "@smithy/util-buffer-from": "^3.0.0", + "tslib": "^2.6.2" }, - "optionalDependencies": { - "@img/sharp-libvips-darwin-arm64": "1.0.4" + "engines": { + "node": ">=16.0.0" } }, - "node_modules/@img/sharp-darwin-x64": { - "version": "0.33.5", - "resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.33.5.tgz", - "integrity": "sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==", - "cpu": [ - "x64" - ], + "node_modules/@aws-sdk/client-sagemaker": { + "version": "3.687.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sagemaker/-/client-sagemaker-3.687.0.tgz", + "integrity": "sha512-pNSA9IVrtuWSlSt/4kqH0jGUbFEPnjBtEd6htJpjA8udBDciEOGaMOm0Z67dlI/9VqWTAonkXLTtom+gFwBKXA==", "license": "Apache-2.0", - "optional": true, - "os": [ - "darwin" - ], + "dependencies": { + "@aws-crypto/sha256-browser": "5.2.0", + "@aws-crypto/sha256-js": "5.2.0", + "@aws-sdk/client-sso-oidc": "3.687.0", + "@aws-sdk/client-sts": "3.687.0", + "@aws-sdk/core": "3.686.0", + "@aws-sdk/credential-provider-node": "3.687.0", + "@aws-sdk/middleware-host-header": "3.686.0", + "@aws-sdk/middleware-logger": "3.686.0", + "@aws-sdk/middleware-recursion-detection": "3.686.0", + "@aws-sdk/middleware-user-agent": "3.687.0", + "@aws-sdk/region-config-resolver": "3.686.0", + "@aws-sdk/types": "3.686.0", + "@aws-sdk/util-endpoints": "3.686.0", + "@aws-sdk/util-user-agent-browser": "3.686.0", + "@aws-sdk/util-user-agent-node": "3.687.0", + "@smithy/config-resolver": "^3.0.10", + "@smithy/core": "^2.5.1", + "@smithy/fetch-http-handler": "^4.0.0", + "@smithy/hash-node": "^3.0.8", + "@smithy/invalid-dependency": "^3.0.8", + "@smithy/middleware-content-length": "^3.0.10", + "@smithy/middleware-endpoint": "^3.2.1", + "@smithy/middleware-retry": "^3.0.25", + "@smithy/middleware-serde": "^3.0.8", + "@smithy/middleware-stack": "^3.0.8", + "@smithy/node-config-provider": "^3.1.9", + "@smithy/node-http-handler": "^3.2.5", + "@smithy/protocol-http": "^4.1.5", + "@smithy/smithy-client": "^3.4.2", + "@smithy/types": "^3.6.0", + "@smithy/url-parser": "^3.0.8", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-body-length-node": "^3.0.0", + "@smithy/util-defaults-mode-browser": "^3.0.25", + "@smithy/util-defaults-mode-node": "^3.0.25", + "@smithy/util-endpoints": "^2.1.4", + "@smithy/util-middleware": "^3.0.8", + "@smithy/util-retry": "^3.0.8", + "@smithy/util-utf8": "^3.0.0", + "@smithy/util-waiter": "^3.1.7", + "@types/uuid": "^9.0.1", + "tslib": "^2.6.2", + "uuid": "^9.0.1" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-sagemaker/node_modules/@smithy/is-array-buffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/is-array-buffer/-/is-array-buffer-3.0.0.tgz", + "integrity": "sha512-+Fsu6Q6C4RSJiy81Y8eApjEB5gVtM+oFKTffg+jSuwtvomJJrhUJBu2zS8wjXSgH/g1MKEWrzyChTBe6clb5FQ==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.6.2" + }, "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-sagemaker/node_modules/@smithy/util-buffer-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-buffer-from/-/util-buffer-from-3.0.0.tgz", + "integrity": "sha512-aEOHCgq5RWFbP+UDPvPot26EJHjOC+bRgse5A8V3FSShqd5E5UN4qc7zkwsvJPPAVsf73QwYcHN1/gt/rtLwQA==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/is-array-buffer": "^3.0.0", + "tslib": "^2.6.2" }, - "funding": { - "url": "https://opencollective.com/libvips" + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-sagemaker/node_modules/@smithy/util-utf8": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-utf8/-/util-utf8-3.0.0.tgz", + "integrity": "sha512-rUeT12bxFnplYDe815GXbq/oixEGHfRFFtcTF3YdDi/JaENIM6aSYYLJydG83UNzLXeRI5K8abYd/8Sp/QM0kA==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/util-buffer-from": "^3.0.0", + "tslib": "^2.6.2" }, - "optionalDependencies": { - "@img/sharp-libvips-darwin-x64": "1.0.4" + "engines": { + "node": ">=16.0.0" } }, - "node_modules/@img/sharp-libvips-darwin-arm64": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.0.4.tgz", - "integrity": "sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg==", - "cpu": [ - "arm64" - ], - "license": "LGPL-3.0-or-later", - "optional": true, - "os": [ - "darwin" + "node_modules/@aws-sdk/client-sagemaker/node_modules/uuid": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz", + "integrity": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==", + "funding": [ + "https://github.com/sponsors/broofa", + "https://github.com/sponsors/ctavan" ], - "funding": { - "url": "https://opencollective.com/libvips" + "license": "MIT", + "bin": { + "uuid": "dist/bin/uuid" } }, - "node_modules/@img/sharp-libvips-darwin-x64": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.0.4.tgz", - "integrity": "sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==", - "cpu": [ - "x64" - ], - "license": "LGPL-3.0-or-later", - "optional": true, - "os": [ - "darwin" - ], - "funding": { - "url": "https://opencollective.com/libvips" + "node_modules/@aws-sdk/client-sso": { + "version": "3.687.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.687.0.tgz", + "integrity": "sha512-dfj0y9fQyX4kFill/ZG0BqBTLQILKlL7+O5M4F9xlsh2WNuV2St6WtcOg14Y1j5UODPJiJs//pO+mD1lihT5Kw==", + "license": "Apache-2.0", + "dependencies": { + "@aws-crypto/sha256-browser": "5.2.0", + "@aws-crypto/sha256-js": "5.2.0", + "@aws-sdk/core": "3.686.0", + "@aws-sdk/middleware-host-header": "3.686.0", + "@aws-sdk/middleware-logger": "3.686.0", + "@aws-sdk/middleware-recursion-detection": "3.686.0", + "@aws-sdk/middleware-user-agent": "3.687.0", + "@aws-sdk/region-config-resolver": "3.686.0", + "@aws-sdk/types": "3.686.0", + "@aws-sdk/util-endpoints": "3.686.0", + "@aws-sdk/util-user-agent-browser": "3.686.0", + "@aws-sdk/util-user-agent-node": "3.687.0", + "@smithy/config-resolver": "^3.0.10", + "@smithy/core": "^2.5.1", + "@smithy/fetch-http-handler": "^4.0.0", + "@smithy/hash-node": "^3.0.8", + "@smithy/invalid-dependency": "^3.0.8", + "@smithy/middleware-content-length": "^3.0.10", + "@smithy/middleware-endpoint": "^3.2.1", + "@smithy/middleware-retry": "^3.0.25", + "@smithy/middleware-serde": "^3.0.8", + "@smithy/middleware-stack": "^3.0.8", + "@smithy/node-config-provider": "^3.1.9", + "@smithy/node-http-handler": "^3.2.5", + "@smithy/protocol-http": "^4.1.5", + "@smithy/smithy-client": "^3.4.2", + "@smithy/types": "^3.6.0", + "@smithy/url-parser": "^3.0.8", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-body-length-node": "^3.0.0", + "@smithy/util-defaults-mode-browser": "^3.0.25", + "@smithy/util-defaults-mode-node": "^3.0.25", + "@smithy/util-endpoints": "^2.1.4", + "@smithy/util-middleware": "^3.0.8", + "@smithy/util-retry": "^3.0.8", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-sso-oidc": { + "version": "3.687.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.687.0.tgz", + "integrity": "sha512-Rdd8kLeTeh+L5ZuG4WQnWgYgdv7NorytKdZsGjiag1D8Wv3PcJvPqqWdgnI0Og717BSXVoaTYaN34FyqFYSx6Q==", + "license": "Apache-2.0", + "dependencies": { + "@aws-crypto/sha256-browser": "5.2.0", + "@aws-crypto/sha256-js": "5.2.0", + "@aws-sdk/core": "3.686.0", + "@aws-sdk/credential-provider-node": "3.687.0", + "@aws-sdk/middleware-host-header": "3.686.0", + "@aws-sdk/middleware-logger": "3.686.0", + "@aws-sdk/middleware-recursion-detection": "3.686.0", + "@aws-sdk/middleware-user-agent": "3.687.0", + "@aws-sdk/region-config-resolver": "3.686.0", + "@aws-sdk/types": "3.686.0", + "@aws-sdk/util-endpoints": "3.686.0", + "@aws-sdk/util-user-agent-browser": "3.686.0", + "@aws-sdk/util-user-agent-node": "3.687.0", + "@smithy/config-resolver": "^3.0.10", + "@smithy/core": "^2.5.1", + "@smithy/fetch-http-handler": "^4.0.0", + "@smithy/hash-node": "^3.0.8", + "@smithy/invalid-dependency": "^3.0.8", + "@smithy/middleware-content-length": "^3.0.10", + "@smithy/middleware-endpoint": "^3.2.1", + "@smithy/middleware-retry": "^3.0.25", + "@smithy/middleware-serde": "^3.0.8", + "@smithy/middleware-stack": "^3.0.8", + "@smithy/node-config-provider": "^3.1.9", + "@smithy/node-http-handler": "^3.2.5", + "@smithy/protocol-http": "^4.1.5", + "@smithy/smithy-client": "^3.4.2", + "@smithy/types": "^3.6.0", + "@smithy/url-parser": "^3.0.8", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-body-length-node": "^3.0.0", + "@smithy/util-defaults-mode-browser": "^3.0.25", + "@smithy/util-defaults-mode-node": "^3.0.25", + "@smithy/util-endpoints": "^2.1.4", + "@smithy/util-middleware": "^3.0.8", + "@smithy/util-retry": "^3.0.8", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + }, + "peerDependencies": { + "@aws-sdk/client-sts": "^3.687.0" + } + }, + "node_modules/@aws-sdk/client-sso-oidc/node_modules/@smithy/is-array-buffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/is-array-buffer/-/is-array-buffer-3.0.0.tgz", + "integrity": "sha512-+Fsu6Q6C4RSJiy81Y8eApjEB5gVtM+oFKTffg+jSuwtvomJJrhUJBu2zS8wjXSgH/g1MKEWrzyChTBe6clb5FQ==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" } }, - "node_modules/@img/sharp-libvips-linux-arm": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.0.5.tgz", - "integrity": "sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==", - "cpu": [ - "arm" - ], - "license": "LGPL-3.0-or-later", - "optional": true, - "os": [ - "linux" - ], - "funding": { - "url": "https://opencollective.com/libvips" + "node_modules/@aws-sdk/client-sso-oidc/node_modules/@smithy/util-buffer-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-buffer-from/-/util-buffer-from-3.0.0.tgz", + "integrity": "sha512-aEOHCgq5RWFbP+UDPvPot26EJHjOC+bRgse5A8V3FSShqd5E5UN4qc7zkwsvJPPAVsf73QwYcHN1/gt/rtLwQA==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/is-array-buffer": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" } }, - "node_modules/@img/sharp-libvips-linux-arm64": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.0.4.tgz", - "integrity": "sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==", - "cpu": [ - "arm64" - ], - "license": "LGPL-3.0-or-later", - "optional": true, - "os": [ - "linux" - ], - "funding": { - "url": "https://opencollective.com/libvips" + "node_modules/@aws-sdk/client-sso-oidc/node_modules/@smithy/util-utf8": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-utf8/-/util-utf8-3.0.0.tgz", + "integrity": "sha512-rUeT12bxFnplYDe815GXbq/oixEGHfRFFtcTF3YdDi/JaENIM6aSYYLJydG83UNzLXeRI5K8abYd/8Sp/QM0kA==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/util-buffer-from": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" } }, - "node_modules/@img/sharp-libvips-linux-s390x": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.0.4.tgz", - "integrity": "sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==", - "cpu": [ - "s390x" - ], - "license": "LGPL-3.0-or-later", - "optional": true, - "os": [ - "linux" - ], - "funding": { - "url": "https://opencollective.com/libvips" + "node_modules/@aws-sdk/client-sso/node_modules/@smithy/is-array-buffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/is-array-buffer/-/is-array-buffer-3.0.0.tgz", + "integrity": "sha512-+Fsu6Q6C4RSJiy81Y8eApjEB5gVtM+oFKTffg+jSuwtvomJJrhUJBu2zS8wjXSgH/g1MKEWrzyChTBe6clb5FQ==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" } }, - "node_modules/@img/sharp-libvips-linux-x64": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.0.4.tgz", - "integrity": "sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==", - "cpu": [ - "x64" - ], - "license": "LGPL-3.0-or-later", - "optional": true, - "os": [ - "linux" - ], - "funding": { - "url": "https://opencollective.com/libvips" + "node_modules/@aws-sdk/client-sso/node_modules/@smithy/util-buffer-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-buffer-from/-/util-buffer-from-3.0.0.tgz", + "integrity": "sha512-aEOHCgq5RWFbP+UDPvPot26EJHjOC+bRgse5A8V3FSShqd5E5UN4qc7zkwsvJPPAVsf73QwYcHN1/gt/rtLwQA==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/is-array-buffer": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" } }, - "node_modules/@img/sharp-libvips-linuxmusl-arm64": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.0.4.tgz", - "integrity": "sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==", - "cpu": [ - "arm64" - ], - "license": "LGPL-3.0-or-later", - "optional": true, - "os": [ - "linux" - ], - "funding": { - "url": "https://opencollective.com/libvips" + "node_modules/@aws-sdk/client-sso/node_modules/@smithy/util-utf8": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-utf8/-/util-utf8-3.0.0.tgz", + "integrity": "sha512-rUeT12bxFnplYDe815GXbq/oixEGHfRFFtcTF3YdDi/JaENIM6aSYYLJydG83UNzLXeRI5K8abYd/8Sp/QM0kA==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/util-buffer-from": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" } }, - "node_modules/@img/sharp-libvips-linuxmusl-x64": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.0.4.tgz", - "integrity": "sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==", - "cpu": [ - "x64" - ], - "license": "LGPL-3.0-or-later", - "optional": true, - "os": [ - "linux" - ], - "funding": { - "url": "https://opencollective.com/libvips" + "node_modules/@aws-sdk/client-sts": { + "version": "3.687.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.687.0.tgz", + "integrity": "sha512-SQjDH8O4XCTtouuCVYggB0cCCrIaTzUZIkgJUpOsIEJBLlTbNOb/BZqUShAQw2o9vxr2rCeOGjAQOYPysW/Pmg==", + "license": "Apache-2.0", + "dependencies": { + "@aws-crypto/sha256-browser": "5.2.0", + "@aws-crypto/sha256-js": "5.2.0", + "@aws-sdk/client-sso-oidc": "3.687.0", + "@aws-sdk/core": "3.686.0", + "@aws-sdk/credential-provider-node": "3.687.0", + "@aws-sdk/middleware-host-header": "3.686.0", + "@aws-sdk/middleware-logger": "3.686.0", + "@aws-sdk/middleware-recursion-detection": "3.686.0", + "@aws-sdk/middleware-user-agent": "3.687.0", + "@aws-sdk/region-config-resolver": "3.686.0", + "@aws-sdk/types": "3.686.0", + "@aws-sdk/util-endpoints": "3.686.0", + "@aws-sdk/util-user-agent-browser": "3.686.0", + "@aws-sdk/util-user-agent-node": "3.687.0", + "@smithy/config-resolver": "^3.0.10", + "@smithy/core": "^2.5.1", + "@smithy/fetch-http-handler": "^4.0.0", + "@smithy/hash-node": "^3.0.8", + "@smithy/invalid-dependency": "^3.0.8", + "@smithy/middleware-content-length": "^3.0.10", + "@smithy/middleware-endpoint": "^3.2.1", + "@smithy/middleware-retry": "^3.0.25", + "@smithy/middleware-serde": "^3.0.8", + "@smithy/middleware-stack": "^3.0.8", + "@smithy/node-config-provider": "^3.1.9", + "@smithy/node-http-handler": "^3.2.5", + "@smithy/protocol-http": "^4.1.5", + "@smithy/smithy-client": "^3.4.2", + "@smithy/types": "^3.6.0", + "@smithy/url-parser": "^3.0.8", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-body-length-node": "^3.0.0", + "@smithy/util-defaults-mode-browser": "^3.0.25", + "@smithy/util-defaults-mode-node": "^3.0.25", + "@smithy/util-endpoints": "^2.1.4", + "@smithy/util-middleware": "^3.0.8", + "@smithy/util-retry": "^3.0.8", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-sts/node_modules/@smithy/is-array-buffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/is-array-buffer/-/is-array-buffer-3.0.0.tgz", + "integrity": "sha512-+Fsu6Q6C4RSJiy81Y8eApjEB5gVtM+oFKTffg+jSuwtvomJJrhUJBu2zS8wjXSgH/g1MKEWrzyChTBe6clb5FQ==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" } }, - "node_modules/@img/sharp-linux-arm": { - "version": "0.33.5", - "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.33.5.tgz", - "integrity": "sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==", - "cpu": [ - "arm" - ], + "node_modules/@aws-sdk/client-sts/node_modules/@smithy/util-buffer-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-buffer-from/-/util-buffer-from-3.0.0.tgz", + "integrity": "sha512-aEOHCgq5RWFbP+UDPvPot26EJHjOC+bRgse5A8V3FSShqd5E5UN4qc7zkwsvJPPAVsf73QwYcHN1/gt/rtLwQA==", "license": "Apache-2.0", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" - }, - "funding": { - "url": "https://opencollective.com/libvips" + "dependencies": { + "@smithy/is-array-buffer": "^3.0.0", + "tslib": "^2.6.2" }, - "optionalDependencies": { - "@img/sharp-libvips-linux-arm": "1.0.5" + "engines": { + "node": ">=16.0.0" } }, - "node_modules/@img/sharp-linux-arm64": { - "version": "0.33.5", - "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.33.5.tgz", - "integrity": "sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==", - "cpu": [ - "arm64" - ], + "node_modules/@aws-sdk/client-sts/node_modules/@smithy/util-utf8": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-utf8/-/util-utf8-3.0.0.tgz", + "integrity": "sha512-rUeT12bxFnplYDe815GXbq/oixEGHfRFFtcTF3YdDi/JaENIM6aSYYLJydG83UNzLXeRI5K8abYd/8Sp/QM0kA==", "license": "Apache-2.0", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" - }, - "funding": { - "url": "https://opencollective.com/libvips" + "dependencies": { + "@smithy/util-buffer-from": "^3.0.0", + "tslib": "^2.6.2" }, - "optionalDependencies": { - "@img/sharp-libvips-linux-arm64": "1.0.4" + "engines": { + "node": ">=16.0.0" } }, - "node_modules/@img/sharp-linux-s390x": { - "version": "0.33.5", - "resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.33.5.tgz", - "integrity": "sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==", - "cpu": [ - "s390x" - ], + "node_modules/@aws-sdk/core": { + "version": "3.686.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/core/-/core-3.686.0.tgz", + "integrity": "sha512-Xt3DV4DnAT3v2WURwzTxWQK34Ew+iiLzoUoguvLaZrVMFOqMMrwVjP+sizqIaHp1j7rGmFcN5I8saXnsDLuQLA==", "license": "Apache-2.0", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" - }, - "funding": { - "url": "https://opencollective.com/libvips" + "dependencies": { + "@aws-sdk/types": "3.686.0", + "@smithy/core": "^2.5.1", + "@smithy/node-config-provider": "^3.1.9", + "@smithy/property-provider": "^3.1.7", + "@smithy/protocol-http": "^4.1.5", + "@smithy/signature-v4": "^4.2.0", + "@smithy/smithy-client": "^3.4.2", + "@smithy/types": "^3.6.0", + "@smithy/util-middleware": "^3.0.8", + "fast-xml-parser": "4.4.1", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/credential-provider-cognito-identity": { + "version": "3.687.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-cognito-identity/-/credential-provider-cognito-identity-3.687.0.tgz", + "integrity": "sha512-hJq9ytoj2q/Jonc7mox/b0HT+j4NeMRuU184DkXRJbvIvwwB+oMt12221kThLezMhwIYfXEteZ7GEId7Hn8Y8g==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/client-cognito-identity": "3.687.0", + "@aws-sdk/types": "3.686.0", + "@smithy/property-provider": "^3.1.7", + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" }, - "optionalDependencies": { - "@img/sharp-libvips-linux-s390x": "1.0.4" + "engines": { + "node": ">=16.0.0" } }, - "node_modules/@img/sharp-linux-x64": { - "version": "0.33.5", - "resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.33.5.tgz", - "integrity": "sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==", - "cpu": [ - "x64" - ], + "node_modules/@aws-sdk/credential-provider-env": { + "version": "3.686.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.686.0.tgz", + "integrity": "sha512-osD7lPO8OREkgxPiTWmA1i6XEmOth1uW9HWWj/+A2YGCj1G/t2sHu931w4Qj9NWHYZtbTTXQYVRg+TErALV7nQ==", "license": "Apache-2.0", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" - }, - "funding": { - "url": "https://opencollective.com/libvips" + "dependencies": { + "@aws-sdk/core": "3.686.0", + "@aws-sdk/types": "3.686.0", + "@smithy/property-provider": "^3.1.7", + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" }, - "optionalDependencies": { - "@img/sharp-libvips-linux-x64": "1.0.4" + "engines": { + "node": ">=16.0.0" } }, - "node_modules/@img/sharp-linuxmusl-arm64": { - "version": "0.33.5", - "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.33.5.tgz", - "integrity": "sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==", - "cpu": [ - "arm64" - ], + "node_modules/@aws-sdk/credential-provider-http": { + "version": "3.686.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.686.0.tgz", + "integrity": "sha512-xyGAD/f3vR/wssUiZrNFWQWXZvI4zRm2wpHhoHA1cC2fbRMNFYtFn365yw6dU7l00ZLcdFB1H119AYIUZS7xbw==", "license": "Apache-2.0", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" - }, - "funding": { - "url": "https://opencollective.com/libvips" + "dependencies": { + "@aws-sdk/core": "3.686.0", + "@aws-sdk/types": "3.686.0", + "@smithy/fetch-http-handler": "^4.0.0", + "@smithy/node-http-handler": "^3.2.5", + "@smithy/property-provider": "^3.1.7", + "@smithy/protocol-http": "^4.1.5", + "@smithy/smithy-client": "^3.4.2", + "@smithy/types": "^3.6.0", + "@smithy/util-stream": "^3.2.1", + "tslib": "^2.6.2" }, - "optionalDependencies": { - "@img/sharp-libvips-linuxmusl-arm64": "1.0.4" + "engines": { + "node": ">=16.0.0" } }, - "node_modules/@img/sharp-linuxmusl-x64": { - "version": "0.33.5", - "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.33.5.tgz", - "integrity": "sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==", - "cpu": [ - "x64" - ], + "node_modules/@aws-sdk/credential-provider-ini": { + "version": "3.687.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.687.0.tgz", + "integrity": "sha512-6d5ZJeZch+ZosJccksN0PuXv7OSnYEmanGCnbhUqmUSz9uaVX6knZZfHCZJRgNcfSqg9QC0zsFA/51W5HCUqSQ==", "license": "Apache-2.0", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" - }, - "funding": { - "url": "https://opencollective.com/libvips" + "dependencies": { + "@aws-sdk/core": "3.686.0", + "@aws-sdk/credential-provider-env": "3.686.0", + "@aws-sdk/credential-provider-http": "3.686.0", + "@aws-sdk/credential-provider-process": "3.686.0", + "@aws-sdk/credential-provider-sso": "3.687.0", + "@aws-sdk/credential-provider-web-identity": "3.686.0", + "@aws-sdk/types": "3.686.0", + "@smithy/credential-provider-imds": "^3.2.4", + "@smithy/property-provider": "^3.1.7", + "@smithy/shared-ini-file-loader": "^3.1.8", + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + }, + "peerDependencies": { + "@aws-sdk/client-sts": "^3.687.0" + } + }, + "node_modules/@aws-sdk/credential-provider-node": { + "version": "3.687.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.687.0.tgz", + "integrity": "sha512-Pqld8Nx11NYaBUrVk3bYiGGpLCxkz8iTONlpQWoVWFhSOzlO7zloNOaYbD2XgFjjqhjlKzE91drs/f41uGeCTA==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/credential-provider-env": "3.686.0", + "@aws-sdk/credential-provider-http": "3.686.0", + "@aws-sdk/credential-provider-ini": "3.687.0", + "@aws-sdk/credential-provider-process": "3.686.0", + "@aws-sdk/credential-provider-sso": "3.687.0", + "@aws-sdk/credential-provider-web-identity": "3.686.0", + "@aws-sdk/types": "3.686.0", + "@smithy/credential-provider-imds": "^3.2.4", + "@smithy/property-provider": "^3.1.7", + "@smithy/shared-ini-file-loader": "^3.1.8", + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/credential-provider-process": { + "version": "3.686.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.686.0.tgz", + "integrity": "sha512-sXqaAgyzMOc+dm4CnzAR5Q6S9OWVHyZjLfW6IQkmGjqeQXmZl24c4E82+w64C+CTkJrFLzH1VNOYp1Hy5gE6Qw==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/core": "3.686.0", + "@aws-sdk/types": "3.686.0", + "@smithy/property-provider": "^3.1.7", + "@smithy/shared-ini-file-loader": "^3.1.8", + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" }, - "optionalDependencies": { - "@img/sharp-libvips-linuxmusl-x64": "1.0.4" + "engines": { + "node": ">=16.0.0" } }, - "node_modules/@img/sharp-wasm32": { - "version": "0.33.5", - "resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.33.5.tgz", - "integrity": "sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==", - "cpu": [ - "wasm32" - ], - "license": "Apache-2.0 AND LGPL-3.0-or-later AND MIT", - "optional": true, + "node_modules/@aws-sdk/credential-provider-sso": { + "version": "3.687.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.687.0.tgz", + "integrity": "sha512-N1YCoE7DovIRF2ReyRrA4PZzF0WNi4ObPwdQQkVxhvSm7PwjbWxrfq7rpYB+6YB1Uq3QPzgVwUFONE36rdpxUQ==", + "license": "Apache-2.0", "dependencies": { - "@emnapi/runtime": "^1.2.0" + "@aws-sdk/client-sso": "3.687.0", + "@aws-sdk/core": "3.686.0", + "@aws-sdk/token-providers": "3.686.0", + "@aws-sdk/types": "3.686.0", + "@smithy/property-provider": "^3.1.7", + "@smithy/shared-ini-file-loader": "^3.1.8", + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" }, "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" - }, - "funding": { - "url": "https://opencollective.com/libvips" + "node": ">=16.0.0" } }, - "node_modules/@img/sharp-win32-ia32": { - "version": "0.33.5", - "resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.33.5.tgz", - "integrity": "sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ==", - "cpu": [ - "ia32" - ], - "license": "Apache-2.0 AND LGPL-3.0-or-later", - "optional": true, - "os": [ - "win32" - ], + "node_modules/@aws-sdk/credential-provider-web-identity": { + "version": "3.686.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.686.0.tgz", + "integrity": "sha512-40UqCpPxyHCXDP7CGd9JIOZDgDZf+u1OyLaGBpjQJlz1HYuEsIWnnbTe29Yg3Ah/Zc3g4NBWcUdlGVotlnpnDg==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/core": "3.686.0", + "@aws-sdk/types": "3.686.0", + "@smithy/property-provider": "^3.1.7", + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" + }, "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + "node": ">=16.0.0" }, - "funding": { - "url": "https://opencollective.com/libvips" + "peerDependencies": { + "@aws-sdk/client-sts": "^3.686.0" } }, - "node_modules/@img/sharp-win32-x64": { - "version": "0.33.5", - "resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.33.5.tgz", - "integrity": "sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg==", - "cpu": [ - "x64" - ], - "license": "Apache-2.0 AND LGPL-3.0-or-later", - "optional": true, - "os": [ - "win32" - ], + "node_modules/@aws-sdk/credential-providers": { + "version": "3.687.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-providers/-/credential-providers-3.687.0.tgz", + "integrity": "sha512-3aKlmKaOplpanOycmoigbTrQsqtxpzhpfquCey51aHf9GYp2yYyYF1YOgkXpE3qm3w6eiEN1asjJ2gqoECUuPA==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/client-cognito-identity": "3.687.0", + "@aws-sdk/client-sso": "3.687.0", + "@aws-sdk/client-sts": "3.687.0", + "@aws-sdk/core": "3.686.0", + "@aws-sdk/credential-provider-cognito-identity": "3.687.0", + "@aws-sdk/credential-provider-env": "3.686.0", + "@aws-sdk/credential-provider-http": "3.686.0", + "@aws-sdk/credential-provider-ini": "3.687.0", + "@aws-sdk/credential-provider-node": "3.687.0", + "@aws-sdk/credential-provider-process": "3.686.0", + "@aws-sdk/credential-provider-sso": "3.687.0", + "@aws-sdk/credential-provider-web-identity": "3.686.0", + "@aws-sdk/types": "3.686.0", + "@smithy/credential-provider-imds": "^3.2.4", + "@smithy/property-provider": "^3.1.7", + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/middleware-host-header": { + "version": "3.686.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-host-header/-/middleware-host-header-3.686.0.tgz", + "integrity": "sha512-+Yc6rO02z+yhFbHmRZGvEw1vmzf/ifS9a4aBjJGeVVU+ZxaUvnk+IUZWrj4YQopUQ+bSujmMUzJLXSkbDq7yuw==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.686.0", + "@smithy/protocol-http": "^4.1.5", + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" + }, "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/middleware-logger": { + "version": "3.686.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.686.0.tgz", + "integrity": "sha512-cX43ODfA2+SPdX7VRxu6gXk4t4bdVJ9pkktbfnkE5t27OlwNfvSGGhnHrQL8xTOFeyQ+3T+oowf26gf1OI+vIg==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.686.0", + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" }, - "funding": { - "url": "https://opencollective.com/libvips" + "engines": { + "node": ">=16.0.0" } }, - "node_modules/@isaacs/cliui": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", - "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", - "license": "ISC", + "node_modules/@aws-sdk/middleware-recursion-detection": { + "version": "3.686.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.686.0.tgz", + "integrity": "sha512-jF9hQ162xLgp9zZ/3w5RUNhmwVnXDBlABEUX8jCgzaFpaa742qR/KKtjjZQ6jMbQnP+8fOCSXFAVNMU+s6v81w==", + "license": "Apache-2.0", "dependencies": { - "string-width": "^5.1.2", - "string-width-cjs": "npm:string-width@^4.2.0", - "strip-ansi": "^7.0.1", - "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", - "wrap-ansi": "^8.1.0", - "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + "@aws-sdk/types": "3.686.0", + "@smithy/protocol-http": "^4.1.5", + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" }, "engines": { - "node": ">=12" + "node": ">=16.0.0" } }, - "node_modules/@isaacs/cliui/node_modules/ansi-regex": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", - "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", - "license": "MIT", + "node_modules/@aws-sdk/middleware-user-agent": { + "version": "3.687.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.687.0.tgz", + "integrity": "sha512-nUgsKiEinyA50CaDXojAkOasAU3Apdg7Qox6IjNUC4ZjgOu7QWsCDB5N28AYMUt06cNYeYQdfMX1aEzG85a1Mg==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/core": "3.686.0", + "@aws-sdk/types": "3.686.0", + "@aws-sdk/util-endpoints": "3.686.0", + "@smithy/core": "^2.5.1", + "@smithy/protocol-http": "^4.1.5", + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" + }, "engines": { - "node": ">=12" + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/protocol-http": { + "version": "3.374.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/protocol-http/-/protocol-http-3.374.0.tgz", + "integrity": "sha512-9WpRUbINdGroV3HiZZIBoJvL2ndoWk39OfwxWs2otxByppJZNN14bg/lvCx5e8ggHUti7IBk5rb0nqQZ4m05pg==", + "deprecated": "This package has moved to @smithy/protocol-http", + "license": "Apache-2.0", + "dependencies": { + "@smithy/protocol-http": "^1.1.0", + "tslib": "^2.5.0" }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" + "engines": { + "node": ">=14.0.0" } }, - "node_modules/@isaacs/cliui/node_modules/ansi-styles": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", - "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", - "license": "MIT", - "engines": { - "node": ">=12" + "node_modules/@aws-sdk/protocol-http/node_modules/@smithy/protocol-http": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@smithy/protocol-http/-/protocol-http-1.2.0.tgz", + "integrity": "sha512-GfGfruksi3nXdFok5RhgtOnWe5f6BndzYfmEXISD+5gAGdayFGpjWu5pIqIweTudMtse20bGbc+7MFZXT1Tb8Q==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/types": "^1.2.0", + "tslib": "^2.5.0" }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "engines": { + "node": ">=14.0.0" } }, - "node_modules/@isaacs/cliui/node_modules/emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", - "license": "MIT" + "node_modules/@aws-sdk/protocol-http/node_modules/@smithy/types": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@smithy/types/-/types-1.2.0.tgz", + "integrity": "sha512-z1r00TvBqF3dh4aHhya7nz1HhvCg4TRmw51fjMrh5do3h+ngSstt/yKlNbHeb9QxJmFbmN8KEVSWgb1bRvfEoA==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } }, - "node_modules/@isaacs/cliui/node_modules/string-width": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", - "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", - "license": "MIT", + "node_modules/@aws-sdk/region-config-resolver": { + "version": "3.686.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.686.0.tgz", + "integrity": "sha512-6zXD3bSD8tcsMAVVwO1gO7rI1uy2fCD3czgawuPGPopeLiPpo6/3FoUWCQzk2nvEhj7p9Z4BbjwZGSlRkVrXTw==", + "license": "Apache-2.0", "dependencies": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" + "@aws-sdk/types": "3.686.0", + "@smithy/node-config-provider": "^3.1.9", + "@smithy/types": "^3.6.0", + "@smithy/util-config-provider": "^3.0.0", + "@smithy/util-middleware": "^3.0.8", + "tslib": "^2.6.2" }, "engines": { - "node": ">=12" + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/signature-v4": { + "version": "3.374.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/signature-v4/-/signature-v4-3.374.0.tgz", + "integrity": "sha512-2xLJvSdzcZZAg0lsDLUAuSQuihzK0dcxIK7WmfuJeF7DGKJFmp9czQmz5f3qiDz6IDQzvgK1M9vtJSVCslJbyQ==", + "deprecated": "This package has moved to @smithy/signature-v4", + "license": "Apache-2.0", + "dependencies": { + "@smithy/signature-v4": "^1.0.1", + "tslib": "^2.5.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "engines": { + "node": ">=14.0.0" } }, - "node_modules/@isaacs/cliui/node_modules/strip-ansi": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", - "license": "MIT", + "node_modules/@aws-sdk/signature-v4/node_modules/@smithy/is-array-buffer": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@smithy/is-array-buffer/-/is-array-buffer-1.1.0.tgz", + "integrity": "sha512-twpQ/n+3OWZJ7Z+xu43MJErmhB/WO/mMTnqR6PwWQShvSJ/emx5d1N59LQZk6ZpTAeuRWrc+eHhkzTp9NFjNRQ==", + "license": "Apache-2.0", "dependencies": { - "ansi-regex": "^6.0.1" + "tslib": "^2.5.0" }, "engines": { - "node": ">=12" + "node": ">=14.0.0" + } + }, + "node_modules/@aws-sdk/signature-v4/node_modules/@smithy/signature-v4": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@smithy/signature-v4/-/signature-v4-1.1.0.tgz", + "integrity": "sha512-fDo3m7YqXBs7neciOePPd/X9LPm5QLlDMdIC4m1H6dgNLnXfLMFNIxEfPyohGA8VW9Wn4X8lygnPSGxDZSmp0Q==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/eventstream-codec": "^1.1.0", + "@smithy/is-array-buffer": "^1.1.0", + "@smithy/types": "^1.2.0", + "@smithy/util-hex-encoding": "^1.1.0", + "@smithy/util-middleware": "^1.1.0", + "@smithy/util-uri-escape": "^1.1.0", + "@smithy/util-utf8": "^1.1.0", + "tslib": "^2.5.0" }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" + "engines": { + "node": ">=14.0.0" } }, - "node_modules/@isaacs/cliui/node_modules/wrap-ansi": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", - "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", - "license": "MIT", + "node_modules/@aws-sdk/signature-v4/node_modules/@smithy/types": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@smithy/types/-/types-1.2.0.tgz", + "integrity": "sha512-z1r00TvBqF3dh4aHhya7nz1HhvCg4TRmw51fjMrh5do3h+ngSstt/yKlNbHeb9QxJmFbmN8KEVSWgb1bRvfEoA==", + "license": "Apache-2.0", "dependencies": { - "ansi-styles": "^6.1.0", - "string-width": "^5.0.1", - "strip-ansi": "^7.0.1" + "tslib": "^2.5.0" }, "engines": { - "node": ">=12" + "node": ">=14.0.0" + } + }, + "node_modules/@aws-sdk/signature-v4/node_modules/@smithy/util-buffer-from": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@smithy/util-buffer-from/-/util-buffer-from-1.1.0.tgz", + "integrity": "sha512-9m6NXE0ww+ra5HKHCHig20T+FAwxBAm7DIdwc/767uGWbRcY720ybgPacQNB96JMOI7xVr/CDa3oMzKmW4a+kw==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/is-array-buffer": "^1.1.0", + "tslib": "^2.5.0" }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + "engines": { + "node": ">=14.0.0" } }, - "node_modules/@js-sdsl/ordered-map": { - "version": "4.4.2", - "resolved": "https://registry.npmjs.org/@js-sdsl/ordered-map/-/ordered-map-4.4.2.tgz", - "integrity": "sha512-iUKgm52T8HOE/makSxjqoWhe95ZJA1/G1sYsGev2JDKUSS14KAgg1LHb+Ba+IPow0xflbnSkOsZcO08C7w1gYw==", - "license": "MIT", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/js-sdsl" + "node_modules/@aws-sdk/signature-v4/node_modules/@smithy/util-hex-encoding": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@smithy/util-hex-encoding/-/util-hex-encoding-1.1.0.tgz", + "integrity": "sha512-7UtIE9eH0u41zpB60Jzr0oNCQ3hMJUabMcKRUVjmyHTXiWDE4vjSqN6qlih7rCNeKGbioS7f/y2Jgym4QZcKFg==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" } }, - "node_modules/@parcel/watcher": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.4.1.tgz", - "integrity": "sha512-HNjmfLQEVRZmHRET336f20H/8kOozUGwk7yajvsonjNxbj2wBTK1WsQuHkD5yYh9RxFGL2EyDHryOihOwUoKDA==", - "license": "MIT", + "node_modules/@aws-sdk/signature-v4/node_modules/@smithy/util-middleware": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@smithy/util-middleware/-/util-middleware-1.1.0.tgz", + "integrity": "sha512-6hhckcBqVgjWAqLy2vqlPZ3rfxLDhFWEmM7oLh2POGvsi7j0tHkbN7w4DFhuBExVJAbJ/qqxqZdRY6Fu7/OezQ==", + "license": "Apache-2.0", "dependencies": { - "detect-libc": "^1.0.3", - "is-glob": "^4.0.3", - "micromatch": "^4.0.5", - "node-addon-api": "^7.0.0" + "tslib": "^2.5.0" }, "engines": { - "node": ">= 10.0.0" + "node": ">=14.0.0" + } + }, + "node_modules/@aws-sdk/signature-v4/node_modules/@smithy/util-uri-escape": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@smithy/util-uri-escape/-/util-uri-escape-1.1.0.tgz", + "integrity": "sha512-/jL/V1xdVRt5XppwiaEU8Etp5WHZj609n0xMTuehmCqdoOFbId1M+aEeDWZsQ+8JbEB/BJ6ynY2SlYmOaKtt8w==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.5.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@aws-sdk/signature-v4/node_modules/@smithy/util-utf8": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@smithy/util-utf8/-/util-utf8-1.1.0.tgz", + "integrity": "sha512-p/MYV+JmqmPyjdgyN2UxAeYDj9cBqCjp0C/NsTWnnjoZUVqoeZ6IrW915L9CAKWVECgv9lVQGc4u/yz26/bI1A==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/util-buffer-from": "^1.1.0", + "tslib": "^2.5.0" }, - "optionalDependencies": { - "@parcel/watcher-android-arm64": "2.4.1", - "@parcel/watcher-darwin-arm64": "2.4.1", - "@parcel/watcher-darwin-x64": "2.4.1", - "@parcel/watcher-freebsd-x64": "2.4.1", - "@parcel/watcher-linux-arm-glibc": "2.4.1", - "@parcel/watcher-linux-arm64-glibc": "2.4.1", - "@parcel/watcher-linux-arm64-musl": "2.4.1", - "@parcel/watcher-linux-x64-glibc": "2.4.1", - "@parcel/watcher-linux-x64-musl": "2.4.1", - "@parcel/watcher-win32-arm64": "2.4.1", - "@parcel/watcher-win32-ia32": "2.4.1", - "@parcel/watcher-win32-x64": "2.4.1" + "engines": { + "node": ">=14.0.0" } }, - "node_modules/@parcel/watcher-android-arm64": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.4.1.tgz", - "integrity": "sha512-LOi/WTbbh3aTn2RYddrO8pnapixAziFl6SMxHM69r3tvdSm94JtCenaKgk1GRg5FJ5wpMCpHeW+7yqPlvZv7kg==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "android" - ], + "node_modules/@aws-sdk/token-providers": { + "version": "3.686.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.686.0.tgz", + "integrity": "sha512-9oL4kTCSePFmyKPskibeiOXV6qavPZ63/kXM9Wh9V6dTSvBtLeNnMxqGvENGKJcTdIgtoqyqA6ET9u0PJ5IRIg==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.686.0", + "@smithy/property-provider": "^3.1.7", + "@smithy/shared-ini-file-loader": "^3.1.8", + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" + }, "engines": { - "node": ">= 10.0.0" + "node": ">=16.0.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" + "peerDependencies": { + "@aws-sdk/client-sso-oidc": "^3.686.0" } }, - "node_modules/@parcel/watcher-darwin-arm64": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.4.1.tgz", - "integrity": "sha512-ln41eihm5YXIY043vBrrHfn94SIBlqOWmoROhsMVTSXGh0QahKGy77tfEywQ7v3NywyxBBkGIfrWRHm0hsKtzA==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">= 10.0.0" + "node_modules/@aws-sdk/types": { + "version": "3.686.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.686.0.tgz", + "integrity": "sha512-xFnrb3wxOoJcW2Xrh63ZgFo5buIu9DF7bOHnwoUxHdNpUXicUh0AHw85TjXxyxIAd0d1psY/DU7QHoNI3OswgQ==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" + "engines": { + "node": ">=16.0.0" } }, - "node_modules/@parcel/watcher-darwin-x64": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.4.1.tgz", - "integrity": "sha512-yrw81BRLjjtHyDu7J61oPuSoeYWR3lDElcPGJyOvIXmor6DEo7/G2u1o7I38cwlcoBHQFULqF6nesIX3tsEXMg==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ], + "node_modules/@aws-sdk/util-endpoints": { + "version": "3.686.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.686.0.tgz", + "integrity": "sha512-7msZE2oYl+6QYeeRBjlDgxQUhq/XRky3cXE0FqLFs2muLS7XSuQEXkpOXB3R782ygAP6JX0kmBxPTLurRTikZg==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.686.0", + "@smithy/types": "^3.6.0", + "@smithy/util-endpoints": "^2.1.4", + "tslib": "^2.6.2" + }, "engines": { - "node": ">= 10.0.0" + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/util-locate-window": { + "version": "3.679.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-locate-window/-/util-locate-window-3.679.0.tgz", + "integrity": "sha512-zKTd48/ZWrCplkXpYDABI74rQlbR0DNHs8nH95htfSLj9/mWRSwaGptoxwcihaq/77vi/fl2X3y0a1Bo8bt7RA==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.6.2" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" + "engines": { + "node": ">=16.0.0" } }, - "node_modules/@parcel/watcher-freebsd-x64": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.4.1.tgz", - "integrity": "sha512-TJa3Pex/gX3CWIx/Co8k+ykNdDCLx+TuZj3f3h7eOjgpdKM+Mnix37RYsYU4LHhiYJz3DK5nFCCra81p6g050w==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "freebsd" - ], + "node_modules/@aws-sdk/util-user-agent-browser": { + "version": "3.686.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.686.0.tgz", + "integrity": "sha512-YiQXeGYZegF1b7B2GOR61orhgv79qmI0z7+Agm3NXLO6hGfVV3kFUJbXnjtH1BgWo5hbZYW7HQ2omGb3dnb6Lg==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.686.0", + "@smithy/types": "^3.6.0", + "bowser": "^2.11.0", + "tslib": "^2.6.2" + } + }, + "node_modules/@aws-sdk/util-user-agent-node": { + "version": "3.687.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.687.0.tgz", + "integrity": "sha512-idkP6ojSTZ4ek1pJ8wIN7r9U3KR5dn0IkJn3KQBXQ58LWjkRqLtft2vxzdsktWwhPKjjmIKl1S0kbvqLawf8XQ==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/middleware-user-agent": "3.687.0", + "@aws-sdk/types": "3.686.0", + "@smithy/node-config-provider": "^3.1.9", + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" + }, "engines": { - "node": ">= 10.0.0" + "node": ">=16.0.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" + "peerDependencies": { + "aws-crt": ">=1.0.0" + }, + "peerDependenciesMeta": { + "aws-crt": { + "optional": true + } } }, - "node_modules/@parcel/watcher-linux-arm-glibc": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.4.1.tgz", - "integrity": "sha512-4rVYDlsMEYfa537BRXxJ5UF4ddNwnr2/1O4MHM5PjI9cvV2qymvhwZSFgXqbS8YoTk5i/JR0L0JDs69BUn45YA==", - "cpu": [ - "arm" - ], + "node_modules/@aws-sdk/util-utf8-browser": { + "version": "3.259.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-utf8-browser/-/util-utf8-browser-3.259.0.tgz", + "integrity": "sha512-UvFa/vR+e19XookZF8RzFZBrw2EUkQWxiBW0yYQAhvk3C+QVGl0H3ouca8LDBlBfQKXwmW3huo/59H8rwb1wJw==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.3.1" + } + }, + "node_modules/@colors/colors": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.6.0.tgz", + "integrity": "sha512-Ir+AOibqzrIsL6ajt3Rz3LskB7OiMVHqltZmspbW/TJuTVuyOMirVqAkjfY6JISiLHgyNqicAC8AyHHGzNd/dA==", "license": "MIT", - "optional": true, - "os": [ - "linux" - ], "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" + "node": ">=0.1.90" } }, - "node_modules/@parcel/watcher-linux-arm64-glibc": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.4.1.tgz", - "integrity": "sha512-BJ7mH985OADVLpbrzCLgrJ3TOpiZggE9FMblfO65PlOCdG++xJpKUJ0Aol74ZUIYfb8WsRlUdgrZxKkz3zXWYA==", - "cpu": [ - "arm64" - ], + "node_modules/@dabh/diagnostics": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@dabh/diagnostics/-/diagnostics-2.0.3.tgz", + "integrity": "sha512-hrlQOIi7hAfzsMqlGSFyVucrx38O+j6wiGOf//H2ecvIEqYN4ADBSS2iLMh5UFyDunCNniUIPk/q3riFv45xRA==", + "license": "MIT", + "dependencies": { + "colorspace": "1.1.x", + "enabled": "2.0.x", + "kuler": "^2.0.0" + } + }, + "node_modules/@datastax/astra-db-ts": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@datastax/astra-db-ts/-/astra-db-ts-1.5.0.tgz", + "integrity": "sha512-Z9pEVyyHfglh8XAKrIASxdvORdei4pLUKDDGarqYvBkA9B9rKdqqdN+4I42Dz8paU5uscu8FwM5mc+Ly/U6jfA==", + "license": "Apache-2.0", + "dependencies": { + "fetch-h2": "^3.0.2", + "safe-stable-stringify": "^2.4.3", + "typed-emitter": "^2.1.0", + "uuidv7": "^0.6.3" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@emnapi/runtime": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.3.1.tgz", + "integrity": "sha512-kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw==", "license": "MIT", "optional": true, - "os": [ - "linux" - ], + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@fastify/busboy": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/@fastify/busboy/-/busboy-2.1.1.tgz", + "integrity": "sha512-vBZP4NlzfOlerQTnba4aqZoMhE/a9HY7HRqoOPaETQcSQuWEIyZMHGfVu6w9wGtGK5fED5qRs2DteVCjOH60sA==", + "license": "MIT", "engines": { - "node": ">= 10.0.0" + "node": ">=14" + } + }, + "node_modules/@google/generative-ai": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@google/generative-ai/-/generative-ai-0.1.3.tgz", + "integrity": "sha512-Cm4uJX1sKarpm1mje/MiOIinM7zdUUrQp/5/qGPAgznbdd/B9zup5ehT6c1qGqycFcSopTA1J1HpqHS5kJR8hQ==", + "license": "Apache-2.0", + "optional": true, + "peer": true, + "engines": { + "node": ">=18.0.0" + } + }, + "node_modules/@grpc/grpc-js": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.12.2.tgz", + "integrity": "sha512-bgxdZmgTrJZX50OjyVwz3+mNEnCTNkh3cIqGPWVNeW9jX6bn1ZkU80uPd+67/ZpIJIjRQ9qaHCjhavyoWYxumg==", + "license": "Apache-2.0", + "dependencies": { + "@grpc/proto-loader": "^0.7.13", + "@js-sdsl/ordered-map": "^4.4.2" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" + "engines": { + "node": ">=12.10.0" } }, - "node_modules/@parcel/watcher-linux-arm64-musl": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.4.1.tgz", - "integrity": "sha512-p4Xb7JGq3MLgAfYhslU2SjoV9G0kI0Xry0kuxeG/41UfpjHGOhv7UoUDAz/jb1u2elbhazy4rRBL8PegPJFBhA==", + "node_modules/@grpc/grpc-js/node_modules/@grpc/proto-loader": { + "version": "0.7.13", + "resolved": "https://registry.npmjs.org/@grpc/proto-loader/-/proto-loader-0.7.13.tgz", + "integrity": "sha512-AiXO/bfe9bmxBjxxtYxFAXGZvMaN5s8kO+jBHAJCON8rJoB5YS/D6X7ZNc6XQkuHNmyl4CYaMI1fJ/Gn27RGGw==", + "license": "Apache-2.0", + "dependencies": { + "lodash.camelcase": "^4.3.0", + "long": "^5.0.0", + "protobufjs": "^7.2.5", + "yargs": "^17.7.2" + }, + "bin": { + "proto-loader-gen-types": "build/bin/proto-loader-gen-types.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@grpc/grpc-js/node_modules/long": { + "version": "5.2.3", + "resolved": "https://registry.npmjs.org/long/-/long-5.2.3.tgz", + "integrity": "sha512-lcHwpNoggQTObv5apGNCTdJrO69eHOZMi4BNC+rTLER8iHAqGrUVeLh/irVIM7zTw2bOXA8T6uNPeujwOLg/2Q==", + "license": "Apache-2.0" + }, + "node_modules/@grpc/grpc-js/node_modules/protobufjs": { + "version": "7.4.0", + "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-7.4.0.tgz", + "integrity": "sha512-mRUWCc3KUU4w1jU8sGxICXH/gNS94DvI1gxqDvBzhj1JpcsimQkYiOJfwsPUykUI5ZaspFbSgmBLER8IrQ3tqw==", + "hasInstallScript": true, + "license": "BSD-3-Clause", + "dependencies": { + "@protobufjs/aspromise": "^1.1.2", + "@protobufjs/base64": "^1.1.2", + "@protobufjs/codegen": "^2.0.4", + "@protobufjs/eventemitter": "^1.1.0", + "@protobufjs/fetch": "^1.1.0", + "@protobufjs/float": "^1.0.2", + "@protobufjs/inquire": "^1.1.0", + "@protobufjs/path": "^1.1.2", + "@protobufjs/pool": "^1.1.0", + "@protobufjs/utf8": "^1.1.0", + "@types/node": ">=13.7.0", + "long": "^5.0.0" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/@grpc/proto-loader": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/@grpc/proto-loader/-/proto-loader-0.5.6.tgz", + "integrity": "sha512-DT14xgw3PSzPxwS13auTEwxhMMOoz33DPUKNtmYK/QYbBSpLXJy78FGGs5yVoxVobEqPm4iW9MOIoz0A3bLTRQ==", + "license": "Apache-2.0", + "dependencies": { + "lodash.camelcase": "^4.3.0", + "protobufjs": "^6.8.6" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@huggingface/jinja": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/@huggingface/jinja/-/jinja-0.2.2.tgz", + "integrity": "sha512-/KPde26khDUIPkTGU82jdtTW9UAuvUTumCAbFs/7giR0SxsvZC4hru51PBvpijH6BVkHcROcvZM/lpy5h1jRRA==", + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "node_modules/@img/sharp-darwin-arm64": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.33.5.tgz", + "integrity": "sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==", "cpu": [ "arm64" ], - "license": "MIT", + "license": "Apache-2.0", "optional": true, "os": [ - "linux" + "darwin" ], "engines": { - "node": ">= 10.0.0" + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-darwin-arm64": "1.0.4" } }, - "node_modules/@parcel/watcher-linux-x64-glibc": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.4.1.tgz", - "integrity": "sha512-s9O3fByZ/2pyYDPoLM6zt92yu6P4E39a03zvO0qCHOTjxmt3GHRMLuRZEWhWLASTMSrrnVNWdVI/+pUElJBBBg==", + "node_modules/@img/sharp-darwin-x64": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.33.5.tgz", + "integrity": "sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==", "cpu": [ "x64" ], - "license": "MIT", + "license": "Apache-2.0", "optional": true, "os": [ - "linux" + "darwin" ], "engines": { - "node": ">= 10.0.0" + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-darwin-x64": "1.0.4" } }, - "node_modules/@parcel/watcher-linux-x64-musl": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.4.1.tgz", - "integrity": "sha512-L2nZTYR1myLNST0O632g0Dx9LyMNHrn6TOt76sYxWLdff3cB22/GZX2UPtJnaqQPdCRoszoY5rcOj4oMTtp5fQ==", + "node_modules/@img/sharp-libvips-darwin-arm64": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.0.4.tgz", + "integrity": "sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg==", "cpu": [ - "x64" + "arm64" ], - "license": "MIT", + "license": "LGPL-3.0-or-later", "optional": true, "os": [ - "linux" + "darwin" ], - "engines": { - "node": ">= 10.0.0" - }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" + "url": "https://opencollective.com/libvips" } }, - "node_modules/@parcel/watcher-win32-arm64": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.4.1.tgz", - "integrity": "sha512-Uq2BPp5GWhrq/lcuItCHoqxjULU1QYEcyjSO5jqqOK8RNFDBQnenMMx4gAl3v8GiWa59E9+uDM7yZ6LxwUIfRg==", + "node_modules/@img/sharp-libvips-darwin-x64": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.0.4.tgz", + "integrity": "sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==", "cpu": [ - "arm64" + "x64" ], - "license": "MIT", + "license": "LGPL-3.0-or-later", "optional": true, "os": [ - "win32" + "darwin" ], - "engines": { - "node": ">= 10.0.0" - }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" + "url": "https://opencollective.com/libvips" } }, - "node_modules/@parcel/watcher-win32-ia32": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.4.1.tgz", - "integrity": "sha512-maNRit5QQV2kgHFSYwftmPBxiuK5u4DXjbXx7q6eKjq5dsLXZ4FJiVvlcw35QXzk0KrUecJmuVFbj4uV9oYrcw==", + "node_modules/@img/sharp-libvips-linux-arm": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.0.5.tgz", + "integrity": "sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==", "cpu": [ - "ia32" + "arm" ], - "license": "MIT", + "license": "LGPL-3.0-or-later", "optional": true, "os": [ - "win32" + "linux" ], - "engines": { - "node": ">= 10.0.0" - }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" + "url": "https://opencollective.com/libvips" } }, - "node_modules/@parcel/watcher-win32-x64": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.4.1.tgz", - "integrity": "sha512-+DvS92F9ezicfswqrvIRM2njcYJbd5mb9CUgtrHCHmvn7pPPa+nMDRu1o1bYYz/l5IB2NVGNJWiH7h1E58IF2A==", + "node_modules/@img/sharp-libvips-linux-arm64": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.0.4.tgz", + "integrity": "sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==", "cpu": [ - "x64" + "arm64" ], - "license": "MIT", + "license": "LGPL-3.0-or-later", "optional": true, "os": [ - "win32" + "linux" ], - "engines": { - "node": ">= 10.0.0" - }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" + "url": "https://opencollective.com/libvips" } }, - "node_modules/@pkgjs/parseargs": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", - "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", - "license": "MIT", + "node_modules/@img/sharp-libvips-linux-s390x": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.0.4.tgz", + "integrity": "sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==", + "cpu": [ + "s390x" + ], + "license": "LGPL-3.0-or-later", "optional": true, - "engines": { - "node": ">=14" + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" } }, - "node_modules/@protobufjs/aspromise": { - "version": "1.1.2", + "node_modules/@img/sharp-libvips-linux-x64": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.0.4.tgz", + "integrity": "sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==", + "cpu": [ + "x64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linuxmusl-arm64": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.0.4.tgz", + "integrity": "sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==", + "cpu": [ + "arm64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linuxmusl-x64": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.0.4.tgz", + "integrity": "sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==", + "cpu": [ + "x64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-linux-arm": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.33.5.tgz", + "integrity": "sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==", + "cpu": [ + "arm" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-arm": "1.0.5" + } + }, + "node_modules/@img/sharp-linux-arm64": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.33.5.tgz", + "integrity": "sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==", + "cpu": [ + "arm64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-arm64": "1.0.4" + } + }, + "node_modules/@img/sharp-linux-s390x": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.33.5.tgz", + "integrity": "sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==", + "cpu": [ + "s390x" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-s390x": "1.0.4" + } + }, + "node_modules/@img/sharp-linux-x64": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.33.5.tgz", + "integrity": "sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==", + "cpu": [ + "x64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-x64": "1.0.4" + } + }, + "node_modules/@img/sharp-linuxmusl-arm64": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.33.5.tgz", + "integrity": "sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==", + "cpu": [ + "arm64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linuxmusl-arm64": "1.0.4" + } + }, + "node_modules/@img/sharp-linuxmusl-x64": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.33.5.tgz", + "integrity": "sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==", + "cpu": [ + "x64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linuxmusl-x64": "1.0.4" + } + }, + "node_modules/@img/sharp-wasm32": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.33.5.tgz", + "integrity": "sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==", + "cpu": [ + "wasm32" + ], + "license": "Apache-2.0 AND LGPL-3.0-or-later AND MIT", + "optional": true, + "dependencies": { + "@emnapi/runtime": "^1.2.0" + }, + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-win32-ia32": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.33.5.tgz", + "integrity": "sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ==", + "cpu": [ + "ia32" + ], + "license": "Apache-2.0 AND LGPL-3.0-or-later", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-win32-x64": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.33.5.tgz", + "integrity": "sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg==", + "cpu": [ + "x64" + ], + "license": "Apache-2.0 AND LGPL-3.0-or-later", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "license": "ISC", + "dependencies": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@isaacs/cliui/node_modules/ansi-regex": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", + "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "license": "MIT" + }, + "node_modules/@isaacs/cliui/node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "license": "MIT", + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@isaacs/cliui/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/@js-sdsl/ordered-map": { + "version": "4.4.2", + "resolved": "https://registry.npmjs.org/@js-sdsl/ordered-map/-/ordered-map-4.4.2.tgz", + "integrity": "sha512-iUKgm52T8HOE/makSxjqoWhe95ZJA1/G1sYsGev2JDKUSS14KAgg1LHb+Ba+IPow0xflbnSkOsZcO08C7w1gYw==", + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/js-sdsl" + } + }, + "node_modules/@mistralai/mistralai": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@mistralai/mistralai/-/mistralai-0.1.3.tgz", + "integrity": "sha512-WUHxC2xdeqX9PTXJEqdiNY54vT2ir72WSJrZTTBKRnkfhX6zIfCYA24faRlWjUB5WTpn+wfdGsTMl3ArijlXFA==", + "license": "ISC", + "dependencies": { + "node-fetch": "^2.6.7" + } + }, + "node_modules/@mongodb-js/saslprep": { + "version": "1.1.9", + "resolved": "https://registry.npmjs.org/@mongodb-js/saslprep/-/saslprep-1.1.9.tgz", + "integrity": "sha512-tVkljjeEaAhCqTzajSdgbQ6gE6f3oneVwa3iXR6csiEwXXOFsiC6Uh9iAjAhXPtqa/XMDHWjjeNH/77m/Yq2dw==", + "license": "MIT", + "dependencies": { + "sparse-bitfield": "^3.0.3" + } + }, + "node_modules/@notionhq/client": { + "version": "2.2.15", + "resolved": "https://registry.npmjs.org/@notionhq/client/-/client-2.2.15.tgz", + "integrity": "sha512-XhdSY/4B1D34tSco/GION+23GMjaS9S2zszcqYkMHo8RcWInymF6L1x+Gk7EmHdrSxNFva2WM8orhC4BwQCwgw==", + "license": "MIT", + "dependencies": { + "@types/node-fetch": "^2.5.10", + "node-fetch": "^2.6.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@parcel/watcher": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.4.1.tgz", + "integrity": "sha512-HNjmfLQEVRZmHRET336f20H/8kOozUGwk7yajvsonjNxbj2wBTK1WsQuHkD5yYh9RxFGL2EyDHryOihOwUoKDA==", + "license": "MIT", + "dependencies": { + "detect-libc": "^1.0.3", + "is-glob": "^4.0.3", + "micromatch": "^4.0.5", + "node-addon-api": "^7.0.0" + }, + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + }, + "optionalDependencies": { + "@parcel/watcher-android-arm64": "2.4.1", + "@parcel/watcher-darwin-arm64": "2.4.1", + "@parcel/watcher-darwin-x64": "2.4.1", + "@parcel/watcher-freebsd-x64": "2.4.1", + "@parcel/watcher-linux-arm-glibc": "2.4.1", + "@parcel/watcher-linux-arm64-glibc": "2.4.1", + "@parcel/watcher-linux-arm64-musl": "2.4.1", + "@parcel/watcher-linux-x64-glibc": "2.4.1", + "@parcel/watcher-linux-x64-musl": "2.4.1", + "@parcel/watcher-win32-arm64": "2.4.1", + "@parcel/watcher-win32-ia32": "2.4.1", + "@parcel/watcher-win32-x64": "2.4.1" + } + }, + "node_modules/@parcel/watcher-android-arm64": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.4.1.tgz", + "integrity": "sha512-LOi/WTbbh3aTn2RYddrO8pnapixAziFl6SMxHM69r3tvdSm94JtCenaKgk1GRg5FJ5wpMCpHeW+7yqPlvZv7kg==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-darwin-arm64": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.4.1.tgz", + "integrity": "sha512-ln41eihm5YXIY043vBrrHfn94SIBlqOWmoROhsMVTSXGh0QahKGy77tfEywQ7v3NywyxBBkGIfrWRHm0hsKtzA==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-darwin-x64": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.4.1.tgz", + "integrity": "sha512-yrw81BRLjjtHyDu7J61oPuSoeYWR3lDElcPGJyOvIXmor6DEo7/G2u1o7I38cwlcoBHQFULqF6nesIX3tsEXMg==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-freebsd-x64": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.4.1.tgz", + "integrity": "sha512-TJa3Pex/gX3CWIx/Co8k+ykNdDCLx+TuZj3f3h7eOjgpdKM+Mnix37RYsYU4LHhiYJz3DK5nFCCra81p6g050w==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-arm-glibc": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.4.1.tgz", + "integrity": "sha512-4rVYDlsMEYfa537BRXxJ5UF4ddNwnr2/1O4MHM5PjI9cvV2qymvhwZSFgXqbS8YoTk5i/JR0L0JDs69BUn45YA==", + "cpu": [ + "arm" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-arm64-glibc": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.4.1.tgz", + "integrity": "sha512-BJ7mH985OADVLpbrzCLgrJ3TOpiZggE9FMblfO65PlOCdG++xJpKUJ0Aol74ZUIYfb8WsRlUdgrZxKkz3zXWYA==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-arm64-musl": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.4.1.tgz", + "integrity": "sha512-p4Xb7JGq3MLgAfYhslU2SjoV9G0kI0Xry0kuxeG/41UfpjHGOhv7UoUDAz/jb1u2elbhazy4rRBL8PegPJFBhA==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-x64-glibc": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.4.1.tgz", + "integrity": "sha512-s9O3fByZ/2pyYDPoLM6zt92yu6P4E39a03zvO0qCHOTjxmt3GHRMLuRZEWhWLASTMSrrnVNWdVI/+pUElJBBBg==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-x64-musl": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.4.1.tgz", + "integrity": "sha512-L2nZTYR1myLNST0O632g0Dx9LyMNHrn6TOt76sYxWLdff3cB22/GZX2UPtJnaqQPdCRoszoY5rcOj4oMTtp5fQ==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-win32-arm64": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.4.1.tgz", + "integrity": "sha512-Uq2BPp5GWhrq/lcuItCHoqxjULU1QYEcyjSO5jqqOK8RNFDBQnenMMx4gAl3v8GiWa59E9+uDM7yZ6LxwUIfRg==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-win32-ia32": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.4.1.tgz", + "integrity": "sha512-maNRit5QQV2kgHFSYwftmPBxiuK5u4DXjbXx7q6eKjq5dsLXZ4FJiVvlcw35QXzk0KrUecJmuVFbj4uV9oYrcw==", + "cpu": [ + "ia32" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-win32-x64": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.4.1.tgz", + "integrity": "sha512-+DvS92F9ezicfswqrvIRM2njcYJbd5mb9CUgtrHCHmvn7pPPa+nMDRu1o1bYYz/l5IB2NVGNJWiH7h1E58IF2A==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@petamoriken/float16": { + "version": "3.8.7", + "resolved": "https://registry.npmjs.org/@petamoriken/float16/-/float16-3.8.7.tgz", + "integrity": "sha512-/Ri4xDDpe12NT6Ex/DRgHzLlobiQXEW/hmG08w1wj/YU7hLemk97c+zHQFp0iZQ9r7YqgLEXZR2sls4HxBf9NA==", + "license": "MIT" + }, + "node_modules/@pinecone-database/pinecone": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/@pinecone-database/pinecone/-/pinecone-2.2.2.tgz", + "integrity": "sha512-gbe/4SowHc64pHIm0kBdgY9hVdzsQnnnpcWviwYMB33gOmsL8brvE8fUSpl1dLDvdyXzKcQkzdBsjCDlqgpdMA==", + "license": "Apache-2.0", + "dependencies": { + "@sinclair/typebox": "^0.29.0", + "ajv": "^8.12.0", + "cross-fetch": "^3.1.5", + "encoding": "^0.1.13" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "license": "MIT", + "optional": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/@protobufjs/aspromise": { + "version": "1.1.2", "resolved": "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz", "integrity": "sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==", "license": "BSD-3-Clause" }, - "node_modules/@protobufjs/base64": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz", - "integrity": "sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==", - "license": "BSD-3-Clause" + "node_modules/@protobufjs/base64": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz", + "integrity": "sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==", + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/codegen": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.4.tgz", + "integrity": "sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==", + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/eventemitter": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz", + "integrity": "sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q==", + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/fetch": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.0.tgz", + "integrity": "sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ==", + "license": "BSD-3-Clause", + "dependencies": { + "@protobufjs/aspromise": "^1.1.1", + "@protobufjs/inquire": "^1.1.0" + } + }, + "node_modules/@protobufjs/float": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz", + "integrity": "sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==", + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/inquire": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.0.tgz", + "integrity": "sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q==", + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/path": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz", + "integrity": "sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==", + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/pool": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz", + "integrity": "sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==", + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/utf8": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz", + "integrity": "sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==", + "license": "BSD-3-Clause" + }, + "node_modules/@qdrant/js-client-rest": { + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/@qdrant/js-client-rest/-/js-client-rest-1.12.0.tgz", + "integrity": "sha512-H8VokZq2DYe9yfKG3c7xPNR+Oc5ZvwMUtPEr1wUO4xVi9w5P89MScJaCc9UW8mS5AR+/Y1h2t1YjSxBFPIYT2Q==", + "license": "Apache-2.0", + "dependencies": { + "@qdrant/openapi-typescript-fetch": "1.2.6", + "@sevinf/maybe": "0.5.0", + "undici": "~5.28.4" + }, + "engines": { + "node": ">=18.0.0", + "pnpm": ">=8" + }, + "peerDependencies": { + "typescript": ">=4.7" + } + }, + "node_modules/@qdrant/openapi-typescript-fetch": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/@qdrant/openapi-typescript-fetch/-/openapi-typescript-fetch-1.2.6.tgz", + "integrity": "sha512-oQG/FejNpItrxRHoyctYvT3rwGZOnK4jr3JdppO/c78ktDvkWiPXPHNsrDf33K9sZdRb6PR7gi4noIapu5q4HA==", + "license": "MIT", + "engines": { + "node": ">=18.0.0", + "pnpm": ">=8" + } + }, + "node_modules/@sevinf/maybe": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/@sevinf/maybe/-/maybe-0.5.0.tgz", + "integrity": "sha512-ARhyoYDnY1LES3vYI0fiG6e9esWfTNcXcO6+MPJJXcnyMV3bim4lnFt45VXouV7y82F4x3YH8nOQ6VztuvUiWg==", + "license": "MIT" + }, + "node_modules/@sinclair/typebox": { + "version": "0.29.6", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.29.6.tgz", + "integrity": "sha512-aX5IFYWlMa7tQ8xZr3b2gtVReCvg7f3LEhjir/JAjX2bJCMVJA5tIPv30wTD4KDfcwMd7DDYY3hFDeGmOgtrZQ==", + "license": "MIT" + }, + "node_modules/@smithy/abort-controller": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/@smithy/abort-controller/-/abort-controller-3.1.6.tgz", + "integrity": "sha512-0XuhuHQlEqbNQZp7QxxrFTdVWdwxch4vjxYgfInF91hZFkPxf9QDrdQka0KfxFMPqLNzSw0b95uGTrLliQUavQ==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/config-resolver": { + "version": "3.0.10", + "resolved": "https://registry.npmjs.org/@smithy/config-resolver/-/config-resolver-3.0.10.tgz", + "integrity": "sha512-Uh0Sz9gdUuz538nvkPiyv1DZRX9+D15EKDtnQP5rYVAzM/dnYk3P8cg73jcxyOitPgT3mE3OVj7ky7sibzHWkw==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/node-config-provider": "^3.1.9", + "@smithy/types": "^3.6.0", + "@smithy/util-config-provider": "^3.0.0", + "@smithy/util-middleware": "^3.0.8", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/core": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@smithy/core/-/core-2.5.1.tgz", + "integrity": "sha512-DujtuDA7BGEKExJ05W5OdxCoyekcKT3Rhg1ZGeiUWaz2BJIWXjZmsG/DIP4W48GHno7AQwRsaCb8NcBgH3QZpg==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/middleware-serde": "^3.0.8", + "@smithy/protocol-http": "^4.1.5", + "@smithy/types": "^3.6.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-middleware": "^3.0.8", + "@smithy/util-stream": "^3.2.1", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/core/node_modules/@smithy/is-array-buffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/is-array-buffer/-/is-array-buffer-3.0.0.tgz", + "integrity": "sha512-+Fsu6Q6C4RSJiy81Y8eApjEB5gVtM+oFKTffg+jSuwtvomJJrhUJBu2zS8wjXSgH/g1MKEWrzyChTBe6clb5FQ==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/core/node_modules/@smithy/util-buffer-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-buffer-from/-/util-buffer-from-3.0.0.tgz", + "integrity": "sha512-aEOHCgq5RWFbP+UDPvPot26EJHjOC+bRgse5A8V3FSShqd5E5UN4qc7zkwsvJPPAVsf73QwYcHN1/gt/rtLwQA==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/is-array-buffer": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/core/node_modules/@smithy/util-utf8": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-utf8/-/util-utf8-3.0.0.tgz", + "integrity": "sha512-rUeT12bxFnplYDe815GXbq/oixEGHfRFFtcTF3YdDi/JaENIM6aSYYLJydG83UNzLXeRI5K8abYd/8Sp/QM0kA==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/util-buffer-from": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/credential-provider-imds": { + "version": "3.2.5", + "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-3.2.5.tgz", + "integrity": "sha512-4FTQGAsuwqTzVMmiRVTn0RR9GrbRfkP0wfu/tXWVHd2LgNpTY0uglQpIScXK4NaEyXbB3JmZt8gfVqO50lP8wg==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/node-config-provider": "^3.1.9", + "@smithy/property-provider": "^3.1.8", + "@smithy/types": "^3.6.0", + "@smithy/url-parser": "^3.0.8", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/eventstream-codec": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@smithy/eventstream-codec/-/eventstream-codec-1.1.0.tgz", + "integrity": "sha512-3tEbUb8t8an226jKB6V/Q2XU/J53lCwCzULuBPEaF4JjSh+FlCMp7TmogE/Aij5J9DwlsZ4VAD/IRDuQ/0ZtMw==", + "license": "Apache-2.0", + "dependencies": { + "@aws-crypto/crc32": "3.0.0", + "@smithy/types": "^1.2.0", + "@smithy/util-hex-encoding": "^1.1.0", + "tslib": "^2.5.0" + } + }, + "node_modules/@smithy/eventstream-codec/node_modules/@smithy/types": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@smithy/types/-/types-1.2.0.tgz", + "integrity": "sha512-z1r00TvBqF3dh4aHhya7nz1HhvCg4TRmw51fjMrh5do3h+ngSstt/yKlNbHeb9QxJmFbmN8KEVSWgb1bRvfEoA==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/eventstream-codec/node_modules/@smithy/util-hex-encoding": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@smithy/util-hex-encoding/-/util-hex-encoding-1.1.0.tgz", + "integrity": "sha512-7UtIE9eH0u41zpB60Jzr0oNCQ3hMJUabMcKRUVjmyHTXiWDE4vjSqN6qlih7rCNeKGbioS7f/y2Jgym4QZcKFg==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/fetch-http-handler": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-4.0.0.tgz", + "integrity": "sha512-MLb1f5tbBO2X6K4lMEKJvxeLooyg7guq48C2zKr4qM7F2Gpkz4dc+hdSgu77pCJ76jVqFBjZczHYAs6dp15N+g==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/protocol-http": "^4.1.5", + "@smithy/querystring-builder": "^3.0.8", + "@smithy/types": "^3.6.0", + "@smithy/util-base64": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "node_modules/@smithy/hash-node": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@smithy/hash-node/-/hash-node-3.0.8.tgz", + "integrity": "sha512-tlNQYbfpWXHimHqrvgo14DrMAgUBua/cNoz9fMYcDmYej7MAmUcjav/QKQbFc3NrcPxeJ7QClER4tWZmfwoPng==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/types": "^3.6.0", + "@smithy/util-buffer-from": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/hash-node/node_modules/@smithy/is-array-buffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/is-array-buffer/-/is-array-buffer-3.0.0.tgz", + "integrity": "sha512-+Fsu6Q6C4RSJiy81Y8eApjEB5gVtM+oFKTffg+jSuwtvomJJrhUJBu2zS8wjXSgH/g1MKEWrzyChTBe6clb5FQ==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/hash-node/node_modules/@smithy/util-buffer-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-buffer-from/-/util-buffer-from-3.0.0.tgz", + "integrity": "sha512-aEOHCgq5RWFbP+UDPvPot26EJHjOC+bRgse5A8V3FSShqd5E5UN4qc7zkwsvJPPAVsf73QwYcHN1/gt/rtLwQA==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/is-array-buffer": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-utf8/-/util-utf8-3.0.0.tgz", + "integrity": "sha512-rUeT12bxFnplYDe815GXbq/oixEGHfRFFtcTF3YdDi/JaENIM6aSYYLJydG83UNzLXeRI5K8abYd/8Sp/QM0kA==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/util-buffer-from": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/invalid-dependency": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@smithy/invalid-dependency/-/invalid-dependency-3.0.8.tgz", + "integrity": "sha512-7Qynk6NWtTQhnGTTZwks++nJhQ1O54Mzi7fz4PqZOiYXb4Z1Flpb2yRvdALoggTS8xjtohWUM+RygOtB30YL3Q==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" + } + }, + "node_modules/@smithy/is-array-buffer": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@smithy/is-array-buffer/-/is-array-buffer-2.2.0.tgz", + "integrity": "sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/middleware-content-length": { + "version": "3.0.10", + "resolved": "https://registry.npmjs.org/@smithy/middleware-content-length/-/middleware-content-length-3.0.10.tgz", + "integrity": "sha512-T4dIdCs1d/+/qMpwhJ1DzOhxCZjZHbHazEPJWdB4GDi2HjIZllVzeBEcdJUN0fomV8DURsgOyrbEUzg3vzTaOg==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/protocol-http": "^4.1.5", + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/middleware-endpoint": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.2.1.tgz", + "integrity": "sha512-wWO3xYmFm6WRW8VsEJ5oU6h7aosFXfszlz3Dj176pTij6o21oZnzkCLzShfmRaaCHDkBXWBdO0c4sQAvLFP6zA==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/core": "^2.5.1", + "@smithy/middleware-serde": "^3.0.8", + "@smithy/node-config-provider": "^3.1.9", + "@smithy/shared-ini-file-loader": "^3.1.9", + "@smithy/types": "^3.6.0", + "@smithy/url-parser": "^3.0.8", + "@smithy/util-middleware": "^3.0.8", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/middleware-retry": { + "version": "3.0.25", + "resolved": "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-3.0.25.tgz", + "integrity": "sha512-m1F70cPaMBML4HiTgCw5I+jFNtjgz5z5UdGnUbG37vw6kh4UvizFYjqJGHvicfgKMkDL6mXwyPp5mhZg02g5sg==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/node-config-provider": "^3.1.9", + "@smithy/protocol-http": "^4.1.5", + "@smithy/service-error-classification": "^3.0.8", + "@smithy/smithy-client": "^3.4.2", + "@smithy/types": "^3.6.0", + "@smithy/util-middleware": "^3.0.8", + "@smithy/util-retry": "^3.0.8", + "tslib": "^2.6.2", + "uuid": "^9.0.1" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/middleware-retry/node_modules/uuid": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz", + "integrity": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==", + "funding": [ + "https://github.com/sponsors/broofa", + "https://github.com/sponsors/ctavan" + ], + "license": "MIT", + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/@smithy/middleware-serde": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@smithy/middleware-serde/-/middleware-serde-3.0.8.tgz", + "integrity": "sha512-Xg2jK9Wc/1g/MBMP/EUn2DLspN8LNt+GMe7cgF+Ty3vl+Zvu+VeZU5nmhveU+H8pxyTsjrAkci8NqY6OuvZnjA==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/middleware-stack": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@smithy/middleware-stack/-/middleware-stack-3.0.8.tgz", + "integrity": "sha512-d7ZuwvYgp1+3682Nx0MD3D/HtkmZd49N3JUndYWQXfRZrYEnCWYc8BHcNmVsPAp9gKvlurdg/mubE6b/rPS9MA==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/node-config-provider": { + "version": "3.1.9", + "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.9.tgz", + "integrity": "sha512-qRHoah49QJ71eemjuS/WhUXB+mpNtwHRWQr77J/m40ewBVVwvo52kYAmb7iuaECgGTTcYxHS4Wmewfwy++ueew==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/property-provider": "^3.1.8", + "@smithy/shared-ini-file-loader": "^3.1.9", + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/node-http-handler": { + "version": "3.2.5", + "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.2.5.tgz", + "integrity": "sha512-PkOwPNeKdvX/jCpn0A8n9/TyoxjGZB8WVoJmm9YzsnAgggTj4CrjpRHlTQw7dlLZ320n1mY1y+nTRUDViKi/3w==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/abort-controller": "^3.1.6", + "@smithy/protocol-http": "^4.1.5", + "@smithy/querystring-builder": "^3.0.8", + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/property-provider": { + "version": "3.1.8", + "resolved": "https://registry.npmjs.org/@smithy/property-provider/-/property-provider-3.1.8.tgz", + "integrity": "sha512-ukNUyo6rHmusG64lmkjFeXemwYuKge1BJ8CtpVKmrxQxc6rhUX0vebcptFA9MmrGsnLhwnnqeH83VTU9hwOpjA==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/protocol-http": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/@smithy/protocol-http/-/protocol-http-4.1.5.tgz", + "integrity": "sha512-hsjtwpIemmCkm3ZV5fd/T0bPIugW1gJXwZ/hpuVubt2hEUApIoUTrf6qIdh9MAWlw0vjMrA1ztJLAwtNaZogvg==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/querystring-builder": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@smithy/querystring-builder/-/querystring-builder-3.0.8.tgz", + "integrity": "sha512-btYxGVqFUARbUrN6VhL9c3dnSviIwBYD9Rz1jHuN1hgh28Fpv2xjU1HeCeDJX68xctz7r4l1PBnFhGg1WBBPuA==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/types": "^3.6.0", + "@smithy/util-uri-escape": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/querystring-parser": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@smithy/querystring-parser/-/querystring-parser-3.0.8.tgz", + "integrity": "sha512-BtEk3FG7Ks64GAbt+JnKqwuobJNX8VmFLBsKIwWr1D60T426fGrV2L3YS5siOcUhhp6/Y6yhBw1PSPxA5p7qGg==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/service-error-classification": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@smithy/service-error-classification/-/service-error-classification-3.0.8.tgz", + "integrity": "sha512-uEC/kCCFto83bz5ZzapcrgGqHOh/0r69sZ2ZuHlgoD5kYgXJEThCoTuw/y1Ub3cE7aaKdznb+jD9xRPIfIwD7g==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/types": "^3.6.0" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/shared-ini-file-loader": { + "version": "3.1.9", + "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.9.tgz", + "integrity": "sha512-/+OsJRNtoRbtsX0UpSgWVxFZLsJHo/4sTr+kBg/J78sr7iC+tHeOvOJrS5hCpVQ6sWBbhWLp1UNiuMyZhE6pmA==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/signature-v4": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/@smithy/signature-v4/-/signature-v4-4.2.1.tgz", + "integrity": "sha512-NsV1jF4EvmO5wqmaSzlnTVetemBS3FZHdyc5CExbDljcyJCEEkJr8ANu2JvtNbVg/9MvKAWV44kTrGS+Pi4INg==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/is-array-buffer": "^3.0.0", + "@smithy/protocol-http": "^4.1.5", + "@smithy/types": "^3.6.0", + "@smithy/util-hex-encoding": "^3.0.0", + "@smithy/util-middleware": "^3.0.8", + "@smithy/util-uri-escape": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/signature-v4/node_modules/@smithy/is-array-buffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/is-array-buffer/-/is-array-buffer-3.0.0.tgz", + "integrity": "sha512-+Fsu6Q6C4RSJiy81Y8eApjEB5gVtM+oFKTffg+jSuwtvomJJrhUJBu2zS8wjXSgH/g1MKEWrzyChTBe6clb5FQ==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/signature-v4/node_modules/@smithy/util-buffer-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-buffer-from/-/util-buffer-from-3.0.0.tgz", + "integrity": "sha512-aEOHCgq5RWFbP+UDPvPot26EJHjOC+bRgse5A8V3FSShqd5E5UN4qc7zkwsvJPPAVsf73QwYcHN1/gt/rtLwQA==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/is-array-buffer": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/signature-v4/node_modules/@smithy/util-utf8": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-utf8/-/util-utf8-3.0.0.tgz", + "integrity": "sha512-rUeT12bxFnplYDe815GXbq/oixEGHfRFFtcTF3YdDi/JaENIM6aSYYLJydG83UNzLXeRI5K8abYd/8Sp/QM0kA==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/util-buffer-from": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/smithy-client": { + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.4.2.tgz", + "integrity": "sha512-dxw1BDxJiY9/zI3cBqfVrInij6ShjpV4fmGHesGZZUiP9OSE/EVfdwdRz0PgvkEvrZHpsj2htRaHJfftE8giBA==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/core": "^2.5.1", + "@smithy/middleware-endpoint": "^3.2.1", + "@smithy/middleware-stack": "^3.0.8", + "@smithy/protocol-http": "^4.1.5", + "@smithy/types": "^3.6.0", + "@smithy/util-stream": "^3.2.1", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/types": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/@smithy/types/-/types-3.6.0.tgz", + "integrity": "sha512-8VXK/KzOHefoC65yRgCn5vG1cysPJjHnOVt9d0ybFQSmJgQj152vMn4EkYhGuaOmnnZvCPav/KnYyE6/KsNZ2w==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/url-parser": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@smithy/url-parser/-/url-parser-3.0.8.tgz", + "integrity": "sha512-4FdOhwpTW7jtSFWm7SpfLGKIBC9ZaTKG5nBF0wK24aoQKQyDIKUw3+KFWCQ9maMzrgTJIuOvOnsV2lLGW5XjTg==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/querystring-parser": "^3.0.8", + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" + } + }, + "node_modules/@smithy/util-base64": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-base64/-/util-base64-3.0.0.tgz", + "integrity": "sha512-Kxvoh5Qtt0CDsfajiZOCpJxgtPHXOKwmM+Zy4waD43UoEMA+qPxxa98aE/7ZhdnBFZFXMOiBR5xbcaMhLtznQQ==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/util-buffer-from": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/util-base64/node_modules/@smithy/is-array-buffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/is-array-buffer/-/is-array-buffer-3.0.0.tgz", + "integrity": "sha512-+Fsu6Q6C4RSJiy81Y8eApjEB5gVtM+oFKTffg+jSuwtvomJJrhUJBu2zS8wjXSgH/g1MKEWrzyChTBe6clb5FQ==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/util-base64/node_modules/@smithy/util-buffer-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-buffer-from/-/util-buffer-from-3.0.0.tgz", + "integrity": "sha512-aEOHCgq5RWFbP+UDPvPot26EJHjOC+bRgse5A8V3FSShqd5E5UN4qc7zkwsvJPPAVsf73QwYcHN1/gt/rtLwQA==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/is-array-buffer": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-utf8/-/util-utf8-3.0.0.tgz", + "integrity": "sha512-rUeT12bxFnplYDe815GXbq/oixEGHfRFFtcTF3YdDi/JaENIM6aSYYLJydG83UNzLXeRI5K8abYd/8Sp/QM0kA==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/util-buffer-from": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/util-body-length-browser": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-body-length-browser/-/util-body-length-browser-3.0.0.tgz", + "integrity": "sha512-cbjJs2A1mLYmqmyVl80uoLTJhAcfzMOyPgjwAYusWKMdLeNtzmMz9YxNl3/jRLoxSS3wkqkf0jwNdtXWtyEBaQ==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.6.2" + } + }, + "node_modules/@smithy/util-body-length-node": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-body-length-node/-/util-body-length-node-3.0.0.tgz", + "integrity": "sha512-Tj7pZ4bUloNUP6PzwhN7K386tmSmEET9QtQg0TgdNOnxhZvCssHji+oZTUIuzxECRfG8rdm2PMw2WCFs6eIYkA==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/util-buffer-from": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@smithy/util-buffer-from/-/util-buffer-from-2.2.0.tgz", + "integrity": "sha512-IJdWBbTcMQ6DA0gdNhh/BwrLkDR+ADW5Kr1aZmd4k3DIF6ezMV4R2NIAmT08wQJ3yUK82thHWmC/TnK/wpMMIA==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/is-array-buffer": "^2.2.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/util-config-provider": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-config-provider/-/util-config-provider-3.0.0.tgz", + "integrity": "sha512-pbjk4s0fwq3Di/ANL+rCvJMKM5bzAQdE5S/6RL5NXgMExFAi6UgQMPOm5yPaIWPpr+EOXKXRonJ3FoxKf4mCJQ==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/util-defaults-mode-browser": { + "version": "3.0.25", + "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.25.tgz", + "integrity": "sha512-fRw7zymjIDt6XxIsLwfJfYUfbGoO9CmCJk6rjJ/X5cd20+d2Is7xjU5Kt/AiDt6hX8DAf5dztmfP5O82gR9emA==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/property-provider": "^3.1.8", + "@smithy/smithy-client": "^3.4.2", + "@smithy/types": "^3.6.0", + "bowser": "^2.11.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/@smithy/util-defaults-mode-node": { + "version": "3.0.25", + "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.25.tgz", + "integrity": "sha512-H3BSZdBDiVZGzt8TG51Pd2FvFO0PAx/A0mJ0EH8a13KJ6iUCdYnw/Dk/MdC1kTd0eUuUGisDFaxXVXo4HHFL1g==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/config-resolver": "^3.0.10", + "@smithy/credential-provider-imds": "^3.2.5", + "@smithy/node-config-provider": "^3.1.9", + "@smithy/property-provider": "^3.1.8", + "@smithy/smithy-client": "^3.4.2", + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/@smithy/util-endpoints": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@smithy/util-endpoints/-/util-endpoints-2.1.4.tgz", + "integrity": "sha512-kPt8j4emm7rdMWQyL0F89o92q10gvCUa6sBkBtDJ7nV2+P7wpXczzOfoDJ49CKXe5CCqb8dc1W+ZdLlrKzSAnQ==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/node-config-provider": "^3.1.9", + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/util-hex-encoding": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-hex-encoding/-/util-hex-encoding-3.0.0.tgz", + "integrity": "sha512-eFndh1WEK5YMUYvy3lPlVmYY/fZcQE1D8oSf41Id2vCeIkKJXPcYDCZD+4+xViI6b1XSd7tE+s5AmXzz5ilabQ==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/util-middleware": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@smithy/util-middleware/-/util-middleware-3.0.8.tgz", + "integrity": "sha512-p7iYAPaQjoeM+AKABpYWeDdtwQNxasr4aXQEA/OmbOaug9V0odRVDy3Wx4ci8soljE/JXQo+abV0qZpW8NX0yA==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/util-retry": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@smithy/util-retry/-/util-retry-3.0.8.tgz", + "integrity": "sha512-TCEhLnY581YJ+g1x0hapPz13JFqzmh/pMWL2KEFASC51qCfw3+Y47MrTmea4bUE5vsdxQ4F6/KFbUeSz22Q1ow==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/service-error-classification": "^3.0.8", + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/util-stream": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.2.1.tgz", + "integrity": "sha512-R3ufuzJRxSJbE58K9AEnL/uSZyVdHzud9wLS8tIbXclxKzoe09CRohj2xV8wpx5tj7ZbiJaKYcutMm1eYgz/0A==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/fetch-http-handler": "^4.0.0", + "@smithy/node-http-handler": "^3.2.5", + "@smithy/types": "^3.6.0", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-buffer-from": "^3.0.0", + "@smithy/util-hex-encoding": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/util-stream/node_modules/@smithy/is-array-buffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/is-array-buffer/-/is-array-buffer-3.0.0.tgz", + "integrity": "sha512-+Fsu6Q6C4RSJiy81Y8eApjEB5gVtM+oFKTffg+jSuwtvomJJrhUJBu2zS8wjXSgH/g1MKEWrzyChTBe6clb5FQ==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/util-stream/node_modules/@smithy/util-buffer-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-buffer-from/-/util-buffer-from-3.0.0.tgz", + "integrity": "sha512-aEOHCgq5RWFbP+UDPvPot26EJHjOC+bRgse5A8V3FSShqd5E5UN4qc7zkwsvJPPAVsf73QwYcHN1/gt/rtLwQA==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/is-array-buffer": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/util-stream/node_modules/@smithy/util-utf8": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-utf8/-/util-utf8-3.0.0.tgz", + "integrity": "sha512-rUeT12bxFnplYDe815GXbq/oixEGHfRFFtcTF3YdDi/JaENIM6aSYYLJydG83UNzLXeRI5K8abYd/8Sp/QM0kA==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/util-buffer-from": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/util-uri-escape": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-uri-escape/-/util-uri-escape-3.0.0.tgz", + "integrity": "sha512-LqR7qYLgZTD7nWLBecUi4aqolw8Mhza9ArpNEQ881MJJIU2sE5iHCK6TdyqqzcDLy0OPe10IY4T8ctVdtynubg==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/util-utf8": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@smithy/util-utf8/-/util-utf8-2.3.0.tgz", + "integrity": "sha512-R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/util-buffer-from": "^2.2.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/util-waiter": { + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/@smithy/util-waiter/-/util-waiter-3.1.7.tgz", + "integrity": "sha512-d5yGlQtmN/z5eoTtIYgkvOw27US2Ous4VycnXatyoImIF9tzlcpnKqQ/V7qhvJmb2p6xZne1NopCLakdTnkBBQ==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/abort-controller": "^3.1.6", + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@types/lodash": { + "version": "4.17.13", + "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.17.13.tgz", + "integrity": "sha512-lfx+dftrEZcdBPczf9d0Qv0x+j/rfNCMuC6OcfXmO8gkfeNAY88PgKUbvG56whcN23gc27yenwF6oJZXGFpYxg==", + "license": "MIT" + }, + "node_modules/@types/lodash-es": { + "version": "4.17.12", + "resolved": "https://registry.npmjs.org/@types/lodash-es/-/lodash-es-4.17.12.tgz", + "integrity": "sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==", + "license": "MIT", + "dependencies": { + "@types/lodash": "*" + } + }, + "node_modules/@types/long": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@types/long/-/long-4.0.2.tgz", + "integrity": "sha512-MqTGEo5bj5t157U6fA/BiDynNkn0YknVdh48CMPkTSpFTVmvao5UQmm7uEF6xBEo7qIMAlY/JSleYaE6VOdpaA==", + "license": "MIT" + }, + "node_modules/@types/node": { + "version": "22.8.5", + "resolved": "https://registry.npmjs.org/@types/node/-/node-22.8.5.tgz", + "integrity": "sha512-5iYk6AMPtsMbkZqCO1UGF9W5L38twq11S2pYWkybGHH2ogPUvXWNlQqJBzuEZWKj/WRH+QTeiv6ySWqJtvIEgA==", + "license": "MIT", + "dependencies": { + "undici-types": "~6.19.8" + } + }, + "node_modules/@types/node-fetch": { + "version": "2.6.11", + "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.11.tgz", + "integrity": "sha512-24xFj9R5+rfQJLRyM56qh+wnVSYhyXC2tkoBndtY0U+vubqNsYXGjufB2nn8Q6gt0LrARwL6UBtMCSVCwl4B1g==", + "license": "MIT", + "dependencies": { + "@types/node": "*", + "form-data": "^4.0.0" + } + }, + "node_modules/@types/papaparse": { + "version": "5.3.15", + "resolved": "https://registry.npmjs.org/@types/papaparse/-/papaparse-5.3.15.tgz", + "integrity": "sha512-JHe6vF6x/8Z85nCX4yFdDslN11d+1pr12E526X8WAfhadOeaOTx5AuIkvDKIBopfvlzpzkdMx4YyvSKCM9oqtw==", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/pg": { + "version": "8.11.10", + "resolved": "https://registry.npmjs.org/@types/pg/-/pg-8.11.10.tgz", + "integrity": "sha512-LczQUW4dbOQzsH2RQ5qoeJ6qJPdrcM/DcMLoqWQkMLMsq83J5lAX3LXjdkWdpscFy67JSOWDnh7Ny/sPFykmkg==", + "license": "MIT", + "dependencies": { + "@types/node": "*", + "pg-protocol": "*", + "pg-types": "^4.0.1" + } + }, + "node_modules/@types/qs": { + "version": "6.9.17", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.17.tgz", + "integrity": "sha512-rX4/bPcfmvxHDv0XjfJELTTr+iB+tn032nPILqHm5wbthUUUuVtNGGqzhya9XUxjTP8Fpr0qYgSZZKxGY++svQ==", + "license": "MIT" + }, + "node_modules/@types/tough-cookie": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/@types/tough-cookie/-/tough-cookie-4.0.5.tgz", + "integrity": "sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==", + "license": "MIT" + }, + "node_modules/@types/triple-beam": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/@types/triple-beam/-/triple-beam-1.3.5.tgz", + "integrity": "sha512-6WaYesThRMCl19iryMYP7/x2OVgCtbIVflDGFpWnb9irXI3UjYE4AzmYuiUKY1AJstGijoY+MgUszMgRxIYTYw==", + "license": "MIT" + }, + "node_modules/@types/uuid": { + "version": "9.0.8", + "resolved": "https://registry.npmjs.org/@types/uuid/-/uuid-9.0.8.tgz", + "integrity": "sha512-jg+97EGIcY9AGHJJRaaPVgetKDsrTgbRjQ5Msgjh/DQKEFl0DtyRr/VCOyD1T2R1MNeWPK/u7JoGhlDZnKBAfA==", + "license": "MIT" + }, + "node_modules/@types/webidl-conversions": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/@types/webidl-conversions/-/webidl-conversions-7.0.3.tgz", + "integrity": "sha512-CiJJvcRtIgzadHCYXw7dqEnMNRjhGZlYK05Mj9OyktqV8uVT8fD2BFOB7S1uwBE3Kj2Z+4UyPmFw/Ixgw/LAlA==", + "license": "MIT" + }, + "node_modules/@types/whatwg-url": { + "version": "11.0.5", + "resolved": "https://registry.npmjs.org/@types/whatwg-url/-/whatwg-url-11.0.5.tgz", + "integrity": "sha512-coYR071JRaHa+xoEvvYqvnIHaVqaYrLPbsufM9BF63HkwI5Lgmy2QR8Q5K/lYDYo5AK82wOvSOS0UsLTpTG7uQ==", + "license": "MIT", + "dependencies": { + "@types/webidl-conversions": "*" + } + }, + "node_modules/@xenova/transformers": { + "version": "2.17.2", + "resolved": "https://registry.npmjs.org/@xenova/transformers/-/transformers-2.17.2.tgz", + "integrity": "sha512-lZmHqzrVIkSvZdKZEx7IYY51TK0WDrC8eR0c5IMnBsO8di8are1zzw8BlLhyO2TklZKLN5UffNGs1IJwT6oOqQ==", + "license": "Apache-2.0", + "dependencies": { + "@huggingface/jinja": "^0.2.2", + "onnxruntime-web": "1.14.0", + "sharp": "^0.32.0" + }, + "optionalDependencies": { + "onnxruntime-node": "1.14.0" + } + }, + "node_modules/@xenova/transformers/node_modules/detect-libc": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.3.tgz", + "integrity": "sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==", + "license": "Apache-2.0", + "engines": { + "node": ">=8" + } + }, + "node_modules/@xenova/transformers/node_modules/node-addon-api": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-6.1.0.tgz", + "integrity": "sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==", + "license": "MIT" + }, + "node_modules/@xenova/transformers/node_modules/sharp": { + "version": "0.32.6", + "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.32.6.tgz", + "integrity": "sha512-KyLTWwgcR9Oe4d9HwCwNM2l7+J0dUQwn/yf7S0EnTtb0eVS4RxO0eUSvxPtzT4F3SY+C4K6fqdv/DO27sJ/v/w==", + "hasInstallScript": true, + "license": "Apache-2.0", + "dependencies": { + "color": "^4.2.3", + "detect-libc": "^2.0.2", + "node-addon-api": "^6.1.0", + "prebuild-install": "^7.1.1", + "semver": "^7.5.4", + "simple-get": "^4.0.1", + "tar-fs": "^3.0.4", + "tunnel-agent": "^0.6.0" + }, + "engines": { + "node": ">=14.15.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@xmldom/xmldom": { + "version": "0.8.10", + "resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.8.10.tgz", + "integrity": "sha512-2WALfTl4xo2SkGCYRt6rDTFfk9R1czmBvUQy12gK2KuRKIpWEhcbbzy8EZXtz/jkRqHX8bFEc6FC1HjX4TUWYw==", + "license": "MIT", + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/@zilliz/milvus2-sdk-node": { + "version": "2.4.9", + "resolved": "https://registry.npmjs.org/@zilliz/milvus2-sdk-node/-/milvus2-sdk-node-2.4.9.tgz", + "integrity": "sha512-EuCwEE5jENkxk7JVCNxLjtw4BgxcucquzIOalqxhOBQ10P28wU+jFU1ETJpAen4g5FbNwlMCO9rwDaORKjlwSA==", + "dependencies": { + "@grpc/grpc-js": "^1.8.22", + "@grpc/proto-loader": "^0.7.10", + "@petamoriken/float16": "^3.8.6", + "dayjs": "^1.11.7", + "generic-pool": "^3.9.0", + "lru-cache": "^9.1.2", + "protobufjs": "^7.2.6", + "winston": "^3.9.0" + } + }, + "node_modules/@zilliz/milvus2-sdk-node/node_modules/@grpc/proto-loader": { + "version": "0.7.13", + "resolved": "https://registry.npmjs.org/@grpc/proto-loader/-/proto-loader-0.7.13.tgz", + "integrity": "sha512-AiXO/bfe9bmxBjxxtYxFAXGZvMaN5s8kO+jBHAJCON8rJoB5YS/D6X7ZNc6XQkuHNmyl4CYaMI1fJ/Gn27RGGw==", + "license": "Apache-2.0", + "dependencies": { + "lodash.camelcase": "^4.3.0", + "long": "^5.0.0", + "protobufjs": "^7.2.5", + "yargs": "^17.7.2" + }, + "bin": { + "proto-loader-gen-types": "build/bin/proto-loader-gen-types.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@zilliz/milvus2-sdk-node/node_modules/long": { + "version": "5.2.3", + "resolved": "https://registry.npmjs.org/long/-/long-5.2.3.tgz", + "integrity": "sha512-lcHwpNoggQTObv5apGNCTdJrO69eHOZMi4BNC+rTLER8iHAqGrUVeLh/irVIM7zTw2bOXA8T6uNPeujwOLg/2Q==", + "license": "Apache-2.0" + }, + "node_modules/@zilliz/milvus2-sdk-node/node_modules/protobufjs": { + "version": "7.4.0", + "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-7.4.0.tgz", + "integrity": "sha512-mRUWCc3KUU4w1jU8sGxICXH/gNS94DvI1gxqDvBzhj1JpcsimQkYiOJfwsPUykUI5ZaspFbSgmBLER8IrQ3tqw==", + "hasInstallScript": true, + "license": "BSD-3-Clause", + "dependencies": { + "@protobufjs/aspromise": "^1.1.2", + "@protobufjs/base64": "^1.1.2", + "@protobufjs/codegen": "^2.0.4", + "@protobufjs/eventemitter": "^1.1.0", + "@protobufjs/fetch": "^1.1.0", + "@protobufjs/float": "^1.0.2", + "@protobufjs/inquire": "^1.1.0", + "@protobufjs/path": "^1.1.2", + "@protobufjs/pool": "^1.1.0", + "@protobufjs/utf8": "^1.1.0", + "@types/node": ">=13.7.0", + "long": "^5.0.0" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/abort-controller": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", + "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", + "license": "MIT", + "dependencies": { + "event-target-shim": "^5.0.0" + }, + "engines": { + "node": ">=6.5" + } + }, + "node_modules/accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "license": "MIT", + "dependencies": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/agentkeepalive": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.5.0.tgz", + "integrity": "sha512-5GG/5IbQQpC9FpkRGsSvZI5QYeSCzlJHdpBQntCsuTOxhKD8lqKhrleg2Yi7yvMIf82Ycmmqln9U8V9qwEiJew==", + "license": "MIT", + "dependencies": { + "humanize-ms": "^1.2.1" + }, + "engines": { + "node": ">= 8.0.0" + } + }, + "node_modules/ajv": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/already": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/already/-/already-2.2.1.tgz", + "integrity": "sha512-qk6RIVMS/R1yTvBzfIL1T76PsIL7DIVCINoLuFw2YXKLpLtsTobqdChMs8m3OhuPS3CEE3+Ra5ibYiqdyogbsQ==", + "license": "MIT" + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/any-promise": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", + "license": "MIT" + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "license": "ISC", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/anymatch/node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/append-field": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/append-field/-/append-field-1.0.0.tgz", + "integrity": "sha512-klpgFSWLW1ZEs8svjfb7g4qWY0YS5imI82dTg+QahUvJ8YqAY0P10Uk8tTyh9ZGuYEZEMaeJYCF5BFuX552hsw==", + "license": "MIT" + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "license": "Python-2.0" + }, + "node_modules/array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", + "license": "MIT" + }, + "node_modules/assemblyai": { + "version": "4.8.0", + "resolved": "https://registry.npmjs.org/assemblyai/-/assemblyai-4.8.0.tgz", + "integrity": "sha512-TRIcthDBdJ+lj1ohLa516Kr/BO2AQn+IhBBl/eeomZGZym90aEC6qirc337hEPUxmmINSJ8XTSY4xwy51HmDGA==", + "license": "MIT", + "dependencies": { + "ws": "^8.18.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/async": { + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.6.tgz", + "integrity": "sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==", + "license": "MIT" + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "license": "MIT" + }, + "node_modules/axios": { + "version": "1.7.7", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.7.7.tgz", + "integrity": "sha512-S4kL7XrjgBmvdGut0sN3yJxqYzrDOnivkBiN0OFs6hLiUam3UPvswUo0kqGyhqUZGEOytHyumEdXsAkgCOUf3Q==", + "license": "MIT", + "dependencies": { + "follow-redirects": "^1.15.6", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" + } + }, + "node_modules/b4a": { + "version": "1.6.7", + "resolved": "https://registry.npmjs.org/b4a/-/b4a-1.6.7.tgz", + "integrity": "sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg==", + "license": "Apache-2.0" + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "license": "MIT" + }, + "node_modules/bare-events": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/bare-events/-/bare-events-2.5.0.tgz", + "integrity": "sha512-/E8dDe9dsbLyh2qrZ64PEPadOQ0F4gbl1sUJOrmph7xOiIxfY8vwab/4bFLh4Y88/Hk/ujKcrQKc+ps0mv873A==", + "license": "Apache-2.0", + "optional": true + }, + "node_modules/bare-fs": { + "version": "2.3.5", + "resolved": "https://registry.npmjs.org/bare-fs/-/bare-fs-2.3.5.tgz", + "integrity": "sha512-SlE9eTxifPDJrT6YgemQ1WGFleevzwY+XAP1Xqgl56HtcrisC2CHCZ2tq6dBpcH2TnNxwUEUGhweo+lrQtYuiw==", + "license": "Apache-2.0", + "optional": true, + "dependencies": { + "bare-events": "^2.0.0", + "bare-path": "^2.0.0", + "bare-stream": "^2.0.0" + } + }, + "node_modules/bare-os": { + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/bare-os/-/bare-os-2.4.4.tgz", + "integrity": "sha512-z3UiI2yi1mK0sXeRdc4O1Kk8aOa/e+FNWZcTiPB/dfTWyLypuE99LibgRaQki914Jq//yAWylcAt+mknKdixRQ==", + "license": "Apache-2.0", + "optional": true + }, + "node_modules/bare-path": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/bare-path/-/bare-path-2.1.3.tgz", + "integrity": "sha512-lh/eITfU8hrj9Ru5quUp0Io1kJWIk1bTjzo7JH1P5dWmQ2EL4hFUlfI8FonAhSlgIfhn63p84CDY/x+PisgcXA==", + "license": "Apache-2.0", + "optional": true, + "dependencies": { + "bare-os": "^2.1.0" + } + }, + "node_modules/bare-stream": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/bare-stream/-/bare-stream-2.3.2.tgz", + "integrity": "sha512-EFZHSIBkDgSHIwj2l2QZfP4U5OcD4xFAOwhSb/vlr9PIqyGJGvB/nfClJbcnh3EY4jtPE4zsb5ztae96bVF79A==", + "license": "Apache-2.0", + "optional": true, + "dependencies": { + "streamx": "^2.20.0" + } + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/binary-extensions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", + "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/bl": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", + "license": "MIT", + "dependencies": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, + "node_modules/bl/node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/bl/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/bluebird": { + "version": "3.4.7", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.4.7.tgz", + "integrity": "sha512-iD3898SR7sWVRHbiQv+sHUtHnMvC1o3nW5rAcqnq3uOn07DSAppZYUkIGslDz6gXC7HfunPe7YVBgoEJASPcHA==", + "license": "MIT" + }, + "node_modules/body-parser": { + "version": "1.20.3", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.3.tgz", + "integrity": "sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==", + "license": "MIT", + "dependencies": { + "bytes": "3.1.2", + "content-type": "~1.0.5", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.13.0", + "raw-body": "2.5.2", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/bowser": { + "version": "2.11.0", + "resolved": "https://registry.npmjs.org/bowser/-/bowser-2.11.0.tgz", + "integrity": "sha512-AlcaJBi/pqqJBIQ8U9Mcpc9i8Aqxn88Skv5d+xBX006BY5u8N3mGLHa5Lgppa7L/HfwgwLgZ6NYs+Ag6uUmJRA==", + "license": "MIT" + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "license": "MIT", + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/bson": { + "version": "6.9.0", + "resolved": "https://registry.npmjs.org/bson/-/bson-6.9.0.tgz", + "integrity": "sha512-X9hJeyeM0//Fus+0pc5dSUMhhrrmWwQUtdavaQeF3Ta6m69matZkGWV/MrBcnwUeLC8W9kwwc2hfkZgUuCX3Ig==", + "license": "Apache-2.0", + "engines": { + "node": ">=16.20.1" + } + }, + "node_modules/buffer": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", + "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.2.1" + } + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "license": "MIT" + }, + "node_modules/busboy": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", + "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", + "dependencies": { + "streamsearch": "^1.1.0" + }, + "engines": { + "node": ">=10.16.0" + } + }, + "node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/call-bind": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", + "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "set-function-length": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/callguard": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/callguard/-/callguard-2.0.0.tgz", + "integrity": "sha512-I3nd+fuj20FK1qu00ImrbH+II+8ULS6ioYr9igqR1xyqySoqc3DiHEyUM0mkoAdKeLGg2CtGnO8R3VRQX5krpQ==", + "license": "MIT" + }, + "node_modules/camelcase": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz", + "integrity": "sha512-FxAv7HpHrXbh3aPo4o2qxHay2lkLY3x5Mw3KeE4KQE8ysVfziWeRZDwcjauvwBSGEC/nXUPzZy8zeh4HokqOnw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/chalk": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", + "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", + "license": "MIT", + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "dev": true, + "license": "MIT", + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/chokidar/node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/chownr": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", + "license": "ISC" + }, + "node_modules/chromadb": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/chromadb/-/chromadb-1.7.3.tgz", + "integrity": "sha512-3GgvQjpqgk5C89x5EuTDaXKbfrdqYDJ5UVyLQ3ZmwxnpetNc+HhRDGjkvXa5KSvpQ3lmKoyDoqnN4tZepfFkbw==", + "license": "Apache-2.0", + "dependencies": { + "cliui": "^8.0.1", + "isomorphic-fetch": "^3.0.0" + }, + "engines": { + "node": ">=14.17.0" + }, + "peerDependencies": { + "@google/generative-ai": "^0.1.1", + "cohere-ai": "^5.0.0 || ^6.0.0 || ^7.0.0", + "openai": "^3.0.0 || ^4.0.0" + }, + "peerDependenciesMeta": { + "@google/generative-ai": { + "optional": true + }, + "cohere-ai": { + "optional": true + }, + "openai": { + "optional": true + } + } + }, + "node_modules/clarifai-nodejs": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/clarifai-nodejs/-/clarifai-nodejs-0.0.3.tgz", + "integrity": "sha512-EiTI45nApdbRBq+3B94hfTp7baBlU8nx8b5KXMBx94M0a6drgnilDr7dOlQdU3veU8uiXCwv4rW48AzH2TeS0Q==", + "license": "Apache-2.0", + "dependencies": { + "@grpc/grpc-js": "^1.10.1", + "@grpc/proto-loader": "^0.7.10", + "async": "^3.2.5", + "axios": "^1.6.8", + "chalk": "^5.3.0", + "clarifai-nodejs-grpc": "^10.3.2", + "csv-parse": "^5.5.5", + "from-protobuf-object": "^1.0.2", + "google-protobuf": "^3.21.2", + "js-yaml": "^4.1.0", + "llamaindex": "^0.2.13", + "lodash": "^4.17.21", + "safe-flat": "^2.1.0", + "tmp": "^0.2.3", + "uuid": "^9.0.1", + "winston": "^3.11.0", + "zod": "^3.22.4" + } + }, + "node_modules/clarifai-nodejs-grpc": { + "version": "10.9.8", + "resolved": "https://registry.npmjs.org/clarifai-nodejs-grpc/-/clarifai-nodejs-grpc-10.9.8.tgz", + "integrity": "sha512-VgghrvXl2pGb2iOW9fAH2g14b+5Iw1j2afzRASh+Ux5O+E96LRT85ES+KOLtRFS7b+Ug/0PnmKkqRWKb2nJ6dw==", + "license": "Apache-2.0", + "dependencies": { + "@grpc/grpc-js": "^1.4.2", + "@grpc/proto-loader": "^0.5.5", + "axios": "^0.21.1", + "google-protobuf": "^3.14.0", + "protobufjs": "^6.10.2" + } + }, + "node_modules/clarifai-nodejs-grpc/node_modules/axios": { + "version": "0.21.4", + "resolved": "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz", + "integrity": "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==", + "license": "MIT", + "dependencies": { + "follow-redirects": "^1.14.0" + } + }, + "node_modules/clarifai-nodejs/node_modules/@grpc/proto-loader": { + "version": "0.7.13", + "resolved": "https://registry.npmjs.org/@grpc/proto-loader/-/proto-loader-0.7.13.tgz", + "integrity": "sha512-AiXO/bfe9bmxBjxxtYxFAXGZvMaN5s8kO+jBHAJCON8rJoB5YS/D6X7ZNc6XQkuHNmyl4CYaMI1fJ/Gn27RGGw==", + "license": "Apache-2.0", + "dependencies": { + "lodash.camelcase": "^4.3.0", + "long": "^5.0.0", + "protobufjs": "^7.2.5", + "yargs": "^17.7.2" + }, + "bin": { + "proto-loader-gen-types": "build/bin/proto-loader-gen-types.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/clarifai-nodejs/node_modules/long": { + "version": "5.2.3", + "resolved": "https://registry.npmjs.org/long/-/long-5.2.3.tgz", + "integrity": "sha512-lcHwpNoggQTObv5apGNCTdJrO69eHOZMi4BNC+rTLER8iHAqGrUVeLh/irVIM7zTw2bOXA8T6uNPeujwOLg/2Q==", + "license": "Apache-2.0" + }, + "node_modules/clarifai-nodejs/node_modules/protobufjs": { + "version": "7.4.0", + "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-7.4.0.tgz", + "integrity": "sha512-mRUWCc3KUU4w1jU8sGxICXH/gNS94DvI1gxqDvBzhj1JpcsimQkYiOJfwsPUykUI5ZaspFbSgmBLER8IrQ3tqw==", + "hasInstallScript": true, + "license": "BSD-3-Clause", + "dependencies": { + "@protobufjs/aspromise": "^1.1.2", + "@protobufjs/base64": "^1.1.2", + "@protobufjs/codegen": "^2.0.4", + "@protobufjs/eventemitter": "^1.1.0", + "@protobufjs/fetch": "^1.1.0", + "@protobufjs/float": "^1.0.2", + "@protobufjs/inquire": "^1.1.0", + "@protobufjs/path": "^1.1.2", + "@protobufjs/pool": "^1.1.0", + "@protobufjs/utf8": "^1.1.0", + "@types/node": ">=13.7.0", + "long": "^5.0.0" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/clarifai-nodejs/node_modules/uuid": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz", + "integrity": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==", + "funding": [ + "https://github.com/sponsors/broofa", + "https://github.com/sponsors/ctavan" + ], + "license": "MIT", + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "license": "ISC", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/codsen-utils": { + "version": "1.6.4", + "resolved": "https://registry.npmjs.org/codsen-utils/-/codsen-utils-1.6.4.tgz", + "integrity": "sha512-PDyvQ5f2PValmqZZIJATimcokDt4JjIev8cKbZgEOoZm+U1IJDYuLeTcxZPQdep99R/X0RIlQ6ReQgPOVnPbNw==", + "license": "MIT", + "dependencies": { + "rfdc": "^1.3.1" + }, + "engines": { + "node": ">=14.18.0" + } + }, + "node_modules/cohere-ai": { + "version": "7.14.0", + "resolved": "https://registry.npmjs.org/cohere-ai/-/cohere-ai-7.14.0.tgz", + "integrity": "sha512-hSo2/tFV29whjFFtVtdS7kHmtUsjfMO1sgwE/d5bhOE4O7Vkj5G1R9lLIqkIprp/+rrvCq3HGvEaOgry7xRcDA==", + "dependencies": { + "@aws-sdk/client-sagemaker": "^3.583.0", + "@aws-sdk/credential-providers": "^3.583.0", + "@aws-sdk/protocol-http": "^3.374.0", + "@aws-sdk/signature-v4": "^3.374.0", + "form-data": "^4.0.0", + "form-data-encoder": "^4.0.2", + "formdata-node": "^6.0.3", + "js-base64": "3.7.2", + "node-fetch": "2.7.0", + "qs": "6.11.2", + "readable-stream": "^4.5.2", + "url-join": "4.0.1" + } + }, + "node_modules/cohere-ai/node_modules/form-data-encoder": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/form-data-encoder/-/form-data-encoder-4.0.2.tgz", + "integrity": "sha512-KQVhvhK8ZkWzxKxOr56CPulAhH3dobtuQ4+hNQ+HekH/Wp5gSOafqRAeTphQUJAIk0GBvHZgJ2ZGRWd5kphMuw==", + "license": "MIT", + "engines": { + "node": ">= 18" + } + }, + "node_modules/cohere-ai/node_modules/formdata-node": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/formdata-node/-/formdata-node-6.0.3.tgz", + "integrity": "sha512-8e1++BCiTzUno9v5IZ2J6bv4RU+3UKDmqWUQD0MIMVCd9AdhWkO1gw57oo1mNEX1dMq2EGI+FbWz4B92pscSQg==", + "license": "MIT", + "engines": { + "node": ">= 18" + } + }, + "node_modules/cohere-ai/node_modules/qs": { + "version": "6.11.2", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.2.tgz", + "integrity": "sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==", + "license": "BSD-3-Clause", + "dependencies": { + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/cohere-ai/node_modules/readable-stream": { + "version": "4.5.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-4.5.2.tgz", + "integrity": "sha512-yjavECdqeZ3GLXNgRXgeQEdz9fvDDkNKyHnbHRFtOr7/LcfgBcmct7t/ET+HaCTqfh06OzoAxrkN/IfjJBVe+g==", + "license": "MIT", + "dependencies": { + "abort-controller": "^3.0.0", + "buffer": "^6.0.3", + "events": "^3.3.0", + "process": "^0.11.10", + "string_decoder": "^1.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/cohere-ai/node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/color": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/color/-/color-4.2.3.tgz", + "integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1", + "color-string": "^1.9.0" + }, + "engines": { + "node": ">=12.5.0" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT" + }, + "node_modules/color-string": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", + "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", + "license": "MIT", + "dependencies": { + "color-name": "^1.0.0", + "simple-swizzle": "^0.2.2" + } + }, + "node_modules/colorspace": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/colorspace/-/colorspace-1.1.4.tgz", + "integrity": "sha512-BgvKJiuVu1igBUF2kEjRCZXol6wiiGbY5ipL/oVPwm0BL9sIpMIzM8IK7vwuxIIzOXMV3Ey5w+vxhm0rR/TN8w==", + "license": "MIT", + "dependencies": { + "color": "^3.1.3", + "text-hex": "1.0.x" + } + }, + "node_modules/colorspace/node_modules/color": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/color/-/color-3.2.1.tgz", + "integrity": "sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==", + "license": "MIT", + "dependencies": { + "color-convert": "^1.9.3", + "color-string": "^1.6.0" + } + }, + "node_modules/colorspace/node_modules/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==", + "license": "MIT", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/colorspace/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "license": "MIT" + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "license": "MIT", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true, + "license": "MIT" + }, + "node_modules/concat-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "engines": [ + "node >= 0.8" + ], + "license": "MIT", + "dependencies": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + } + }, + "node_modules/content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "license": "MIT", + "dependencies": { + "safe-buffer": "5.2.1" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.1.tgz", + "integrity": "sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", + "license": "MIT" + }, + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "license": "MIT" + }, + "node_modules/cors": { + "version": "2.8.5", + "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", + "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", + "license": "MIT", + "dependencies": { + "object-assign": "^4", + "vary": "^1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/cross-fetch": { + "version": "3.1.8", + "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.8.tgz", + "integrity": "sha512-cvA+JwZoU0Xq+h6WkMvAUqPEYy92Obet6UdKLfW60qn99ftItKjB5T+BkyWOFWe2pUyfQ+IJHmpOTznqk1M6Kg==", + "license": "MIT", + "dependencies": { + "node-fetch": "^2.6.12" + } + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/csv-parse": { + "version": "5.5.6", + "resolved": "https://registry.npmjs.org/csv-parse/-/csv-parse-5.5.6.tgz", + "integrity": "sha512-uNpm30m/AGSkLxxy7d9yRXpJQFrZzVWLFBkS+6ngPcZkw/5k3L/jjFuj7tVnEpRn+QgmiXr21nDlhCiUK4ij2A==", + "license": "MIT" + }, + "node_modules/data-uri-to-buffer": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-4.0.1.tgz", + "integrity": "sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==", + "license": "MIT", + "optional": true, + "peer": true, + "engines": { + "node": ">= 12" + } + }, + "node_modules/dayjs": { + "version": "1.11.13", + "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.13.tgz", + "integrity": "sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==", + "license": "MIT" + }, + "node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/decompress-response": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", + "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", + "license": "MIT", + "dependencies": { + "mimic-response": "^3.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/deep-extend": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", + "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", + "license": "MIT", + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/define-data-property": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "license": "MIT", + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/detect-libc": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz", + "integrity": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==", + "license": "Apache-2.0", + "bin": { + "detect-libc": "bin/detect-libc.js" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/dingbat-to-unicode": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/dingbat-to-unicode/-/dingbat-to-unicode-1.0.1.tgz", + "integrity": "sha512-98l0sW87ZT58pU4i61wa2OHwxbiYSbuxsCBozaVnYX2iCnr3bLM3fIes1/ej7h1YdOKuKt/MLs706TVnALA65w==", + "license": "BSD-2-Clause" + }, + "node_modules/dotenv": { + "version": "16.4.5", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.5.tgz", + "integrity": "sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://dotenvx.com" + } + }, + "node_modules/duck": { + "version": "0.1.12", + "resolved": "https://registry.npmjs.org/duck/-/duck-0.1.12.tgz", + "integrity": "sha512-wkctla1O6VfP89gQ+J/yDesM0S7B7XLXjKGzXxMDVFg7uEn706niAtyYovKbyq1oT9YwDcly721/iUWoc8MVRg==", + "license": "BSD", + "dependencies": { + "underscore": "^1.13.1" + } + }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "license": "MIT" + }, + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", + "license": "MIT" + }, + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "license": "MIT" + }, + "node_modules/enabled": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/enabled/-/enabled-2.0.0.tgz", + "integrity": "sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ==", + "license": "MIT" + }, + "node_modules/encodeurl": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", + "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/encoding": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", + "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", + "license": "MIT", + "dependencies": { + "iconv-lite": "^0.6.2" + } + }, + "node_modules/encoding/node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "license": "MIT", + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/es-define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", + "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", + "license": "MIT", + "dependencies": { + "get-intrinsic": "^1.2.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", + "license": "MIT" + }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/event-target-shim": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", + "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "license": "MIT", + "engines": { + "node": ">=0.8.x" + } + }, + "node_modules/expand-template": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/expand-template/-/expand-template-2.0.3.tgz", + "integrity": "sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==", + "license": "(MIT OR WTFPL)", + "engines": { + "node": ">=6" + } + }, + "node_modules/express": { + "version": "4.21.1", + "resolved": "https://registry.npmjs.org/express/-/express-4.21.1.tgz", + "integrity": "sha512-YSFlK1Ee0/GC8QaO91tHcDxJiE/X4FbpAyQWkxAvG6AXCuR65YzK8ua6D9hvi/TzUfZMpc+BwuM1IPw8fmQBiQ==", + "license": "MIT", + "dependencies": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.3", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.7.1", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.3.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.3", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.10", + "proxy-addr": "~2.0.7", + "qs": "6.13.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.19.0", + "serve-static": "1.16.2", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/express-handlebars": { + "version": "7.1.3", + "resolved": "https://registry.npmjs.org/express-handlebars/-/express-handlebars-7.1.3.tgz", + "integrity": "sha512-O0W4n14iQ8+iFIDdiMh9HRI2nbVQJ/h1qndlD1TXWxxcfbKjKoqJh+ti2tROkyx4C4VQrt0y3bANBQ5auQAiew==", + "license": "BSD-3-Clause", + "dependencies": { + "glob": "^10.4.2", + "graceful-fs": "^4.2.11", + "handlebars": "^4.7.8" + }, + "engines": { + "node": ">=v16" + } + }, + "node_modules/express-handlebars/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/express-handlebars/node_modules/glob": { + "version": "10.4.5", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", + "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", + "license": "ISC", + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^1.11.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/express-handlebars/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/express-handlebars/node_modules/minipass": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", + "license": "ISC", + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "license": "MIT" + }, + "node_modules/fast-fifo": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/fast-fifo/-/fast-fifo-1.3.2.tgz", + "integrity": "sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==", + "license": "MIT" + }, + "node_modules/fast-uri": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.3.tgz", + "integrity": "sha512-aLrHthzCjH5He4Z2H9YZ+v6Ujb9ocRuW6ZzkJQOrTxleEijANq4v1TsaPaVG1PZcuurEzrLcWRyYBYXD5cEiaw==", + "license": "BSD-3-Clause" + }, + "node_modules/fast-xml-parser": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.4.1.tgz", + "integrity": "sha512-xkjOecfnKGkSsOwtZ5Pz7Us/T6mrbPQrq0nh+aCO5V9nk5NLWmasAHumTKjiPJPWANe+kAZ84Jc8ooJkzZ88Sw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/NaturalIntelligence" + }, + { + "type": "paypal", + "url": "https://paypal.me/naturalintelligence" + } + ], + "license": "MIT", + "dependencies": { + "strnum": "^1.0.5" + }, + "bin": { + "fxparser": "src/cli/cli.js" + } + }, + "node_modules/fecha": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/fecha/-/fecha-4.2.3.tgz", + "integrity": "sha512-OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw==", + "license": "MIT" + }, + "node_modules/fetch-blob": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.2.0.tgz", + "integrity": "sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/jimmywarting" + }, + { + "type": "paypal", + "url": "https://paypal.me/jimmywarting" + } + ], + "license": "MIT", + "optional": true, + "peer": true, + "dependencies": { + "node-domexception": "^1.0.0", + "web-streams-polyfill": "^3.0.3" + }, + "engines": { + "node": "^12.20 || >= 14.13" + } + }, + "node_modules/fetch-h2": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/fetch-h2/-/fetch-h2-3.0.2.tgz", + "integrity": "sha512-Lo6UPdMKKc9Ond7yjG2vq0mnocspOLh1oV6+XZdtfdexacvMSz5xm3WoQhTAdoR2+UqPlyMNqcqfecipoD+l/A==", + "license": "MIT", + "dependencies": { + "@types/tough-cookie": "^4.0.0", + "already": "^2.2.1", + "callguard": "^2.0.0", + "get-stream": "^6.0.1", + "through2": "^4.0.2", + "to-arraybuffer": "^1.0.1", + "tough-cookie": "^4.0.0" + }, + "engines": { + "node": ">=12" + } }, - "node_modules/@protobufjs/codegen": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.4.tgz", - "integrity": "sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==", - "license": "BSD-3-Clause" + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "license": "MIT", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } }, - "node_modules/@protobufjs/eventemitter": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz", - "integrity": "sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q==", - "license": "BSD-3-Clause" + "node_modules/finalhandler": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.1.tgz", + "integrity": "sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==", + "license": "MIT", + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } }, - "node_modules/@protobufjs/fetch": { + "node_modules/flatbuffers": { + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/flatbuffers/-/flatbuffers-1.12.0.tgz", + "integrity": "sha512-c7CZADjRcl6j0PlvFy0ZqXQ67qSEZfrVPynmnL+2zPc+NtMvrF8Y0QceMo7QqnSPc7+uWjUIAbvCQ5WIKlMVdQ==", + "license": "SEE LICENSE IN LICENSE.txt" + }, + "node_modules/fn.name": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.0.tgz", - "integrity": "sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ==", - "license": "BSD-3-Clause", + "resolved": "https://registry.npmjs.org/fn.name/-/fn.name-1.1.0.tgz", + "integrity": "sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==", + "license": "MIT" + }, + "node_modules/follow-redirects": { + "version": "1.15.9", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.9.tgz", + "integrity": "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "license": "MIT", + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/foreground-child": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.0.tgz", + "integrity": "sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==", + "license": "ISC", "dependencies": { - "@protobufjs/aspromise": "^1.1.1", - "@protobufjs/inquire": "^1.1.0" + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/@protobufjs/float": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz", - "integrity": "sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==", - "license": "BSD-3-Clause" + "node_modules/foreground-child/node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "license": "ISC", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } }, - "node_modules/@protobufjs/inquire": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.0.tgz", - "integrity": "sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q==", - "license": "BSD-3-Clause" + "node_modules/form-data": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.1.tgz", + "integrity": "sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw==", + "license": "MIT", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } }, - "node_modules/@protobufjs/path": { + "node_modules/form-data-encoder": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/form-data-encoder/-/form-data-encoder-1.7.2.tgz", + "integrity": "sha512-qfqtYan3rxrnCk1VYaA4H+Ms9xdpPqvLZa6xmMgFvhO32x7/3J/ExcTd6qpxM0vH2GdMI+poehyBZvqfMTto8A==", + "license": "MIT" + }, + "node_modules/formdata-node": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/formdata-node/-/formdata-node-4.4.1.tgz", + "integrity": "sha512-0iirZp3uVDjVGt9p49aTaqjk84TrglENEDuqfdlZQ1roC9CWlPk6Avf8EEnZNcAqPonwkG35x4n3ww/1THYAeQ==", + "license": "MIT", + "dependencies": { + "node-domexception": "1.0.0", + "web-streams-polyfill": "4.0.0-beta.3" + }, + "engines": { + "node": ">= 12.20" + } + }, + "node_modules/formdata-node/node_modules/web-streams-polyfill": { + "version": "4.0.0-beta.3", + "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-4.0.0-beta.3.tgz", + "integrity": "sha512-QW95TCTaHmsYfHDybGMwO5IJIM93I/6vTRk+daHTWFPhwh+C8Cg7j7XyKrwrj8Ib6vYXe0ocYNrmzY4xAAN6ug==", + "license": "MIT", + "engines": { + "node": ">= 14" + } + }, + "node_modules/formdata-polyfill": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz", + "integrity": "sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==", + "license": "MIT", + "optional": true, + "peer": true, + "dependencies": { + "fetch-blob": "^3.1.2" + }, + "engines": { + "node": ">=12.20.0" + } + }, + "node_modules/forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/from-protobuf-object": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/from-protobuf-object/-/from-protobuf-object-1.0.3.tgz", + "integrity": "sha512-HmFY8jucu6nLCqRoO07RFNmZaoSvcT2op9ZFWV6+SbKGmYgx9afAIyOTiaImsnhWkeEmSX6Ubo2Xo11Ifnweyw==", + "license": "Apache-2.0", + "peerDependencies": { + "google-protobuf": "^3.21.2" + } + }, + "node_modules/fs-constants": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", + "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", + "license": "MIT" + }, + "node_modules/fs-extra": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-2.1.2.tgz", + "integrity": "sha512-9ztMtDZtSKC78V8mev+k31qaTabbmuH5jatdvPBMikrFHvw5BqlYnQIn/WGK3WHeRooSTkRvLa2IPlaHjPq5Sg==", + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.1.2", + "jsonfile": "^2.1.0" + } + }, + "node_modules/fs-promise": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/fs-promise/-/fs-promise-2.0.3.tgz", + "integrity": "sha512-oDrTLBQAcRd+p/tSRWvqitKegLPsvqr7aehs5N9ILWFM9az5y5Uh71jKdZ/DTMC4Kel7+GNCQyFCx/IftRv8yg==", + "deprecated": "Use mz or fs-extra^3.0 with Promise Support", + "license": "MIT", + "dependencies": { + "any-promise": "^1.3.0", + "fs-extra": "^2.0.0", + "mz": "^2.6.0", + "thenify-all": "^1.6.0" + } + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz", - "integrity": "sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==", - "license": "BSD-3-Clause" + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "node_modules/@protobufjs/pool": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz", - "integrity": "sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==", - "license": "BSD-3-Clause" + "node_modules/generic-pool": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/generic-pool/-/generic-pool-3.9.0.tgz", + "integrity": "sha512-hymDOu5B53XvN4QT9dBmZxPX4CWhBPPLguTZ9MMFeFa/Kg0xWVfylOVNlJji/E7yTZWFd/q9GO5TxDLq156D7g==", + "license": "MIT", + "engines": { + "node": ">= 4" + } }, - "node_modules/@protobufjs/utf8": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz", - "integrity": "sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==", - "license": "BSD-3-Clause" + "node_modules/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==", + "license": "ISC", + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-intrinsic": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", + "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "node_modules/@types/long": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/@types/long/-/long-4.0.2.tgz", - "integrity": "sha512-MqTGEo5bj5t157U6fA/BiDynNkn0YknVdh48CMPkTSpFTVmvao5UQmm7uEF6xBEo7qIMAlY/JSleYaE6VOdpaA==", + "node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/github-from-package": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz", + "integrity": "sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==", "license": "MIT" }, - "node_modules/@types/node": { - "version": "22.8.5", - "resolved": "https://registry.npmjs.org/@types/node/-/node-22.8.5.tgz", - "integrity": "sha512-5iYk6AMPtsMbkZqCO1UGF9W5L38twq11S2pYWkybGHH2ogPUvXWNlQqJBzuEZWKj/WRH+QTeiv6ySWqJtvIEgA==", - "license": "MIT", + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "license": "ISC", "dependencies": { - "undici-types": "~6.19.8" + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" } }, - "node_modules/accepts": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", - "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "node_modules/google-protobuf": { + "version": "3.21.4", + "resolved": "https://registry.npmjs.org/google-protobuf/-/google-protobuf-3.21.4.tgz", + "integrity": "sha512-MnG7N936zcKTco4Jd2PX2U96Kf9PxygAPKBug+74LHzmHXmceN16MmRcdgZv+DGef/S9YvQAfRsNCn4cjf9yyQ==", + "license": "(BSD-3-Clause AND Apache-2.0)" + }, + "node_modules/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", "license": "MIT", "dependencies": { - "mime-types": "~2.1.34", - "negotiator": "0.6.3" + "get-intrinsic": "^1.1.3" }, - "engines": { - "node": ">= 0.6" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "license": "ISC" + }, + "node_modules/guid-typescript": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/guid-typescript/-/guid-typescript-1.0.9.tgz", + "integrity": "sha512-Y8T4vYhEfwJOTbouREvG+3XDsjr8E3kIr7uf+JZ0BYloFsttiHU0WfvANVsR7TxNUJa/WpCnw/Ino/p+DeBhBQ==", + "license": "ISC" + }, + "node_modules/handlebars": { + "version": "4.7.8", + "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.8.tgz", + "integrity": "sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==", "license": "MIT", + "dependencies": { + "minimist": "^1.2.5", + "neo-async": "^2.6.2", + "source-map": "^0.6.1", + "wordwrap": "^1.0.0" + }, + "bin": { + "handlebars": "bin/handlebars" + }, "engines": { - "node": ">=8" + "node": ">=0.4.7" + }, + "optionalDependencies": { + "uglify-js": "^3.1.4" } }, - "node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/has-property-descriptors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", "license": "MIT", "dependencies": { - "color-convert": "^2.0.1" + "es-define-property": "^1.0.0" }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", + "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", + "license": "MIT", "engines": { - "node": ">=8" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/anymatch": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", - "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", - "dev": true, - "license": "ISC", - "dependencies": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "license": "MIT", "engines": { - "node": ">= 8" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/anymatch/node_modules/normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "dev": true, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, "engines": { - "node": ">=0.10.0" + "node": ">= 0.4" } }, - "node_modules/append-field": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/append-field/-/append-field-1.0.0.tgz", - "integrity": "sha512-klpgFSWLW1ZEs8svjfb7g4qWY0YS5imI82dTg+QahUvJ8YqAY0P10Uk8tTyh9ZGuYEZEMaeJYCF5BFuX552hsw==", - "license": "MIT" - }, - "node_modules/array-flatten": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", - "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", - "license": "MIT" - }, - "node_modules/asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "node_modules/html-entities": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.5.2.tgz", + "integrity": "sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/mdevils" + }, + { + "type": "patreon", + "url": "https://patreon.com/mdevils" + } + ], "license": "MIT" }, - "node_modules/axios": { - "version": "1.7.7", - "resolved": "https://registry.npmjs.org/axios/-/axios-1.7.7.tgz", - "integrity": "sha512-S4kL7XrjgBmvdGut0sN3yJxqYzrDOnivkBiN0OFs6hLiUam3UPvswUo0kqGyhqUZGEOytHyumEdXsAkgCOUf3Q==", + "node_modules/http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", "license": "MIT", "dependencies": { - "follow-redirects": "^1.15.6", - "form-data": "^4.0.0", - "proxy-from-env": "^1.1.0" + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.8" } }, - "node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "license": "MIT" - }, - "node_modules/binary-extensions": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", - "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", - "dev": true, + "node_modules/humanize-ms": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz", + "integrity": "sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==", "license": "MIT", - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "dependencies": { + "ms": "^2.0.0" } }, - "node_modules/body-parser": { - "version": "1.20.3", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.3.tgz", - "integrity": "sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==", + "node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", "license": "MIT", "dependencies": { - "bytes": "3.1.2", - "content-type": "~1.0.5", - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "on-finished": "2.4.1", - "qs": "6.13.0", - "raw-body": "2.5.2", - "type-is": "~1.6.18", - "unpipe": "1.0.0" + "safer-buffer": ">= 2.1.2 < 3" }, "engines": { - "node": ">= 0.8", - "npm": "1.2.8000 || >= 1.4.16" + "node": ">=0.10.0" } }, - "node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "BSD-3-Clause" + }, + "node_modules/ignore-by-default": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz", + "integrity": "sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==", + "dev": true, + "license": "ISC" + }, + "node_modules/immediate": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/immediate/-/immediate-3.0.6.tgz", + "integrity": "sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==", + "license": "MIT" + }, + "node_modules/immutable": { + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.7.tgz", + "integrity": "sha512-1hqclzwYwjRDFLjcFxOM5AYkkG0rpFPpr1RLPMEuGczoS7YA8gLhy8SWXYRAA/XwfEHpfo3cw5JGioS32fnMRw==", + "license": "MIT" + }, + "node_modules/infobox-parser": { + "version": "3.6.4", + "resolved": "https://registry.npmjs.org/infobox-parser/-/infobox-parser-3.6.4.tgz", + "integrity": "sha512-d2lTlxKZX7WsYxk9/UPt51nkmZv5tbC75SSw4hfHqZ3LpRAn6ug0oru9xI2X+S78va3aUAze3xl/UqMuwLmJUw==", "license": "MIT", "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" + "camelcase": "^4.1.0" + }, + "funding": { + "type": "individual", + "url": "https://www.buymeacoffee.com/2tmRKi9" } }, - "node_modules/braces": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", - "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "license": "ISC" + }, + "node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "license": "ISC" + }, + "node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", "license": "MIT", - "dependencies": { - "fill-range": "^7.1.1" - }, "engines": { - "node": ">=8" + "node": ">= 0.10" } }, - "node_modules/buffer-from": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", - "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "node_modules/is-arrayish": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", + "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==", "license": "MIT" }, - "node_modules/busboy": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", - "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "license": "MIT", "dependencies": { - "streamsearch": "^1.1.0" + "binary-extensions": "^2.0.0" }, "engines": { - "node": ">=10.16.0" + "node": ">=8" } }, - "node_modules/bytes": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", "license": "MIT", "engines": { - "node": ">= 0.8" + "node": ">=0.10.0" } }, - "node_modules/call-bind": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", - "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", "license": "MIT", - "dependencies": { - "es-define-property": "^1.0.0", - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.4", - "set-function-length": "^1.2.1" - }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=8" } }, - "node_modules/chokidar": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", - "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", - "dev": true, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", "license": "MIT", "dependencies": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" + "is-extglob": "^2.1.1" }, "engines": { - "node": ">= 8.10.0" - }, - "funding": { - "url": "https://paulmillr.com/funding/" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" + "node": ">=0.10.0" } }, - "node_modules/chokidar/node_modules/normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "dev": true, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", "license": "MIT", "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/clarifai-nodejs-grpc": { - "version": "10.9.8", - "resolved": "https://registry.npmjs.org/clarifai-nodejs-grpc/-/clarifai-nodejs-grpc-10.9.8.tgz", - "integrity": "sha512-VgghrvXl2pGb2iOW9fAH2g14b+5Iw1j2afzRASh+Ux5O+E96LRT85ES+KOLtRFS7b+Ug/0PnmKkqRWKb2nJ6dw==", - "license": "Apache-2.0", - "dependencies": { - "@grpc/grpc-js": "^1.4.2", - "@grpc/proto-loader": "^0.5.5", - "axios": "^0.21.1", - "google-protobuf": "^3.14.0", - "protobufjs": "^6.10.2" + "node": ">=0.12.0" } }, - "node_modules/clarifai-nodejs-grpc/node_modules/axios": { - "version": "0.21.4", - "resolved": "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz", - "integrity": "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==", + "node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", "license": "MIT", - "dependencies": { - "follow-redirects": "^1.14.0" - } - }, - "node_modules/cliui": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", - "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", - "license": "ISC", - "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.1", - "wrap-ansi": "^7.0.0" - }, "engines": { - "node": ">=12" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/color": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/color/-/color-4.2.3.tgz", - "integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==", + "node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "license": "MIT" + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "license": "ISC" + }, + "node_modules/isomorphic-fetch": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/isomorphic-fetch/-/isomorphic-fetch-3.0.0.tgz", + "integrity": "sha512-qvUtwJ3j6qwsF3jLxkZ72qCgjMysPzDfeV240JHiGZsANBYd+EEuu35v7dfrJ9Up0Ak07D7GGSkGhCHTqg/5wA==", "license": "MIT", "dependencies": { - "color-convert": "^2.0.1", - "color-string": "^1.9.0" - }, - "engines": { - "node": ">=12.5.0" + "node-fetch": "^2.6.1", + "whatwg-fetch": "^3.4.1" } }, - "node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "license": "MIT", + "node_modules/jackspeak": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", + "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", + "license": "BlueOak-1.0.0", "dependencies": { - "color-name": "~1.1.4" + "@isaacs/cliui": "^8.0.2" }, - "engines": { - "node": ">=7.0.0" + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" } }, - "node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "license": "MIT" + "node_modules/js-base64": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-3.7.2.tgz", + "integrity": "sha512-NnRs6dsyqUXejqk/yv2aiXlAvOs56sLkX6nUdeaNezI5LFFLlsZjOThmwnrcwh5ZZRwZlCMnVAY3CvhIhoVEKQ==", + "license": "BSD-3-Clause" }, - "node_modules/color-string": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", - "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", + "node_modules/js-tiktoken": { + "version": "1.0.15", + "resolved": "https://registry.npmjs.org/js-tiktoken/-/js-tiktoken-1.0.15.tgz", + "integrity": "sha512-65ruOWWXDEZHHbAo7EjOcNxOGasQKbL4Fq3jEr2xsCqSsoOo6VVSqzWQb6PRIqypFSDcma4jO90YP0w5X8qVXQ==", "license": "MIT", "dependencies": { - "color-name": "^1.0.0", - "simple-swizzle": "^0.2.2" + "base64-js": "^1.5.1" } }, - "node_modules/combined-stream": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", "license": "MIT", "dependencies": { - "delayed-stream": "~1.0.0" + "argparse": "^2.0.1" }, - "engines": { - "node": ">= 0.8" + "bin": { + "js-yaml": "bin/js-yaml.js" } }, - "node_modules/concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", - "dev": true, + "node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", "license": "MIT" }, - "node_modules/concat-stream": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", - "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", - "engines": [ - "node >= 0.8" - ], + "node_modules/jsonfile": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-2.4.0.tgz", + "integrity": "sha512-PKllAqbgLgxHaj8TElYymKCAgrASebJrWpTnEkOaTowt23VKXXN0sUeriJ+eh7y6ufb/CC5ap11pz71/cM0hUw==", "license": "MIT", - "dependencies": { - "buffer-from": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^2.2.2", - "typedarray": "^0.0.6" + "optionalDependencies": { + "graceful-fs": "^4.1.6" } }, - "node_modules/content-disposition": { - "version": "0.5.4", - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", - "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", - "license": "MIT", + "node_modules/jszip": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/jszip/-/jszip-3.10.1.tgz", + "integrity": "sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g==", + "license": "(MIT OR GPL-3.0-or-later)", "dependencies": { - "safe-buffer": "5.2.1" - }, - "engines": { - "node": ">= 0.6" + "lie": "~3.3.0", + "pako": "~1.0.2", + "readable-stream": "~2.3.6", + "setimmediate": "^1.0.5" } }, - "node_modules/content-type": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", - "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "node_modules/kuler": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/kuler/-/kuler-2.0.0.tgz", + "integrity": "sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A==", + "license": "MIT" + }, + "node_modules/lie": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/lie/-/lie-3.3.0.tgz", + "integrity": "sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==", "license": "MIT", - "engines": { - "node": ">= 0.6" + "dependencies": { + "immediate": "~3.0.5" } }, - "node_modules/cookie": { - "version": "0.7.1", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.1.tgz", - "integrity": "sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==", + "node_modules/llamaindex": { + "version": "0.2.13", + "resolved": "https://registry.npmjs.org/llamaindex/-/llamaindex-0.2.13.tgz", + "integrity": "sha512-su10fCizI5uGjCPAV+J3TwrjuSxUoptmdN/KBv0aQejN/mPY0M4Bmz9Xw4pKRs8hHfwnFLqv6AM8n64H1GqMrg==", "license": "MIT", + "dependencies": { + "@anthropic-ai/sdk": "^0.20.6", + "@aws-crypto/sha256-js": "^5.2.0", + "@datastax/astra-db-ts": "^1.0.1", + "@google/generative-ai": "^0.8.0", + "@grpc/grpc-js": "^1.10.6", + "@llamaindex/cloud": "0.0.5", + "@llamaindex/env": "0.0.7", + "@mistralai/mistralai": "^0.1.3", + "@pinecone-database/pinecone": "^2.2.0", + "@qdrant/js-client-rest": "^1.8.2", + "@types/lodash": "^4.17.0", + "@types/node": "^20.12.7", + "@types/papaparse": "^5.3.14", + "@types/pg": "^8.11.5", + "@xenova/transformers": "^2.17.1", + "@zilliz/milvus2-sdk-node": "^2.4.1", + "ajv": "^8.12.0", + "assemblyai": "^4.4.1", + "chromadb": "~1.7.3", + "cohere-ai": "^7.9.5", + "js-tiktoken": "^1.0.11", + "lodash": "^4.17.21", + "magic-bytes.js": "^1.10.0", + "mammoth": "^1.7.1", + "md-utils-ts": "^2.0.0", + "mongodb": "^6.5.0", + "notion-md-crawler": "^1.0.0", + "ollama": "^0.5.0", + "openai": "^4.38.0", + "papaparse": "^5.4.1", + "pathe": "^1.1.2", + "pdf2json": "^3.0.5", + "pg": "^8.11.5", + "pgvector": "^0.1.8", + "portkey-ai": "^0.1.16", + "rake-modified": "^1.0.8", + "string-strip-html": "^13.4.8", + "wikipedia": "^2.1.2", + "wink-nlp": "^1.14.3" + }, + "engines": { + "node": ">=18.0.0" + }, + "peerDependencies": { + "@notionhq/client": "^2.2.15" + } + }, + "node_modules/llamaindex/node_modules/@google/generative-ai": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/@google/generative-ai/-/generative-ai-0.8.0.tgz", + "integrity": "sha512-O55FgK1Jvl2JuJP1cnRHEAM8A4Lr3yKtjQrCn2QXOXVT+L5+o/nFQcx0/oIo3oq1Kq9TjjgewXyb9BBrK+Wd0A==", + "license": "Apache-2.0", "engines": { - "node": ">= 0.6" + "node": ">=18.0.0" } }, - "node_modules/cookie-signature": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", - "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", - "license": "MIT" - }, - "node_modules/core-util-is": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", - "license": "MIT" - }, - "node_modules/cors": { - "version": "2.8.5", - "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", - "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", - "license": "MIT", + "node_modules/llamaindex/node_modules/@llamaindex/cloud": { + "version": "0.0.5", + "resolved": "https://registry.npmjs.org/@llamaindex/cloud/-/cloud-0.0.5.tgz", + "integrity": "sha512-8HBSiAZkmX1RvpEM2czEVKqMUCKk7uvMSiDpMGWlEj3MUKBYCh+r8E2TtVhZfU4TunEI7nJRMcVBfXDyFz6Lpw==", "dependencies": { - "object-assign": "^4", - "vary": "^1" + "@types/qs": "^6.9.12", + "form-data": "^4.0.0", + "js-base64": "^3.7.7", + "qs": "^6.12.0" }, - "engines": { - "node": ">= 0.10" + "peerDependencies": { + "node-fetch": "^3.3.2" + }, + "peerDependenciesMeta": { + "node-fetch": { + "optional": true + } } }, - "node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "license": "MIT", + "node_modules/llamaindex/node_modules/@llamaindex/env": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/@llamaindex/env/-/env-0.0.7.tgz", + "integrity": "sha512-6j7eGXhSDspz33FzdWJRTbGlXa3osYP/aP9dm10Z7JCxaxyQZmGIWL149HNkGgV4lxiPmGPx7YWjBBj9nRdo2w==", "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" + "@types/lodash": "^4.14.202", + "@types/node": "^20.11.20", + "lodash": "^4.17.21" }, - "engines": { - "node": ">= 8" + "peerDependencies": { + "@aws-crypto/sha256-js": "^5.2.0", + "pathe": "^1.1.2", + "readable-stream": "^4.5.2" } }, - "node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "node_modules/llamaindex/node_modules/@types/node": { + "version": "20.17.6", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.17.6.tgz", + "integrity": "sha512-VEI7OdvK2wP7XHnsuXbAJnEpEkF6NjSN45QJlL4VGqZSXsnicpesdTWsg9RISeSdYd3yeRj/y3k5KGjUXYnFwQ==", "license": "MIT", "dependencies": { - "ms": "2.0.0" + "undici-types": "~6.19.2" } }, - "node_modules/define-data-property": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", - "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", + "node_modules/llamaindex/node_modules/js-base64": { + "version": "3.7.7", + "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-3.7.7.tgz", + "integrity": "sha512-7rCnleh0z2CkXhH67J8K1Ytz0b2Y+yxTPL+/KOJoa20hfnVQ/3/T6W/KflYI4bRHRagNeXeU2bkNGI3v1oS/lw==", + "license": "BSD-3-Clause" + }, + "node_modules/llamaindex/node_modules/node-fetch": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.3.2.tgz", + "integrity": "sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==", "license": "MIT", + "optional": true, + "peer": true, "dependencies": { - "es-define-property": "^1.0.0", - "es-errors": "^1.3.0", - "gopd": "^1.0.1" + "data-uri-to-buffer": "^4.0.0", + "fetch-blob": "^3.1.4", + "formdata-polyfill": "^4.0.10" }, "engines": { - "node": ">= 0.4" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "type": "opencollective", + "url": "https://opencollective.com/node-fetch" } }, - "node_modules/delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "node_modules/llamaindex/node_modules/readable-stream": { + "version": "4.5.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-4.5.2.tgz", + "integrity": "sha512-yjavECdqeZ3GLXNgRXgeQEdz9fvDDkNKyHnbHRFtOr7/LcfgBcmct7t/ET+HaCTqfh06OzoAxrkN/IfjJBVe+g==", "license": "MIT", + "peer": true, + "dependencies": { + "abort-controller": "^3.0.0", + "buffer": "^6.0.3", + "events": "^3.3.0", + "process": "^0.11.10", + "string_decoder": "^1.3.0" + }, "engines": { - "node": ">=0.4.0" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" } }, - "node_modules/depd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", - "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "node_modules/llamaindex/node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", "license": "MIT", - "engines": { - "node": ">= 0.8" + "peer": true, + "dependencies": { + "safe-buffer": "~5.2.0" } }, - "node_modules/destroy": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", - "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", - "license": "MIT", - "engines": { - "node": ">= 0.8", - "npm": "1.2.8000 || >= 1.4.16" - } + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "license": "MIT" }, - "node_modules/detect-libc": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz", - "integrity": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==", - "license": "Apache-2.0", - "bin": { - "detect-libc": "bin/detect-libc.js" - }, - "engines": { - "node": ">=0.10" - } + "node_modules/lodash-es": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz", + "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==", + "license": "MIT" }, - "node_modules/dotenv": { - "version": "16.4.5", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.5.tgz", - "integrity": "sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==", - "license": "BSD-2-Clause", - "engines": { - "node": ">=12" + "node_modules/lodash.camelcase": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", + "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==", + "license": "MIT" + }, + "node_modules/logform": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/logform/-/logform-2.7.0.tgz", + "integrity": "sha512-TFYA4jnP7PVbmlBIfhlSe+WKxs9dklXMTEGcBCIvLhE/Tn3H6Gk1norupVW7m5Cnd4bLcr08AytbyV/xj7f/kQ==", + "license": "MIT", + "dependencies": { + "@colors/colors": "1.6.0", + "@types/triple-beam": "^1.3.2", + "fecha": "^4.2.0", + "ms": "^2.1.1", + "safe-stable-stringify": "^2.3.1", + "triple-beam": "^1.3.0" }, - "funding": { - "url": "https://dotenvx.com" + "engines": { + "node": ">= 12.0.0" } }, - "node_modules/eastasianwidth": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", - "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "node_modules/logform/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", "license": "MIT" }, - "node_modules/ee-first": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", - "license": "MIT" + "node_modules/long": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/long/-/long-4.0.0.tgz", + "integrity": "sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==", + "license": "Apache-2.0" }, - "node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "license": "MIT" + "node_modules/lop": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/lop/-/lop-0.4.2.tgz", + "integrity": "sha512-RefILVDQ4DKoRZsJ4Pj22TxE3omDO47yFpkIBoDKzkqPRISs5U1cnAdg/5583YPkWPaLIYHOKRMQSvjFsO26cw==", + "license": "BSD-2-Clause", + "dependencies": { + "duck": "^0.1.12", + "option": "~0.2.1", + "underscore": "^1.13.1" + } }, - "node_modules/encodeurl": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", - "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==", - "license": "MIT", + "node_modules/lru-cache": { + "version": "9.1.2", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-9.1.2.tgz", + "integrity": "sha512-ERJq3FOzJTxBbFjZ7iDs+NiK4VI9Wz+RdrrAB8dio1oV+YvdPzUEE4QNiT2VD51DkIbCYRUUzCRkssXCHqSnKQ==", + "license": "ISC", "engines": { - "node": ">= 0.8" + "node": "14 || >=16.14" } }, - "node_modules/es-define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", - "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", - "license": "MIT", + "node_modules/magic-bytes.js": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/magic-bytes.js/-/magic-bytes.js-1.10.0.tgz", + "integrity": "sha512-/k20Lg2q8LE5xiaaSkMXk4sfvI+9EGEykFS4b0CHHGWqDYU0bGUFSwchNOMA56D7TCs9GwVTkqe9als1/ns8UQ==", + "license": "MIT" + }, + "node_modules/mammoth": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/mammoth/-/mammoth-1.8.0.tgz", + "integrity": "sha512-pJNfxSk9IEGVpau+tsZFz22ofjUsl2mnA5eT8PjPs2n0BP+rhVte4Nez6FdgEuxv3IGI3afiV46ImKqTGDVlbA==", + "license": "BSD-2-Clause", "dependencies": { - "get-intrinsic": "^1.2.4" + "@xmldom/xmldom": "^0.8.6", + "argparse": "~1.0.3", + "base64-js": "^1.5.1", + "bluebird": "~3.4.0", + "dingbat-to-unicode": "^1.0.1", + "jszip": "^3.7.1", + "lop": "^0.4.1", + "path-is-absolute": "^1.0.0", + "underscore": "^1.13.1", + "xmlbuilder": "^10.0.0" + }, + "bin": { + "mammoth": "bin/mammoth" }, "engines": { - "node": ">= 0.4" + "node": ">=12.0.0" } }, - "node_modules/es-errors": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", - "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "node_modules/mammoth/node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", "license": "MIT", - "engines": { - "node": ">= 0.4" + "dependencies": { + "sprintf-js": "~1.0.2" } }, - "node_modules/escalade": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", - "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "node_modules/md-utils-ts": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/md-utils-ts/-/md-utils-ts-2.0.0.tgz", + "integrity": "sha512-sMG6JtX0ebcRMHxYTcmgsh0/m6o8hGdQHFE2OgjvflRZlQM51CGGj/uuk056D+12BlCiW0aTpt/AdlDNtgQiew==", + "license": "MIT" + }, + "node_modules/media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", "license": "MIT", "engines": { - "node": ">=6" + "node": ">= 0.6" } }, - "node_modules/escape-html": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", + "node_modules/memory-pager": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/memory-pager/-/memory-pager-1.5.0.tgz", + "integrity": "sha512-ZS4Bp4r/Zoeq6+NLJpP+0Zzm0pR8whtGPf1XExKLJBAczGMnSi3It14OiNCStjQjM6NU1okjQGSxgEZN8eBYKg==", "license": "MIT" }, - "node_modules/etag": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "node_modules/merge-descriptors": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz", + "integrity": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==", "license": "MIT", - "engines": { - "node": ">= 0.6" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/express": { - "version": "4.21.1", - "resolved": "https://registry.npmjs.org/express/-/express-4.21.1.tgz", - "integrity": "sha512-YSFlK1Ee0/GC8QaO91tHcDxJiE/X4FbpAyQWkxAvG6AXCuR65YzK8ua6D9hvi/TzUfZMpc+BwuM1IPw8fmQBiQ==", + "node_modules/methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", "license": "MIT", - "dependencies": { - "accepts": "~1.3.8", - "array-flatten": "1.1.1", - "body-parser": "1.20.3", - "content-disposition": "0.5.4", - "content-type": "~1.0.4", - "cookie": "0.7.1", - "cookie-signature": "1.0.6", - "debug": "2.6.9", - "depd": "2.0.0", - "encodeurl": "~2.0.0", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "finalhandler": "1.3.1", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "merge-descriptors": "1.0.3", - "methods": "~1.1.2", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "path-to-regexp": "0.1.10", - "proxy-addr": "~2.0.7", - "qs": "6.13.0", - "range-parser": "~1.2.1", - "safe-buffer": "5.2.1", - "send": "0.19.0", - "serve-static": "1.16.2", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "type-is": "~1.6.18", - "utils-merge": "1.0.1", - "vary": "~1.1.2" - }, "engines": { - "node": ">= 0.10.0" + "node": ">= 0.6" } }, - "node_modules/express-handlebars": { - "version": "7.1.3", - "resolved": "https://registry.npmjs.org/express-handlebars/-/express-handlebars-7.1.3.tgz", - "integrity": "sha512-O0W4n14iQ8+iFIDdiMh9HRI2nbVQJ/h1qndlD1TXWxxcfbKjKoqJh+ti2tROkyx4C4VQrt0y3bANBQ5auQAiew==", - "license": "BSD-3-Clause", + "node_modules/micromatch": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", + "license": "MIT", "dependencies": { - "glob": "^10.4.2", - "graceful-fs": "^4.2.11", - "handlebars": "^4.7.8" + "braces": "^3.0.3", + "picomatch": "^2.3.1" }, "engines": { - "node": ">=v16" + "node": ">=8.6" } }, - "node_modules/express-handlebars/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0" + "engines": { + "node": ">= 0.6" } }, - "node_modules/express-handlebars/node_modules/glob": { - "version": "10.4.5", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", - "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", - "license": "ISC", + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "license": "MIT", "dependencies": { - "foreground-child": "^3.1.0", - "jackspeak": "^3.1.2", - "minimatch": "^9.0.4", - "minipass": "^7.1.2", - "package-json-from-dist": "^1.0.0", - "path-scurry": "^1.11.1" - }, - "bin": { - "glob": "dist/esm/bin.mjs" + "mime-db": "1.52.0" }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "engines": { + "node": ">= 0.6" } }, - "node_modules/express-handlebars/node_modules/minimatch": { - "version": "9.0.5", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", - "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", - "license": "ISC", - "dependencies": { - "brace-expansion": "^2.0.1" - }, + "node_modules/mimic-response": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", + "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", + "license": "MIT", "engines": { - "node": ">=16 || 14 >=14.17" + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/express-handlebars/node_modules/minipass": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", - "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, "engines": { - "node": ">=16 || 14 >=14.17" + "node": "*" } }, - "node_modules/fill-range": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", - "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", "license": "MIT", - "dependencies": { - "to-regex-range": "^5.0.1" - }, - "engines": { - "node": ">=8" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/finalhandler": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.1.tgz", - "integrity": "sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==", + "node_modules/mkdirp": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", "license": "MIT", "dependencies": { - "debug": "2.6.9", - "encodeurl": "~2.0.0", - "escape-html": "~1.0.3", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "statuses": "2.0.1", - "unpipe": "~1.0.0" + "minimist": "^1.2.6" }, - "engines": { - "node": ">= 0.8" + "bin": { + "mkdirp": "bin/cmd.js" } }, - "node_modules/follow-redirects": { - "version": "1.15.9", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.9.tgz", - "integrity": "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==", - "funding": [ - { - "type": "individual", - "url": "https://github.com/sponsors/RubenVerborgh" - } - ], - "license": "MIT", + "node_modules/mkdirp-classic": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", + "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==", + "license": "MIT" + }, + "node_modules/mongodb": { + "version": "6.10.0", + "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-6.10.0.tgz", + "integrity": "sha512-gP9vduuYWb9ZkDM546M+MP2qKVk5ZG2wPF63OvSRuUbqCR+11ZCAE1mOfllhlAG0wcoJY5yDL/rV3OmYEwXIzg==", + "license": "Apache-2.0", + "dependencies": { + "@mongodb-js/saslprep": "^1.1.5", + "bson": "^6.7.0", + "mongodb-connection-string-url": "^3.0.0" + }, "engines": { - "node": ">=4.0" + "node": ">=16.20.1" + }, + "peerDependencies": { + "@aws-sdk/credential-providers": "^3.188.0", + "@mongodb-js/zstd": "^1.1.0", + "gcp-metadata": "^5.2.0", + "kerberos": "^2.0.1", + "mongodb-client-encryption": ">=6.0.0 <7", + "snappy": "^7.2.2", + "socks": "^2.7.1" }, "peerDependenciesMeta": { - "debug": { + "@aws-sdk/credential-providers": { + "optional": true + }, + "@mongodb-js/zstd": { + "optional": true + }, + "gcp-metadata": { + "optional": true + }, + "kerberos": { + "optional": true + }, + "mongodb-client-encryption": { + "optional": true + }, + "snappy": { + "optional": true + }, + "socks": { "optional": true } } }, - "node_modules/foreground-child": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.0.tgz", - "integrity": "sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==", - "license": "ISC", + "node_modules/mongodb-connection-string-url": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/mongodb-connection-string-url/-/mongodb-connection-string-url-3.0.1.tgz", + "integrity": "sha512-XqMGwRX0Lgn05TDB4PyG2h2kKO/FfWJyCzYQbIhXUxz7ETt0I/FqHjUeqj37irJ+Dl1ZtU82uYyj14u2XsZKfg==", + "license": "Apache-2.0", "dependencies": { - "cross-spawn": "^7.0.0", - "signal-exit": "^4.0.1" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "@types/whatwg-url": "^11.0.2", + "whatwg-url": "^13.0.0" } }, - "node_modules/foreground-child/node_modules/signal-exit": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", - "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", - "license": "ISC", - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } + "node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" }, - "node_modules/form-data": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.1.tgz", - "integrity": "sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw==", + "node_modules/multer": { + "version": "1.4.5-lts.1", + "resolved": "https://registry.npmjs.org/multer/-/multer-1.4.5-lts.1.tgz", + "integrity": "sha512-ywPWvcDMeH+z9gQq5qYHCCy+ethsk4goepZ45GLD63fOu0YcNecQxi64nDs3qluZB+murG3/D4dJ7+dGctcCQQ==", "license": "MIT", "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" + "append-field": "^1.0.0", + "busboy": "^1.0.0", + "concat-stream": "^1.5.2", + "mkdirp": "^0.5.4", + "object-assign": "^4.1.1", + "type-is": "^1.6.4", + "xtend": "^4.0.0" }, "engines": { - "node": ">= 6" + "node": ">= 6.0.0" } }, - "node_modules/forwarded": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", - "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "node_modules/mz": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", + "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", "license": "MIT", - "engines": { - "node": ">= 0.6" + "dependencies": { + "any-promise": "^1.0.0", + "object-assign": "^4.0.1", + "thenify-all": "^1.0.0" } }, - "node_modules/fresh": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "node_modules/napi-build-utils": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/napi-build-utils/-/napi-build-utils-1.0.2.tgz", + "integrity": "sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==", + "license": "MIT" + }, + "node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", "license": "MIT", "engines": { "node": ">= 0.6" } }, - "node_modules/fsevents": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", - "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", - "dev": true, - "hasInstallScript": true, + "node_modules/neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "license": "MIT" + }, + "node_modules/node-abi": { + "version": "3.71.0", + "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.71.0.tgz", + "integrity": "sha512-SZ40vRiy/+wRTf21hxkkEjPJZpARzUMVcJoQse2EF8qkUWbbO2z7vd5oA/H6bVH6SZQ5STGcu0KRDS7biNRfxw==", "license": "MIT", - "optional": true, - "os": [ - "darwin" - ], + "dependencies": { + "semver": "^7.3.5" + }, "engines": { - "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + "node": ">=10" } }, - "node_modules/function-bind": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", - "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "node_modules/node-addon-api": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.1.tgz", + "integrity": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==", + "license": "MIT" + }, + "node_modules/node-domexception": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz", + "integrity": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/jimmywarting" + }, + { + "type": "github", + "url": "https://paypal.me/jimmywarting" + } + ], "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=10.5.0" } }, - "node_modules/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==", - "license": "ISC", + "node_modules/node-fetch": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", + "license": "MIT", + "dependencies": { + "whatwg-url": "^5.0.0" + }, "engines": { - "node": "6.* || 8.* || >= 10.*" + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } } }, - "node_modules/get-intrinsic": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", - "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", + "node_modules/node-fetch/node_modules/tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", + "license": "MIT" + }, + "node_modules/node-fetch/node_modules/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", + "license": "BSD-2-Clause" + }, + "node_modules/node-fetch/node_modules/whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", "license": "MIT", "dependencies": { - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "hasown": "^2.0.0" + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, + "node_modules/nodemon": { + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-3.1.7.tgz", + "integrity": "sha512-hLj7fuMow6f0lbB0cD14Lz2xNjwsyruH251Pk4t/yIitCFJbmY1myuLlHm/q06aST4jg6EgAh74PIBBrRqpVAQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "chokidar": "^3.5.2", + "debug": "^4", + "ignore-by-default": "^1.0.1", + "minimatch": "^3.1.2", + "pstree.remy": "^1.1.8", + "semver": "^7.5.3", + "simple-update-notifier": "^2.0.0", + "supports-color": "^5.5.0", + "touch": "^3.1.0", + "undefsafe": "^2.0.5" + }, + "bin": { + "nodemon": "bin/nodemon.js" }, "engines": { - "node": ">= 0.4" + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "type": "opencollective", + "url": "https://opencollective.com/nodemon" } }, - "node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "node_modules/nodemon/node_modules/debug": { + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", + "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", "dev": true, - "license": "ISC", + "license": "MIT", "dependencies": { - "is-glob": "^4.0.1" + "ms": "^2.1.3" }, "engines": { - "node": ">= 6" + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } } }, - "node_modules/google-protobuf": { - "version": "3.21.4", - "resolved": "https://registry.npmjs.org/google-protobuf/-/google-protobuf-3.21.4.tgz", - "integrity": "sha512-MnG7N936zcKTco4Jd2PX2U96Kf9PxygAPKBug+74LHzmHXmceN16MmRcdgZv+DGef/S9YvQAfRsNCn4cjf9yyQ==", - "license": "(BSD-3-Clause AND Apache-2.0)" - }, - "node_modules/gopd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", - "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "node_modules/nodemon/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, "license": "MIT", - "dependencies": { - "get-intrinsic": "^1.1.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=4" } }, - "node_modules/graceful-fs": { - "version": "4.2.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", - "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", - "license": "ISC" + "node_modules/nodemon/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true, + "license": "MIT" }, - "node_modules/handlebars": { - "version": "4.7.8", - "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.8.tgz", - "integrity": "sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==", + "node_modules/nodemon/node_modules/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, "license": "MIT", "dependencies": { - "minimist": "^1.2.5", - "neo-async": "^2.6.2", - "source-map": "^0.6.1", - "wordwrap": "^1.0.0" - }, - "bin": { - "handlebars": "bin/handlebars" + "has-flag": "^3.0.0" }, "engines": { - "node": ">=0.4.7" - }, - "optionalDependencies": { - "uglify-js": "^3.1.4" + "node": ">=4" } }, - "node_modules/has-property-descriptors": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", - "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", + "node_modules/notion-md-crawler": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/notion-md-crawler/-/notion-md-crawler-1.0.0.tgz", + "integrity": "sha512-mdB6zn/i32qO2C7X7wZLDpWvFryO3bPYMuBfFgmTPomnfEtIejdQJNVaZzw2GapM82lfWZ5dfsZp3s3UL4p1Fg==", "license": "MIT", "dependencies": { - "es-define-property": "^1.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "@notionhq/client": "^2.2.12", + "md-utils-ts": "^2.0.0" } }, - "node_modules/has-proto": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", - "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", "license": "MIT", "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=0.10.0" } }, - "node_modules/has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "node_modules/object-inspect": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.2.tgz", + "integrity": "sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==", "license": "MIT", "engines": { "node": ">= 0.4" @@ -1870,492 +6026,577 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/hasown": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", - "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "node_modules/obuf": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", + "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==", + "license": "MIT" + }, + "node_modules/ollama": { + "version": "0.5.9", + "resolved": "https://registry.npmjs.org/ollama/-/ollama-0.5.9.tgz", + "integrity": "sha512-F/KZuDRC+ZsVCuMvcOYuQ6zj42/idzCkkuknGyyGVmNStMZ/sU3jQpvhnl4SyC0+zBzLiKNZJnJeuPFuieWZvQ==", "license": "MIT", "dependencies": { - "function-bind": "^1.1.2" - }, - "engines": { - "node": ">= 0.4" + "whatwg-fetch": "^3.6.20" } }, - "node_modules/http-errors": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", - "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", "license": "MIT", "dependencies": { - "depd": "2.0.0", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "toidentifier": "1.0.1" + "ee-first": "1.1.1" }, "engines": { "node": ">= 0.8" } }, - "node_modules/iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "license": "ISC", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/one-time": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/one-time/-/one-time-1.0.0.tgz", + "integrity": "sha512-5DXOiRKwuSEcQ/l0kGCF6Q3jcADFv5tSmRaJck/OqkVFcOzutB134KRSfF0xDrL39MNnqxbHBbUUcjZIhTgb2g==", "license": "MIT", "dependencies": { - "safer-buffer": ">= 2.1.2 < 3" - }, - "engines": { - "node": ">=0.10.0" + "fn.name": "1.x.x" } }, - "node_modules/ignore-by-default": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz", - "integrity": "sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==", - "dev": true, - "license": "ISC" + "node_modules/onnx-proto": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/onnx-proto/-/onnx-proto-4.0.4.tgz", + "integrity": "sha512-aldMOB3HRoo6q/phyB6QRQxSt895HNNw82BNyZ2CMh4bjeKv7g/c+VpAFtJuEMVfYLMbRx61hbuqnKceLeDcDA==", + "license": "MIT", + "dependencies": { + "protobufjs": "^6.8.8" + } }, - "node_modules/immutable": { - "version": "4.3.7", - "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.7.tgz", - "integrity": "sha512-1hqclzwYwjRDFLjcFxOM5AYkkG0rpFPpr1RLPMEuGczoS7YA8gLhy8SWXYRAA/XwfEHpfo3cw5JGioS32fnMRw==", + "node_modules/onnxruntime-common": { + "version": "1.14.0", + "resolved": "https://registry.npmjs.org/onnxruntime-common/-/onnxruntime-common-1.14.0.tgz", + "integrity": "sha512-3LJpegM2iMNRX2wUmtYfeX/ytfOzNwAWKSq1HbRrKc9+uqG/FsEA0bbKZl1btQeZaXhC26l44NWpNUeXPII7Ew==", "license": "MIT" }, - "node_modules/inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", - "license": "ISC" - }, - "node_modules/ipaddr.js": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", - "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "node_modules/onnxruntime-node": { + "version": "1.14.0", + "resolved": "https://registry.npmjs.org/onnxruntime-node/-/onnxruntime-node-1.14.0.tgz", + "integrity": "sha512-5ba7TWomIV/9b6NH/1x/8QEeowsb+jBEvFzU6z0T4mNsFwdPqXeFUM7uxC6QeSRkEbWu3qEB0VMjrvzN/0S9+w==", "license": "MIT", - "engines": { - "node": ">= 0.10" + "optional": true, + "os": [ + "win32", + "darwin", + "linux" + ], + "dependencies": { + "onnxruntime-common": "~1.14.0" } }, - "node_modules/is-arrayish": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", - "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==", - "license": "MIT" - }, - "node_modules/is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", - "dev": true, + "node_modules/onnxruntime-web": { + "version": "1.14.0", + "resolved": "https://registry.npmjs.org/onnxruntime-web/-/onnxruntime-web-1.14.0.tgz", + "integrity": "sha512-Kcqf43UMfW8mCydVGcX9OMXI2VN17c0p6XvR7IPSZzBf/6lteBzXHvcEVWDPmCKuGombl997HgLqj91F11DzXw==", "license": "MIT", "dependencies": { - "binary-extensions": "^2.0.0" + "flatbuffers": "^1.12.0", + "guid-typescript": "^1.0.9", + "long": "^4.0.0", + "onnx-proto": "^4.0.4", + "onnxruntime-common": "~1.14.0", + "platform": "^1.3.6" + } + }, + "node_modules/openai": { + "version": "4.71.1", + "resolved": "https://registry.npmjs.org/openai/-/openai-4.71.1.tgz", + "integrity": "sha512-C6JNMaQ1eijM0lrjiRUL3MgThVP5RdwNAghpbJFdW0t11LzmyqON8Eh8MuUuEZ+CeD6bgYl2Fkn2BoptVxv9Ug==", + "license": "Apache-2.0", + "dependencies": { + "@types/node": "^18.11.18", + "@types/node-fetch": "^2.6.4", + "abort-controller": "^3.0.0", + "agentkeepalive": "^4.2.1", + "form-data-encoder": "1.7.2", + "formdata-node": "^4.3.2", + "node-fetch": "^2.6.7" }, - "engines": { - "node": ">=8" + "bin": { + "openai": "bin/cli" + }, + "peerDependencies": { + "zod": "^3.23.8" + }, + "peerDependenciesMeta": { + "zod": { + "optional": true + } } }, - "node_modules/is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "node_modules/openai/node_modules/@types/node": { + "version": "18.19.64", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.64.tgz", + "integrity": "sha512-955mDqvO2vFf/oL7V3WiUtiz+BugyX8uVbaT2H8oj3+8dRyH2FLiNdowe7eNqRM7IOIZvzDH76EoAT+gwm6aIQ==", "license": "MIT", - "engines": { - "node": ">=0.10.0" + "dependencies": { + "undici-types": "~5.26.4" } }, - "node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "node_modules/openai/node_modules/undici-types": { + "version": "5.26.5", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", + "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", + "license": "MIT" + }, + "node_modules/option": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/option/-/option-0.2.4.tgz", + "integrity": "sha512-pkEqbDyl8ou5cpq+VsnQbe/WlEy5qS7xPzMS1U55OCG9KPvwFD46zDbxQIj3egJSFc3D+XhYOPUzz49zQAVy7A==", + "license": "BSD-2-Clause" + }, + "node_modules/package-json-from-dist": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", + "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", + "license": "BlueOak-1.0.0" + }, + "node_modules/pako": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", + "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==", + "license": "(MIT AND Zlib)" + }, + "node_modules/papaparse": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/papaparse/-/papaparse-5.4.1.tgz", + "integrity": "sha512-HipMsgJkZu8br23pW15uvo6sib6wne/4woLZPlFf3rpDyMe9ywEXUsuD7+6K9PRkJlVT51j/sCOYDKGGS3ZJrw==", + "license": "MIT" + }, + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", "license": "MIT", "engines": { - "node": ">=8" + "node": ">= 0.8" } }, - "node_modules/is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", "license": "MIT", - "dependencies": { - "is-extglob": "^2.1.1" - }, "engines": { "node": ">=0.10.0" } }, - "node_modules/is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", "license": "MIT", "engines": { - "node": ">=0.12.0" + "node": ">=8" } }, - "node_modules/isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", - "license": "MIT" - }, - "node_modules/isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", - "license": "ISC" - }, - "node_modules/jackspeak": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", - "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", + "node_modules/path-scurry": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", + "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", "license": "BlueOak-1.0.0", "dependencies": { - "@isaacs/cliui": "^8.0.2" + "lru-cache": "^10.2.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "engines": { + "node": ">=16 || 14 >=14.18" }, "funding": { "url": "https://github.com/sponsors/isaacs" - }, - "optionalDependencies": { - "@pkgjs/parseargs": "^0.11.0" } }, - "node_modules/lodash.camelcase": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", - "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==", - "license": "MIT" - }, - "node_modules/long": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/long/-/long-4.0.0.tgz", - "integrity": "sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==", - "license": "Apache-2.0" + "node_modules/path-scurry/node_modules/lru-cache": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", + "license": "ISC" }, - "node_modules/media-typer": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", - "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", - "license": "MIT", + "node_modules/path-scurry/node_modules/minipass": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", + "license": "ISC", "engines": { - "node": ">= 0.6" + "node": ">=16 || 14 >=14.17" } }, - "node_modules/merge-descriptors": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz", - "integrity": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==", - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } + "node_modules/path-to-regexp": { + "version": "0.1.10", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.10.tgz", + "integrity": "sha512-7lf7qcQidTku0Gu3YDPc8DJ1q7OOucfa/BSsIwjuh56VU7katFvuM8hULfkwB3Fns/rsVF7PwPKVw1sl5KQS9w==", + "license": "MIT" }, - "node_modules/methods": { + "node_modules/pathe": { "version": "1.1.2", - "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", - "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } + "resolved": "https://registry.npmjs.org/pathe/-/pathe-1.1.2.tgz", + "integrity": "sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==", + "license": "MIT" }, - "node_modules/micromatch": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", - "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", - "license": "MIT", + "node_modules/pdf2json": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/pdf2json/-/pdf2json-3.1.4.tgz", + "integrity": "sha512-rS+VapXpXZr+5lUpHmRh3ugXdFXp24p1RyG24yP1DMpqP4t0mrYNGpLtpSbWD42PnQ59GIXofxF+yWb7M+3THg==", + "bundleDependencies": [ + "@xmldom/xmldom" + ], + "license": "Apache-2.0", "dependencies": { - "braces": "^3.0.3", - "picomatch": "^2.3.1" + "@xmldom/xmldom": "^0.8.10" + }, + "bin": { + "pdf2json": "bin/pdf2json.js" }, "engines": { - "node": ">=8.6" + "node": ">=18.12.1", + "npm": ">=8.19.2" } }, - "node_modules/mime-db": { - "version": "1.52.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "node_modules/pdf2json/node_modules/@xmldom/xmldom": { + "version": "0.8.10", + "inBundle": true, "license": "MIT", "engines": { - "node": ">= 0.6" + "node": ">=10.0.0" } }, - "node_modules/mime-types": { - "version": "2.1.35", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", - "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "node_modules/pg": { + "version": "8.13.1", + "resolved": "https://registry.npmjs.org/pg/-/pg-8.13.1.tgz", + "integrity": "sha512-OUir1A0rPNZlX//c7ksiu7crsGZTKSOXJPgtNiHGIlC9H0lO+NC6ZDYksSgBYY/thSWhnSRBv8w1lieNNGATNQ==", "license": "MIT", "dependencies": { - "mime-db": "1.52.0" + "pg-connection-string": "^2.7.0", + "pg-pool": "^3.7.0", + "pg-protocol": "^1.7.0", + "pg-types": "^2.1.0", + "pgpass": "1.x" }, "engines": { - "node": ">= 0.6" + "node": ">= 8.0.0" + }, + "optionalDependencies": { + "pg-cloudflare": "^1.1.1" + }, + "peerDependencies": { + "pg-native": ">=3.0.1" + }, + "peerDependenciesMeta": { + "pg-native": { + "optional": true + } } }, - "node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, + "node_modules/pg-cloudflare": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/pg-cloudflare/-/pg-cloudflare-1.1.1.tgz", + "integrity": "sha512-xWPagP/4B6BgFO+EKz3JONXv3YDgvkbVrGw2mTo3D6tVDQRh1e7cqVGvyR3BE+eQgAvx1XhW/iEASj4/jCWl3Q==", + "license": "MIT", + "optional": true + }, + "node_modules/pg-connection-string": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/pg-connection-string/-/pg-connection-string-2.7.0.tgz", + "integrity": "sha512-PI2W9mv53rXJQEOb8xNR8lH7Hr+EKa6oJa38zsK0S/ky2er16ios1wLKhZyxzD7jUReiWokc9WK5nxSnC7W1TA==", + "license": "MIT" + }, + "node_modules/pg-int8": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/pg-int8/-/pg-int8-1.0.1.tgz", + "integrity": "sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw==", "license": "ISC", - "dependencies": { - "brace-expansion": "^1.1.7" - }, "engines": { - "node": "*" + "node": ">=4.0.0" } }, - "node_modules/minimist": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", - "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "node_modules/pg-numeric": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/pg-numeric/-/pg-numeric-1.0.2.tgz", + "integrity": "sha512-BM/Thnrw5jm2kKLE5uJkXqqExRUY/toLHda65XgFTBTFYZyopbKjBe29Ii3RbkvlsMoFwD+tHeGaCjjv0gHlyw==", + "license": "ISC", + "engines": { + "node": ">=4" + } + }, + "node_modules/pg-pool": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/pg-pool/-/pg-pool-3.7.0.tgz", + "integrity": "sha512-ZOBQForurqh4zZWjrgSwwAtzJ7QiRX0ovFkZr2klsen3Nm0aoh33Ls0fzfv3imeH/nw/O27cjdz5kzYJfeGp/g==", "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" + "peerDependencies": { + "pg": ">=8.0" } }, - "node_modules/mkdirp": { - "version": "0.5.6", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", - "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", + "node_modules/pg-protocol": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/pg-protocol/-/pg-protocol-1.7.0.tgz", + "integrity": "sha512-hTK/mE36i8fDDhgDFjy6xNOG+LCorxLG3WO17tku+ij6sVHXh1jQUJ8hYAnRhNla4QVD2H8er/FOjc/+EgC6yQ==", + "license": "MIT" + }, + "node_modules/pg-types": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/pg-types/-/pg-types-4.0.2.tgz", + "integrity": "sha512-cRL3JpS3lKMGsKaWndugWQoLOCoP+Cic8oseVcbr0qhPzYD5DWXK+RZ9LY9wxRf7RQia4SCwQlXk0q6FCPrVng==", "license": "MIT", "dependencies": { - "minimist": "^1.2.6" + "pg-int8": "1.0.1", + "pg-numeric": "1.0.2", + "postgres-array": "~3.0.1", + "postgres-bytea": "~3.0.0", + "postgres-date": "~2.1.0", + "postgres-interval": "^3.0.0", + "postgres-range": "^1.1.1" }, - "bin": { - "mkdirp": "bin/cmd.js" + "engines": { + "node": ">=10" } }, - "node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "license": "MIT" - }, - "node_modules/multer": { - "version": "1.4.5-lts.1", - "resolved": "https://registry.npmjs.org/multer/-/multer-1.4.5-lts.1.tgz", - "integrity": "sha512-ywPWvcDMeH+z9gQq5qYHCCy+ethsk4goepZ45GLD63fOu0YcNecQxi64nDs3qluZB+murG3/D4dJ7+dGctcCQQ==", + "node_modules/pg/node_modules/pg-types": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/pg-types/-/pg-types-2.2.0.tgz", + "integrity": "sha512-qTAAlrEsl8s4OiEQY69wDvcMIdQN6wdz5ojQiOy6YRMuynxenON0O5oCpJI6lshc6scgAY8qvJ2On/p+CXY0GA==", "license": "MIT", "dependencies": { - "append-field": "^1.0.0", - "busboy": "^1.0.0", - "concat-stream": "^1.5.2", - "mkdirp": "^0.5.4", - "object-assign": "^4.1.1", - "type-is": "^1.6.4", - "xtend": "^4.0.0" + "pg-int8": "1.0.1", + "postgres-array": "~2.0.0", + "postgres-bytea": "~1.0.0", + "postgres-date": "~1.0.4", + "postgres-interval": "^1.1.0" }, "engines": { - "node": ">= 6.0.0" + "node": ">=4" } }, - "node_modules/negotiator": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", - "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "node_modules/pg/node_modules/postgres-array": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postgres-array/-/postgres-array-2.0.0.tgz", + "integrity": "sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA==", "license": "MIT", "engines": { - "node": ">= 0.6" + "node": ">=4" } }, - "node_modules/neo-async": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", - "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", - "license": "MIT" + "node_modules/pg/node_modules/postgres-bytea": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/postgres-bytea/-/postgres-bytea-1.0.0.tgz", + "integrity": "sha512-xy3pmLuQqRBZBXDULy7KbaitYqLcmxigw14Q5sj8QBVLqEwXfeybIKVWiqAXTlcvdvb0+xkOtDbfQMOf4lST1w==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } }, - "node_modules/node-addon-api": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.1.tgz", - "integrity": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==", - "license": "MIT" + "node_modules/pg/node_modules/postgres-date": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/postgres-date/-/postgres-date-1.0.7.tgz", + "integrity": "sha512-suDmjLVQg78nMK2UZ454hAG+OAW+HQPZ6n++TNDUX+L0+uUlLywnoxJKDou51Zm+zTCjrCl0Nq6J9C5hP9vK/Q==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } }, - "node_modules/nodemon": { - "version": "3.1.7", - "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-3.1.7.tgz", - "integrity": "sha512-hLj7fuMow6f0lbB0cD14Lz2xNjwsyruH251Pk4t/yIitCFJbmY1myuLlHm/q06aST4jg6EgAh74PIBBrRqpVAQ==", - "dev": true, + "node_modules/pg/node_modules/postgres-interval": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/postgres-interval/-/postgres-interval-1.2.0.tgz", + "integrity": "sha512-9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ==", "license": "MIT", "dependencies": { - "chokidar": "^3.5.2", - "debug": "^4", - "ignore-by-default": "^1.0.1", - "minimatch": "^3.1.2", - "pstree.remy": "^1.1.8", - "semver": "^7.5.3", - "simple-update-notifier": "^2.0.0", - "supports-color": "^5.5.0", - "touch": "^3.1.0", - "undefsafe": "^2.0.5" - }, - "bin": { - "nodemon": "bin/nodemon.js" + "xtend": "^4.0.0" }, "engines": { - "node": ">=10" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/nodemon" + "node": ">=0.10.0" } }, - "node_modules/nodemon/node_modules/debug": { - "version": "4.3.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", - "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", - "dev": true, + "node_modules/pgpass": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/pgpass/-/pgpass-1.0.5.tgz", + "integrity": "sha512-FdW9r/jQZhSeohs1Z3sI1yxFQNFvMcnmfuj4WBMUTxOrAyLMaTcE1aAMBiTlbMNaXvBCQuVi0R7hd8udDSP7ug==", + "license": "MIT", + "dependencies": { + "split2": "^4.1.0" + } + }, + "node_modules/pgvector": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/pgvector/-/pgvector-0.1.8.tgz", + "integrity": "sha512-mD6aw+XYJrsuLl3Y8s8gHDDfOZQ9ERtfQPdhvjOrC7eOTM7b6sNkxeZxBhHwUdXMfHmyGWIbwU0QbmSnn7pPmg==", "license": "MIT", - "dependencies": { - "ms": "^2.1.3" - }, "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } + "node": ">= 12" } }, - "node_modules/nodemon/node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "dev": true, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", "license": "MIT", "engines": { - "node": ">=4" + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" } }, - "node_modules/nodemon/node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "dev": true, + "node_modules/platform": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/platform/-/platform-1.3.6.tgz", + "integrity": "sha512-fnWVljUchTro6RiCFvCXBbNhJc2NijN7oIQxbwsyL0buWJPG85v81ehlHI9fXrJsMNgTofEoWIQeClKpgxFLrg==", "license": "MIT" }, - "node_modules/nodemon/node_modules/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, + "node_modules/portkey-ai": { + "version": "0.1.16", + "resolved": "https://registry.npmjs.org/portkey-ai/-/portkey-ai-0.1.16.tgz", + "integrity": "sha512-EY4FRp6PZSD75Q1o1qc08DfPNTG9FnkUPN3Z1/lEvaq9iFpSO5UekcagUZaKSVhao311qjBjns+kF0rS9ht7iA==", "license": "MIT", "dependencies": { - "has-flag": "^3.0.0" - }, + "agentkeepalive": "^4.5.0" + } + }, + "node_modules/postgres-array": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/postgres-array/-/postgres-array-3.0.2.tgz", + "integrity": "sha512-6faShkdFugNQCLwucjPcY5ARoW1SlbnrZjmGl0IrrqewpvxvhSLHimCVzqeuULCbG0fQv7Dtk1yDbG3xv7Veog==", + "license": "MIT", "engines": { - "node": ">=4" + "node": ">=12" } }, - "node_modules/object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "node_modules/postgres-bytea": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postgres-bytea/-/postgres-bytea-3.0.0.tgz", + "integrity": "sha512-CNd4jim9RFPkObHSjVHlVrxoVQXz7quwNFpz7RY1okNNme49+sVyiTvTRobiLV548Hx/hb1BG+iE7h9493WzFw==", "license": "MIT", + "dependencies": { + "obuf": "~1.1.2" + }, "engines": { - "node": ">=0.10.0" + "node": ">= 6" } }, - "node_modules/object-inspect": { - "version": "1.13.2", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.2.tgz", - "integrity": "sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==", + "node_modules/postgres-date": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/postgres-date/-/postgres-date-2.1.0.tgz", + "integrity": "sha512-K7Juri8gtgXVcDfZttFKVmhglp7epKb1K4pgrkLxehjqkrgPhfG6OO8LHLkfaqkbpjNRnra018XwAr1yQFWGcA==", "license": "MIT", "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=12" } }, - "node_modules/on-finished": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", - "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "node_modules/postgres-interval": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postgres-interval/-/postgres-interval-3.0.0.tgz", + "integrity": "sha512-BSNDnbyZCXSxgA+1f5UU2GmwhoI0aU5yMxRGO8CdFEcY2BQF9xm/7MqKnYoM1nJDk8nONNWDk9WeSmePFhQdlw==", "license": "MIT", - "dependencies": { - "ee-first": "1.1.1" - }, "engines": { - "node": ">= 0.8" + "node": ">=12" } }, - "node_modules/package-json-from-dist": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", - "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", - "license": "BlueOak-1.0.0" + "node_modules/postgres-range": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/postgres-range/-/postgres-range-1.1.4.tgz", + "integrity": "sha512-i/hbxIE9803Alj/6ytL7UHQxRvZkI9O4Sy+J3HGc4F4oo/2eQAjTSNJ0bfxyse3bH0nuVesCk+3IRLaMtG3H6w==", + "license": "MIT" }, - "node_modules/parseurl": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", - "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "node_modules/prebuild-install": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/prebuild-install/-/prebuild-install-7.1.2.tgz", + "integrity": "sha512-UnNke3IQb6sgarcZIDU3gbMeTp/9SSU1DAIkil7PrqG1vZlBtY5msYccSKSHDqa3hNg436IXK+SNImReuA1wEQ==", "license": "MIT", + "dependencies": { + "detect-libc": "^2.0.0", + "expand-template": "^2.0.3", + "github-from-package": "0.0.0", + "minimist": "^1.2.3", + "mkdirp-classic": "^0.5.3", + "napi-build-utils": "^1.0.1", + "node-abi": "^3.3.0", + "pump": "^3.0.0", + "rc": "^1.2.7", + "simple-get": "^4.0.0", + "tar-fs": "^2.0.0", + "tunnel-agent": "^0.6.0" + }, + "bin": { + "prebuild-install": "bin.js" + }, "engines": { - "node": ">= 0.8" + "node": ">=10" } }, - "node_modules/path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "license": "MIT", + "node_modules/prebuild-install/node_modules/detect-libc": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.3.tgz", + "integrity": "sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==", + "license": "Apache-2.0", "engines": { "node": ">=8" } }, - "node_modules/path-scurry": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", - "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", - "license": "BlueOak-1.0.0", + "node_modules/prebuild-install/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "license": "MIT", "dependencies": { - "lru-cache": "^10.2.0", - "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" }, "engines": { - "node": ">=16 || 14 >=14.18" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "node": ">= 6" } }, - "node_modules/path-scurry/node_modules/lru-cache": { - "version": "10.4.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", - "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", - "license": "ISC" + "node_modules/prebuild-install/node_modules/tar-fs": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz", + "integrity": "sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==", + "license": "MIT", + "dependencies": { + "chownr": "^1.1.1", + "mkdirp-classic": "^0.5.2", + "pump": "^3.0.0", + "tar-stream": "^2.1.4" + } }, - "node_modules/path-scurry/node_modules/minipass": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", - "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", - "license": "ISC", + "node_modules/prebuild-install/node_modules/tar-stream": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", + "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", + "license": "MIT", + "dependencies": { + "bl": "^4.0.3", + "end-of-stream": "^1.4.1", + "fs-constants": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^3.1.1" + }, "engines": { - "node": ">=16 || 14 >=14.17" + "node": ">=6" } }, - "node_modules/path-to-regexp": { - "version": "0.1.10", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.10.tgz", - "integrity": "sha512-7lf7qcQidTku0Gu3YDPc8DJ1q7OOucfa/BSsIwjuh56VU7katFvuM8hULfkwB3Fns/rsVF7PwPKVw1sl5KQS9w==", - "license": "MIT" - }, - "node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "node_modules/process": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", "license": "MIT", "engines": { - "node": ">=8.6" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" + "node": ">= 0.6.0" } }, "node_modules/process-nextick-args": { @@ -2409,6 +6650,15 @@ "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", "license": "MIT" }, + "node_modules/psl": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.10.0.tgz", + "integrity": "sha512-KSKHEbjAnpUuAUserOq0FxGXCUrzC3WniuSJhvdbs102rL55266ZcHBqLWOsG30spQMlPdpy7icATiAQehg/iA==", + "license": "MIT", + "dependencies": { + "punycode": "^2.3.1" + } + }, "node_modules/pstree.remy": { "version": "1.1.8", "resolved": "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.8.tgz", @@ -2416,6 +6666,25 @@ "dev": true, "license": "MIT" }, + "node_modules/pump": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.2.tgz", + "integrity": "sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==", + "license": "MIT", + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, "node_modules/qs": { "version": "6.13.0", "resolved": "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz", @@ -2431,6 +6700,28 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/querystringify": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", + "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", + "license": "MIT" + }, + "node_modules/queue-tick": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/queue-tick/-/queue-tick-1.0.1.tgz", + "integrity": "sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==", + "license": "MIT" + }, + "node_modules/rake-modified": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/rake-modified/-/rake-modified-1.0.8.tgz", + "integrity": "sha512-rj/1t+EyI8Ly52eaCeSy5hoNpdNnDlNQ/+jll2DypR6nkuxotMbaupzwbuMSaXzuSL1I2pYVYy7oPus/Ls49ag==", + "license": "MIT", + "dependencies": { + "fs-promise": "^2.0.0", + "lodash": "^4.17.4" + } + }, "node_modules/range-parser": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", @@ -2440,6 +6731,56 @@ "node": ">= 0.6" } }, + "node_modules/ranges-apply": { + "version": "7.0.16", + "resolved": "https://registry.npmjs.org/ranges-apply/-/ranges-apply-7.0.16.tgz", + "integrity": "sha512-4rGJHOyA7qatiMDg3vcETkc/TVBPU86/xZRTXff6o7a2neYLmj0EXUUAlhLVuiWAzTPHDPHOQxtk8EDrIF4ohg==", + "license": "MIT", + "dependencies": { + "ranges-merge": "^9.0.15", + "tiny-invariant": "^1.3.3" + }, + "engines": { + "node": ">=14.18.0" + } + }, + "node_modules/ranges-merge": { + "version": "9.0.15", + "resolved": "https://registry.npmjs.org/ranges-merge/-/ranges-merge-9.0.15.tgz", + "integrity": "sha512-hvt4hx0FKIaVfjd1oKx0poL57ljxdL2KHC6bXBrAdsx2iCsH+x7nO/5J0k2veM/isnOcFZKp0ZKkiCjCtzy74Q==", + "license": "MIT", + "dependencies": { + "ranges-push": "^7.0.15", + "ranges-sort": "^6.0.11" + }, + "engines": { + "node": ">=14.18.0" + } + }, + "node_modules/ranges-push": { + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/ranges-push/-/ranges-push-7.0.15.tgz", + "integrity": "sha512-gXpBYQ5Umf3uG6jkJnw5ddok2Xfo5p22rAJBLrqzNKa7qkj3q5AOCoxfRPXEHUVaJutfXc9K9eGXdIzdyQKPkw==", + "license": "MIT", + "dependencies": { + "codsen-utils": "^1.6.4", + "ranges-sort": "^6.0.11", + "string-collapse-leading-whitespace": "^7.0.7", + "string-trim-spaces-only": "^5.0.10" + }, + "engines": { + "node": ">=14.18.0" + } + }, + "node_modules/ranges-sort": { + "version": "6.0.11", + "resolved": "https://registry.npmjs.org/ranges-sort/-/ranges-sort-6.0.11.tgz", + "integrity": "sha512-fhNEG0vGi7bESitNNqNBAfYPdl2efB+1paFlI8BQDCNkruERKuuhG8LkQClDIVqUJLkrmKuOSPQ3xZHqVnVo3Q==", + "license": "MIT", + "engines": { + "node": ">=14.18.0" + } + }, "node_modules/raw-body": { "version": "2.5.2", "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", @@ -2455,6 +6796,21 @@ "node": ">= 0.8" } }, + "node_modules/rc": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", + "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", + "license": "(BSD-2-Clause OR MIT OR Apache-2.0)", + "dependencies": { + "deep-extend": "^0.6.0", + "ini": "~1.3.0", + "minimist": "^1.2.0", + "strip-json-comments": "~2.0.1" + }, + "bin": { + "rc": "cli.js" + } + }, "node_modules/readable-stream": { "version": "2.3.8", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", @@ -2498,6 +6854,37 @@ "node": ">=0.10.0" } }, + "node_modules/require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", + "license": "MIT" + }, + "node_modules/rfdc": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.4.1.tgz", + "integrity": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==", + "license": "MIT" + }, + "node_modules/rxjs": { + "version": "7.8.1", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz", + "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==", + "license": "Apache-2.0", + "optional": true, + "dependencies": { + "tslib": "^2.1.0" + } + }, "node_modules/safe-buffer": { "version": "5.2.1", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", @@ -2518,6 +6905,21 @@ ], "license": "MIT" }, + "node_modules/safe-flat": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/safe-flat/-/safe-flat-2.1.0.tgz", + "integrity": "sha512-qr5iVWMYuN21dkijya23k6apc2BV1hiCG75vjToKDTzWlbR4SLbLbCnowPJ2pngnwGT2nMEeZKOglBE4pksj6g==", + "license": "MIT" + }, + "node_modules/safe-stable-stringify": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.5.0.tgz", + "integrity": "sha512-b3rppTKm9T+PsVCBEOUR46GWI7fdOs00VKZ1+9c1EWDaDMvjQc6tUwuFyIprgGgTcWoVHSKrU8H31ZHA2e0RHA==", + "license": "MIT", + "engines": { + "node": ">=10" + } + }, "node_modules/safer-buffer": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", @@ -2665,6 +7067,12 @@ "node": ">= 0.4" } }, + "node_modules/setimmediate": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", + "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==", + "license": "MIT" + }, "node_modules/setprototypeof": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", @@ -2758,6 +7166,51 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/simple-concat": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz", + "integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/simple-get": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-4.0.1.tgz", + "integrity": "sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "decompress-response": "^6.0.0", + "once": "^1.3.1", + "simple-concat": "^1.0.0" + } + }, "node_modules/simple-swizzle": { "version": "0.2.2", "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", @@ -2798,6 +7251,39 @@ "node": ">=0.10.0" } }, + "node_modules/sparse-bitfield": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/sparse-bitfield/-/sparse-bitfield-3.0.3.tgz", + "integrity": "sha512-kvzhi7vqKTfkh0PZU+2D2PIllw2ymqJKujUcyPMd9Y75Nv4nPbGJZXNhxsgdQab2BmlDct1YnfQCguEvHr7VsQ==", + "license": "MIT", + "dependencies": { + "memory-pager": "^1.0.2" + } + }, + "node_modules/split2": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/split2/-/split2-4.2.0.tgz", + "integrity": "sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==", + "license": "ISC", + "engines": { + "node": ">= 10.x" + } + }, + "node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "license": "BSD-3-Clause" + }, + "node_modules/stack-trace": { + "version": "0.0.10", + "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz", + "integrity": "sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==", + "license": "MIT", + "engines": { + "node": "*" + } + }, "node_modules/statuses": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", @@ -2815,6 +7301,20 @@ "node": ">=10.0.0" } }, + "node_modules/streamx": { + "version": "2.20.1", + "resolved": "https://registry.npmjs.org/streamx/-/streamx-2.20.1.tgz", + "integrity": "sha512-uTa0mU6WUC65iUvzKH4X9hEdvSW7rbPxPtwfWiLMSj3qTdQbAiUboZTxauKfpFuGIGa1C2BYijZ7wgdUXICJhA==", + "license": "MIT", + "dependencies": { + "fast-fifo": "^1.3.2", + "queue-tick": "^1.0.1", + "text-decoder": "^1.1.0" + }, + "optionalDependencies": { + "bare-events": "^2.2.0" + } + }, "node_modules/string_decoder": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", @@ -2830,6 +7330,55 @@ "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", "license": "MIT" }, + "node_modules/string-collapse-leading-whitespace": { + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/string-collapse-leading-whitespace/-/string-collapse-leading-whitespace-7.0.7.tgz", + "integrity": "sha512-jF9eynJoE6ezTCdYI8Qb02/ij/DlU9ItG93Dty4SWfJeLFrotOr+wH9IRiWHTqO3mjCyqBWEiU3uSTIbxYbAEQ==", + "license": "MIT", + "engines": { + "node": ">=14.18.0" + } + }, + "node_modules/string-left-right": { + "version": "6.0.17", + "resolved": "https://registry.npmjs.org/string-left-right/-/string-left-right-6.0.17.tgz", + "integrity": "sha512-nuyIV4D4ivnwT64E0TudmCRg52NfkumuEUilyoOrHb/Z2wEOF5I+9SI6P+veFKqWKZfGpAs6OqKe4nAjujARyw==", + "license": "MIT", + "dependencies": { + "codsen-utils": "^1.6.4", + "rfdc": "^1.3.1" + }, + "engines": { + "node": ">=14.18.0" + } + }, + "node_modules/string-strip-html": { + "version": "13.4.8", + "resolved": "https://registry.npmjs.org/string-strip-html/-/string-strip-html-13.4.8.tgz", + "integrity": "sha512-vlcRAtx5DN6zXGUx3EYGFg0/JOQWM65mqLgDaBHviQPP+ovUFzqZ30iQ+674JHWr9wNgnzFGxx9TGipPZMnZXg==", + "license": "MIT", + "dependencies": { + "@types/lodash-es": "^4.17.12", + "codsen-utils": "^1.6.4", + "html-entities": "^2.5.2", + "lodash-es": "^4.17.21", + "ranges-apply": "^7.0.16", + "ranges-push": "^7.0.15", + "string-left-right": "^6.0.17" + }, + "engines": { + "node": ">=14.18.0" + } + }, + "node_modules/string-trim-spaces-only": { + "version": "5.0.10", + "resolved": "https://registry.npmjs.org/string-trim-spaces-only/-/string-trim-spaces-only-5.0.10.tgz", + "integrity": "sha512-MhmjE5jNqb1Ylo+BARPRlsdChGLrnPpAUWrT1VOxo9WhWwKVUU6CbZTfjwKaQPYTGS/wsX/4Zek88FM2rEb5iA==", + "license": "MIT", + "engines": { + "node": ">=14.18.0" + } + }, "node_modules/string-width": { "version": "4.2.3", "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", @@ -2884,6 +7433,123 @@ "node": ">=8" } }, + "node_modules/strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strnum": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/strnum/-/strnum-1.0.5.tgz", + "integrity": "sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==", + "license": "MIT" + }, + "node_modules/tar-fs": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-3.0.6.tgz", + "integrity": "sha512-iokBDQQkUyeXhgPYaZxmczGPhnhXZ0CmrqI+MOb/WFGS9DW5wnfrLgtjUJBvz50vQ3qfRwJ62QVoCFu8mPVu5w==", + "license": "MIT", + "dependencies": { + "pump": "^3.0.0", + "tar-stream": "^3.1.5" + }, + "optionalDependencies": { + "bare-fs": "^2.1.1", + "bare-path": "^2.1.0" + } + }, + "node_modules/tar-stream": { + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-3.1.7.tgz", + "integrity": "sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==", + "license": "MIT", + "dependencies": { + "b4a": "^1.6.4", + "fast-fifo": "^1.2.0", + "streamx": "^2.15.0" + } + }, + "node_modules/text-decoder": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/text-decoder/-/text-decoder-1.2.1.tgz", + "integrity": "sha512-x9v3H/lTKIJKQQe7RPQkLfKAnc9lUTkWDypIQgTzPJAq+5/GCDHonmshfvlsNSj58yyshbIJJDLmU15qNERrXQ==", + "license": "Apache-2.0" + }, + "node_modules/text-hex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/text-hex/-/text-hex-1.0.0.tgz", + "integrity": "sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg==", + "license": "MIT" + }, + "node_modules/thenify": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", + "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", + "license": "MIT", + "dependencies": { + "any-promise": "^1.0.0" + } + }, + "node_modules/thenify-all": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", + "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", + "license": "MIT", + "dependencies": { + "thenify": ">= 3.1.0 < 4" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/through2": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/through2/-/through2-4.0.2.tgz", + "integrity": "sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==", + "license": "MIT", + "dependencies": { + "readable-stream": "3" + } + }, + "node_modules/through2/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/tiny-invariant": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.3.tgz", + "integrity": "sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==", + "license": "MIT" + }, + "node_modules/tmp": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.3.tgz", + "integrity": "sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==", + "license": "MIT", + "engines": { + "node": ">=14.14" + } + }, + "node_modules/to-arraybuffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz", + "integrity": "sha512-okFlQcoGTi4LQBG/PgSYblw9VOyptsz2KJZqc6qtgGdes8VktzUQkj4BI2blit072iS8VODNcMA+tvnS9dnuMA==", + "license": "MIT" + }, "node_modules/to-regex-range": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", @@ -2915,12 +7581,59 @@ "nodetouch": "bin/nodetouch.js" } }, + "node_modules/tough-cookie": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.4.tgz", + "integrity": "sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==", + "license": "BSD-3-Clause", + "dependencies": { + "psl": "^1.1.33", + "punycode": "^2.1.1", + "universalify": "^0.2.0", + "url-parse": "^1.5.3" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/tr46": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-4.1.1.tgz", + "integrity": "sha512-2lv/66T7e5yNyhAAC4NaKe5nVavzuGJQVVtRYLyQ2OI8tsJ61PMLlelehb0wi2Hx6+hT/OJUWZcw8MjlSRnxvw==", + "license": "MIT", + "dependencies": { + "punycode": "^2.3.0" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/triple-beam": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/triple-beam/-/triple-beam-1.4.1.tgz", + "integrity": "sha512-aZbgViZrg1QNcG+LULa7nhZpJTZSLm/mXnHXnbAbjmN5aSa0y7V+wvv6+4WaBtpISJzThKy+PIPxc1Nq1EJ9mg==", + "license": "MIT", + "engines": { + "node": ">= 14.0.0" + } + }, "node_modules/tslib": { "version": "2.8.1", "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", - "license": "0BSD", - "optional": true + "license": "0BSD" + }, + "node_modules/tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==", + "license": "Apache-2.0", + "dependencies": { + "safe-buffer": "^5.0.1" + }, + "engines": { + "node": "*" + } }, "node_modules/type-is": { "version": "1.6.18", @@ -2935,12 +7648,35 @@ "node": ">= 0.6" } }, + "node_modules/typed-emitter": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/typed-emitter/-/typed-emitter-2.1.0.tgz", + "integrity": "sha512-g/KzbYKbH5C2vPkaXGu8DJlHrGKHLsM25Zg9WuC9pMGfuvT+X25tZQWo5fK1BjBm8+UrVE9LDCvaY0CQk+fXDA==", + "license": "MIT", + "optionalDependencies": { + "rxjs": "*" + } + }, "node_modules/typedarray": { "version": "0.0.6", "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==", "license": "MIT" }, + "node_modules/typescript": { + "version": "5.6.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.6.3.tgz", + "integrity": "sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw==", + "license": "Apache-2.0", + "peer": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, "node_modules/uglify-js": { "version": "3.19.3", "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.19.3.tgz", @@ -2961,12 +7697,39 @@ "dev": true, "license": "MIT" }, + "node_modules/underscore": { + "version": "1.13.7", + "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.13.7.tgz", + "integrity": "sha512-GMXzWtsc57XAtguZgaQViUOzs0KTkk8ojr3/xAxXLITqf/3EMwxC0inyETfDFjH/Krbhuep0HNbbjI9i/q3F3g==", + "license": "MIT" + }, + "node_modules/undici": { + "version": "5.28.4", + "resolved": "https://registry.npmjs.org/undici/-/undici-5.28.4.tgz", + "integrity": "sha512-72RFADWFqKmUb2hmmvNODKL3p9hcB6Gt2DOQMis1SEBaV6a4MH8soBvzg+95CYhCKPFedut2JY9bMfrDl9D23g==", + "license": "MIT", + "dependencies": { + "@fastify/busboy": "^2.0.0" + }, + "engines": { + "node": ">=14.0" + } + }, "node_modules/undici-types": { "version": "6.19.8", "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.19.8.tgz", "integrity": "sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==", "license": "MIT" }, + "node_modules/universalify": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", + "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", + "license": "MIT", + "engines": { + "node": ">= 4.0.0" + } + }, "node_modules/unpipe": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", @@ -2976,6 +7739,22 @@ "node": ">= 0.8" } }, + "node_modules/url-join": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/url-join/-/url-join-4.0.1.tgz", + "integrity": "sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==", + "license": "MIT" + }, + "node_modules/url-parse": { + "version": "1.5.10", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", + "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", + "license": "MIT", + "dependencies": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + } + }, "node_modules/util-deprecate": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", @@ -2991,6 +7770,28 @@ "node": ">= 0.4.0" } }, + "node_modules/uuid": { + "version": "11.0.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-11.0.2.tgz", + "integrity": "sha512-14FfcOJmqdjbBPdDjFQyk/SdT4NySW4eM0zcG+HqbHP5jzuH56xO3J1DGhgs/cEMCfwYi3HQI1gnTO62iaG+tQ==", + "funding": [ + "https://github.com/sponsors/broofa", + "https://github.com/sponsors/ctavan" + ], + "license": "MIT", + "bin": { + "uuid": "dist/esm/bin/uuid" + } + }, + "node_modules/uuidv7": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/uuidv7/-/uuidv7-0.6.3.tgz", + "integrity": "sha512-zV3eW2NlXTsun/aJ7AixxZjH/byQcH/r3J99MI0dDEkU2cJIBJxhEWUHDTpOaLPRNhebPZoeHuykYREkI9HafA==", + "license": "Apache-2.0", + "bin": { + "uuidv7": "cli.js" + } + }, "node_modules/vary": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", @@ -3000,6 +7801,43 @@ "node": ">= 0.8" } }, + "node_modules/web-streams-polyfill": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.3.3.tgz", + "integrity": "sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==", + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/webidl-conversions": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", + "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=12" + } + }, + "node_modules/whatwg-fetch": { + "version": "3.6.20", + "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.20.tgz", + "integrity": "sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==", + "license": "MIT" + }, + "node_modules/whatwg-url": { + "version": "13.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-13.0.0.tgz", + "integrity": "sha512-9WWbymnqj57+XEuqADHrCJ2eSXzn8WXIW/YSGaZtb2WKAInQ6CHfaUUcTyyver0p8BDg5StLQq8h1vtZuwmOig==", + "license": "MIT", + "dependencies": { + "tr46": "^4.1.1", + "webidl-conversions": "^7.0.0" + }, + "engines": { + "node": ">=16" + } + }, "node_modules/which": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", @@ -3015,6 +7853,89 @@ "node": ">= 8" } }, + "node_modules/wikipedia": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/wikipedia/-/wikipedia-2.1.2.tgz", + "integrity": "sha512-RAYaMpXC9/E873RaSEtlEa8dXK4e0p5k98GKOd210MtkE5emm6fcnwD+N6ZA4cuffjDWagvhaQKtp/mGp2BOVQ==", + "license": "MIT", + "dependencies": { + "axios": "^1.4.0", + "infobox-parser": "^3.6.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/wink-nlp": { + "version": "1.14.3", + "resolved": "https://registry.npmjs.org/wink-nlp/-/wink-nlp-1.14.3.tgz", + "integrity": "sha512-lvY5iCs3T8I34F8WKS70+2P0U9dWLn3vdPf/Z+m2VK14N7OmqnPzmHfh3moHdusajoQ37Em39z0IZB9K4x/96A==", + "license": "MIT" + }, + "node_modules/winston": { + "version": "3.17.0", + "resolved": "https://registry.npmjs.org/winston/-/winston-3.17.0.tgz", + "integrity": "sha512-DLiFIXYC5fMPxaRg832S6F5mJYvePtmO5G9v9IgUFPhXm9/GkXarH/TUrBAVzhTCzAj9anE/+GjrgXp/54nOgw==", + "license": "MIT", + "dependencies": { + "@colors/colors": "^1.6.0", + "@dabh/diagnostics": "^2.0.2", + "async": "^3.2.3", + "is-stream": "^2.0.0", + "logform": "^2.7.0", + "one-time": "^1.0.0", + "readable-stream": "^3.4.0", + "safe-stable-stringify": "^2.3.1", + "stack-trace": "0.0.x", + "triple-beam": "^1.3.0", + "winston-transport": "^4.9.0" + }, + "engines": { + "node": ">= 12.0.0" + } + }, + "node_modules/winston-transport": { + "version": "4.9.0", + "resolved": "https://registry.npmjs.org/winston-transport/-/winston-transport-4.9.0.tgz", + "integrity": "sha512-8drMJ4rkgaPo1Me4zD/3WLfI/zPdA9o2IipKODunnGDcuqbHwjsbB79ylv04LCGGzU0xQ6vTznOMpQGaLhhm6A==", + "license": "MIT", + "dependencies": { + "logform": "^2.7.0", + "readable-stream": "^3.6.2", + "triple-beam": "^1.3.0" + }, + "engines": { + "node": ">= 12.0.0" + } + }, + "node_modules/winston-transport/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/winston/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, "node_modules/wordwrap": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", @@ -3056,6 +7977,42 @@ "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "license": "ISC" + }, + "node_modules/ws": { + "version": "8.18.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz", + "integrity": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==", + "license": "MIT", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/xmlbuilder": { + "version": "10.1.1", + "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-10.1.1.tgz", + "integrity": "sha512-OyzrcFLL/nb6fMGHbiRDuPup9ljBycsdCypwuyg5AAHvyWzGfChJpCXMG88AGTIMFhGZ9RccFN1e6lhg3hkwKg==", + "license": "MIT", + "engines": { + "node": ">=4.0" + } + }, "node_modules/xtend": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", @@ -3100,6 +8057,15 @@ "engines": { "node": ">=12" } + }, + "node_modules/zod": { + "version": "3.23.8", + "resolved": "https://registry.npmjs.org/zod/-/zod-3.23.8.tgz", + "integrity": "sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/colinhacks" + } } } } diff --git a/package.json b/package.json index a286c1b9..15a80705 100644 --- a/package.json +++ b/package.json @@ -15,14 +15,17 @@ "dependencies": { "axios": "^1.7.7", "body-parser": "^1.20.3", + "clarifai-nodejs": "^0.0.3", "clarifai-nodejs-grpc": "^10.9.8", "cors": "^2.8.5", "dotenv": "^16.4.5", "express": "^4.21.1", "express-handlebars": "^7.1.3", + "js-yaml": "^4.1.0", "multer": "^1.4.5-lts.1", "sass": "^1.69.5", - "sharp": "^0.33.5" + "sharp": "^0.33.5", + "uuid": "^11.0.2" }, "devDependencies": { "nodemon": "^3.1.4" diff --git a/recreate_model.js b/recreate_model.js new file mode 100644 index 00000000..1f36e601 --- /dev/null +++ b/recreate_model.js @@ -0,0 +1,137 @@ +const { ClarifaiStub, grpc } = require('clarifai-nodejs-grpc'); + +const stub = ClarifaiStub.grpc(); +const metadata = new grpc.Metadata(); +const apiKey = process.env.new_clarifai_key.trim().replace(/[^a-zA-Z0-9]/g, ''); +metadata.set('authorization', `Key ${apiKey}`); + +const modelId = 'catsdogstest'; +const concepts = [ + { id: "cats", name: "cats" }, + { id: "dogs", name: "dogs" } +]; + +const deleteModel = () => { + return new Promise((resolve, reject) => { + stub.DeleteModel( + { + model_id: modelId + }, + metadata, + (err, response) => { + if (err) { + console.error('Error deleting model:', err); + reject(err); + } else { + console.log('Model deleted:', JSON.stringify(response, null, 2)); + resolve(response); + } + } + ); + }); +}; + +const createModel = () => { + return new Promise((resolve, reject) => { + const modelRequest = { + model: { + id: modelId, + model_type_id: "embedding-classifier" + } + }; + + stub.PostModels( + modelRequest, + metadata, + (err, response) => { + if (err) { + console.error('Error creating model:', err); + reject(err); + } else { + console.log('Model created:', JSON.stringify(response, null, 2)); + resolve(response); + } + } + ); + }); +}; + +const addConcepts = () => { + return new Promise((resolve, reject) => { + const conceptsRequest = { + concepts: concepts.map(concept => ({ + id: concept.id, + name: concept.name + })) + }; + + stub.PostConcepts( + conceptsRequest, + metadata, + (err, response) => { + if (err) { + console.error('Error creating concepts:', err); + reject(err); + } else { + console.log('Concepts created:', JSON.stringify(response, null, 2)); + resolve(response); + } + } + ); + }); +}; + +const addConceptsToModel = () => { + return new Promise((resolve, reject) => { + const patchRequest = { + models: [{ + id: modelId, + output_info: { + data: { + concepts: concepts + }, + output_config: { + concepts_mutually_exclusive: false, + closed_environment: true + } + } + }] + }; + + stub.PatchModels( + patchRequest, + metadata, + (err, response) => { + if (err) { + console.error('Error adding concepts to model:', err); + reject(err); + } else { + console.log('Concepts added to model:', JSON.stringify(response, null, 2)); + resolve(response); + } + } + ); + }); +}; + +const runRecreate = async () => { + try { + console.log('Deleting existing model...'); + await deleteModel(); + + console.log('Creating new model...'); + await createModel(); + + console.log('Creating concepts...'); + await addConcepts(); + + console.log('Adding concepts to model...'); + await addConceptsToModel(); + + console.log('Model recreation completed successfully'); + } catch (error) { + console.error('Error in model recreation:', error); + } +}; + +runRecreate(); diff --git a/recreate_model_v2.js b/recreate_model_v2.js new file mode 100644 index 00000000..ca13534d --- /dev/null +++ b/recreate_model_v2.js @@ -0,0 +1,137 @@ +const { ClarifaiStub, grpc } = require('clarifai-nodejs-grpc'); + +// Initialize the gRPC client +const stub = ClarifaiStub.grpc(); +const metadata = new grpc.Metadata(); +const apiKey = process.env.new_clarifai_key.trim().replace(/[^a-zA-Z0-9]/g, ''); +metadata.set('authorization', `Key ${apiKey}`); + +async function recreateModel() { + try { + const modelId = 'catsdogstest'; + + console.log('Deleting existing model if it exists...'); + + // First try to delete the existing model + try { + await new Promise((resolve, reject) => { + stub.DeleteModel( + { model_id: modelId }, + metadata, + (err, response) => { + if (err) { + console.error('Error deleting model:', err); + reject(err); + } else { + console.log('Model deletion response:', JSON.stringify(response, null, 2)); + resolve(response); + } + } + ); + }); + console.log('Existing model deleted successfully'); + } catch (error) { + console.log('Model deletion failed or model did not exist:', error.message); + } + + // Wait a bit to ensure deletion is processed + await new Promise(resolve => setTimeout(resolve, 2000)); + + console.log('Creating new model with proper configuration...'); + + // Create new model with proper configuration + const createResponse = await new Promise((resolve, reject) => { + stub.PostModels( + { + models: [{ + id: modelId, + name: 'Cats and Dogs Classifier', + output_info: { + data: { + concepts: [ + { id: 'cats', name: 'cats' }, + { id: 'dogs', name: 'dogs' } + ] + }, + output_config: { + concepts_mutually_exclusive: true, + closed_environment: true + } + } + }] + }, + metadata, + (err, response) => { + if (err) { + console.error('Error creating model:', err); + reject(err); + } else { + console.log('Model creation response:', JSON.stringify(response, null, 2)); + resolve(response); + } + } + ); + }); + + // Verify the new model + const verifyResponse = await new Promise((resolve, reject) => { + stub.GetModel( + { model_id: modelId }, + metadata, + (err, response) => { + if (err) { + console.error('Error verifying model:', err); + reject(err); + } else { + console.log('New model structure:', JSON.stringify(response, null, 2)); + resolve(response); + } + } + ); + }); + + if (verifyResponse.model.output_info) { + console.log('Model creation successful - output_info is properly configured'); + + // Try creating a model version + console.log('Attempting to create model version...'); + const versionResponse = await new Promise((resolve, reject) => { + const versionId = `v${Date.now()}`; + stub.PostModelVersions( + { + model_id: modelId, + version: { + id: versionId, + train_info: { + params: { + template: 'classification_base', + epochs: 5, + batch_size: 32, + learning_rate: 0.001 + } + } + } + }, + metadata, + (err, response) => { + if (err) { + console.error('Error creating version:', err); + reject(err); + } else { + console.log('Version creation response:', JSON.stringify(response, null, 2)); + resolve(response); + } + } + ); + }); + } else { + console.log('Model creation failed - output_info is not configured'); + } + + console.log('Model recreation process complete'); + } catch (error) { + console.error('Recreation failed:', error); + } +} + +recreateModel(); diff --git a/recreate_model_v3.js b/recreate_model_v3.js new file mode 100644 index 00000000..2eca2606 --- /dev/null +++ b/recreate_model_v3.js @@ -0,0 +1,153 @@ +const { ClarifaiStub, grpc } = require('clarifai-nodejs-grpc'); + +// Initialize the gRPC client +const stub = ClarifaiStub.grpc(); +const metadata = new grpc.Metadata(); +const apiKey = process.env.new_clarifai_key.trim().replace(/[^a-zA-Z0-9]/g, ''); +metadata.set('authorization', `Key ${apiKey}`); + +async function recreateModel() { + try { + const modelId = 'catsdogstest'; + + console.log('Deleting existing model if it exists...'); + + // First try to delete the existing model + try { + await new Promise((resolve, reject) => { + stub.DeleteModel( + { model_id: modelId }, + metadata, + (err, response) => { + if (err) { + console.error('Error deleting model:', err); + reject(err); + } else { + console.log('Model deletion response:', JSON.stringify(response, null, 2)); + resolve(response); + } + } + ); + }); + console.log('Existing model deleted successfully'); + } catch (error) { + console.log('Model deletion failed or model did not exist:', error.message); + } + + // Wait a bit to ensure deletion is processed + await new Promise(resolve => setTimeout(resolve, 2000)); + + console.log('Creating new model with proper configuration...'); + + // Create new model with proper configuration + const createResponse = await new Promise((resolve, reject) => { + stub.PostModels( + { + models: [{ + id: modelId, + name: 'Cats and Dogs Classifier', + model_type_id: 'visual-classifier', + output_info: { + message: 'Classification model for cats and dogs', + type: 'concept', + type_ext: 'concept', + data: { + concepts: [ + { id: 'cats', name: 'cats' }, + { id: 'dogs', name: 'dogs' } + ] + }, + output_config: { + concepts_mutually_exclusive: true, + closed_environment: true + } + } + }] + }, + metadata, + (err, response) => { + if (err) { + console.error('Error creating model:', err); + reject(err); + } else { + console.log('Model creation response:', JSON.stringify(response, null, 2)); + resolve(response); + } + } + ); + }); + + // Verify the new model + const verifyResponse = await new Promise((resolve, reject) => { + stub.GetModel( + { model_id: modelId }, + metadata, + (err, response) => { + if (err) { + console.error('Error verifying model:', err); + reject(err); + } else { + console.log('New model structure:', JSON.stringify(response, null, 2)); + resolve(response); + } + } + ); + }); + + if (verifyResponse.model.output_info) { + console.log('Model creation successful - output_info is properly configured'); + + // Try creating a model version + console.log('Attempting to create model version...'); + const versionResponse = await new Promise((resolve, reject) => { + const versionId = `v${Date.now()}`; + stub.PostModelVersions( + { + model_id: modelId, + version: { + id: versionId, + output_info: { + data: { + concepts: [ + { id: 'cats', name: 'cats' }, + { id: 'dogs', name: 'dogs' } + ] + }, + output_config: { + concepts_mutually_exclusive: true, + closed_environment: true + } + }, + train_info: { + params: { + template: 'classification_base', + epochs: 5, + batch_size: 32, + learning_rate: 0.001 + } + } + } + }, + metadata, + (err, response) => { + if (err) { + console.error('Error creating version:', err); + reject(err); + } else { + console.log('Version creation response:', JSON.stringify(response, null, 2)); + resolve(response); + } + } + ); + }); + } else { + console.log('Model creation failed - output_info is not configured'); + } + + console.log('Model recreation process complete'); + } catch (error) { + console.error('Recreation failed:', error); + } +} + +recreateModel(); diff --git a/render b/render new file mode 100755 index 00000000..c82f948c --- /dev/null +++ b/render @@ -0,0 +1,122 @@ +Cloud Application Hosting for Developers | Render

New: Flexible Plans for Render PostgreSQL

Learn more
Sorry about that.

The page you're looking for doesn’t exist or has moved.