From d0ef50373c419320873d11d64e60fb8aefd4de90 Mon Sep 17 00:00:00 2001 From: Julio Guerrero Date: Thu, 27 Jun 2019 11:18:31 +0200 Subject: [PATCH 01/17] allow tag template first column --- .eslintrc.js | 49 +-- example/Example.vue | 414 ++++++++++++----------- example/Switch/Switch.vue | 71 ++-- example/main.js | 1 + src/Checkbox/Checkbox.vue | 81 ++--- src/Table/Table.vue | 527 +++++++++++++++--------------- src/Table/TableBody.js | 395 ++++++++++++++++------ src/Table/TableFooter.js | 46 +-- src/Table/TableHeader.js | 59 ++-- src/Table/utils/index.js | 1 + src/Table/utils/mixins.js | 25 +- src/Table/utils/scrollBarWidth.js | 1 + src/index.js | 1 + 13 files changed, 968 insertions(+), 703 deletions(-) diff --git a/.eslintrc.js b/.eslintrc.js index efe2c75..c55203a 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -2,39 +2,44 @@ module.exports = { root: true, - parser: 'babel-eslint', + parser: "babel-eslint", parserOptions: { - sourceType: 'module' + sourceType: "module" }, env: { - browser: true, + browser: true }, - extends: 'airbnb-base', + extends: "airbnb-base", // required to lint *.vue files - plugins: [ - 'html' - ], + plugins: ["html"], // check if imports actually resolve - 'settings': { - 'import/resolver': { - 'webpack': { - 'config': 'build/webpack.base.conf.js' + settings: { + "import/resolver": { + webpack: { + config: "build/webpack.base.conf.js" } } }, // add your custom rules here - 'rules': { + rules: { // don't require .vue extension when importing - 'import/extensions': ['error', 'always', { - 'js': 'never', - 'vue': 'never' - }], + "import/extensions": [ + "error", + "always", + { + js: "never", + vue: "never" + } + ], // allow optionalDependencies - 'import/no-extraneous-dependencies': ['error', { - 'optionalDependencies': ['test/unit/index.js'] - }], + "import/no-extraneous-dependencies": [ + "error", + { + optionalDependencies: ["test/unit/index.js"] + } + ], // allow debugger during development - 'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0, - 'no-plusplus': ["error", { "allowForLoopAfterthoughts": true }] + "no-debugger": process.env.NODE_ENV === "production" ? 2 : 0, + "no-plusplus": ["error", { allowForLoopAfterthoughts: true }] } -} +}; diff --git a/example/Example.vue b/example/Example.vue index 4addba7..4c017ff 100644 --- a/example/Example.vue +++ b/example/Example.vue @@ -21,231 +21,229 @@ :tree-type="props.treeType" :is-fold="props.isFold" :expand-type="props.expandType" + :max-height="200" :selection-type="props.selectionType"> - + diff --git a/example/Switch/Switch.vue b/example/Switch/Switch.vue index f84fd6e..15cc6ce 100644 --- a/example/Switch/Switch.vue +++ b/example/Switch/Switch.vue @@ -8,45 +8,46 @@ diff --git a/example/main.js b/example/main.js index 09a9b43..873b576 100644 --- a/example/main.js +++ b/example/main.js @@ -1,3 +1,4 @@ +/* eslint linebreak-style: ["error", "windows"] */ // The Vue build version to load with the `import` command // (runtime-only or standalone) has been set in webpack.base.conf with an alias. import Vue from 'vue'; diff --git a/src/Checkbox/Checkbox.vue b/src/Checkbox/Checkbox.vue index df87b2f..80e2fa2 100644 --- a/src/Checkbox/Checkbox.vue +++ b/src/Checkbox/Checkbox.vue @@ -9,50 +9,51 @@ diff --git a/src/Table/Table.vue b/src/Table/Table.vue index f379b5d..70a1bf7 100644 --- a/src/Table/Table.vue +++ b/src/Table/Table.vue @@ -35,286 +35,303 @@ diff --git a/src/Table/TableBody.js b/src/Table/TableBody.js index 84e89d7..3d9d0a9 100644 --- a/src/Table/TableBody.js +++ b/src/Table/TableBody.js @@ -1,4 +1,5 @@ -import Checkbox from '../Checkbox/Checkbox'; // eslint-disable-line +/* eslint linebreak-style: ["error", "windows"] */ +import Checkbox from "../Checkbox/Checkbox"; // eslint-disable-line import { mixins } from './utils'; /* eslint-disable no-underscore-dangle */ @@ -6,9 +7,7 @@ export default { name: 'zk-table__body', mixins: [mixins], data() { - return { - - }; + return {}; }, computed: { table() { @@ -17,11 +16,17 @@ export default { }, methods: { toggleStatus(type, row, rowIndex, value) { - this.validateType(type, ['Expanded', 'Checked', 'Hide', 'Fold'], 'toggleStatus', false); + this.validateType( + type, + ['Expanded', 'Checked', 'Hide', 'Fold'], + 'toggleStatus', + false, + ); const target = this.table.bodyData[rowIndex]; this.table.bodyData.splice(rowIndex, 1, { ...target, - [`_is${type}`]: typeof value === 'undefined' ? !row[`_is${type}`] : value, + [`_is${type}`]: + typeof value === 'undefined' ? !row[`_is${type}`] : value, }); }, getChildrenIndex(parentLevel, parentIndex, careFold = true) { @@ -42,14 +47,23 @@ export default { (!careFold || (careFold && !childData._isFold)) ) { childrenIndex = childrenIndex.concat( - this.getChildrenIndex(childData._level, childrenIndex[i], careFold)); + this.getChildrenIndex( + childData._level, + childrenIndex[i], + careFold, + ), + ); } } } return childrenIndex; }, handleEvent($event, type, data, others) { - const certainType = this.validateType(type, ['cell', 'row', 'checkbox', 'icon'], 'handleEvent'); + const certainType = this.validateType( + type, + ['cell', 'row', 'checkbox', 'icon'], + 'handleEvent', + ); const eventType = $event ? $event.type : ''; const { row, rowIndex, column, columnIndex } = data; const latestData = this.table.bodyData; @@ -58,12 +72,27 @@ export default { const { isChecked } = others; this.toggleStatus('Checked', row, rowIndex, isChecked); if (row._childrenLen > 0) { - const childrenIndex = this.getChildrenIndex(row._level, rowIndex, false); + const childrenIndex = this.getChildrenIndex( + row._level, + rowIndex, + false, + ); for (let i = 0; i < childrenIndex.length; i++) { - this.toggleStatus('Checked', latestData[childrenIndex[i]], childrenIndex[i], isChecked); + this.toggleStatus( + 'Checked', + latestData[childrenIndex[i]], + childrenIndex[i], + isChecked, + ); } } - return this.table.$emit('checkbox-click', latestData[rowIndex], column, columnIndex, $event); + return this.table.$emit( + 'checkbox-click', + latestData[rowIndex], + column, + columnIndex, + $event, + ); } // Tree's icon if (certainType.icon) { @@ -71,19 +100,38 @@ export default { this.toggleStatus('Fold', row, rowIndex); const childrenIndex = this.getChildrenIndex(row._level, rowIndex); for (let i = 0; i < childrenIndex.length; i++) { - this.toggleStatus('Hide', latestData[childrenIndex[i]], childrenIndex[i]); + this.toggleStatus( + 'Hide', + latestData[childrenIndex[i]], + childrenIndex[i], + ); } - return this.table.$emit('tree-icon-click', latestData[rowIndex], column, columnIndex, $event); + return this.table.$emit( + 'tree-icon-click', + latestData[rowIndex], + column, + columnIndex, + $event, + ); } if (certainType.cell && eventType === 'click') { // 点击扩展单元格 if (this.isExpandCell(this.table, columnIndex)) { this.toggleStatus('Expanded', row, rowIndex); - return this.table.$emit('expand-cell-click', latestData[rowIndex], column, columnIndex, $event); + return this.table.$emit( + 'expand-cell-click', + latestData[rowIndex], + column, + columnIndex, + $event, + ); } } // 行:Hover - if (certainType.row && (eventType === 'mouseenter' || eventType === 'mouseleave')) { + if ( + certainType.row && + (eventType === 'mouseenter' || eventType === 'mouseleave') + ) { const { hover } = others; const target = latestData[rowIndex]; latestData.splice(rowIndex, 1, { @@ -92,9 +140,21 @@ export default { }); } if (certainType.cell) { - return this.table.$emit(`${type}-${eventType}`, latestData[rowIndex], rowIndex, column, columnIndex, $event); + return this.table.$emit( + `${type}-${eventType}`, + latestData[rowIndex], + rowIndex, + column, + columnIndex, + $event, + ); } - return this.table.$emit(`${type}-${eventType}`, latestData[rowIndex], rowIndex, $event); + return this.table.$emit( + `${type}-${eventType}`, + latestData[rowIndex], + rowIndex, + $event, + ); }, }, render() { @@ -124,7 +184,11 @@ export default { // className function getClassName(type, row, rowIndex, column, columnIndex) { - const certainType = this.validateType(type, ['cell', 'row', 'inner'], 'getClassName'); + const certainType = this.validateType( + type, + ['cell', 'row', 'inner'], + 'getClassName', + ); const classList = []; if (certainType.row || certainType.cell) { const className = this.table[`${type}ClassName`]; @@ -135,7 +199,9 @@ export default { classList.push(className.call(null, row, rowIndex) || ''); } if (certainType.cell) { - classList.push(className.call(null, row, rowIndex, column, columnIndex) || ''); + classList.push( + className.call(null, row, rowIndex, column, columnIndex) || '', + ); } } if (certainType.row) { @@ -174,7 +240,7 @@ export default { function renderCell(row, rowIndex, column, columnIndex) { // ExpandType if (this.isExpandCell(this.table, columnIndex)) { - return ; + return ; } // SelectionType's Checkbox if (this.isSelectionCell(this.table, columnIndex)) { @@ -202,102 +268,247 @@ export default { } } } - return this.handleEvent(null, 'checkbox', { row, rowIndex, column, columnIndex }, { isChecked }) }> - ; + return ( + + this.handleEvent( + null, + 'checkbox', + { row, rowIndex, column, columnIndex }, + { isChecked }, + ) + } + /> + ); } // Tree's firstProp if (this.table.treeType && this.table.firstProp === column.prop) { - return - { row._childrenLen > 0 && + return ( + + {row._childrenLen > 0 && ( this.handleEvent($event, 'icon', { row, rowIndex, column, columnIndex }, { isFold: row._isFold }) }> - } - { row[column.prop] ? row[column.prop] : '' } - ; + class={`${this.prefixCls}--tree-icon zk-icon zk-icon-${ + row._isFold ? 'plus' : 'minus' + }-square-o`} + on-click={$event => + this.handleEvent( + $event, + 'icon', + { row, rowIndex, column, columnIndex }, + { isFold: row._isFold }, + ) + } + /> + )} + {column.type === 'template' + ? this.table.$scopedSlots[column.template]({ + row, + rowIndex, + column, + columnIndex, + }) + : ''} + + {// eslint-disable-next-line no-nested-ternary + column.type === undefined + ? row[column.prop] + ? row[column.prop] + : '' + : ''} + + ); } // TreeType children's index - if (this.table.showIndex && this.table.treeType && column.prop === '_normalIndex' && row._level > 1) { + if ( + this.table.showIndex && + this.table.treeType && + column.prop === '_normalIndex' && + row._level > 1 + ) { return ''; } if (column.type === undefined || column.type === 'custom') { return row[column.prop]; } else if (column.type === 'template') { return this.table.$scopedSlots[column.template] - ? this.table.$scopedSlots[column.template]({ row, rowIndex, column, columnIndex }) - : ''; + ? this.table.$scopedSlots[column.template]({ + row, + rowIndex, + column, + columnIndex, + }) + : ''; } return ''; } // Template return ( - +
- { this.table.tableColumns.map(column => - ) - } + {this.table.tableColumns.map(column => ( + + ))} - { this.table.bodyData.length > 0 - ? this.table.bodyData.map((row, rowIndex) => - [ - this.handleEvent($event, 'row', { row, rowIndex }) } - on-dblclick={ $event => this.handleEvent($event, 'row', { row, rowIndex }) } - on-contextmenu={ $event => this.handleEvent($event, 'row', { row, rowIndex }) } - on-mouseenter={ $event => this.handleEvent($event, 'row', { row, rowIndex }, { hover: true }) } - on-mouseleave={ $event => this.handleEvent($event, 'row', { row, rowIndex }, { hover: false }) }> - { this.table.tableColumns.map((column, columnIndex) => - ) - } - , - this.table.expandType && row._isExpanded && + {this.table.bodyData.length > 0 ? ( + this.table.bodyData.map((row, rowIndex) => [ + + this.handleEvent($event, 'row', { row, rowIndex }) + } + on-dblclick={$event => + this.handleEvent($event, 'row', { row, rowIndex }) + } + on-contextmenu={$event => + this.handleEvent($event, 'row', { row, rowIndex }) + } + on-mouseenter={$event => + this.handleEvent( + $event, + 'row', + { row, rowIndex }, + { hover: true }, + ) + } + on-mouseleave={$event => + this.handleEvent( + $event, + 'row', + { row, rowIndex }, + { hover: false }, + ) + } + > + {this.table.tableColumns.map((column, columnIndex) => ( + + ))} + , + this.table.expandType && row._isExpanded && ( + key={rowIndex} + class={`${this.prefixCls}__body-row ${ + this.prefixCls + }--expand-row`} + > - , - ]) - : - - - } + : ''} + + + ), + ]) + ) : ( + + + + )}
this.handleEvent($event, 'cell', { row, rowIndex, column, columnIndex }) } - on-dblclick={ $event => this.handleEvent($event, 'cell', { row, rowIndex, column, columnIndex }) } - on-contextmenu={ $event => this.handleEvent($event, 'cell', { row, rowIndex, column, columnIndex }) } - on-mouseenter={ $event => this.handleEvent($event, 'cell', { row, rowIndex, column, columnIndex }) } - on-mouseleave={ $event => this.handleEvent($event, 'cell', { row, rowIndex, column, columnIndex }) }> -
- { renderCell.call(this, row, rowIndex, column, columnIndex) } -
-
+ this.handleEvent($event, 'cell', { + row, + rowIndex, + column, + columnIndex, + }) + } + on-dblclick={$event => + this.handleEvent($event, 'cell', { + row, + rowIndex, + column, + columnIndex, + }) + } + on-contextmenu={$event => + this.handleEvent($event, 'cell', { + row, + rowIndex, + column, + columnIndex, + }) + } + on-mouseenter={$event => + this.handleEvent($event, 'cell', { + row, + rowIndex, + column, + columnIndex, + }) + } + on-mouseleave={$event => + this.handleEvent($event, 'cell', { + row, + rowIndex, + column, + columnIndex, + }) + } + > +
+ {renderCell.call( + this, + row, + rowIndex, + column, + columnIndex, + )} +
+
- { this.table.$scopedSlots.$expand + class={`${this.prefixCls}--expand-content`} + colspan={this.table.tableColumns.length} + > + {this.table.$scopedSlots.$expand ? this.table.$scopedSlots.$expand({ row, rowIndex }) - : '' - } -
- { this.table.emptyText } -
+ {this.table.emptyText} +
); diff --git a/src/Table/TableFooter.js b/src/Table/TableFooter.js index 1e05206..d84ab51 100644 --- a/src/Table/TableFooter.js +++ b/src/Table/TableFooter.js @@ -1,3 +1,4 @@ +/* eslint linebreak-style: ["error", "windows"] */ import { mixins } from './utils'; /* eslint-disable no-underscore-dangle */ @@ -5,18 +6,14 @@ export default { name: 'zk-table__footer', mixins: [mixins], data() { - return { - - }; + return {}; }, computed: { table() { return this.$parent; }, }, - methods: { - - }, + methods: {}, render() { // 计算各列总和 function renderCell({ prop }, columnIndex) { @@ -59,23 +56,34 @@ export default { // Template return ( - +
- { this.table.tableColumns.map(column => - ) - } + {this.table.tableColumns.map(column => ( + + ))} - - { this.table.tableColumns.map((column, columnIndex) => - + {this.table.tableColumns.map((column, columnIndex) => ( + ) - } + + ))}
-
- { this.table.summaryMethod - ? this.table.summaryMethod(this.table.bodyData, column, columnIndex) - : renderCell.call(this, column, columnIndex) } +
diff --git a/src/Table/TableHeader.js b/src/Table/TableHeader.js index 4b669cf..aa7b971 100644 --- a/src/Table/TableHeader.js +++ b/src/Table/TableHeader.js @@ -1,4 +1,5 @@ -import Checkbox from '../Checkbox/Checkbox'; // eslint-disable-line +/* eslint linebreak-style: ["error", "windows"] */ +import Checkbox from "../Checkbox/Checkbox"; // eslint-disable-line import { mixins } from './utils'; /* eslint-disable no-underscore-dangle */ @@ -6,9 +7,7 @@ export default { name: 'zk-table__header', mixins: [mixins], data() { - return { - - }; + return {}; }, computed: { table() { @@ -26,7 +25,11 @@ export default { render() { // className function getClassName(type, { headerAlign, prop }) { - const certainType = this.validateType(type, ['cell', 'inner'], 'getClassName'); + const certainType = this.validateType( + type, + ['cell', 'inner'], + 'getClassName', + ); const classList = []; if (certainType.cell) { classList.push(`${this.prefixCls}__header-cell`); @@ -50,33 +53,43 @@ export default { function renderLabel(column, columnIndex) { if (this.isSelectionCell(this.table, columnIndex)) { const allCheck = this.table.bodyData.every(row => row._isChecked); - const indeterminate = !allCheck && this.table.bodyData.some(row => row._isChecked); - return this.toggleAllChecked(checked) } - >; + const indeterminate = + !allCheck && this.table.bodyData.some(row => row._isChecked); + return ( + this.toggleAllChecked(checked)} + /> + ); } return column.label ? column.label : ''; } // Template return ( - +
- { this.table.tableColumns.map(column => - ) - } + {this.table.tableColumns.map(column => ( + + ))} - - { this.table.tableColumns.map((column, columnIndex) => - ) - } + + {this.table.tableColumns.map((column, columnIndex) => ( + + ))}
-
- { renderLabel.call(this, column, columnIndex) } -
-
+
+ {renderLabel.call(this, column, columnIndex)} +
+
diff --git a/src/Table/utils/index.js b/src/Table/utils/index.js index a46c2e7..08a0444 100644 --- a/src/Table/utils/index.js +++ b/src/Table/utils/index.js @@ -1,2 +1,3 @@ +/* eslint linebreak-style: ["error", "windows"] */ export mixins from './mixins'; export scrollBarWidth from './scrollBarWidth'; diff --git a/src/Table/utils/mixins.js b/src/Table/utils/mixins.js index b1d22bc..5f4b95f 100644 --- a/src/Table/utils/mixins.js +++ b/src/Table/utils/mixins.js @@ -1,3 +1,4 @@ +/* eslint linebreak-style: ["error", "windows"] */ export default { data() { return { @@ -6,7 +7,11 @@ export default { }, methods: { validateType(type, validTypes, funcName, isReturn = true) { - if (validTypes.indexOf(type) < 0) throw new Error(`${funcName}'s type must is ${validTypes.join(' or ')}.`); + if (validTypes.indexOf(type) < 0) { + throw new Error( + `${funcName}'s type must is ${validTypes.join(' or ')}.`, + ); + } if (isReturn) { const certainType = {}; validTypes.forEach((item) => { @@ -17,17 +22,19 @@ export default { return true; }, isExpandCell(table, columnIndex) { - return table.expandType && ( - (table.showIndex && columnIndex === 1) || - (!table.showIndex && columnIndex === 0) + return ( + table.expandType && + ((table.showIndex && columnIndex === 1) || + (!table.showIndex && columnIndex === 0)) ); }, isSelectionCell(table, columnIndex) { - return table.selectionType && ( - (table.showIndex && table.expandType && columnIndex === 2) || - (!table.showIndex && table.expandType && columnIndex === 1) || - (table.showIndex && !table.expandType && columnIndex === 1) || - (!table.showIndex && !table.expandType && columnIndex === 0) + return ( + table.selectionType && + ((table.showIndex && table.expandType && columnIndex === 2) || + (!table.showIndex && table.expandType && columnIndex === 1) || + (table.showIndex && !table.expandType && columnIndex === 1) || + (!table.showIndex && !table.expandType && columnIndex === 0)) ); }, }, diff --git a/src/Table/utils/scrollBarWidth.js b/src/Table/utils/scrollBarWidth.js index 9bd201d..320822f 100644 --- a/src/Table/utils/scrollBarWidth.js +++ b/src/Table/utils/scrollBarWidth.js @@ -1,3 +1,4 @@ +/* eslint linebreak-style: ["error", "windows"] */ import Vue from 'vue'; let scrollBarWidth; diff --git a/src/index.js b/src/index.js index 45ffb86..db6276b 100644 --- a/src/index.js +++ b/src/index.js @@ -1,3 +1,4 @@ +/* eslint linebreak-style: ["error", "windows"] */ import ZkTable from './Table/Table'; ZkTable.install = (Vue) => { From 4a918ee40f543db93a66b252523155f073707fff Mon Sep 17 00:00:00 2001 From: Julio Guerrero Date: Thu, 27 Jun 2019 17:31:15 +0200 Subject: [PATCH 02/17] eliminacion de eventos no utilizados --- example/Example.vue | 1 - src/Table/Table.vue | 5 ++- src/Table/TableBody.js | 71 ++---------------------------------------- 3 files changed, 7 insertions(+), 70 deletions(-) diff --git a/example/Example.vue b/example/Example.vue index 4c017ff..4d2552d 100644 --- a/example/Example.vue +++ b/example/Example.vue @@ -21,7 +21,6 @@ :tree-type="props.treeType" :is-fold="props.isFold" :expand-type="props.expandType" - :max-height="200" :selection-type="props.selectionType"> diff --git a/mocks/db.json b/mocks/db.json new file mode 100644 index 0000000..050aff1 --- /dev/null +++ b/mocks/db.json @@ -0,0 +1,5592 @@ +{ + "data": + { + "id": 6865748, + "name": "Plan de formación 2018", + "year": 2018, + "moduleVersion": [ + { + "id": 6865749, + "name": "1 FORMACIÓN GENERAL", + "submoduleVersion": [ + { + "id": 6865750, + "name": "1.2 Cursos Generales de Protección Civil.", + "trainingActivityVersion": [ + { + "id": 6865751, + "name": "CURSO DE ASPECTOS LEGALES DE LA PROTECCION CIVIL.", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6865752, + "name": "CURSO DE FORMACIÓN PARA EL MANEJO DE LA APLICACIÓN SAFE", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6865753, + "name": "ESPECIALISTA EN PROTECCIÓN CIVIL Y EMERGENCIAS. Edición on-line.", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6866456, + "name": "FORMACIÓN GENERAL EN PROTECCIÓN CIVIL PARA JEFES DE AGRUPACIÓN Y VOLUNTARIOS DE PC. ONLINE", + "editionVersion": [ + { + "id": 6866457, + "startDate": "2018-04-13T00:00:00", + "endDate": "2018-06-27T00:00:00", + "totalVacancies": 60, + "totalReserved": 0, + "totalNumberOfHours": 60, + "totalInitialBudget": 4650, + "coordinador": "Araceli Ruiz Anca", + "state": "Cerrada" + } + ], + "totalVacancies": 60, + "totalReserved": 0, + "totalNumberOfHours": 60, + "totalInitialBudget": 4650 + }, + { + "id": 6866577, + "name": "JORNADA TÉCNICA PARA COORDINADORES DE ACTIVIDADES FORMATIVAS DENTRO DEL PLAN DE FORMACIÓN DE LA ESCUELA NACIONAL DE PROTECCIÓN CIVIL", + "editionVersion": [ + { + "id": 6866578, + "startDate": "2018-02-06T00:00:00", + "endDate": "2018-02-06T00:00:00", + "totalVacancies": 30, + "totalReserved": 0, + "totalNumberOfHours": 4, + "totalInitialBudget": 300, + "coordinador": "Antonia Garcés de Marcilla Val", + "state": "Programación" + } + ], + "totalVacancies": 30, + "totalReserved": 0, + "totalNumberOfHours": 4, + "totalInitialBudget": 300 + }, + { + "id": 6866587, + "name": "PROTECCIÓN CIVIL. PLANIFICACIÓN DE EMERGENCIAS POR RIESGOS METEOROLÓGICOS, INUNDACIONES E INCENDIOS FORESTALES", + "editionVersion": [ + { + "id": 6866588, + "startDate": "2018-05-07T00:00:00", + "endDate": "2018-05-10T00:00:00", + "totalVacancies": 30, + "totalReserved": 0, + "totalNumberOfHours": 30, + "totalInitialBudget": 3000, + "coordinador": "Rafael Aramendi Sánchez", + "state": "Cerrada" + } + ], + "totalVacancies": 30, + "totalReserved": 0, + "totalNumberOfHours": 30, + "totalInitialBudget": 3000 + } + ], + "totalVacancies": 120, + "totalReserved": 0, + "totalNumberOfHours": 94, + "totalInitialBudget": 7950 + }, + { + "id": 6866627, + "name": "1.3 La Protección Civil en el Contexto de la Comunidad Internacional.", + "trainingActivityVersion": [ + { + "id": 6866628, + "name": "AYUDA HUMANITARIA Y COOPERACIÓN INTERNACIONAL EN MATERIA DE PROTECCIÓN CIVIL", + "editionVersion": [ + { + "id": 6866629, + "startDate": "2018-04-23T00:00:00", + "endDate": "2018-04-27T00:00:00", + "totalVacancies": 25, + "totalReserved": 11, + "totalNumberOfHours": 35, + "totalInitialBudget": 3500, + "coordinador": "Angela Potenciano de las Heras", + "state": "Cerrada" + } + ], + "totalVacancies": 25, + "totalReserved": 11, + "totalNumberOfHours": 35, + "totalInitialBudget": 3500 + }, + { + "id": 6866704, + "name": "JORNADA INFORMATIVA PROGRAMA ANUAL 2018 DE PROTECCIÓN CIVIL UNIÓN EUROPEA", + "editionVersion": [ + { + "id": 6866705, + "startDate": "2018-02-08T00:00:00", + "endDate": "2018-02-08T00:00:00", + "totalVacancies": 40, + "totalReserved": 0, + "totalNumberOfHours": 4, + "totalInitialBudget": 450, + "coordinador": "Álvaro de la Peña Cuesta", + "state": "Cerrada" + } + ], + "totalVacancies": 40, + "totalReserved": 0, + "totalNumberOfHours": 4, + "totalInitialBudget": 450 + } + ], + "totalVacancies": 65, + "totalReserved": 11, + "totalNumberOfHours": 39, + "totalInitialBudget": 3950 + }, + { + "id": 6866720, + "name": "1.4 Organización de la Protección Civil.", + "trainingActivityVersion": [ + { + "id": 6866721, + "name": "ACTUACIÓN DEL SISTEMA NACIONAL DE PROTECCIÓN CIVIL: COMUNIDADES AUTÓNOMAS", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6866724, + "name": "ACTUACIÓN DEL SISTEMA NACIONAL DE PROTECCIÓN CIVIL: DELEGACIONES Y SUBDELEGACIONES EL GOBIERNO", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6866727, + "name": "AUTOPROTECCIÓN Y GESTIÓN DE EMERGENCIAS EN RENFE Y ADIF", + "editionVersion": [ + { + "id": 6866728, + "startDate": "2018-06-20T00:00:00", + "endDate": "2018-06-21T00:00:00", + "totalVacancies": 30, + "totalReserved": 19, + "totalNumberOfHours": 14, + "totalInitialBudget": 320, + "coordinador": "Salvador Rodríguez Pérez", + "state": "Cerrada" + } + ], + "totalVacancies": 30, + "totalReserved": 19, + "totalNumberOfHours": 14, + "totalInitialBudget": 320 + }, + { + "id": 6866761, + "name": "COHESIÓN DEL SISTEMA NACIONAL DE PROTECCIÓN CIVIL: OTRAS ACTIVIDADES", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6866764, + "name": "CURSO DE AUTOPROTECCIÓN Y EMERGENCIAS EN EL ÁMBITO FERROVIARIO", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6866765, + "name": "CURSO LA ORGANIZACIÓN DE RENFE Y SU ACTUACIÓN EN SITUACIONES DE EMERGENCIA", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6866766, + "name": "EL SISTEMA DE PROTECCIÓN CIVIL ESPAÑOL Y LA GESTIÓN DE LAS EMERGENCIAS A NIVEL NACIONAL E INTERNACIONAL", + "editionVersion": [ + { + "id": 6866767, + "startDate": "2018-10-01T00:00:00", + "endDate": "2018-11-29T00:00:00", + "totalVacancies": 52, + "totalReserved": 16, + "totalNumberOfHours": 55, + "totalInitialBudget": 6840, + "coordinador": "María Vara Moral", + "state": "Cerrada" + } + ], + "totalVacancies": 52, + "totalReserved": 16, + "totalNumberOfHours": 55, + "totalInitialBudget": 6840 + }, + { + "id": 6867071, + "name": "JORNADA PARA INTERVINIENTES EN LA OPERACIÓN PASO DEL ESTRECHO", + "editionVersion": [ + { + "id": 6867072, + "startDate": "2018-05-31T00:00:00", + "endDate": "2018-06-01T00:00:00", + "totalVacancies": 50, + "totalReserved": 50, + "totalNumberOfHours": 14, + "totalInitialBudget": 300, + "coordinador": "Francisco Emilio Magaña López", + "state": "Cerrada" + }, + { + "id": 6867108, + "startDate": "2018-06-13T00:00:00", + "endDate": "2018-06-14T00:00:00", + "totalVacancies": 50, + "totalReserved": 50, + "totalNumberOfHours": 13, + "totalInitialBudget": 300, + "coordinador": "Tarek Loukili Lamrani", + "state": "Cerrada" + }, + { + "id": 6867174, + "startDate": "2018-06-12T00:00:00", + "endDate": "2018-06-13T00:00:00", + "totalVacancies": 50, + "totalReserved": 50, + "totalNumberOfHours": 14, + "totalInitialBudget": 300, + "coordinador": "Enrique Álvarez Vigil", + "state": "Cerrada" + }, + { + "id": 7536743, + "startDate": "2018-05-28T00:00:00", + "endDate": "2018-05-29T00:00:00", + "totalVacancies": 50, + "totalReserved": 0, + "totalNumberOfHours": 12, + "totalInitialBudget": 300, + "coordinador": "Antonio García Montero", + "state": "Cerrada" + } + ], + "totalVacancies": 200, + "totalReserved": 150, + "totalNumberOfHours": 53, + "totalInitialBudget": 1200 + }, + { + "id": 6867237, + "name": "JORNADA SOBRE EL FUTURO DE LA FORMACIÓN EN EMERGENCIAS EN EL MARCO DE LAS CUALIFICACIONES PROFESIONALES", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6867238, + "name": "JORNADA TÉCNICA SOBRE NUEVA NORMATIVA EN EMERGENCIAS POR INCENDIOS FORESTALES", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6867239, + "name": "JORNADAS FORMATIVAS SOBRE EL SNPC PARA VOLUNTARIOS REMER Y PROTECCIÓN CIVIL", + "editionVersion": [ + { + "id": 6867240, + "startDate": "2018-12-31T00:00:00", + "endDate": "2018-12-31T00:00:00", + "totalVacancies": 40, + "totalReserved": 0, + "totalNumberOfHours": 7, + "totalInitialBudget": 1000, + "coordinador": "Rita María Domínguez Monzón", + "state": "Anulada" + } + ], + "totalVacancies": 40, + "totalReserved": 0, + "totalNumberOfHours": 7, + "totalInitialBudget": 1000 + }, + { + "id": 6867242, + "name": "JORNADAS TÉCNICAS SOBRE COORDINACIÓN EN FORMACIÓN EN PROTECCIÓN CIVIL", + "editionVersion": [ + { + "id": 6867243, + "startDate": "2018-06-26T00:00:00", + "endDate": "2018-06-27T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 6, + "totalInitialBudget": 1660, + "coordinador": "Antonia Garcés de Marcilla Val", + "state": "Cerrada" + } + ], + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 6, + "totalInitialBudget": 1660 + }, + { + "id": 6980200, + "name": "JORNADA ABIERTA SOBRE EL SISTEMA NACIONAL DE PROTECCIÓN CIVIL", + "editionVersion": [ + { + "id": 6980203, + "startDate": "2018-02-20T00:00:00", + "endDate": "2018-02-20T00:00:00", + "totalVacancies": 90, + "totalReserved": 90, + "totalNumberOfHours": 5, + "totalInitialBudget": 1000, + "coordinador": "Antonia Garcés de Marcilla Val", + "state": "Cerrada" + }, + { + "id": 6980205, + "startDate": "2018-12-31T00:00:00", + "endDate": "2018-12-31T00:00:00", + "totalVacancies": 40, + "totalReserved": 40, + "totalNumberOfHours": 5, + "totalInitialBudget": 1000, + "coordinador": "Antonia Garcés de Marcilla Val", + "state": "Anulada" + } + ], + "totalVacancies": 130, + "totalReserved": 130, + "totalNumberOfHours": 10, + "totalInitialBudget": 2000 + }, + { + "id": 6980209, + "name": "CURSO ONLINE SOBRE EL SISTEMA NACIONAL DE PROTECCIÓN CIVIL PARA NO DIRECTIVOS", + "editionVersion": [ + { + "id": 6980211, + "startDate": "2018-12-31T00:00:00", + "endDate": "2018-12-31T00:00:00", + "totalVacancies": 52, + "totalReserved": 0, + "totalNumberOfHours": 35, + "totalInitialBudget": 2000, + "coordinador": "María Dolores Monzón Merchán", + "state": "Anulada" + } + ], + "totalVacancies": 52, + "totalReserved": 0, + "totalNumberOfHours": 35, + "totalInitialBudget": 2000 + }, + { + "id": 6980213, + "name": "JORNADA SOBRE LA COORDINACIÓN DE LAS UNIDADES DE PC DE LAS DELEGACIONES DEL GOBIERNO PLURIPROVINCIALES CON LAS SUBDELEGACIONES DEL GOBIERNO DE SU ÁMBITO TERRITORIAL Y LA DGPCE", + "editionVersion": [ + { + "id": 6980216, + "startDate": "2018-12-31T00:00:00", + "endDate": "2018-12-31T00:00:00", + "totalVacancies": 40, + "totalReserved": 40, + "totalNumberOfHours": 5, + "totalInitialBudget": 1500, + "coordinador": " ", + "state": "Anulada" + } + ], + "totalVacancies": 40, + "totalReserved": 40, + "totalNumberOfHours": 5, + "totalInitialBudget": 1500 + }, + { + "id": 8206127, + "name": "EL SISTEMA NACIONAL DE PROTECCIÓN CIVIL: COORDINACIÓN DE ACTUACIONES", + "editionVersion": [ + { + "id": 8206139, + "startDate": "2018-11-20T00:00:00", + "endDate": "2018-11-20T00:00:00", + "totalVacancies": 80, + "totalReserved": 80, + "totalNumberOfHours": 6, + "totalInitialBudget": 30000, + "coordinador": "Araceli Ruiz Anca", + "state": "Cerrada" + } + ], + "totalVacancies": 80, + "totalReserved": 80, + "totalNumberOfHours": 6, + "totalInitialBudget": 30000 + } + ], + "totalVacancies": 644, + "totalReserved": 455, + "totalNumberOfHours": 191, + "totalInitialBudget": 46520 + }, + { + "id": 6867255, + "name": "1.1 Fundamentos de la Protección Civil", + "trainingActivityVersion": [ + { + "id": 6867256, + "name": "***JORNADA SOBRE EL NUEVO MARCO LEGAL DE PROTECCIÓN CIVIL: LEY 17/2015 DEL SISTEMA NACIONAL DE PROTECCIÓN CIVIL", + "editionVersion": [ + { + "id": 8552600, + "startDate": "2018-12-30T00:00:00", + "endDate": "2018-12-31T00:00:00", + "totalVacancies": 80, + "totalReserved": 0, + "totalNumberOfHours": 8, + "totalInitialBudget": 0, + "coordinador": "María Vara Moral", + "state": "Programación" + }, + { + "id": 8552602, + "totalVacancies": 80, + "totalReserved": 0, + "totalNumberOfHours": 8, + "totalInitialBudget": 0, + "coordinador": "María Vara Moral", + "state": "Planificación" + } + ], + "totalVacancies": 160, + "totalReserved": 0, + "totalNumberOfHours": 16, + "totalInitialBudget": 0 + } + ], + "totalVacancies": 160, + "totalReserved": 0, + "totalNumberOfHours": 16, + "totalInitialBudget": 0 + } + ], + "totalVacancies": 989, + "totalReserved": 466, + "totalNumberOfHours": 340, + "totalInitialBudget": 58420 + }, + { + "id": 6867257, + "name": "2 ANÁLISIS Y PREVENCIÓN DE RIESGOS DE P.C", + "submoduleVersion": [ + { + "id": 6867258, + "name": "2.2 Bases Metodológicas para su Análisis.", + "trainingActivityVersion": [ + { + "id": 6867259, + "name": "CURSO DE INTERPRETACIÓN DE ANÁLISIS DE RIESGOS", + "editionVersion": [ + { + "id": 8486913, + "totalVacancies": 30, + "totalReserved": 0, + "totalNumberOfHours": 28, + "totalInitialBudget": 0, + "coordinador": "Julia Pastrana de Paz", + "state": "Planificación" + }, + { + "id": 8486914, + "startDate": "2018-12-01T00:00:00", + "endDate": "2018-12-02T00:00:00", + "totalVacancies": 30, + "totalReserved": 9, + "totalNumberOfHours": 28, + "totalInitialBudget": 0, + "coordinador": "Julia Pastrana de Paz", + "state": "Programación" + } + ], + "totalVacancies": 60, + "totalReserved": 9, + "totalNumberOfHours": 56, + "totalInitialBudget": 0 + }, + { + "id": 6867260, + "name": "INTERPRETACIÓN DE MAPAS DE RIESGOS NATURALES Y SISTEMAS DE ALERTA TEMPRANA", + "editionVersion": [ + { + "id": 6867261, + "startDate": "2018-10-01T00:00:00", + "endDate": "2018-10-04T00:00:00", + "totalVacancies": 25, + "totalReserved": 2, + "totalNumberOfHours": 26, + "totalInitialBudget": 3100, + "coordinador": "Angela Potenciano de las Heras", + "state": "Cerrada" + } + ], + "totalVacancies": 25, + "totalReserved": 2, + "totalNumberOfHours": 26, + "totalInitialBudget": 3100 + }, + { + "id": 6867299, + "name": "MEDIDAS PREVENTIVAS ESTRUCTURALES Y NO ESTRUCTURALES FRENTE A RIESGOS NATURALES", + "editionVersion": [ + { + "id": 6867300, + "startDate": "2018-05-23T00:00:00", + "endDate": "2018-05-25T00:00:00", + "totalVacancies": 25, + "totalReserved": 4, + "totalNumberOfHours": 18, + "totalInitialBudget": 2300, + "coordinador": "Angela Potenciano de las Heras", + "state": "Cerrada" + } + ], + "totalVacancies": 25, + "totalReserved": 4, + "totalNumberOfHours": 18, + "totalInitialBudget": 2300 + } + ], + "totalVacancies": 110, + "totalReserved": 15, + "totalNumberOfHours": 100, + "totalInitialBudget": 5400 + }, + { + "id": 6867329, + "name": "2.3 Conocimiento y Análisis de Riesgos Naturales.", + "trainingActivityVersion": [ + { + "id": 6867330, + "name": "ANÁLISIS DEL RIESGO SÍSMICO", + "editionVersion": [ + { + "id": 6867331, + "startDate": "2018-02-19T00:00:00", + "endDate": "2018-02-23T00:00:00", + "totalVacancies": 40, + "totalReserved": 2, + "totalNumberOfHours": 30, + "totalInitialBudget": 4000, + "coordinador": "Estrella Romero Cordón", + "state": "Cerrada" + } + ], + "totalVacancies": 40, + "totalReserved": 2, + "totalNumberOfHours": 30, + "totalInitialBudget": 4000 + }, + { + "id": 6867399, + "name": "CURSO DE INTRODUCCIÓN AL RADAR QPE, QPF EN HIDROMETEOROLOGÍA", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6867400, + "name": "CURSO DE PLANIFICACIÓN DE PROTECCIÓN CIVIL ANTE EL RIESGO SÍSMICO", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6867401, + "name": "FENÓMENOS METEOROLÓGICOS ADVERSOS EN PROTECCIÓN CIVIL", + "editionVersion": [ + { + "id": 6867402, + "startDate": "2018-05-21T00:00:00", + "endDate": "2018-05-24T00:00:00", + "totalVacancies": 20, + "totalReserved": 3, + "totalNumberOfHours": 23, + "totalInitialBudget": 3300, + "coordinador": "Jonathan Gómez Cantero", + "state": "Cerrada" + } + ], + "totalVacancies": 20, + "totalReserved": 3, + "totalNumberOfHours": 23, + "totalInitialBudget": 3300 + }, + { + "id": 6867465, + "name": "JORNADA FORMATIVA RIESGO SÍSMICO EN EL S.E. DE LA PENÍNSULA IBÉRICA", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6867466, + "name": "JORNADA SOBRE LA NUEVA LEY DEL SISTEMA NACIONAL DE PROTECCIÓN CIVIL Y SU APLICACIÓN EN LA GESTIÓN DEL RIESGO DE INUNDACIONES", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6867467, + "name": "JORNADA TÉCNICA METEOROLOGÍA ESPACIAL", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6867468, + "name": "JORNADA TÉCNICA SOBRE PLANES DE GESTIÓN DEL RIESGO DE INUNDACIÓN", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6867469, + "name": "JORNADA TÉCNICA SOBRE RIESGO DE MAREMOTOS. PROYECTO DE LA DIRECTRIZ BÁSICA ANTE EL RIESGO DE MAREMOTOS", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6867470, + "name": "JORNADA TÉCNICA SOBRE RIESGOS SÍSMICO Y VOLCÁNICO", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6867471, + "name": "PLANIFICACIÓN DE PROTECCIÓN CIVIL EN RIESGOS NATURALES", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6867509, + "name": "RIESGOS NATURALES: IDENTIFICACIÓN Y ANÁLISIS. ONLINE", + "editionVersion": [ + { + "id": 6867510, + "startDate": "2018-02-28T00:00:00", + "endDate": "2018-06-25T00:00:00", + "totalVacancies": 50, + "totalReserved": 5, + "totalNumberOfHours": 90, + "totalInitialBudget": 5000, + "coordinador": "Mercedes Vallejo Bombín", + "state": "Cerrada" + } + ], + "totalVacancies": 50, + "totalReserved": 5, + "totalNumberOfHours": 90, + "totalInitialBudget": 5000 + }, + { + "id": 6867689, + "name": "TALLER DE ACTUALIZACIÓN SOBRE GESTIÓN DE RIESGOS GEOLÓGICOS", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6867690, + "name": "TALLER DE ACTUALIZACIÓN SOBRE GESTIÓN DE RIESGOS HIDROMETEOROLÓGICOS", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6979957, + "name": "HERRAMIENTAS DE ANÁLISIS Y PLANIFICACIÓN DE PROTECCIÓN CIVIL EN INCENDIOS FORESTALES", + "editionVersion": [ + { + "id": 6979959, + "startDate": "2018-12-31T00:00:00", + "endDate": "2018-12-31T00:00:00", + "totalVacancies": 20, + "totalReserved": 0, + "totalNumberOfHours": 25, + "totalInitialBudget": 3500, + "coordinador": "Julio César Ramos Fernández", + "state": "Anulada" + } + ], + "totalVacancies": 20, + "totalReserved": 0, + "totalNumberOfHours": 25, + "totalInitialBudget": 3500 + }, + { + "id": 6980098, + "name": "FENÓMENOS METEOROLÓGICOS ADVERSOS. NEVADAS EN EL SURESTE ESPAÑOL", + "editionVersion": [ + { + "id": 6980101, + "startDate": "2018-04-11T00:00:00", + "endDate": "2018-04-12T00:00:00", + "totalVacancies": 25, + "totalReserved": 0, + "totalNumberOfHours": 20, + "totalInitialBudget": 2000, + "coordinador": "Elías Salvador Atienza", + "state": "Cerrada" + } + ], + "totalVacancies": 25, + "totalReserved": 0, + "totalNumberOfHours": 20, + "totalInitialBudget": 2000 + }, + { + "id": 6980104, + "name": "ACTUACIÓN DE PROTECCIÓN CIVIL ANTE EL RIESGO DE INUNDACIONES EN CASTILLA-LA MANCHA", + "editionVersion": [ + { + "id": 6980106, + "startDate": "2018-11-05T00:00:00", + "endDate": "2018-11-07T00:00:00", + "totalVacancies": 25, + "totalReserved": 0, + "totalNumberOfHours": 20, + "totalInitialBudget": 2000, + "coordinador": "Valentín del Hierro Rodrigo", + "state": "Cerrada" + } + ], + "totalVacancies": 25, + "totalReserved": 0, + "totalNumberOfHours": 20, + "totalInitialBudget": 2000 + } + ], + "totalVacancies": 180, + "totalReserved": 10, + "totalNumberOfHours": 208, + "totalInitialBudget": 19800 + }, + { + "id": 6867691, + "name": "2.4 Conocimiento y Análisis de Riesgos Tecnológicos.", + "trainingActivityVersion": [ + { + "id": 6867692, + "name": "CURSO DE RIESGO DE INCENDIOS EN EDIFICIOS (Módulo I). (Nivel II).", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6867693, + "name": "CURSO DE RIESGO DE INCENDIOS EN EDIFICIOS (Módulo II). (Nivel III).", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6867694, + "name": "CURSO DE RIESGOS TECNOLÓGICOS: MÓDULO I (RIESGO QUÍMICO)", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6867695, + "name": "CURSO DE RIESGOS TECNOLÓGICOS: MÓDULO II (RIESGO RADIOLÓGICO)", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6867696, + "name": "EVALUACIÓN DE RIESGOS TECNOLÓGICOS", + "editionVersion": [ + { + "id": 6867697, + "startDate": "2018-09-24T00:00:00", + "endDate": "2018-09-28T00:00:00", + "totalVacancies": 25, + "totalReserved": 0, + "totalNumberOfHours": 35, + "totalInitialBudget": 5800, + "coordinador": "Valeriano Ortega Miravalles", + "state": "Cerrada" + } + ], + "totalVacancies": 25, + "totalReserved": 0, + "totalNumberOfHours": 35, + "totalInitialBudget": 5800 + }, + { + "id": 6867782, + "name": "JORNADA TÉCNICA SOBRE LA BASE NACIONAL DE DATOS SOBRE RIESGO QUÍMICO (BARQUIM)", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6867783, + "name": "JORNADA TÉCNICA SOBRE LA PROTECCIÓN CIVIL ANTE EL RIESGO QUÍMICO: EXPERIENCIAS Y PERSPECTIVAS DE FUTURO", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6867784, + "name": "RIESGOS TECNOLÓGICOS: MÓDULO III (RIESGO EN EL TRANSPORTE DE MERCANCÍAS PELIGROSAS)", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6867845, + "name": "RIESGOS TECNOLÓGICOS: MÓDULO IV (APLICACIONES PRÁCTICAS)", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6867912, + "name": "TALLER DE ACTUALIZACIÓN SOBRE GESTIÓN DEL RIESGO QUÍMICO", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + } + ], + "totalVacancies": 25, + "totalReserved": 0, + "totalNumberOfHours": 35, + "totalInitialBudget": 5800 + }, + { + "id": 6867913, + "name": "2.5 Conocimiento y Análisis de Riesgos Sociales.", + "trainingActivityVersion": [ + { + "id": 6867914, + "name": "ANÁLISIS Y GESTIÓN DE RIESGOS EN GRANDES CONCENTRACIONES HUMANAS", + "editionVersion": [ + { + "id": 6867915, + "startDate": "2018-05-29T00:00:00", + "endDate": "2018-06-01T00:00:00", + "totalVacancies": 30, + "totalReserved": 6, + "totalNumberOfHours": 24, + "totalInitialBudget": 2250, + "coordinador": "Fernando Talavera Esteso", + "state": "Cerrada" + } + ], + "totalVacancies": 30, + "totalReserved": 6, + "totalNumberOfHours": 24, + "totalInitialBudget": 2250 + }, + { + "id": 6867949, + "name": "COLABORACIÓN DEL VOLUNTARIADO DE P. C. EN DISPOSITIVOS ANTE GRANDES CONCENTRACIONES HUMANAS", + "editionVersion": [ + { + "id": 6867950, + "startDate": "2018-05-25T00:00:00", + "endDate": "2018-05-27T00:00:00", + "totalVacancies": 24, + "totalReserved": 0, + "totalNumberOfHours": 20, + "totalInitialBudget": 3500, + "coordinador": "Araceli Ruiz Anca", + "state": "Cerrada" + } + ], + "totalVacancies": 24, + "totalReserved": 0, + "totalNumberOfHours": 20, + "totalInitialBudget": 3500 + }, + { + "id": 6867974, + "name": "CURSO DE COLABORACIÓN DEL VOLUNTARIADO DE P. C. EN DISPOSITIVOS ANTE GRANDES CONCENTRACIONES HUMANAS", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6867975, + "name": "CURSO DE INGRESO AL VOLUNTARIADO DE PROTECCIÓN CIVIL EN CASTILLA Y LEÓN", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6867976, + "name": "JORNADA TÉCNICA SOBRE EL MARCO NORMATIVO Y LA PLANIFICACIÓN DE PROTECCIÓN CIVIL EN GRANDES CONCENTRACIONES HUMANAS. (Nivel III).", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + } + ], + "totalVacancies": 54, + "totalReserved": 6, + "totalNumberOfHours": 44, + "totalInitialBudget": 5750 + }, + { + "id": 6867977, + "name": "2.6 Herramientas para Análisis de Riesgos.", + "trainingActivityVersion": [ + { + "id": 6867978, + "name": "CARTOGRAFÍA BÁSICA APLICADA A PROTECCIÓN CIVIL", + "editionVersion": [ + { + "id": 6867979, + "startDate": "2018-05-07T00:00:00", + "endDate": "2018-05-11T00:00:00", + "totalVacancies": 20, + "totalReserved": 3, + "totalNumberOfHours": 30, + "totalInitialBudget": 3300, + "coordinador": "Francisco Javier Frutos Gonzalez", + "state": "Cerrada" + } + ], + "totalVacancies": 20, + "totalReserved": 3, + "totalNumberOfHours": 30, + "totalInitialBudget": 3300 + }, + { + "id": 6868035, + "name": "CURSO DE HERRAMIENTAS GIS PARA EL ANÁLISIS DE RIESGOS. MÓDULO I", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6868036, + "name": "CURSO DE HERRAMIENTAS GIS PARA EL ANÁLISIS DE RIESGOS. MÓDULO II", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6868037, + "name": "INTRODUCCIÓN A LA INFORMACIÓN GEOGRÁFICA DIGITAL", + "editionVersion": [ + { + "id": 6980147, + "startDate": "2018-12-17T00:00:00", + "endDate": "2018-12-31T00:00:00", + "totalVacancies": 20, + "totalReserved": 0, + "totalNumberOfHours": 15, + "totalInitialBudget": 0, + "coordinador": "Roberto Martínez-Alegría López", + "state": "Anulada" + } + ], + "totalVacancies": 20, + "totalReserved": 0, + "totalNumberOfHours": 15, + "totalInitialBudget": 0 + }, + { + "id": 6868038, + "name": "HERRAMIENTAS GIS APLICADAS A LAS ACTUACIONES DE PROTECCIÓN CIVIL", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6868107, + "name": "HERRAMIENTAS GIS PARA EL ANÁLISIS DE RIESGOS. SEMIPRESENCIAL", + "editionVersion": [ + { + "id": 6868108, + "startDate": "2018-03-05T00:00:00", + "endDate": "2018-06-01T00:00:00", + "totalVacancies": 35, + "totalReserved": 1, + "totalNumberOfHours": 90, + "totalInitialBudget": 3380, + "coordinador": "Mercedes Vallejo Bombín", + "state": "Cerrada" + } + ], + "totalVacancies": 35, + "totalReserved": 1, + "totalNumberOfHours": 90, + "totalInitialBudget": 3380 + }, + { + "id": 6868309, + "name": "INFORMACIÓN GEOGRÁFICA DIGITAL Y SU APLICACIÓN EN PROTECCIÓN CIVIL Y EMERGENCIAS. DATOS ABIERTOS DE LA ADMÓN. PUBLICA", + "editionVersion": [ + { + "id": 6868310, + "startDate": "2018-10-08T00:00:00", + "endDate": "2018-10-11T00:00:00", + "totalVacancies": 18, + "totalReserved": 6, + "totalNumberOfHours": 28, + "totalInitialBudget": 3600, + "coordinador": "Mercedes Vallejo Bombín", + "state": "Cerrada" + } + ], + "totalVacancies": 18, + "totalReserved": 6, + "totalNumberOfHours": 28, + "totalInitialBudget": 3600 + }, + { + "id": 6868359, + "name": "INTERPRETACIÓN GEOMORFOLÓGICA DE ZONAS DE ALTO RIESGO DE INUNDACIÓN", + "editionVersion": [ + { + "id": 6868360, + "startDate": "2018-09-18T00:00:00", + "endDate": "2018-09-20T00:00:00", + "totalVacancies": 15, + "totalReserved": 0, + "totalNumberOfHours": 15, + "totalInitialBudget": 2500, + "coordinador": "Angela Potenciano de las Heras", + "state": "Anulada" + } + ], + "totalVacancies": 15, + "totalReserved": 0, + "totalNumberOfHours": 15, + "totalInitialBudget": 2500 + }, + { + "id": 6868361, + "name": "JORNADA INTERNACIONAL SOBRE EVALUACIÓN DEL RIESGO EN MOVIMIENTOS DEL TERRENO (PROYECTO DORIS). (Nivel III)", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6868362, + "name": "MODELOS DE SIMULACIÓN APLICADOS AL ANÁLISIS DEL RIESGO SÍSMICO Y VOLCÁNICO", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6868366, + "name": "MODELOS DE SIMULACION APLICADOS AL ANALISIS DEL RIESGO VOLCANICO", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6868367, + "name": "MODELOS DE SIMULACIÓN HIDROLÓGICA E HIDRÁULICA APLICADOS AL ANÁLISIS DEL RIESGO POR INUNDACIÓN", + "editionVersion": [ + { + "id": 6868368, + "startDate": "2018-06-04T00:00:00", + "endDate": "2018-06-08T00:00:00", + "totalVacancies": 25, + "totalReserved": 3, + "totalNumberOfHours": 30, + "totalInitialBudget": 4200, + "coordinador": "Angela Potenciano de las Heras", + "state": "Cerrada" + } + ], + "totalVacancies": 25, + "totalReserved": 3, + "totalNumberOfHours": 30, + "totalInitialBudget": 4200 + }, + { + "id": 6868442, + "name": "SEMINARIO DE SEGUIMIENTO DE RESULTADOS DEL PROYECTO DORIS Y LAMPRE", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6868443, + "name": "UTILIZACIÓN DE TELEDETECCIÓN EN LA GESTIÓN DE RIESGOS NATURALES EN PROTECCIÓN CIVIL", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6975970, + "name": "JORNADA SOBRE SISTEMAS DE INFORMACIÓN GEOGRÁFICA EN PROTECCIÓN CIVIL (PENBU)", + "editionVersion": [ + { + "id": 6975973, + "startDate": "2018-09-26T00:00:00", + "endDate": "2018-09-26T00:00:00", + "totalVacancies": 20, + "totalReserved": 0, + "totalNumberOfHours": 5, + "totalInitialBudget": 378, + "coordinador": "Javier Basconcillos Arce", + "state": "Cerrada" + } + ], + "totalVacancies": 20, + "totalReserved": 0, + "totalNumberOfHours": 5, + "totalInitialBudget": 378 + } + ], + "totalVacancies": 153, + "totalReserved": 13, + "totalNumberOfHours": 213, + "totalInitialBudget": 17358 + }, + { + "id": 6868445, + "name": "2.8 Educación (valores) para la Prevención.", + "trainingActivityVersion": [ + { + "id": 6868446, + "name": "ACTUACIÓN EN EMERGENCIAS CON PERSONAS CON DISCAPACIDAD", + "editionVersion": [ + { + "id": 6868447, + "startDate": "2018-05-03T00:00:00", + "endDate": "2018-05-03T00:00:00", + "totalVacancies": 40, + "totalReserved": 2, + "totalNumberOfHours": 6, + "totalInitialBudget": 0, + "coordinador": "Francisco Canes Domenech", + "state": "Cerrada" + }, + { + "id": 6868450, + "startDate": "2018-11-07T00:00:00", + "endDate": "2018-11-07T00:00:00", + "totalVacancies": 40, + "totalReserved": 0, + "totalNumberOfHours": 6, + "totalInitialBudget": 0, + "coordinador": "Francisco Canes Domenech", + "state": "Anulada" + } + ], + "totalVacancies": 80, + "totalReserved": 2, + "totalNumberOfHours": 12, + "totalInitialBudget": 0 + }, + { + "id": 6868454, + "name": "CURSO DE PROCEDIMIENTOS PARA LA GESTION DE LA DOCENCIA EN LA ENPC", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6868455, + "name": "CURSO EALEARNING SOBRE RIESGOS PETROLÍFEROS", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6868456, + "name": "CURSO SOBRE EL SISTEMA NACIONAL DE PROTECCIÓN CIVIL PARA FORMADORES DE VOLUNTARIOS DE PROTECCIÓN CIVIL", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6868457, + "name": "CURSO SOBRE FORMACIÓN EN PROCEDIMIENTOS ESTANDARIZADOS PARA EJERCICIOS PRÁCTICOS DE LA ENPC", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6868458, + "name": "CURSO SOBRE FORMACIÓN EN PROCEDIMIENTOS ESTANDARIZADOS PARA EJERCICIOS PRÁCTICOS DE LA ENPC NIVEL I", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6868459, + "name": "FOMENTO DE LA CULTURA PREVENTIVA EN ESCOLARES", + "editionVersion": [ + { + "id": 6868460, + "startDate": "2018-04-07T00:00:00", + "endDate": "2018-04-08T00:00:00", + "totalVacancies": 30, + "totalReserved": 0, + "totalNumberOfHours": 15, + "totalInitialBudget": 2000, + "coordinador": "Juan Antonio Iborra Bernal", + "state": "Cerrada" + } + ], + "totalVacancies": 30, + "totalReserved": 0, + "totalNumberOfHours": 15, + "totalInitialBudget": 2000 + }, + { + "id": 6868481, + "name": "FORMACIÓN EN METODOLOGÍA TECNOLOGÍA E-LEARNING PARA ACTIVIDADES FORMATIVAS DE LA ENPC", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6868544, + "name": "FORMACIÓN PARA LA DOCENCIA PARA PERSONAL DOCENTE DE PROTECCIÓN CIVIL", + "editionVersion": [ + { + "id": 6868545, + "startDate": "2018-12-31T00:00:00", + "endDate": "2018-12-31T00:00:00", + "totalVacancies": 40, + "totalReserved": 0, + "totalNumberOfHours": 70, + "totalInitialBudget": 8400, + "coordinador": "Araceli Ruiz Anca", + "state": "Anulada" + } + ], + "totalVacancies": 40, + "totalReserved": 0, + "totalNumberOfHours": 70, + "totalInitialBudget": 8400 + }, + { + "id": 6868546, + "name": "PREVENCIÓN DE ACCIDENTES DE TRÁFICO Y LA ATENCIÓN MULTIDISCIPLINAR A LAS VÍCTIMAS, FAMILIARES Y ENTORNO", + "editionVersion": [ + { + "id": 6868547, + "startDate": "2018-12-03T00:00:00", + "endDate": "2018-12-04T00:00:00", + "totalVacancies": 40, + "totalReserved": 0, + "totalNumberOfHours": 16, + "totalInitialBudget": 4906, + "coordinador": "Francisco Canes Domenech", + "state": "Anulada" + } + ], + "totalVacancies": 40, + "totalReserved": 0, + "totalNumberOfHours": 16, + "totalInitialBudget": 4906 + }, + { + "id": 6868579, + "name": "REUNIÓN TÉCNICA SOBRE FORMACIÓN EN PROCEDIMIENTOS ESTANDARIZADOS PARA EJERCICIOS PRÁCTICOS DE LA ENPC", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6868659, + "name": "SEMANA DE LA AUTOPROTECCIÓN DE ESCOLARES", + "editionVersion": [ + { + "id": 6868660, + "startDate": "2018-04-16T00:00:00", + "endDate": "2018-04-21T00:00:00", + "totalVacancies": 1500, + "totalReserved": 999, + "totalNumberOfHours": 35, + "totalInitialBudget": 16300, + "coordinador": "Sergio García Batanero", + "state": "Cerrada" + } + ], + "totalVacancies": 1500, + "totalReserved": 999, + "totalNumberOfHours": 35, + "totalInitialBudget": 16300 + } + ], + "totalVacancies": 1690, + "totalReserved": 1001, + "totalNumberOfHours": 148, + "totalInitialBudget": 31606 + } + ], + "totalVacancies": 2212, + "totalReserved": 1045, + "totalNumberOfHours": 748, + "totalInitialBudget": 85714 + }, + { + "id": 6868668, + "name": "3 PLANIFICACIÓN DE PROTECCIÓN CIVIL", + "submoduleVersion": [ + { + "id": 6868669, + "name": "3.2 Diseño y Elaboración de Planes.", + "trainingActivityVersion": [ + { + "id": 6868670, + "name": "DISEÑO E IMPLANTACIÓN DE PLANES DE AUTOPROTECCIÓN EN EDIFICIOS E INSTALACIONES INDUSTRIALES", + "editionVersion": [ + { + "id": 6868671, + "startDate": "2018-03-12T00:00:00", + "endDate": "2018-03-23T00:00:00", + "totalVacancies": 25, + "totalReserved": 16, + "totalNumberOfHours": 65, + "totalInitialBudget": 5088, + "coordinador": "María Josefa Granada Ferrero", + "state": "Cerrada" + } + ], + "totalVacancies": 25, + "totalReserved": 16, + "totalNumberOfHours": 65, + "totalInitialBudget": 5088 + }, + { + "id": 6868765, + "name": "DISEÑO Y PLANIFICACIÓN DE EMERGENCIAS EN EDIFICIOS E INSTALACIONES", + "editionVersion": [ + { + "id": 6868766, + "startDate": "2018-06-04T00:00:00", + "endDate": "2018-06-08T00:00:00", + "totalVacancies": 30, + "totalReserved": 2, + "totalNumberOfHours": 25, + "totalInitialBudget": 2050, + "coordinador": "Cristina Mónica Toboso Muelas", + "state": "Cerrada" + } + ], + "totalVacancies": 30, + "totalReserved": 2, + "totalNumberOfHours": 25, + "totalInitialBudget": 2050 + }, + { + "id": 6868800, + "name": "JORNADA TÉCNICA DE ELABORACIÓN Y ANÁLISIS DE PLANES DE EMERGENCIA Y AUTOPROTECCIÓN. (Nivel I)", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6868801, + "name": "JORNADA TÉCNICA DE NOVEDADES SOBRE PLANIFICACIÓN DE PROTECCIÓN CIVIL ANTE LOS RIESGOS NUCLEAR Y RADIOLÓGICO", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6979961, + "name": "PREVENCIÓN Y PLANIFICACIÓN DE RIESGOS TECNOLÓGICOS", + "editionVersion": [ + { + "id": 6979963, + "startDate": "2018-12-31T00:00:00", + "endDate": "2018-12-31T00:00:00", + "totalVacancies": 25, + "totalReserved": 0, + "totalNumberOfHours": 35, + "totalInitialBudget": 4800, + "coordinador": "Valeriano Ortega Miravalles", + "state": "Anulada" + } + ], + "totalVacancies": 25, + "totalReserved": 0, + "totalNumberOfHours": 35, + "totalInitialBudget": 4800 + }, + { + "id": 6980142, + "name": "PLANES DE AUTOPROTECCIÓN Y EMERGENCIA EN EDIFICIOS PÚBLICOS", + "editionVersion": [ + { + "id": 6980144, + "startDate": "2018-12-31T00:00:00", + "endDate": "2018-12-31T00:00:00", + "totalVacancies": 25, + "totalReserved": 0, + "totalNumberOfHours": 20, + "totalInitialBudget": 2000, + "coordinador": " ", + "state": "Anulada" + } + ], + "totalVacancies": 25, + "totalReserved": 0, + "totalNumberOfHours": 20, + "totalInitialBudget": 2000 + }, + { + "id": 6980375, + "name": "PLANIFICACIÓN DE PROTECCIÓN CIVIL EN RIESGOS NATURALES", + "editionVersion": [ + { + "id": 6980377, + "startDate": "2018-06-25T00:00:00", + "endDate": "2018-06-28T00:00:00", + "totalVacancies": 25, + "totalReserved": 0, + "totalNumberOfHours": 25, + "totalInitialBudget": 3000, + "coordinador": "Mercedes Vallejo Bombín", + "state": "Cerrada" + } + ], + "totalVacancies": 25, + "totalReserved": 0, + "totalNumberOfHours": 25, + "totalInitialBudget": 3000 + } + ], + "totalVacancies": 130, + "totalReserved": 18, + "totalNumberOfHours": 170, + "totalInitialBudget": 16938 + }, + { + "id": 6868802, + "name": "3.3 Gestión e Implantación de Planes.", + "trainingActivityVersion": [ + { + "id": 6868803, + "name": "GESTIÓN DEL RIESGO DE INUNDACIONES: IMPLANTACIÓN DE NUEVAS NORMATIVAS", + "editionVersion": [ + { + "id": 6868804, + "startDate": "2018-11-26T00:00:00", + "endDate": "2018-11-30T00:00:00", + "totalVacancies": 30, + "totalReserved": 2, + "totalNumberOfHours": 35, + "totalInitialBudget": 3000, + "coordinador": "Estrella Romero Cordón", + "state": "Cerrada" + } + ], + "totalVacancies": 30, + "totalReserved": 2, + "totalNumberOfHours": 35, + "totalInitialBudget": 3000 + }, + { + "id": 6868851, + "name": "II JORNADA TÉCNICA SOBRE PLANES DE AUTOPROTECCIÓN DE CENTROS ESCOLARES EN EL ÁMBITO TERRITORIAL DE LOS PLANES DE EMERGENCIA NUCLEAR", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6868852, + "name": "JORNADA SOBRE INVESTIGACIÓN DE CAUSAS EN LOS PLANES DE PROTECCIÓN CIVIL DE INCENDIOS FORESTALES. ASPECTOS PENALES Y PROCESALES", + "editionVersion": [ + { + "id": 6868853, + "startDate": "2018-05-16T00:00:00", + "endDate": "2018-05-17T00:00:00", + "totalVacancies": 30, + "totalReserved": 0, + "totalNumberOfHours": 10, + "totalInitialBudget": 808, + "coordinador": "Sofía González López", + "state": "Cerrada" + } + ], + "totalVacancies": 30, + "totalReserved": 0, + "totalNumberOfHours": 10, + "totalInitialBudget": 808 + }, + { + "id": 6868873, + "name": "JORNADA TÉCNICA SOBRE LOS PLANES DE COORDINACIÓN Y APOYO: INSTRUMENTOS PARA LA GESTIÓN DE EMERGENCIAS", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6868874, + "name": "METODOLOGÍAS DE ORGANIZACIÓN Y PLANIFICACIÓN DE EJERCICIOS Y SIMULACROS", + "editionVersion": [ + { + "id": 6868875, + "startDate": "2018-04-17T00:00:00", + "endDate": "2018-04-19T00:00:00", + "totalVacancies": 25, + "totalReserved": 4, + "totalNumberOfHours": 24, + "totalInitialBudget": 1200, + "coordinador": "Miguel Tomé de la Vega", + "state": "Cerrada" + } + ], + "totalVacancies": 25, + "totalReserved": 4, + "totalNumberOfHours": 24, + "totalInitialBudget": 1200 + }, + { + "id": 6979965, + "name": "JORNADA SOBRE IMPLANTACIÓN DE PLANES DE EMRGENCIA EN PRESAS", + "editionVersion": [ + { + "id": 6980095, + "startDate": "2018-02-14T00:00:00", + "endDate": "2018-02-14T00:00:00", + "totalVacancies": 40, + "totalReserved": 0, + "totalNumberOfHours": 5, + "totalInitialBudget": 1500, + "coordinador": "Rosa María Torres Saavedra", + "state": "Cerrada" + }, + { + "id": 6980096, + "startDate": "2018-05-09T00:00:00", + "endDate": "2018-05-09T00:00:00", + "totalVacancies": 40, + "totalReserved": 0, + "totalNumberOfHours": 5, + "totalInitialBudget": 1500, + "coordinador": "Rosa María Torres Saavedra", + "state": "Cerrada" + } + ], + "totalVacancies": 80, + "totalReserved": 0, + "totalNumberOfHours": 10, + "totalInitialBudget": 3000 + }, + { + "id": 6980196, + "name": "JORNADA TÉCNICA SOBRE IMPLANTACIÓN Y APLICACION DE LOS PLANES DE EMERGENCIA EXTERIOR DEL SECTOR QUÍMICO", + "editionVersion": [ + { + "id": 6980198, + "startDate": "2018-12-04T00:00:00", + "endDate": "2018-12-04T00:00:00", + "totalVacancies": 40, + "totalReserved": 0, + "totalNumberOfHours": 6, + "totalInitialBudget": 5279, + "coordinador": "Valeriano Ortega Miravalles", + "state": "Cerrada" + } + ], + "totalVacancies": 40, + "totalReserved": 0, + "totalNumberOfHours": 6, + "totalInitialBudget": 5279 + } + ], + "totalVacancies": 205, + "totalReserved": 6, + "totalNumberOfHours": 85, + "totalInitialBudget": 13287 + }, + { + "id": 6868940, + "name": "3.1 Fundamentos de la Planificación", + "trainingActivityVersion": [ + { + "id": 6868941, + "name": "CURSO SOBRE PLANES DE EMERGENCIA PARA PERSONAL DE LOS ÓRGANOS DIRECTIVOS DE LA AGE", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6868942, + "name": "PLANIFICACIÓN DE PROTECCIÓN CIVIL ONLINE", + "editionVersion": [ + { + "id": 6868943, + "startDate": "2018-09-12T00:00:00", + "endDate": "2018-12-10T00:00:00", + "totalVacancies": 60, + "totalReserved": 12, + "totalNumberOfHours": 110, + "totalInitialBudget": 8000, + "coordinador": "Mercedes Vallejo Bombín", + "state": "Anulada" + } + ], + "totalVacancies": 60, + "totalReserved": 12, + "totalNumberOfHours": 110, + "totalInitialBudget": 8000 + } + ], + "totalVacancies": 60, + "totalReserved": 12, + "totalNumberOfHours": 110, + "totalInitialBudget": 8000 + } + ], + "totalVacancies": 395, + "totalReserved": 36, + "totalNumberOfHours": 365, + "totalInitialBudget": 38225 + }, + { + "id": 6868945, + "name": "4 OPERACIONES EN EMERGENCIAS DE P.C", + "submoduleVersion": [ + { + "id": 6868946, + "name": "4.1 Dirección y Gestión de las Intervenciones.", + "trainingActivityVersion": [ + { + "id": 6868947, + "name": "COORDINACIÓN Y GESTIÓN DE EMERGENCIAS", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6869034, + "name": "CURSO DE DIRECCIÓN Y GESTIÓN DE EMERGENCIAS: OPERACIÓN Y CONTROL. (Nivel II).", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6869035, + "name": "CURSO DE METODOLOGÍAS DE GESTION OPERATIVA Y COMANDO", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6869036, + "name": "CURSO DE OPERACIONES DE EXTINCIÓN DE INCENDIOS FORESTALES PARA JEFES DE BIEM", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6869037, + "name": "DIRECCIÓN DE OPERACIONES DE EXTINCIÓN DE INCENDIOS FORESTALES MODULO I", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6869126, + "name": "DIRECCIÓN DE OPERACIONES DE EXTINCIÓN DE INCENDIOS FORESTALES MODULO II", + "editionVersion": [ + { + "id": 6972374, + "startDate": "2018-02-05T00:00:00", + "endDate": "2018-02-16T00:00:00", + "totalVacancies": 22, + "totalReserved": 22, + "totalNumberOfHours": 56, + "totalInitialBudget": 9300, + "coordinador": "Julio César Ramos Fernández", + "state": "Cerrada" + } + ], + "totalVacancies": 22, + "totalReserved": 22, + "totalNumberOfHours": 56, + "totalInitialBudget": 9300 + }, + { + "id": 6869127, + "name": "DIRECCIÓN Y GESTIÓN DE EMERGENCIAS: EVALUACIÓN, COMUNICACIÓN Y COORDINACIÓN", + "editionVersion": [ + { + "id": 6869128, + "startDate": "2018-04-02T00:00:00", + "endDate": "2018-04-06T00:00:00", + "totalVacancies": 21, + "totalReserved": 9, + "totalNumberOfHours": 35, + "totalInitialBudget": 5000, + "coordinador": "María Vara Moral", + "state": "Cerrada" + } + ], + "totalVacancies": 21, + "totalReserved": 9, + "totalNumberOfHours": 35, + "totalInitialBudget": 5000 + }, + { + "id": 6869207, + "name": "GOM II. GESTIÓN OPERATIVA Y MANDO PUESTO DE MANDO AVANZADO, HERAMIENTAS DE GESTIÓN DE UN PMA", + "editionVersion": [ + { + "id": 6869208, + "startDate": "2018-11-26T00:00:00", + "endDate": "2018-11-30T00:00:00", + "totalVacancies": 12, + "totalReserved": 0, + "totalNumberOfHours": 30, + "totalInitialBudget": 3300, + "coordinador": "Pablo Calvo Barrios", + "state": "Anulada" + } + ], + "totalVacancies": 12, + "totalReserved": 0, + "totalNumberOfHours": 30, + "totalInitialBudget": 3300 + }, + { + "id": 6869246, + "name": "GESTIÓN OPERATIVA Y COMANDO MÓDULO III (FORESTAL)", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6869338, + "name": "GESTIÓN OPERATIVA Y MANDO. HERRAMIENTAS DE GESTIÓN DE CRISIS EN UN PUESTO DE MANDO", + "editionVersion": [ + { + "id": 6869339, + "startDate": "2018-10-09T00:00:00", + "endDate": "2018-10-11T00:00:00", + "totalVacancies": 18, + "totalReserved": 2, + "totalNumberOfHours": 21, + "totalInitialBudget": 4000, + "coordinador": "Emilio Leo Ferrando", + "state": "Cerrada" + } + ], + "totalVacancies": 18, + "totalReserved": 2, + "totalNumberOfHours": 21, + "totalInitialBudget": 4000 + }, + { + "id": 6869367, + "name": "INTERMEDIO DE DIRECCIÓN DE EXTINCIÓN DE INCENDIOS FORESTALES", + "editionVersion": [ + { + "id": 6869368, + "startDate": "2018-11-12T00:00:00", + "endDate": "2018-11-23T00:00:00", + "totalVacancies": 22, + "totalReserved": 22, + "totalNumberOfHours": 56, + "totalInitialBudget": 9790, + "coordinador": "Paula Raboso Campos", + "state": "Cerrada" + } + ], + "totalVacancies": 22, + "totalReserved": 22, + "totalNumberOfHours": 56, + "totalInitialBudget": 9790 + }, + { + "id": 6869525, + "name": " JORNADA TÉCNICA SOBRE LA NORMA ISO 22320 SOBRE GESTIÓN DE EMERGENCIAS", + "editionVersion": [ + { + "id": 6869526, + "startDate": "2018-02-27T00:00:00", + "endDate": "2018-02-27T00:00:00", + "totalVacancies": 40, + "totalReserved": 20, + "totalNumberOfHours": 4, + "totalInitialBudget": 1500, + "coordinador": "Luis Sáenz de San Pedro Alba", + "state": "Anulada" + } + ], + "totalVacancies": 40, + "totalReserved": 20, + "totalNumberOfHours": 4, + "totalInitialBudget": 1500 + }, + { + "id": 6869528, + "name": "JORNADA TÉCNICA HISPANO-LUSA SOBRE METODOLOGÍA DE GESTIÓN OPERATIVA EN INCENDIOS FORESTALES. SITUACIONES TRANSFRONTERIZAS", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6869529, + "name": "JORNADA TÉCNICA SOBRE GESTIÓN OPERATIVA DE EMERGENCIAS", + "editionVersion": [ + { + "id": 6869530, + "startDate": "2018-12-31T00:00:00", + "endDate": "2018-12-31T00:00:00", + "totalVacancies": 40, + "totalReserved": 40, + "totalNumberOfHours": 7, + "totalInitialBudget": 1500, + "coordinador": "Luis Sáenz de San Pedro Alba", + "state": "Anulada" + } + ], + "totalVacancies": 40, + "totalReserved": 40, + "totalNumberOfHours": 7, + "totalInitialBudget": 1500 + }, + { + "id": 6869532, + "name": "PLANIFICACIÓN Y GESTIÓN DE EMERGENCIAS SÍSMICAS", + "editionVersion": [ + { + "id": 6869533, + "startDate": "2018-04-09T00:00:00", + "endDate": "2018-04-13T00:00:00", + "totalVacancies": 40, + "totalReserved": 0, + "totalNumberOfHours": 35, + "totalInitialBudget": 4000, + "coordinador": "Estrella Romero Cordón", + "state": "Cerrada" + } + ], + "totalVacancies": 40, + "totalReserved": 0, + "totalNumberOfHours": 35, + "totalInitialBudget": 4000 + }, + { + "id": 6980133, + "name": "GOM 0. CONCEPTOS GENERALES DE GESTIÓN OPERATIVA Y MANDO. ONLINE", + "editionVersion": [ + { + "id": 6980135, + "startDate": "2018-12-31T00:00:00", + "endDate": "2018-12-31T00:00:00", + "totalVacancies": 40, + "totalReserved": 0, + "totalNumberOfHours": 40, + "totalInitialBudget": 3000, + "coordinador": "Pablo Calvo Barrios", + "state": "Anulada" + } + ], + "totalVacancies": 40, + "totalReserved": 0, + "totalNumberOfHours": 40, + "totalInitialBudget": 3000 + }, + { + "id": 6980137, + "name": "GOM I. GESTIÓN OPERATIVA Y MANDO JEFES DE GRUPO", + "editionVersion": [ + { + "id": 6980139, + "startDate": "2018-12-31T00:00:00", + "endDate": "2018-12-31T00:00:00", + "totalVacancies": 12, + "totalReserved": 0, + "totalNumberOfHours": 32, + "totalInitialBudget": 5000, + "coordinador": "Pablo Calvo Barrios", + "state": "Anulada" + }, + { + "id": 6980140, + "startDate": "2018-12-31T00:00:00", + "endDate": "2018-12-31T00:00:00", + "totalVacancies": 12, + "totalReserved": 0, + "totalNumberOfHours": 32, + "totalInitialBudget": 5000, + "coordinador": "Pablo Calvo Barrios", + "state": "Anulada" + } + ], + "totalVacancies": 24, + "totalReserved": 0, + "totalNumberOfHours": 64, + "totalInitialBudget": 10000 + } + ], + "totalVacancies": 279, + "totalReserved": 115, + "totalNumberOfHours": 348, + "totalInitialBudget": 51390 + }, + { + "id": 6869591, + "name": "4.2 Rescate y Salvamento.", + "trainingActivityVersion": [ + { + "id": 6869592, + "name": "ACTUACIÓN EN EMERGENCIAS PARA SERVICIOS ESPECIALES DE SEGURIDAD", + "editionVersion": [ + { + "id": 6869593, + "startDate": "2018-04-06T00:00:00", + "endDate": "2018-04-13T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 32, + "totalInitialBudget": 5900, + "coordinador": "Raúl Mollar Martín", + "state": "Cerrada" + } + ], + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 32, + "totalInitialBudget": 5900 + }, + { + "id": 6869739, + "name": "COORDINACIÓN DE INTERVINIENTES ANTE UN ACCIDENTE DE TRÁFICO", + "editionVersion": [ + { + "id": 6869740, + "startDate": "2018-03-02T00:00:00", + "endDate": "2018-03-03T00:00:00", + "totalVacancies": 25, + "totalReserved": 0, + "totalNumberOfHours": 15, + "totalInitialBudget": 2575, + "coordinador": "Máximo Javier López Miralles", + "state": "Cerrada" + } + ], + "totalVacancies": 25, + "totalReserved": 0, + "totalNumberOfHours": 15, + "totalInitialBudget": 2575 + }, + { + "id": 6869778, + "name": "CURSO AVANZADO DE EXTINCIÓN DE INCENDIOS, BÚSQUEDA Y RESCATE EN ESPACIOS CONFINADOS PARA CUERPOS DE SEGURIDAD EN SITUACIONES DE EMERGENCIA", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6869779, + "name": "CURSO BÁSICO DE PROTOCOLOS DE ACTUACIÓN EN EMERGENCIAS PARA SERVICIOS ESPECIALES DE SEGURIDAD", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6869780, + "name": "CURSO BASICO DE TECNICAS DE INTERVENCION Y SEGURIDAD EN ESPACIOS CONFINADOS Y EXTINCIÓN BASICA PARA CUERPOS DE SEGURIDAD EN SITUACIONES DE EMERGENCIA", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6869781, + "name": "CURSO DE APOYO EN LA BÚSQUEDA Y RESCATE DE PERSONAS EN EL MEDIO ACUÁTICO PARA VOLUNTARIOS DE PROTECCIÓN CIVIL", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6869782, + "name": "CURSO DE ESTRUCTURAS COLAPSADAS PARA INSTRUCTORES DE GRUPOS DE LA ANGPS-IRO. (Nivel II).", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6869783, + "name": "CURSO DE FORMACIÓN PARA VOLUNTARIOS DE PROTECCIÓN CIVIL. ACCIONES A TENER EN CUENTA ANTE UN ACCIDENTE DE TRÁFICO. (Nivel I)", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6869784, + "name": "CURSO DE GUÍAS CANINOS. ESPECIALISTA EN GRANDES ÁREAS. (Nivel III).", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6869785, + "name": "CURSO DE GUÍAS CANINOS. FIGURANTES - PREPARADORES DE PERROS DE RESCATE", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6869786, + "name": "CURSO DE PROTOCOLOS DE ACTUACIÓN EN EMERGENCIAS PARA SERVICIOS ESPECIALES DE SEGURIDAD", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6869787, + "name": "CURSO DE SALVAMENTO ACUÁTICO EN RÍOS Y PANTANOS PARA VOLUNTARIOS DE PROTECCIÓN CIVIL", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6869788, + "name": "CURSO DE TÉCNICAS DE SEGURIDAD E INTERVENCIÓN EN RESCATE Y SALVAMENTO EN ESTRUCTURAS COLAPSADAS. NIVEL BÁSICO. (Nivel I).", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6869789, + "name": "GUÍAS CANINOS. CAPACITACIÓN EN BÚSQUEDA Y SALVAMENTO CON PERROS DE RESCATE", + "editionVersion": [ + { + "id": 6869790, + "startDate": "2018-03-05T00:00:00", + "endDate": "2018-03-10T00:00:00", + "totalVacancies": 20, + "totalReserved": 13, + "totalNumberOfHours": 56, + "totalInitialBudget": 10413, + "coordinador": "Susana Izquierdo Funcia", + "state": "Cerrada" + } + ], + "totalVacancies": 20, + "totalReserved": 13, + "totalNumberOfHours": 56, + "totalInitialBudget": 10413 + }, + { + "id": 6869873, + "name": "GUÍAS CANINOS. ESPECIALISTA EN DESLIZAMIENTOS DEL TERRENO", + "editionVersion": [ + { + "id": 6869874, + "startDate": "2018-05-07T00:00:00", + "endDate": "2018-05-12T00:00:00", + "totalVacancies": 15, + "totalReserved": 10, + "totalNumberOfHours": 56, + "totalInitialBudget": 11614, + "coordinador": "Susana Izquierdo Funcia", + "state": "Cerrada" + } + ], + "totalVacancies": 15, + "totalReserved": 10, + "totalNumberOfHours": 56, + "totalInitialBudget": 11614 + }, + { + "id": 6869968, + "name": "GUÍAS CANINOS. ESPECIALISTA EN ESTRUCTURAS COLAPSADAS", + "editionVersion": [ + { + "id": 6980454, + "startDate": "2018-04-09T00:00:00", + "endDate": "2018-04-14T00:00:00", + "totalVacancies": 15, + "totalReserved": 11, + "totalNumberOfHours": 56, + "totalInitialBudget": 12744, + "coordinador": "Mari Luz López Arbesú", + "state": "Cerrada" + } + ], + "totalVacancies": 15, + "totalReserved": 11, + "totalNumberOfHours": 56, + "totalInitialBudget": 12744 + }, + { + "id": 6870058, + "name": "GUÍAS CANINOS. TÉCNICAS BÁSICAS DE TRABAJO VERTICAL, DESCENSO Y AUTORRESCATE PARA GUÍAS DE INTERVENCIÓN CON PERROS", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6870134, + "name": "GUÍAS DE PERROS. PRIMEROS AUXILIOS VETERINARIOS AVANZADOS PARA PERROS DE RESCATE", + "editionVersion": [ + { + "id": 7006642, + "startDate": "2018-11-30T00:00:00", + "endDate": "2018-12-02T00:00:00", + "totalVacancies": 20, + "totalReserved": 14, + "totalNumberOfHours": 20, + "totalInitialBudget": 6554, + "coordinador": "Mari Luz López Arbesú", + "state": "Anulada" + } + ], + "totalVacancies": 20, + "totalReserved": 14, + "totalNumberOfHours": 20, + "totalInitialBudget": 6554 + }, + { + "id": 6870257, + "name": "GUÍAS DE PERROS. PRIMEROS AUXILIOS VETERINARIOS BÁSICOS PARA PERROS DE RESCATE", + "editionVersion": [ + { + "id": 6980448, + "startDate": "2018-11-24T00:00:00", + "endDate": "2018-12-02T00:00:00", + "totalVacancies": 20, + "totalReserved": 0, + "totalNumberOfHours": 30, + "totalInitialBudget": 7400, + "coordinador": "Mari Luz López Arbesú", + "state": "Anulada" + }, + { + "id": 6870258, + "startDate": "2018-06-09T00:00:00", + "endDate": "2018-06-17T00:00:00", + "totalVacancies": 20, + "totalReserved": 16, + "totalNumberOfHours": 30, + "totalInitialBudget": 7400, + "coordinador": "Mari Luz López Arbesú", + "state": "Cerrada" + } + ], + "totalVacancies": 40, + "totalReserved": 16, + "totalNumberOfHours": 60, + "totalInitialBudget": 14800 + }, + { + "id": 6870330, + "name": "ORIENTACIÓN, MOVILIDAD Y RESCATE EN CONDICIONES DE BAJA O NULA VISIBILIDAD", + "editionVersion": [ + { + "id": 6870331, + "startDate": "2018-11-26T00:00:00", + "endDate": "2018-11-30T00:00:00", + "totalVacancies": 20, + "totalReserved": 0, + "totalNumberOfHours": 35, + "totalInitialBudget": 7185, + "coordinador": "Jesús Mirón Nieto", + "state": "Anulada" + } + ], + "totalVacancies": 20, + "totalReserved": 0, + "totalNumberOfHours": 35, + "totalInitialBudget": 7185 + }, + { + "id": 6870363, + "name": "SALVAMENTO ACUÁTICO PARA VOLUNTARIOS DE PROTECCIÓN CIVIL", + "editionVersion": [ + { + "id": 6870364, + "startDate": "2018-04-26T00:00:00", + "endDate": "2018-04-29T00:00:00", + "totalVacancies": 30, + "totalReserved": 0, + "totalNumberOfHours": 30, + "totalInitialBudget": 3320, + "coordinador": "Arturo Fuente Pedrejón", + "state": "Cerrada" + }, + { + "id": 6870400, + "startDate": "2018-05-17T00:00:00", + "endDate": "2018-05-20T00:00:00", + "totalVacancies": 30, + "totalReserved": 0, + "totalNumberOfHours": 30, + "totalInitialBudget": 3320, + "coordinador": "Oliva García Trasancos", + "state": "Cerrada" + }, + { + "id": 6870424, + "startDate": "2018-06-07T00:00:00", + "endDate": "2018-06-10T00:00:00", + "totalVacancies": 30, + "totalReserved": 0, + "totalNumberOfHours": 30, + "totalInitialBudget": 3320, + "coordinador": "Ramón Pérez Barrientos", + "state": "Cerrada" + } + ], + "totalVacancies": 90, + "totalReserved": 0, + "totalNumberOfHours": 90, + "totalInitialBudget": 9960 + }, + { + "id": 6870454, + "name": "TÉCNICAS DE EXTINCIÓN DE INCENDIOS, BÚSQUEDA, ORIENTACIÓN Y RESCATE EN EDIFICIOS SUBTERRANEOS PARA CUERPOS DE SEGURIDAD EN OPERACIONES ESPECIALES. AVANZADO", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6870558, + "name": "VOLADURAS CONTROLADAS PARA RESCATE", + "editionVersion": [ + { + "id": 6870559, + "startDate": "2018-10-23T00:00:00", + "endDate": "2018-10-25T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 20, + "totalInitialBudget": 5110, + "coordinador": "Sergio Tuñón Iglesias", + "state": "Cerrada" + }, + { + "id": 6870590, + "startDate": "2018-11-27T00:00:00", + "endDate": "2018-11-29T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 20, + "totalInitialBudget": 5110, + "coordinador": "Sergio Tuñón Iglesias", + "state": "Cerrada" + } + ], + "totalVacancies": 40, + "totalReserved": 40, + "totalNumberOfHours": 40, + "totalInitialBudget": 10220 + }, + { + "id": 6979913, + "name": "TÉCNICAS DE EXTINCIÓN Y SALVAMENTO EN ESPACIOS CONFINADOS EN EDIFICIOS SUBTERRÁNEOS PARA CUERPOS DE SEGURIDAD DE OPERACIONES ESPECIALES EN INFRAESTRUCTURAS CRÍTICAS", + "editionVersion": [ + { + "id": 6979916, + "startDate": "2018-02-06T00:00:00", + "endDate": "2018-02-08T00:00:00", + "totalVacancies": 14, + "totalReserved": 14, + "totalNumberOfHours": 24, + "totalInitialBudget": 4940, + "coordinador": "Daniel Arroyo Fernández", + "state": "Cerrada" + }, + { + "id": 6979918, + "startDate": "2018-02-13T00:00:00", + "endDate": "2018-02-15T00:00:00", + "totalVacancies": 14, + "totalReserved": 14, + "totalNumberOfHours": 24, + "totalInitialBudget": 4940, + "coordinador": "Daniel Arroyo Fernández", + "state": "Cerrada" + } + ], + "totalVacancies": 28, + "totalReserved": 28, + "totalNumberOfHours": 48, + "totalInitialBudget": 9880 + } + ], + "totalVacancies": 333, + "totalReserved": 152, + "totalNumberOfHours": 508, + "totalInitialBudget": 101845 + }, + { + "id": 6870600, + "name": "4.3 Intervención de Lucha Contra el Siniestro.", + "trainingActivityVersion": [ + { + "id": 6870601, + "name": "*JORNADA TÉCNICA ASELF Nº3 (PROVISIONAL)*", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6870602, + "name": "*JORNADA TÉCNICA ASELF Nº4 (PROVISIONAL)*", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6870603, + "name": "*JORNADA TÉCNICA ASELF Nº5 (PROVISIONAL)*", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6870604, + "name": "CAPACITACIÓN EN EL MANEJO DE EXTINTORES Y BIES", + "editionVersion": [ + { + "id": 6870605, + "startDate": "2018-02-08T00:00:00", + "endDate": "2018-02-08T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 6, + "totalInitialBudget": 1472, + "coordinador": "Jesús Mirón Nieto", + "state": "Cerrada" + }, + { + "id": 6870618, + "startDate": "2018-02-13T00:00:00", + "endDate": "2018-02-13T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 6, + "totalInitialBudget": 1472, + "coordinador": "Ignacio Tébar del Río", + "state": "Cerrada" + }, + { + "id": 6870630, + "startDate": "2018-02-15T00:00:00", + "endDate": "2018-02-15T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 6, + "totalInitialBudget": 1472, + "coordinador": "Ignacio Tébar del Río", + "state": "Cerrada" + }, + { + "id": 6870643, + "startDate": "2018-02-20T00:00:00", + "endDate": "2018-02-20T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 6, + "totalInitialBudget": 1472, + "coordinador": "Ignacio Tébar del Río", + "state": "Cerrada" + }, + { + "id": 6870653, + "startDate": "2018-02-22T00:00:00", + "endDate": "2018-02-22T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 6, + "totalInitialBudget": 1472, + "coordinador": "Ignacio Tébar del Río", + "state": "Cerrada" + }, + { + "id": 6870660, + "startDate": "2018-02-27T00:00:00", + "endDate": "2018-02-27T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 6, + "totalInitialBudget": 1472, + "coordinador": "Ignacio Tébar del Río", + "state": "Cerrada" + }, + { + "id": 6870667, + "startDate": "2018-10-16T00:00:00", + "endDate": "2018-10-16T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 6, + "totalInitialBudget": 1472, + "coordinador": "Ignacio Tébar del Río", + "state": "Cerrada" + }, + { + "id": 6870683, + "startDate": "2018-10-30T00:00:00", + "endDate": "2018-10-30T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 6, + "totalInitialBudget": 1472, + "coordinador": "Ignacio Tébar del Río", + "state": "Cerrada" + }, + { + "id": 6870689, + "startDate": "2018-10-09T00:00:00", + "endDate": "2018-10-09T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 6, + "totalInitialBudget": 1472, + "coordinador": "Ignacio Tébar del Río", + "state": "Cerrada" + }, + { + "id": 6870696, + "startDate": "2018-04-21T00:00:00", + "endDate": "2018-04-21T00:00:00", + "totalVacancies": 20, + "totalReserved": 0, + "totalNumberOfHours": 6, + "totalInitialBudget": 1472, + "coordinador": "Ignacio Tébar del Río", + "state": "Cerrada" + }, + { + "id": 6870703, + "startDate": "2018-10-06T00:00:00", + "endDate": "2018-10-06T00:00:00", + "totalVacancies": 20, + "totalReserved": 0, + "totalNumberOfHours": 6, + "totalInitialBudget": 1472, + "coordinador": "Jesús Mirón Nieto", + "state": "Cerrada" + } + ], + "totalVacancies": 220, + "totalReserved": 180, + "totalNumberOfHours": 66, + "totalInitialBudget": 16192 + }, + { + "id": 6870738, + "name": "CAPACITACIÓN EN TRABAJOS EN INCENDIOS FORESTALES PARA VOLUNTARIOS DE PROTECCIÓN CIVIL", + "editionVersion": [ + { + "id": 6870739, + "startDate": "2018-04-06T00:00:00", + "endDate": "2018-04-08T00:00:00", + "totalVacancies": 25, + "totalReserved": 0, + "totalNumberOfHours": 20, + "totalInitialBudget": 2020, + "coordinador": "Máximo Javier López Miralles", + "state": "Cerrada" + }, + { + "id": 6870789, + "startDate": "2018-04-13T00:00:00", + "endDate": "2018-04-15T00:00:00", + "totalVacancies": 25, + "totalReserved": 0, + "totalNumberOfHours": 20, + "totalInitialBudget": 2020, + "coordinador": "Máximo Javier López Miralles", + "state": "Cerrada" + } + ], + "totalVacancies": 50, + "totalReserved": 0, + "totalNumberOfHours": 40, + "totalInitialBudget": 4040 + }, + { + "id": 6870837, + "name": "COORDINACIÓN DE INTERVINIENTES EN EMERGENCIAS EN EL TRANSPORTE DE MERCANCÍAS PELIGROSAS", + "editionVersion": [ + { + "id": 6870838, + "startDate": "2018-06-26T00:00:00", + "endDate": "2018-06-28T00:00:00", + "totalVacancies": 20, + "totalReserved": 7, + "totalNumberOfHours": 24, + "totalInitialBudget": 5000, + "coordinador": "Yolanda Sanromán Francisco", + "state": "Cerrada" + } + ], + "totalVacancies": 20, + "totalReserved": 7, + "totalNumberOfHours": 24, + "totalInitialBudget": 5000 + }, + { + "id": 6870901, + "name": "COORDINACIÓN EN LA INTERVENCIÓN Y SEGURIDAD EN SITUACIONES DE EMERGENCIAS PARA PRIMEROS INTERVINIENTES", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6870940, + "name": "CURSO BÁSICO DE EMERGENCIAS NRBQ PARA FUERZAS Y CUERPOS DE SEGURIDAD Y FUERZAS ARMADAS. MÓDULO I", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6870941, + "name": "CURSO BÁSICO DE EMERGENCIAS NRBQ PARA FUERZAS Y CUERPOS DE SEGURIDAD Y FUERZAS ARMADAS. MÓDULO II", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6870942, + "name": "CURSO BÁSICO DE EMERGENCIAS NRBQ PARA FUERZAS Y CUERPOS DE SEGURIDAD. MÓDULO I", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6870943, + "name": "CURSO DE ACTUACIÓN DEL GRUPO DE SEGURIDAD Y ORDEN PÚBLICO EN EMERGENCIAS NUCLEARES", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6870944, + "name": "CURSO DE ACTUALIZACIÓN DEL PLAN DEL GRUPO DE COORDINACIÓN Y ASISTENCIA TÉCNICA", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6870945, + "name": "EMERGENCIAS NUCLEARES (PROTECCIÓN CIVIL, SEGURIDAD NUCLEAR Y PROTECCIÓN RADIOLÓGICA)", + "editionVersion": [ + { + "id": 6980108, + "startDate": "2018-10-01T00:00:00", + "endDate": "2018-10-04T00:00:00", + "totalVacancies": 35, + "totalReserved": 0, + "totalNumberOfHours": 32, + "totalInitialBudget": 0, + "coordinador": "María Dolores Ortín Sonet", + "state": "Cerrada" + } + ], + "totalVacancies": 35, + "totalReserved": 0, + "totalNumberOfHours": 32, + "totalInitialBudget": 0 + }, + { + "id": 6870946, + "name": "CURSO DE COORDINACION ENTRE GRUPOS OPERATIVOS Y SUS PLANES( ELABORACION DE ALGORITMOS/FLUJOS DE ACTUACION) (PENBU)", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6870947, + "name": "CURSO DE FORMACIÓN DE ACTUANTES MUNICIPALES DEL PENVA", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6870948, + "name": "CURSO DE FORMACIÓN DE LOS GRUPOS OPERATIVOS DEL PENCA", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6870949, + "name": "CURSO DE OPERACIONES DE EXTINCIÓN DE INCENDIOS FORESTALES PARA PILOTOS DEL 43 GRUPO", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6870950, + "name": "CURSO DE TÉCNICAS DE ESPECIALIZACIÓN EN INTERVENCIÓN EN EMERGENCIAS CON RIESGO QUÍMICO (NRBQ Nivel II)", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6870951, + "name": "CURSO PARA SECRETARIOS DE AYUNTAMIENTOS Y TÉCNICOS MUNICIPALES DEL PENVA", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6870952, + "name": "EMERGENCIAS RADIOLÓGICAS", + "editionVersion": [ + { + "id": 6870953, + "startDate": "2018-05-28T00:00:00", + "endDate": "2018-05-31T00:00:00", + "totalVacancies": 30, + "totalReserved": 4, + "totalNumberOfHours": 26, + "totalInitialBudget": 0, + "coordinador": "Vicent Guardia Almenar", + "state": "Cerrada" + } + ], + "totalVacancies": 30, + "totalReserved": 4, + "totalNumberOfHours": 26, + "totalInitialBudget": 0 + }, + { + "id": 6870994, + "name": "EMPLEO DE MÁQUINAS EMPUJADORAS EN EXTINCIÓN DE INCENDIOS FORESTALES", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6870995, + "name": "ESPECIALISTAS NRBQ NIVEL 3 PARA LA GUARDIA CIVIL", + "editionVersion": [ + { + "id": 6870996, + "startDate": "2018-09-03T00:00:00", + "endDate": "2018-09-28T00:00:00", + "totalVacancies": 15, + "totalReserved": 15, + "totalNumberOfHours": 113, + "totalInitialBudget": 16780, + "coordinador": "Valeriano Ortega Miravalles", + "state": "Cerrada" + } + ], + "totalVacancies": 15, + "totalReserved": 15, + "totalNumberOfHours": 113, + "totalInitialBudget": 16780 + }, + { + "id": 6871229, + "name": "FORMACIÓN GENERAL PARA ACTUACIÓN EN EMERGENCIAS NUCLEARES ONLINE", + "editionVersion": [ + { + "id": 6871230, + "startDate": "2018-04-09T00:00:00", + "endDate": "2018-06-30T00:00:00", + "totalVacancies": 180, + "totalReserved": 90, + "totalNumberOfHours": 60, + "totalInitialBudget": 3600, + "coordinador": "Isabel Vera Navascués", + "state": "Cerrada" + } + ], + "totalVacancies": 180, + "totalReserved": 90, + "totalNumberOfHours": 60, + "totalInitialBudget": 3600 + }, + { + "id": 6871456, + "name": "FORMACIÓN PARA PRIMEROS INTERVINIENTES EN LOS PLANES DE AUTOPROTECCIÓN", + "editionVersion": [ + { + "id": 6871457, + "startDate": "2018-01-30T00:00:00", + "endDate": "2018-01-30T00:00:00", + "totalVacancies": 24, + "totalReserved": 24, + "totalNumberOfHours": 8, + "totalInitialBudget": 1640, + "coordinador": "Jesús Mirón Nieto", + "state": "Cerrada" + }, + { + "id": 6871464, + "startDate": "2018-02-01T00:00:00", + "endDate": "2018-02-01T00:00:00", + "totalVacancies": 24, + "totalReserved": 24, + "totalNumberOfHours": 8, + "totalInitialBudget": 1640, + "coordinador": "Jesús Mirón Nieto", + "state": "Cerrada" + }, + { + "id": 6871471, + "startDate": "2018-02-06T00:00:00", + "endDate": "2018-02-06T00:00:00", + "totalVacancies": 24, + "totalReserved": 24, + "totalNumberOfHours": 8, + "totalInitialBudget": 1640, + "coordinador": "Jesús Mirón Nieto", + "state": "Cerrada" + } + ], + "totalVacancies": 72, + "totalReserved": 72, + "totalNumberOfHours": 24, + "totalInitialBudget": 4920 + }, + { + "id": 6871478, + "name": "FORMACIÓN Y CAPACITACIÓN DE ACTUANTES DEL GRUPO SANITARIO DEL PENBU - PENSAN / PROCEDIMIENTOS / ACTUACIONES EN ECDS", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6871479, + "name": "INTERVENCIÓN OPERATIVA EN ACCIDENTES EN EL TRANSPORTE DE MMPP EN LA REGIÓN DE MURCIA", + "editionVersion": [ + { + "id": 6871480, + "startDate": "2018-05-08T00:00:00", + "endDate": "2018-05-10T00:00:00", + "totalVacancies": 30, + "totalReserved": 25, + "totalNumberOfHours": 15, + "totalInitialBudget": 1515, + "coordinador": "Gabriel Lambertos Martínez", + "state": "Cerrada" + } + ], + "totalVacancies": 30, + "totalReserved": 25, + "totalNumberOfHours": 15, + "totalInitialBudget": 1515 + }, + { + "id": 6871501, + "name": "JORNADA DE ACTUACIÓN EN EMERGENCIAS NUCLEARES DEL GRUPO DE COORDINACIÓN Y ASISTENCIA TÉCNICA (PENCA)", + "editionVersion": [ + { + "id": 6871502, + "startDate": "2018-12-31T00:00:00", + "endDate": "2018-12-31T00:00:00", + "totalVacancies": 50, + "totalReserved": 50, + "totalNumberOfHours": 5, + "totalInitialBudget": 378, + "coordinador": "María Milagros Vázquez Basquero", + "state": "Anulada" + } + ], + "totalVacancies": 50, + "totalReserved": 50, + "totalNumberOfHours": 5, + "totalInitialBudget": 378 + }, + { + "id": 6871513, + "name": "JORNADA DE ACTUACION EN EMERGENCIAS NUCLEARES DEL GRUPO DE SEGURIDAD CIUDADANA Y ORDEN PUBLICO (PENCA)", + "editionVersion": [ + { + "id": 6871514, + "startDate": "2018-10-29T00:00:00", + "endDate": "2018-10-30T00:00:00", + "totalVacancies": 50, + "totalReserved": 50, + "totalNumberOfHours": 7, + "totalInitialBudget": 378, + "coordinador": "María Milagros Vázquez Basquero", + "state": "Cerrada" + } + ], + "totalVacancies": 50, + "totalReserved": 50, + "totalNumberOfHours": 7, + "totalInitialBudget": 378 + }, + { + "id": 6871532, + "name": "JORNADA DE ACTUACIÓN MUNICIPAL EN EMERGENCIA NUCLEAR (PAMEN) PARA MUNICIPIOS ZONA I (PENVA)", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6871543, + "name": "JORNADA DE ACTUACIÓN MUNICIPAL EN EMERGENCIAS NUCLEARES (PENGUA)", + "editionVersion": [ + { + "id": 6871544, + "startDate": "2018-03-20T00:00:00", + "endDate": "2018-03-20T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 6, + "totalInitialBudget": 378, + "coordinador": "María Jesús Fuertes Menéndez", + "state": "Cerrada" + }, + { + "id": 6871546, + "startDate": "2018-02-19T00:00:00", + "endDate": "2018-02-19T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 6, + "totalInitialBudget": 378, + "coordinador": "María Jesús Fuertes Menéndez", + "state": "Cerrada" + }, + { + "id": 6871598, + "startDate": "2018-05-15T00:00:00", + "endDate": "2018-05-15T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 6, + "totalInitialBudget": 378, + "coordinador": "María Jesús Fuertes Menéndez", + "state": "Cerrada" + }, + { + "id": 6980008, + "startDate": "2018-03-27T00:00:00", + "endDate": "2018-03-27T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 6, + "totalInitialBudget": 378, + "coordinador": "María Jesús Fuertes Menéndez", + "state": "Cerrada" + }, + { + "id": 7799964, + "startDate": "2018-09-19T00:00:00", + "endDate": "2018-09-19T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 6, + "totalInitialBudget": 378, + "coordinador": "María Jesús Fuertes Menéndez", + "state": "Cerrada" + }, + { + "id": 7799966, + "startDate": "2018-07-03T00:00:00", + "endDate": "2018-07-03T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 6, + "totalInitialBudget": 378, + "coordinador": "María Jesús Fuertes Menéndez", + "state": "Cerrada" + }, + { + "id": 7870079, + "startDate": "2018-06-28T00:00:00", + "endDate": "2018-06-28T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 6, + "totalInitialBudget": 378, + "coordinador": "María Jesús Fuertes Menéndez", + "state": "Cerrada" + }, + { + "id": 8006888, + "startDate": "2018-09-27T00:00:00", + "endDate": "2018-09-27T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 6, + "totalInitialBudget": 378, + "coordinador": "María Jesús Fuertes Menéndez", + "state": "Cerrada" + }, + { + "id": 8007099, + "startDate": "2018-11-28T00:00:00", + "endDate": "2018-11-28T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 6, + "totalInitialBudget": 0, + "coordinador": "María Jesús Fuertes Menéndez", + "state": "Programación" + } + ], + "totalVacancies": 180, + "totalReserved": 180, + "totalNumberOfHours": 54, + "totalInitialBudget": 3024 + }, + { + "id": 6871600, + "name": "JORNADA DE ACTUACIÓN MUNICIPAL EN EMERGENCIAS NUCLEARES PARA LOS MUNICIPIOS SEDE ECD (PENCA)", + "editionVersion": [ + { + "id": 6871601, + "startDate": "2018-12-31T00:00:00", + "endDate": "2018-12-31T00:00:00", + "totalVacancies": 50, + "totalReserved": 50, + "totalNumberOfHours": 5, + "totalInitialBudget": 378, + "coordinador": "María Milagros Vázquez Basquero", + "state": "Anulada" + }, + { + "id": 6871603, + "startDate": "2018-12-31T00:00:00", + "endDate": "2018-12-31T00:00:00", + "totalVacancies": 50, + "totalReserved": 50, + "totalNumberOfHours": 5, + "totalInitialBudget": 378, + "coordinador": "María Milagros Vázquez Basquero", + "state": "Anulada" + }, + { + "id": 6871605, + "startDate": "2018-12-31T00:00:00", + "endDate": "2018-12-31T00:00:00", + "totalVacancies": 50, + "totalReserved": 50, + "totalNumberOfHours": 5, + "totalInitialBudget": 378, + "coordinador": "María Milagros Vázquez Basquero", + "state": "Anulada" + } + ], + "totalVacancies": 150, + "totalReserved": 150, + "totalNumberOfHours": 15, + "totalInitialBudget": 1134 + }, + { + "id": 6871607, + "name": "JORNADA DE ACTUACIÓN MUNICIPAL EN EMERGENCIAS NUCLEARES PARA LOS MUNICIPIOS ZONA I (PENCA)", + "editionVersion": [ + { + "id": 6871608, + "startDate": "2018-12-31T00:00:00", + "endDate": "2018-12-31T00:00:00", + "totalVacancies": 25, + "totalReserved": 25, + "totalNumberOfHours": 5, + "totalInitialBudget": 378, + "coordinador": "María Milagros Vázquez Basquero", + "state": "Anulada" + }, + { + "id": 6871610, + "startDate": "2018-12-31T00:00:00", + "endDate": "2018-12-31T00:00:00", + "totalVacancies": 25, + "totalReserved": 25, + "totalNumberOfHours": 5, + "totalInitialBudget": 378, + "coordinador": "María Milagros Vázquez Basquero", + "state": "Anulada" + } + ], + "totalVacancies": 50, + "totalReserved": 50, + "totalNumberOfHours": 10, + "totalInitialBudget": 756 + }, + { + "id": 6871612, + "name": "JORNADA DE FORMACIÓN DE ACTUACIÓN EN EMERGENCIAS NUCLEARES, CON ESPECIAL INCIDENCIA EN AUTOPROTECCIÓN Y EN EL USO DE DOSIMETRÍA PARA ACTUANTES DEL GRUPO GPOL (PENBU)", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6871628, + "name": "JORNADA DE FORMACIÓN DE ACTUANTES MUNICIPALES DEL PENBU", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6871629, + "name": "JORNADA DE FORMACIÓN DE ACTUANTES MUNICIPALES DEL PENCA", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6871630, + "name": "JORNADA DE FORMACIÓN DE ACTUANTES MUNICIPALES DEL PENGUA", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6871631, + "name": "JORNADA DE FORMACIÓN DE ACTUANTES MUNICIPALES DEL PENTA. (Nivel II).", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6871632, + "name": "JORNADA DE FORMACIÓN DE ACTUANTES MUNICIPALES DEL PENVA", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6871633, + "name": "JORNADA DE FORMACIÓN DEL GRUPO DE APOYO LOGÍSTICO", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6871634, + "name": "JORNADA DE FORMACIÓN PARA MANDOS DE GRUPOS OPERATIVOS DEL PENTA. (Nivel II).", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6871635, + "name": "JORNADA DE FORMACIÓN SOBRE ACTUACIONES EN EL CECOP DEL PENBU, CECOPI DE LAS CCAA Y GABINETE TELEGRÁFICO (PENBU)", + "editionVersion": [ + { + "id": 6871636, + "startDate": "2018-03-27T00:00:00", + "endDate": "2018-03-27T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 5, + "totalInitialBudget": 378, + "coordinador": "Javier Basconcillos Arce", + "state": "Cerrada" + } + ], + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 5, + "totalInitialBudget": 378 + }, + { + "id": 6871651, + "name": "JORNADA PARA ACTUANTES DEL GRUPO DE COORDINACIÓN Y ASISTENCIA TÉCNICA DEL PENBU. (Nivel III).", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6871652, + "name": "JORNADA PARA ACTUANTES EN CONTROLES DE ACCESO DEL PENBU", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6871653, + "name": "JORNADA PARA AUTORIDADES LOCALES DE LOS AYUNTAMIENTOS ZONA I DEL PENBU", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6871654, + "name": "JORNADA PARA AUTORIDADES LOCALES Y ACTUANTES DEL PAMEN. (Nivel III).", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6871655, + "name": "JORNADA PRÁCTICA DE FORMACIÓN PARA PERSONAL GRUPOS DE SEGURIDAD CIUDADANA Y ORDEN PUBLICO SOBRE PROCEDIMIENTO DE CONTROL DE ACCESOS (PENBU)", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6871656, + "name": "JORNADA PRÁCTICA PARA ACTUANTES DEL PENBU: CECOP, CECOPI Y CONTROLES DE ACCESO. (Nivel II).", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6871657, + "name": "JORNADA SOBRE APLICACIONES DE MEDIDAS DE PROTECCIÓN A LA POBLACIÓN EN EL ÁMBITO DEL PENBU. PROCEDIMIENTOS OPERATIVOS EN LAS ACTUACIONES EN EMERGENCIA (PENBU)", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6871699, + "name": "JORNADA TÉCNICA PARA LA APLICACIÓN DEL CONFINAMIENTO Y ABASTECIMIENTO A LA POBLACIÓN EN LOS NÚCLEOS DE POBLACIÓN ZONA I (PENBU)", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6871720, + "name": "JORNADA TÉCNICA SOBRE PLANES MUNICIPALES DE EMERGENCIA NUCLEAR PARA AUTORIDADES MUNICIPALES DE ZONA I DE LOS PEN", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6871721, + "name": "JORNADA TEÓRICO-PRÁCTICA SOBRE ACTIVACIÓN ECD PARA GRUPO RADIOLÓGICO. (Nivel III).", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6871722, + "name": "JORNADA TEÓRICO-PRÁCTICA SOBRE FORMACIÓN GENERAL EN ACTUACIÓN EN EMERGENCIAS NUCLEARES", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6871723, + "name": "JORNADA TEÓRICO-PRÁCTICA SOBRE FORMACIÓN GENERAL EN ACTUACIÓN EN EMERGENCIAS NUCLEARES (PENBU)", + "editionVersion": [ + { + "id": 6871724, + "startDate": "2018-06-20T00:00:00", + "endDate": "2018-06-20T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 5, + "totalInitialBudget": 378, + "coordinador": "Javier Basconcillos Arce", + "state": "Cerrada" + }, + { + "id": 6976685, + "startDate": "2018-12-31T00:00:00", + "endDate": "2018-12-31T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 5, + "totalInitialBudget": 378, + "coordinador": " ", + "state": "Anulada" + } + ], + "totalVacancies": 40, + "totalReserved": 40, + "totalNumberOfHours": 10, + "totalInitialBudget": 756 + }, + { + "id": 6871735, + "name": "JORNADA TEÓRICO-PRÁCTICA SOBRE FORMACIÓN GENERAL EN ACTUACIÓN EN EMERGENCIAS NUCLEARES (PENCA)", + "editionVersion": [ + { + "id": 7904932, + "startDate": "2018-06-20T00:00:00", + "endDate": "2018-06-20T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 5, + "totalInitialBudget": 378, + "coordinador": "María Milagros Vázquez Basquero", + "state": "Cerrada" + }, + { + "id": 6871736, + "startDate": "2018-06-05T00:00:00", + "endDate": "2018-06-05T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 5, + "totalInitialBudget": 378, + "coordinador": "María Milagros Vázquez Basquero", + "state": "Cerrada" + } + ], + "totalVacancies": 40, + "totalReserved": 40, + "totalNumberOfHours": 10, + "totalInitialBudget": 756 + }, + { + "id": 6871747, + "name": "JORNADA TEÓRICO-PRÁCTICA SOBRE FORMACIÓN GENERAL EN ACTUACIÓN EN EMERGENCIAS NUCLEARES (PENTA)", + "editionVersion": [ + { + "id": 8007658, + "startDate": "2018-10-03T00:00:00", + "endDate": "2018-10-03T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 5, + "totalInitialBudget": 378, + "coordinador": "Fabiola Ugalde Andrés", + "state": "Cerrada" + }, + { + "id": 8007660, + "startDate": "2018-10-05T00:00:00", + "endDate": "2018-10-05T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 5, + "totalInitialBudget": 378, + "coordinador": "Fabiola Ugalde Andrés", + "state": "Cerrada" + }, + { + "id": 7836528, + "startDate": "2018-05-17T00:00:00", + "endDate": "2018-05-17T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 5, + "totalInitialBudget": 378, + "coordinador": "Fernando Piédrola Nadal", + "state": "Cerrada" + } + ], + "totalVacancies": 60, + "totalReserved": 60, + "totalNumberOfHours": 15, + "totalInitialBudget": 1134 + }, + { + "id": 6871750, + "name": "JORNADA TEÓRICO-PRÁCTICA SOBRE FORMACIÓN GENERAL EN ACTUACIÓN EN EMERGENCIAS NUCLEARES (PENGUA)", + "editionVersion": [ + { + "id": 6871751, + "startDate": "2018-11-12T00:00:00", + "endDate": "2018-11-12T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 7, + "totalInitialBudget": 378, + "coordinador": "María Jesús Fuertes Menéndez", + "state": "Programación" + } + ], + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 7, + "totalInitialBudget": 378 + }, + { + "id": 6871788, + "name": "JORNADA TEÓRICO-PRÁCTICA SOBRE FORMACIÓN GENERAL EN ACTUACIÓN EN EMERGENCIAS NUCLEARES (PENVA)", + "editionVersion": [ + { + "id": 6871789, + "startDate": "2018-10-17T00:00:00", + "endDate": "2018-10-17T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 5, + "totalInitialBudget": 378, + "coordinador": "María Isabel Montón Abarca", + "state": "Cerrada" + } + ], + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 5, + "totalInitialBudget": 378 + }, + { + "id": 6871799, + "name": "JORNADAS DE FOMACIÓN SOBRE EL PENBU Y PARA LA APLICACIÓN DE LA EVACUACIÓN DE CENTROS ESCOLARES EN EMERGENCIA NUCLEAR (PENBU)", + "editionVersion": [ + { + "id": 6871800, + "startDate": "2018-09-19T00:00:00", + "endDate": "2018-09-19T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 5, + "totalInitialBudget": 378, + "coordinador": "Javier Basconcillos Arce", + "state": "Cerrada" + } + ], + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 5, + "totalInitialBudget": 378 + }, + { + "id": 6871815, + "name": "JORNDA DE FORMACION PARA PERSONAL GRUPOS DE SEGURIDAD CIUDADANA Y ORDEN PUBLICO SOBRE PROCEDIMIENTO DE CONTROL DE ACCESOS (PENBU)", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6871816, + "name": "OPERACIONES DE AUTOPROTECCIÓN E INTERVENCIÓN FRENTE AL FUEGO EN LOS EDIFICIOS", + "editionVersion": [ + { + "id": 6871817, + "startDate": "2018-03-05T00:00:00", + "endDate": "2018-03-09T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 35, + "totalInitialBudget": 6358, + "coordinador": "Jesús Mirón Nieto", + "state": "Cerrada" + }, + { + "id": 6871842, + "startDate": "2018-03-19T00:00:00", + "endDate": "2018-03-23T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 35, + "totalInitialBudget": 6358, + "coordinador": "Ignacio Tébar del Río", + "state": "Cerrada" + }, + { + "id": 6871881, + "startDate": "2018-05-21T00:00:00", + "endDate": "2018-05-25T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 35, + "totalInitialBudget": 6358, + "coordinador": "Jesús Mirón Nieto", + "state": "Cerrada" + }, + { + "id": 6871925, + "startDate": "2018-11-12T00:00:00", + "endDate": "2018-11-16T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 35, + "totalInitialBudget": 6358, + "coordinador": "Ignacio Tébar del Río", + "state": "Cerrada" + } + ], + "totalVacancies": 80, + "totalReserved": 80, + "totalNumberOfHours": 140, + "totalInitialBudget": 25432 + }, + { + "id": 6871980, + "name": "OPERACIONES Y DEFENSA CONTRA INCENDIOS FORESTALES EN LA INTERFAZ URBANO-FORESTAL", + "editionVersion": [ + { + "id": 6871981, + "startDate": "2018-04-23T00:00:00", + "endDate": "2018-04-27T00:00:00", + "totalVacancies": 20, + "totalReserved": 0, + "totalNumberOfHours": 30, + "totalInitialBudget": 6500, + "coordinador": "Federico Grillo Delgado", + "state": "Cerrada" + }, + { + "id": 6972372, + "startDate": "2018-11-26T00:00:00", + "endDate": "2018-11-30T00:00:00", + "totalVacancies": 20, + "totalReserved": 0, + "totalNumberOfHours": 30, + "totalInitialBudget": 6500, + "coordinador": "Ferrán Dalmau Rovira", + "state": "Cerrada" + } + ], + "totalVacancies": 40, + "totalReserved": 0, + "totalNumberOfHours": 60, + "totalInitialBudget": 13000 + }, + { + "id": 6872045, + "name": "TALLER SOBRE ACTUALIZACIÓN PARA MIEMBROS DE LAS ORGANIZACIONES ADSCRITAS A LOS PLANES EXTERIORES DE EMERGENCIA NUCLEAR", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6872046, + "name": "TÉCNICAS BÁSICAS DE EXTINCIÓN DE INCENDIOS CON MEDIOS PORTÁTILES", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6872093, + "name": "TÉCNICAS DE ESPECIALIZACIÓN EN INTERVENCIÓN EN EMERGENCIAS CON RIESGO BIOLÓGICO", + "editionVersion": [ + { + "id": 6872094, + "startDate": "2018-11-06T00:00:00", + "endDate": "2018-11-08T00:00:00", + "totalVacancies": 24, + "totalReserved": 24, + "totalNumberOfHours": 21, + "totalInitialBudget": 6761, + "coordinador": "Enrique Martínez Pavón", + "state": "Cerrada" + } + ], + "totalVacancies": 24, + "totalReserved": 24, + "totalNumberOfHours": 21, + "totalInitialBudget": 6761 + }, + { + "id": 6872118, + "name": "TÉCNICAS DE INTERVENCIÓN EN ACCIDENTES CON MERCANCÍAS PELIGROSAS. AVANZADO", + "editionVersion": [ + { + "id": 6872119, + "startDate": "2018-06-04T00:00:00", + "endDate": "2018-06-08T00:00:00", + "totalVacancies": 22, + "totalReserved": 1, + "totalNumberOfHours": 35, + "totalInitialBudget": 11600, + "coordinador": "Yolanda Sanromán Francisco", + "state": "Cerrada" + } + ], + "totalVacancies": 22, + "totalReserved": 1, + "totalNumberOfHours": 35, + "totalInitialBudget": 11600 + }, + { + "id": 6872306, + "name": "TÉCNICAS DE INTERVENCIÓN EN ACCIDENTES CON MERCANCÍAS PELIGROSAS. BÁSICO", + "editionVersion": [ + { + "id": 6872307, + "startDate": "2018-05-07T00:00:00", + "endDate": "2018-05-11T00:00:00", + "totalVacancies": 21, + "totalReserved": 3, + "totalNumberOfHours": 35, + "totalInitialBudget": 11200, + "coordinador": "Yolanda Sanromán Francisco", + "state": "Cerrada" + }, + { + "id": 6872375, + "startDate": "2018-10-01T00:00:00", + "endDate": "2018-10-05T00:00:00", + "totalVacancies": 20, + "totalReserved": 0, + "totalNumberOfHours": 35, + "totalInitialBudget": 11200, + "coordinador": "Yolanda Sanromán Francisco", + "state": "Cerrada" + } + ], + "totalVacancies": 41, + "totalReserved": 3, + "totalNumberOfHours": 70, + "totalInitialBudget": 22400 + }, + { + "id": 6872455, + "name": "TÉCNICAS DE SEGURIDAD E INTERVENCIÓN EN RESCATE Y SALVAMENTO EN ESTRUCTURAS COLAPSADAS EN SITUACIONES DE EMERGENCIA PARA EQUIPOS MULTIDISCIPLINARES", + "editionVersion": [ + { + "id": 6872456, + "startDate": "2018-02-26T00:00:00", + "endDate": "2018-03-02T00:00:00", + "totalVacancies": 22, + "totalReserved": 11, + "totalNumberOfHours": 40, + "totalInitialBudget": 8950, + "coordinador": "Daniel Arroyo Fernández", + "state": "Cerrada" + }, + { + "id": 6872531, + "startDate": "2018-03-12T00:00:00", + "endDate": "2018-03-16T00:00:00", + "totalVacancies": 22, + "totalReserved": 5, + "totalNumberOfHours": 40, + "totalInitialBudget": 8950, + "coordinador": "Daniel Arroyo Fernández", + "state": "Cerrada" + } + ], + "totalVacancies": 44, + "totalReserved": 16, + "totalNumberOfHours": 80, + "totalInitialBudget": 17900 + }, + { + "id": 6872707, + "name": "TEÓRICO-PRÁCTICO PARA ACTUANTES DEL GRUPO DE SEGURIDAD CIUDADANA Y ORDEN PÚBLICO (PENVA)", + "editionVersion": [ + { + "id": 6872708, + "startDate": "2018-12-11T00:00:00", + "endDate": "2018-12-12T00:00:00", + "totalVacancies": 30, + "totalReserved": 30, + "totalNumberOfHours": 10, + "totalInitialBudget": 378, + "coordinador": "María Isabel Montón Abarca", + "state": "Programación" + }, + { + "id": 6872724, + "startDate": "2018-09-25T00:00:00", + "endDate": "2018-09-26T00:00:00", + "totalVacancies": 30, + "totalReserved": 30, + "totalNumberOfHours": 10, + "totalInitialBudget": 378, + "coordinador": "María Isabel Montón Abarca", + "state": "Cerrada" + } + ], + "totalVacancies": 60, + "totalReserved": 60, + "totalNumberOfHours": 20, + "totalInitialBudget": 756 + }, + { + "id": 6872739, + "name": "USO DEL FUEGO PRESCRITO PARA LA PREVENCIÓN Y EXTINCIÓN DE INCENDIOS FORESTALES", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6872740, + "name": "USO DEL FUEGO PRESCRITO PARA LA PREVENCIÓN Y EXTINCIÓN DE INCENDIOS FORESTALES. MÓDULO I", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6872827, + "name": "USO DEL FUEGO PRESCRITO PARA LA PREVENCIÓN Y EXTINCIÓN DE INCENDIOS FORESTALES. MÓDULO II", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6980185, + "name": "JORNADA TÉCNICA SOBRE RESPUESTA INMEDIATA A LAS EMERGENCIAS PRODUCIDAS POR RIESGOS TECNOLÓGICOS. NUEVOS CAMPOS DE ESTUDIO Y DESARROLLO", + "editionVersion": [ + { + "id": 6980190, + "startDate": "2018-01-23T00:00:00", + "endDate": "2018-01-23T00:00:00", + "totalVacancies": 80, + "totalReserved": 0, + "totalNumberOfHours": 5, + "totalInitialBudget": 1000, + "coordinador": "Valeriano Ortega Miravalles", + "state": "Cerrada" + } + ], + "totalVacancies": 80, + "totalReserved": 0, + "totalNumberOfHours": 5, + "totalInitialBudget": 1000 + }, + { + "id": 6980192, + "name": "V WORKSHOP SOBRE RESPUESTA INMEDIATA A LAS EMERGENCIAS PRODUCIDAS POR RIESGOS TECNOLÓGICOS", + "editionVersion": [ + { + "id": 6980194, + "startDate": "2018-01-23T00:00:00", + "endDate": "2018-01-25T00:00:00", + "totalVacancies": 50, + "totalReserved": 0, + "totalNumberOfHours": 13, + "totalInitialBudget": 250, + "coordinador": "Valeriano Ortega Miravalles", + "state": "Cerrada" + } + ], + "totalVacancies": 50, + "totalReserved": 0, + "totalNumberOfHours": 13, + "totalInitialBudget": 250 + }, + { + "id": 8007089, + "name": "FORMACIÓN SOBRE EMERGENCIAS NUCLEARES PARA MUNICIPIOS ZONA I (PENVA)", + "editionVersion": [ + { + "id": 8007091, + "startDate": "2018-11-08T00:00:00", + "endDate": "2018-11-12T00:00:00", + "totalVacancies": 30, + "totalReserved": 30, + "totalNumberOfHours": 8, + "totalInitialBudget": 430, + "coordinador": "María Isabel Montón Abarca", + "state": "Cerrada" + } + ], + "totalVacancies": 30, + "totalReserved": 30, + "totalNumberOfHours": 8, + "totalInitialBudget": 430 + }, + { + "id": 8007094, + "name": "TEÓRICO-PRÁCTICO SOBRE ACTUACIÓN MUNICIPAL EN EMERGENCIA NUCLEAR EN MUNICIPIOS ZONA I (PENVA)", + "editionVersion": [ + { + "id": 8007096, + "startDate": "2018-11-20T00:00:00", + "endDate": "2018-11-22T00:00:00", + "totalVacancies": 30, + "totalReserved": 30, + "totalNumberOfHours": 8, + "totalInitialBudget": 430, + "coordinador": "María Isabel Montón Abarca", + "state": "Cerrada" + } + ], + "totalVacancies": 30, + "totalReserved": 30, + "totalNumberOfHours": 8, + "totalInitialBudget": 430 + }, + { + "id": 8007664, + "name": "JORNADAS DE FORMACIÓN DE ACTUANTES DE LOS PAMEN (PENTA)", + "editionVersion": [ + { + "id": 8007666, + "startDate": "2018-10-24T00:00:00", + "endDate": "2018-10-24T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 5, + "totalInitialBudget": 378, + "coordinador": "Fabiola Ugalde Andrés", + "state": "Cerrada" + }, + { + "id": 8007668, + "startDate": "2018-11-29T00:00:00", + "endDate": "2018-11-29T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 5, + "totalInitialBudget": 378, + "coordinador": "Fabiola Ugalde Andrés", + "state": "Anulada" + } + ], + "totalVacancies": 40, + "totalReserved": 40, + "totalNumberOfHours": 10, + "totalInitialBudget": 756 + }, + { + "id": 8007672, + "name": "JORNADA DE FORMACIÓN DE ACTUANTES DE APOYO AL GRUPO DE COORDINACIÓN Y ASISTENCIA TÉCNICA EN EL CECOP (PENTA)", + "editionVersion": [ + { + "id": 8007674, + "startDate": "2018-11-27T00:00:00", + "endDate": "2018-11-27T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 5, + "totalInitialBudget": 378, + "coordinador": "Fabiola Ugalde Andrés", + "state": "Anulada" + } + ], + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 5, + "totalInitialBudget": 378 + } + ], + "totalVacancies": 1913, + "totalReserved": 1397, + "totalNumberOfHours": 1023, + "totalInitialBudget": 162968 + }, + { + "id": 6872884, + "name": "4.4 Apoyo Logístico y de Seguridad.", + "trainingActivityVersion": [ + { + "id": 6872885, + "name": "CURSO DE APOYO LOGÍSTICO EN EMERGENCIAS", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6872886, + "name": "CURSO DE EVACUACIÓN, DISPERSIÓN Y ALBERGUE EN CATÁSTROFES", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6872887, + "name": "GESTIÓN Y CONTROL DEL SISTEMA DE APOYO LOGÍSTICO EN EMERGENCIAS", + "editionVersion": [ + { + "id": 6872888, + "startDate": "2018-06-04T00:00:00", + "endDate": "2018-06-07T00:00:00", + "totalVacancies": 25, + "totalReserved": 1, + "totalNumberOfHours": 25, + "totalInitialBudget": 3125, + "coordinador": "Francisco García Riesco", + "state": "Anulada" + } + ], + "totalVacancies": 25, + "totalReserved": 1, + "totalNumberOfHours": 25, + "totalInitialBudget": 3125 + }, + { + "id": 6872942, + "name": "PLANIFICACIÓN LOGÍSTICA EN EMERGENCIAS EN EL TERRITORIO", + "editionVersion": [ + { + "id": 6872943, + "startDate": "2018-10-01T00:00:00", + "endDate": "2018-10-04T00:00:00", + "totalVacancies": 25, + "totalReserved": 4, + "totalNumberOfHours": 25, + "totalInitialBudget": 3125, + "coordinador": "Francisco García Riesco", + "state": "Cerrada" + } + ], + "totalVacancies": 25, + "totalReserved": 4, + "totalNumberOfHours": 25, + "totalInitialBudget": 3125 + }, + { + "id": 6873017, + "name": "SEMINARIO DE ACTUACIÓN POLICIAL ANTE CATÁSTROFES", + "editionVersion": [ + { + "id": 6873018, + "startDate": "2018-12-31T00:00:00", + "endDate": "2018-12-31T00:00:00", + "totalVacancies": 650, + "totalReserved": 650, + "totalNumberOfHours": 40, + "totalInitialBudget": 6000, + "coordinador": "Belén García Granjo", + "state": "Anulada" + } + ], + "totalVacancies": 650, + "totalReserved": 650, + "totalNumberOfHours": 40, + "totalInitialBudget": 6000 + }, + { + "id": 6873326, + "name": "X SEMINARIO DE ACTUACIÓN POLICIAL ANTE CATÁSTROFES.", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6873327, + "name": "XI SEMINARIO DE ACTUACIÓN POLICIAL ANTE CATÁSTROFES.", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6873328, + "name": "XII SEMINARIO DE ACTUACIÓN POLICIAL ANTE CASTÁSTROFES", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 8007102, + "name": "JORNADA FORMATIVA PARA ACTUANTES DEL GRUPO DE APOYO LOGÍSTICO (PENGUA)", + "editionVersion": [ + { + "id": 8007104, + "startDate": "2018-10-03T00:00:00", + "endDate": "2018-10-03T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 6, + "totalInitialBudget": 378, + "coordinador": "María Jesús Fuertes Menéndez", + "state": "Cerrada" + } + ], + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 6, + "totalInitialBudget": 378 + } + ], + "totalVacancies": 720, + "totalReserved": 675, + "totalNumberOfHours": 96, + "totalInitialBudget": 12628 + }, + { + "id": 6873329, + "name": "4.5 Asistencia Sanitaria en Emergencias.", + "trainingActivityVersion": [ + { + "id": 6873330, + "name": "ACTUACIÓN SANITARIA EN EMERGENCIAS NUCLEARES ONLINE", + "editionVersion": [ + { + "id": 6873331, + "startDate": "2018-10-01T00:00:00", + "endDate": "2018-11-25T00:00:00", + "totalVacancies": 60, + "totalReserved": 30, + "totalNumberOfHours": 40, + "totalInitialBudget": 2250, + "coordinador": "Isabel Vera Navascués", + "state": "Impartición" + } + ], + "totalVacancies": 60, + "totalReserved": 30, + "totalNumberOfHours": 40, + "totalInitialBudget": 2250 + }, + { + "id": 6873449, + "name": "CURSO DE ASISTENCIA SANITARIA EN CATÁTROFES. TRIAGE. (Nivel I).", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6873450, + "name": "CURSO DE FORMACION DE ACTUANTES DEL GRUPO SANITARIO ECD (PENBU)", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6873451, + "name": "CURSO DE RECICLAJE DE REANIMACIÓN CARDIOPULMONAR Y DESA (Turno de tarde)", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6873452, + "name": "CURSO DE VENDAJES E INMOVILIZACIONES EN CASO DE EMERGENCIA. (Nivel I).", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6873453, + "name": "CURSO SANITARIO PARA VOLUNTARIOS DE PROTECCION CIVIL", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6873454, + "name": "JORNADA TÉCNICA SOBRE CUESTIONES SANITARIAS DE LOS PLANES DE EMERGENCIA NUCLEAR", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6873455, + "name": "JORNADA TEÓRICO-PRÁCTICA SOBRE ACTUACIÓN SANITARIA EN EMERGENCIAS NUCLEARES", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6873456, + "name": "JORNADA TEÓRICO-PRÁCTICA SOBRE ACTUACIÓN SANITARIA EN EMERGENCIAS NUCLEARES (PENBU)", + "editionVersion": [ + { + "id": 6873457, + "startDate": "2018-10-17T00:00:00", + "endDate": "2018-10-17T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 5, + "totalInitialBudget": 378, + "coordinador": "Javier Basconcillos Arce", + "state": "Cerrada" + } + ], + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 5, + "totalInitialBudget": 378 + }, + { + "id": 6873485, + "name": "JORNADA TEÓRICO-PRÁCTICA SOBRE ACTUACIÓN SANITARIA EN EMERGENCIAS NUCLEARES (PENCA)", + "editionVersion": [ + { + "id": 6873486, + "startDate": "2018-12-31T00:00:00", + "endDate": "2018-12-31T00:00:00", + "totalVacancies": 25, + "totalReserved": 25, + "totalNumberOfHours": 5, + "totalInitialBudget": 378, + "coordinador": "María Milagros Vázquez Basquero", + "state": "Anulada" + }, + { + "id": 6873495, + "startDate": "2018-12-31T00:00:00", + "endDate": "2018-12-31T00:00:00", + "totalVacancies": 25, + "totalReserved": 25, + "totalNumberOfHours": 5, + "totalInitialBudget": 378, + "coordinador": "María Milagros Vázquez Basquero", + "state": "Anulada" + } + ], + "totalVacancies": 50, + "totalReserved": 50, + "totalNumberOfHours": 10, + "totalInitialBudget": 756 + }, + { + "id": 6873497, + "name": "JORNADA TEÓRICO-PRÁCTICA SOBRE ACTUACIÓN SANITARIA EN EMERGENCIAS NUCLEARES (PENGUA)", + "editionVersion": [ + { + "id": 6976015, + "startDate": "2018-11-29T00:00:00", + "endDate": "2018-11-29T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 6, + "totalInitialBudget": 378, + "coordinador": "María Jesús Fuertes Menéndez", + "state": "Impartición" + } + ], + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 6, + "totalInitialBudget": 378 + }, + { + "id": 6873498, + "name": "JORNADA TEÓRICO-PRÁCTICA SOBRE ACTUACIÓN SANITARIA EN EMERGENCIAS NUCLEARES (PENTA)", + "editionVersion": [ + { + "id": 6873499, + "startDate": "2018-10-09T00:00:00", + "endDate": "2018-10-09T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 5, + "totalInitialBudget": 378, + "coordinador": "Fabiola Ugalde Andrés", + "state": "Cerrada" + } + ], + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 5, + "totalInitialBudget": 378 + }, + { + "id": 6873518, + "name": "JORNADA TEÓRICO-PRÁCTICA SOBRE ACTUACIÓN SANITARIA EN EMERGENCIAS NUCLEARES (PENVA)", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6873521, + "name": "MOVILIZACIONES E INMOVILIZACIONES EN VÍCTIMAS TRAUMÁTICAS PARA PRIMEROS INTERVINIENTES", + "editionVersion": [ + { + "id": 6873522, + "startDate": "2018-04-03T00:00:00", + "endDate": "2018-04-03T00:00:00", + "totalVacancies": 20, + "totalReserved": 2, + "totalNumberOfHours": 9, + "totalInitialBudget": 1800, + "coordinador": "Esther Pardo Sánchez", + "state": "Cerrada" + }, + { + "id": 8076747, + "startDate": "2018-11-28T00:00:00", + "endDate": "2018-11-28T00:00:00", + "totalVacancies": 20, + "totalReserved": 0, + "totalNumberOfHours": 8, + "totalInitialBudget": 1800, + "coordinador": "Araceli Ruiz Anca", + "state": "Programación" + } + ], + "totalVacancies": 40, + "totalReserved": 2, + "totalNumberOfHours": 17, + "totalInitialBudget": 3600 + }, + { + "id": 6873582, + "name": "MOVILIZACIONES E INMOVILIZACIONES EN VÍCTIMAS TRAUMÁTICAS PARA PRIMEROS INTERVINIENTES PARA VOLUNTARIOS DE PROTECCIÓN CIVIL", + "editionVersion": [ + { + "id": 6873583, + "startDate": "2018-10-06T00:00:00", + "endDate": "2018-10-06T00:00:00", + "totalVacancies": 20, + "totalReserved": 0, + "totalNumberOfHours": 9, + "totalInitialBudget": 1800, + "coordinador": "Esther Pardo Sánchez", + "state": "Anulada" + } + ], + "totalVacancies": 20, + "totalReserved": 0, + "totalNumberOfHours": 9, + "totalInitialBudget": 1800 + }, + { + "id": 6873613, + "name": "REANIMACIÓN CARDIOPULMONAR Y DESA ", + "editionVersion": [ + { + "id": 6873614, + "startDate": "2018-04-02T00:00:00", + "endDate": "2018-04-02T00:00:00", + "totalVacancies": 24, + "totalReserved": 24, + "totalNumberOfHours": 10, + "totalInitialBudget": 2600, + "coordinador": "Esther Pardo Sánchez", + "state": "Cerrada" + }, + { + "id": 6873708, + "startDate": "2018-04-05T00:00:00", + "endDate": "2018-04-05T00:00:00", + "totalVacancies": 24, + "totalReserved": 24, + "totalNumberOfHours": 10, + "totalInitialBudget": 2600, + "coordinador": "Esther Pardo Sánchez", + "state": "Cerrada" + }, + { + "id": 6873748, + "startDate": "2018-05-28T00:00:00", + "endDate": "2018-05-28T00:00:00", + "totalVacancies": 24, + "totalReserved": 24, + "totalNumberOfHours": 10, + "totalInitialBudget": 2600, + "coordinador": "Valeriano Ortega Miravalles", + "state": "Cerrada" + }, + { + "id": 6980367, + "startDate": "2018-11-06T00:00:00", + "endDate": "2018-11-06T00:00:00", + "totalVacancies": 24, + "totalReserved": 0, + "totalNumberOfHours": 10, + "totalInitialBudget": 2600, + "coordinador": "Valeriano Ortega Miravalles", + "state": "Cerrada" + } + ], + "totalVacancies": 96, + "totalReserved": 72, + "totalNumberOfHours": 40, + "totalInitialBudget": 10400 + }, + { + "id": 6873809, + "name": "RECICLAJE DE REANIMACIÓN CARDIOPULMONAR Y DESA (Turno de mañana)", + "editionVersion": [ + { + "id": 6873810, + "startDate": "2018-04-04T00:00:00", + "endDate": "2018-04-04T00:00:00", + "totalVacancies": 24, + "totalReserved": 24, + "totalNumberOfHours": 5, + "totalInitialBudget": 1415, + "coordinador": "Esther Pardo Sánchez", + "state": "Cerrada" + }, + { + "id": 6873860, + "startDate": "2018-11-07T00:00:00", + "endDate": "2018-11-07T00:00:00", + "totalVacancies": 24, + "totalReserved": 0, + "totalNumberOfHours": 5, + "totalInitialBudget": 1415, + "coordinador": "Valeriano Ortega Miravalles", + "state": "Cerrada" + } + ], + "totalVacancies": 48, + "totalReserved": 24, + "totalNumberOfHours": 10, + "totalInitialBudget": 2830 + } + ], + "totalVacancies": 374, + "totalReserved": 238, + "totalNumberOfHours": 142, + "totalInitialBudget": 22770 + }, + { + "id": 6873883, + "name": "4.6 Asistencia Psicosocial en Emergencias.", + "trainingActivityVersion": [ + { + "id": 6873884, + "name": "APOYO PSICOLÓGICO, AUTOCONTROL EMOCIONAL Y MANEJO DE ESTRÉS EN GRUPOS DE INTERVENCIÓN", + "editionVersion": [ + { + "id": 6873885, + "startDate": "2018-05-21T00:00:00", + "endDate": "2018-05-25T00:00:00", + "totalVacancies": 30, + "totalReserved": 11, + "totalNumberOfHours": 30, + "totalInitialBudget": 1900, + "coordinador": "Isabel Vera Navascués", + "state": "Cerrada" + } + ], + "totalVacancies": 30, + "totalReserved": 11, + "totalNumberOfHours": 30, + "totalInitialBudget": 1900 + }, + { + "id": 6873921, + "name": "EL PSICÓLOGO EN SITUACIONES DE RIESGOS, EMERGENCIAS Y CATÁSTROFES: OBJETIVOS, FUNCIONES Y TAREAS", + "editionVersion": [ + { + "id": 6873922, + "startDate": "2018-06-25T00:00:00", + "endDate": "2018-06-29T00:00:00", + "totalVacancies": 25, + "totalReserved": 10, + "totalNumberOfHours": 30, + "totalInitialBudget": 2650, + "coordinador": "Elena Puertas López", + "state": "Cerrada" + } + ], + "totalVacancies": 25, + "totalReserved": 10, + "totalNumberOfHours": 30, + "totalInitialBudget": 2650 + }, + { + "id": 6873957, + "name": "GESTIÓN DE LA ATENCIÓN A VÍCTIMAS Y FAMILIARES EN EMERGENCIAS MASIVAS POR TRANSPORTE COLECTIVO", + "editionVersion": [ + { + "id": 6873958, + "startDate": "2018-03-20T00:00:00", + "endDate": "2018-03-22T00:00:00", + "totalVacancies": 25, + "totalReserved": 25, + "totalNumberOfHours": 21, + "totalInitialBudget": 3000, + "coordinador": "Elena Puertas López", + "state": "Cerrada" + }, + { + "id": 6873986, + "startDate": "2018-10-09T00:00:00", + "endDate": "2018-10-11T00:00:00", + "totalVacancies": 25, + "totalReserved": 25, + "totalNumberOfHours": 21, + "totalInitialBudget": 3000, + "coordinador": "Elena Puertas López", + "state": "Cerrada" + } + ], + "totalVacancies": 50, + "totalReserved": 50, + "totalNumberOfHours": 42, + "totalInitialBudget": 6000 + }, + { + "id": 6874049, + "name": "HABILIDADES PSICOSOCIALES EN LA GESTIÓN DE EMERGENCIAS", + "editionVersion": [ + { + "id": 6874050, + "startDate": "2018-11-27T00:00:00", + "endDate": "2018-11-29T00:00:00", + "totalVacancies": 30, + "totalReserved": 12, + "totalNumberOfHours": 18, + "totalInitialBudget": 1600, + "coordinador": "Isabel Vera Navascués", + "state": "Cerrada" + } + ], + "totalVacancies": 30, + "totalReserved": 12, + "totalNumberOfHours": 18, + "totalInitialBudget": 1600 + }, + { + "id": 6874068, + "name": "JORNADA TÉCNICA SOBRE FORMACIÓN, PLANIFICACIÓN E INTERVENCIÓN DE PSICÓLOGOS EN EMERGENCIAS Y CATÁSTROFES EN ESPAÑA", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + } + ], + "totalVacancies": 135, + "totalReserved": 83, + "totalNumberOfHours": 120, + "totalInitialBudget": 12150 + }, + { + "id": 6874069, + "name": "4.7 Técnicas Adicionales para las Intervenciones.", + "trainingActivityVersion": [ + { + "id": 6874070, + "name": "CURSO SOBRE RIESGOS NATURALES Y PC PARA PROFESIONALES DE LA INFORMACIÓN Y DIVULGACIÓN. (Nivel II)", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874071, + "name": "FORMACIÓN A PERSONAS DE CONTACTO DEL SISTEMA DE ASISTENCIA A VÍCTIMAS Y FAMILIARES DE ACCIDENTES AÉREOS. FASE 3. HABILIDADES PSICOSOCIALES PARA LAS PERSONAS DE CONTACTO", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874072, + "name": "FORMACIÓN INICIAL A PERSONAS DE CONTACTO DEL SISTEMA DE ASISTENCIA A VÍCTIMAS Y FAMILIARES DE ACCIDENTES AÉREOS. SEMIPRESENCIAL", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874073, + "name": "FORMACIÓN PRÁCTICA DE DESPLIEGUE, COMUNICACIONES Y MANEJO DE HERRAMIENTAS DE GEOPOSICIONAMIENTO PARA VOLUNTARIOS DE PROTECCIÓN CIVIL", + "editionVersion": [ + { + "id": 6874074, + "startDate": "2018-12-17T00:00:00", + "endDate": "2018-12-31T00:00:00", + "totalVacancies": 20, + "totalReserved": 0, + "totalNumberOfHours": 15, + "totalInitialBudget": 0, + "coordinador": "Roberto Martínez-Alegría López", + "state": "Anulada" + } + ], + "totalVacancies": 20, + "totalReserved": 0, + "totalNumberOfHours": 15, + "totalInitialBudget": 0 + }, + { + "id": 6874093, + "name": "INTERVENCIÓN EN PATRIMONIO CULTURAL EN SITUACIONES DE EMERGENCIA. PLAN NACIONAL DE EMERGENCIAS Y GESTIÓN DE RIESGOS", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874144, + "name": "INTRODUCCIÓN A LA CARTOGRAFÍA Y SITUACIÓN EN EL TERRENO PARA VOLUNTARIOS DE PROTECCIÓN CIVIL", + "editionVersion": [ + { + "id": 6874145, + "startDate": "2018-03-09T00:00:00", + "endDate": "2018-03-11T00:00:00", + "totalVacancies": 25, + "totalReserved": 0, + "totalNumberOfHours": 20, + "totalInitialBudget": 2320, + "coordinador": "Arturo Fuente Pedrejón", + "state": "Cerrada" + }, + { + "id": 6974386, + "startDate": "2018-06-01T00:00:00", + "endDate": "2018-06-03T00:00:00", + "totalVacancies": 25, + "totalReserved": 0, + "totalNumberOfHours": 20, + "totalInitialBudget": 2320, + "coordinador": "Arturo Fuente Pedrejón", + "state": "Cerrada" + } + ], + "totalVacancies": 50, + "totalReserved": 0, + "totalNumberOfHours": 40, + "totalInitialBudget": 4640 + }, + { + "id": 6874161, + "name": "JORNADA DE INTERVENCIÓN EN PATRIMONIO CULTURAL EN SITUACIONES DE EMERGENCIA. PLAN NACIONAL DE EMERGENCIAS Y GESTIÓN DE RIESGOS", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874192, + "name": "SEMINARIO SOBRE COORDINACIÓN INSTITUCIONAL EN LA ASISTENCIA A VÍCTIMAS DE ACCIDENTES DE AVIACIÓN CIVIL Y SUS FAMILIARES", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6975910, + "name": "JORNADA DE ACTUANTES DEL PENBU SOBRE AUTOPROTECCIÓN Y MANEJO DE LOS EQUIPAMIENTOS RADIOMÉTRICOS (PENBU)", + "editionVersion": [ + { + "id": 6975952, + "startDate": "2018-11-20T00:00:00", + "endDate": "2018-11-20T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 5, + "totalInitialBudget": 378, + "coordinador": "Javier Basconcillos Arce", + "state": "Cerrada" + } + ], + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 5, + "totalInitialBudget": 378 + } + ], + "totalVacancies": 90, + "totalReserved": 20, + "totalNumberOfHours": 60, + "totalInitialBudget": 5018 + }, + { + "id": 6874254, + "name": "4.8 Técnicas de Información y Comunicación en Emergencias.", + "trainingActivityVersion": [ + { + "id": 6874255, + "name": "COMUNICACIÓN EN LA ORGANIZACIÓN DE PROTECCIÓN CIVIL Y EMERGENCIAS", + "editionVersion": [ + { + "id": 6874256, + "startDate": "2018-05-12T00:00:00", + "endDate": "2018-05-20T00:00:00", + "totalVacancies": 30, + "totalReserved": 0, + "totalNumberOfHours": 25, + "totalInitialBudget": 3382, + "coordinador": "Angel Ibáñez Peiró", + "state": "Cerrada" + } + ], + "totalVacancies": 30, + "totalReserved": 0, + "totalNumberOfHours": 25, + "totalInitialBudget": 3382 + }, + { + "id": 6874318, + "name": "COMUNICACIONES DE EMERGENCIAS PARA VOLUNTARIOS DE PROTECCIÓN CIVIL", + "editionVersion": [ + { + "id": 6874319, + "startDate": "2018-03-24T00:00:00", + "endDate": "2018-03-25T00:00:00", + "totalVacancies": 30, + "totalReserved": 0, + "totalNumberOfHours": 12, + "totalInitialBudget": 1720, + "coordinador": "Ramón Pérez Barrientos", + "state": "Cerrada" + }, + { + "id": 6874340, + "startDate": "2018-04-14T00:00:00", + "endDate": "2018-04-15T00:00:00", + "totalVacancies": 30, + "totalReserved": 0, + "totalNumberOfHours": 12, + "totalInitialBudget": 1720, + "coordinador": "Juan Manuel Corral Sánchez", + "state": "Cerrada" + } + ], + "totalVacancies": 60, + "totalReserved": 0, + "totalNumberOfHours": 24, + "totalInitialBudget": 3440 + }, + { + "id": 6874360, + "name": "CURSO DE GESTIÓN DE LA INFORMACIÓN EN EMERGENCIAS", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874361, + "name": "JORNADA DEL SERVICIO DE COMUNICACIONES Y AVISOS A LA POBLACIÓN DE LOS PAMEN DEL PENBU", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874362, + "name": "JORNADA PRÁCTICA DE ACTIVACIÓN DE LA REMER PARA LA COBERTURA RADIO EN LA ZONA I DEL PENBU", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874363, + "name": "JORNADA TÉCNICA SOBRE LA INFORMACIÓN A LA POBLACIÓN EN LA GESTIÓN DE RIESGOS Y EMERGENCIAS: APLICACIÓN A LOS PLANES DE EMERGENCIA NUCLEAR", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874364, + "name": "JORNADA TÉCNICA SOBRE MANEJO DE LA APLICACIÓN INFORMÁTICA SIGAME", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874365, + "name": "JORNADA TÉCNICA SOBRE MANEJO DE LA APLICACIÓN SIAGEN PARA AYUDA A LA GESTIÓN DE EMERGENCIAS NUCLEARES", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874366, + "name": "JORNADA TÉCNICA SOBRE REDES DE COMUNICACIONES DE PROTECCIÓN CIVIL", + "editionVersion": [ + { + "id": 6874367, + "startDate": "2018-05-01T00:00:00", + "endDate": "2018-05-01T00:00:00", + "totalVacancies": 40, + "totalReserved": 40, + "totalNumberOfHours": 7, + "totalInitialBudget": 1500, + "coordinador": "Fernando Prieto Fernández", + "state": "Anulada" + } + ], + "totalVacancies": 40, + "totalReserved": 40, + "totalNumberOfHours": 7, + "totalInitialBudget": 1500 + }, + { + "id": 6874369, + "name": "SISTEMAS DE INFORMACIÓN Y TELECOMUNICACIONES EN EMERGENCIAS", + "editionVersion": [ + { + "id": 6874370, + "startDate": "2018-04-16T00:00:00", + "endDate": "2018-04-19T00:00:00", + "totalVacancies": 25, + "totalReserved": 11, + "totalNumberOfHours": 29, + "totalInitialBudget": 2800, + "coordinador": "José Pascual Torres", + "state": "Cerrada" + } + ], + "totalVacancies": 25, + "totalReserved": 11, + "totalNumberOfHours": 29, + "totalInitialBudget": 2800 + }, + { + "id": 6975955, + "name": "JORNADAS TÉCNICAS PARA ACTUANTES DE LOS PAMEN. COMUNICACIONES Y AVISOS EN LA POBLACIÓN EN LOS NUCLEOS DE POBLACIÓN ZONA I (PENBU)", + "editionVersion": [ + { + "id": 6975958, + "startDate": "2018-05-08T00:00:00", + "endDate": "2018-05-08T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 5, + "totalInitialBudget": 378, + "coordinador": "Javier Basconcillos Arce", + "state": "Cerrada" + }, + { + "id": 6975960, + "startDate": "2018-05-16T00:00:00", + "endDate": "2018-05-16T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 5, + "totalInitialBudget": 378, + "coordinador": "Javier Basconcillos Arce", + "state": "Cerrada" + }, + { + "id": 6975962, + "startDate": "2018-05-30T00:00:00", + "endDate": "2018-05-30T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 5, + "totalInitialBudget": 378, + "coordinador": "Javier Basconcillos Arce", + "state": "Cerrada" + }, + { + "id": 6975964, + "startDate": "2018-12-31T00:00:00", + "endDate": "2018-12-31T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 5, + "totalInitialBudget": 378, + "coordinador": "Javier Basconcillos Arce", + "state": "Anulada" + }, + { + "id": 6977045, + "startDate": "2018-12-31T00:00:00", + "endDate": "2018-12-31T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 5, + "totalInitialBudget": 378, + "coordinador": " ", + "state": "Anulada" + } + ], + "totalVacancies": 100, + "totalReserved": 100, + "totalNumberOfHours": 25, + "totalInitialBudget": 1890 + }, + { + "id": 6978319, + "name": "JORNADA DE FORMACION GENERAL TEÓRICO-PRÁCTICA DE EN COMUNICACIONES EN EMERGENCIAS NUCLEARES (PENBU)", + "editionVersion": [ + { + "id": 6978322, + "startDate": "2018-12-31T00:00:00", + "endDate": "2018-12-31T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 5, + "totalInitialBudget": 378, + "coordinador": " ", + "state": "Anulada" + } + ], + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 5, + "totalInitialBudget": 378 + }, + { + "id": 6980123, + "name": "INFORMACIÓN A LA POBLACIÓN EN SITUACIONES DE RIESGOS Y EMERGENCIA. CULTURA PREVENTIVA Y RESILIENCIA", + "editionVersion": [ + { + "id": 6980125, + "startDate": "2018-04-23T00:00:00", + "endDate": "2018-04-27T00:00:00", + "totalVacancies": 25, + "totalReserved": 0, + "totalNumberOfHours": 30, + "totalInitialBudget": 3000, + "coordinador": "Elena Puertas López", + "state": "Cerrada" + } + ], + "totalVacancies": 25, + "totalReserved": 0, + "totalNumberOfHours": 30, + "totalInitialBudget": 3000 + }, + { + "id": 6980149, + "name": "JORNADA SOBRE LA RED DE EMERGENCIA REMER EN EL MARCO DE LA LEY 1772015 DEL SNPC", + "editionVersion": [ + { + "id": 6980152, + "startDate": "2018-11-29T00:00:00", + "endDate": "2018-11-29T00:00:00", + "totalVacancies": 40, + "totalReserved": 0, + "totalNumberOfHours": 5, + "totalInitialBudget": 1000, + "coordinador": "Jesús Portillo García-Pintos", + "state": "Programación" + } + ], + "totalVacancies": 40, + "totalReserved": 0, + "totalNumberOfHours": 5, + "totalInitialBudget": 1000 + } + ], + "totalVacancies": 340, + "totalReserved": 171, + "totalNumberOfHours": 150, + "totalInitialBudget": 17390 + } + ], + "totalVacancies": 4184, + "totalReserved": 2851, + "totalNumberOfHours": 2447, + "totalInitialBudget": 386159 + }, + { + "id": 6874422, + "name": "5 REHABILITACIÓN Y RECONSTRUCCION EN CATÁSTROFES", + "submoduleVersion": [ + { + "id": 6874423, + "name": "5.1 Evaluación de Daños.", + "trainingActivityVersion": [ + { + "id": 6874424, + "name": "CURSO PARA SECRETARIOS DE AYUNTAMIENTOS Y TÉCNICOS MUNICIPALES", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874425, + "name": "INTERVENCIÓN TÉCNICA EN CATÁSTROFES: ESTIMACIÓN Y VALORACIÓN DE DAÑOS", + "editionVersion": [ + { + "id": 6874426, + "startDate": "2018-03-12T00:00:00", + "endDate": "2018-03-16T00:00:00", + "totalVacancies": 30, + "totalReserved": 6, + "totalNumberOfHours": 25, + "totalInitialBudget": 2900, + "coordinador": "Sofía González López", + "state": "Cerrada" + } + ], + "totalVacancies": 30, + "totalReserved": 6, + "totalNumberOfHours": 25, + "totalInitialBudget": 2900 + } + ], + "totalVacancies": 30, + "totalReserved": 6, + "totalNumberOfHours": 25, + "totalInitialBudget": 2900 + }, + { + "id": 6874479, + "name": "5.2 Restablecimento Servicios Básicos.", + "trainingActivityVersion": [ + { + "id": 6874480, + "name": "INTERVENCIÓN DEL VOLUNTARIADO DE ARQUITECTURA E INGENIERÍA EN CATÁSTROFES", + "editionVersion": [ + { + "id": 6874481, + "startDate": "2018-11-05T00:00:00", + "endDate": "2018-11-09T00:00:00", + "totalVacancies": 40, + "totalReserved": 0, + "totalNumberOfHours": 25, + "totalInitialBudget": 0, + "coordinador": "Magdalena Lorente Martínez", + "state": "Anulada" + } + ], + "totalVacancies": 40, + "totalReserved": 0, + "totalNumberOfHours": 25, + "totalInitialBudget": 0 + }, + { + "id": 6874500, + "name": "REHABILITACIÓN POST CATÁSTROFES", + "editionVersion": [ + { + "id": 6874501, + "startDate": "2018-11-05T00:00:00", + "endDate": "2018-11-08T00:00:00", + "totalVacancies": 25, + "totalReserved": 10, + "totalNumberOfHours": 28, + "totalInitialBudget": 3561, + "coordinador": "José Pascual Torres", + "state": "Cerrada" + } + ], + "totalVacancies": 25, + "totalReserved": 10, + "totalNumberOfHours": 28, + "totalInitialBudget": 3561 + } + ], + "totalVacancies": 65, + "totalReserved": 10, + "totalNumberOfHours": 53, + "totalInitialBudget": 3561 + }, + { + "id": 6874546, + "name": "5.3 Ayudas y Subvenciones a la Rehabilitación", + "trainingActivityVersion": [ + { + "id": 6874547, + "name": "JORNADAS FORMATIVAS PARA RESPONSABLES TÉCNICOS MUNICIPALES EN LA ELABORACIÓN DE PROYECTOS DESTINADOS A SUBVENCIONES Y AYUDAS (PENBU)", + "editionVersion": [ + { + "id": 6874548, + "startDate": "2018-12-31T00:00:00", + "endDate": "2018-12-31T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 5, + "totalInitialBudget": 378, + "coordinador": "Javier Basconcillos Arce", + "state": "Anulada" + } + ], + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 5, + "totalInitialBudget": 378 + } + ], + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 5, + "totalInitialBudget": 378 + } + ], + "totalVacancies": 115, + "totalReserved": 36, + "totalNumberOfHours": 83, + "totalInitialBudget": 6839 + }, + { + "id": 6874572, + "name": "6 INTERNACIONAL", + "submoduleVersion": [ + { + "id": 6874573, + "name": "6.1 Iberoamérica.", + "trainingActivityVersion": [ + { + "id": 6874574, + "name": "ACTIVIDAD VIRTUAL “RED DE EXPERTOS EN GESTIÓN DE RIESGOS DE DESASTRES”", + "editionVersion": [ + { + "id": 6874575, + "startDate": "2018-10-01T00:00:00", + "endDate": "2018-12-31T00:00:00", + "totalVacancies": 50, + "totalReserved": 50, + "totalNumberOfHours": 150, + "totalInitialBudget": 0, + "coordinador": "Angela Potenciano de las Heras", + "state": "Programación" + } + ], + "totalVacancies": 50, + "totalReserved": 50, + "totalNumberOfHours": 150, + "totalInitialBudget": 0 + }, + { + "id": 6874577, + "name": "CIUDADES EN RIESGO FRENTE A CIUDADES RESILIENTES EN EL HORIZONTE DEL CAMBIO CLIMÁTICO", + "editionVersion": [ + { + "id": 6874578, + "startDate": "2018-05-28T00:00:00", + "endDate": "2018-06-01T00:00:00", + "totalVacancies": 25, + "totalReserved": 25, + "totalNumberOfHours": 35, + "totalInitialBudget": 8400, + "coordinador": "Angela Potenciano de las Heras", + "state": "Anulada" + } + ], + "totalVacancies": 25, + "totalReserved": 25, + "totalNumberOfHours": 35, + "totalInitialBudget": 8400 + }, + { + "id": 6874641, + "name": "CURSO DE COORDINACIÓN INTERNACIONAL ANTE DESASTRES (Nivel III).", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874642, + "name": "CURSO DE DIRECCIÓN Y GESTIÓN DE EMERGENCIAS: EVALUACIÓN, COMUNICACIÓN Y COORDINACIÓN. (Nivel III).", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874643, + "name": "CURSO DE EVALUACIÓN Y COORDINACIÓN DE AYUDA INTERNACIONAL ", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874644, + "name": "CURSO DE FORMACIÓN BÁSICA Y DE ESPECIALIZACIÓN DE GUÍAS CANINOS PARA SALVAMENTO EN ESTRUCTURAS COLAPSADAS. (Nivel III).", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874645, + "name": "CURSO DE GESTIÓN DE RIESGOS ASOCIADOS A GRANDES CONCENTRACIONES HUMANAS", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874646, + "name": "CURSO DE PLANIFICACIÓN DE RECURSOS Y SERVICIOS BÁSICOS EN EMERGENCIAS LOCALES. PLANES DE CONTINGENCIA Y Y PLANES DE INTEGRACIÓN DE EMERGENCIAS", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874647, + "name": "CURSO DE PROGRAMAS PARA EL DESARROLLO DE UNA CULTURA PREVENTIVA EN PROTECCIÓN CIVIL", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874648, + "name": "CURSO RIESGO Y TERRITORIO: GESTIÓN DEL RIESGO DE DESASTRES EN LAS POLÍTICAS PÚBLICAS DE PLANIFICACIÓN TERRITORIAL Y ORDENACIÓN URBANA", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874649, + "name": "GESTIÓN OPERATIVA EN CATÁSTROFES", + "editionVersion": [ + { + "id": 6874650, + "startDate": "2018-11-12T00:00:00", + "endDate": "2018-11-23T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 95, + "totalInitialBudget": 15300, + "coordinador": "Julio César Ramos Fernández", + "state": "Programación" + } + ], + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 95, + "totalInitialBudget": 15300 + }, + { + "id": 6874652, + "name": "GESTIÓN Y PLANIFICACIÓN DE EMERGENCIAS EN ENTORNOS URBANOS. ONLINE", + "editionVersion": [ + { + "id": 6874653, + "startDate": "2018-10-22T00:00:00", + "endDate": "2018-12-16T00:00:00", + "totalVacancies": 50, + "totalReserved": 50, + "totalNumberOfHours": 110, + "totalInitialBudget": 0, + "coordinador": "Angela Potenciano de las Heras", + "state": "Programación" + } + ], + "totalVacancies": 50, + "totalReserved": 50, + "totalNumberOfHours": 110, + "totalInitialBudget": 0 + }, + { + "id": 6874655, + "name": "HERRAMIENTAS PARA EL ANÁLISIS DE LOS RIESGOS NATURALES EN PROTECCIÓN CIVIL", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874656, + "name": "LA FORMACIÓN COMO OBJETIVO PRIORITARIO EN LA POLÍTICAS PÚBLICAS DE PROTECCIÓN CIVIL", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874657, + "name": "LA GESTIÓN INTEGRAL DE LOS RIESGOS NATURALES Y TECNOLÓGICOS", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874658, + "name": "LA PREVENCIÓN DEL RIESGO DE DESASTRES EN LA ORDENACIÓN TERRITORIAL Y EL DESARROLLO URBANO", + "editionVersion": [ + { + "id": 6874659, + "startDate": "2018-05-21T00:00:00", + "endDate": "2018-05-25T00:00:00", + "totalVacancies": 25, + "totalReserved": 25, + "totalNumberOfHours": 35, + "totalInitialBudget": 8500, + "coordinador": "María Vara Moral", + "state": "Anulada" + } + ], + "totalVacancies": 25, + "totalReserved": 25, + "totalNumberOfHours": 35, + "totalInitialBudget": 8500 + }, + { + "id": 6874666, + "name": "LA REHABILITACIÓN POST CATÁSTROFE. EL CAMINO HACIA LA PREVENCIÓN. EVALUACIÓN DE DAÑOS Y GESTIÓN ECONÓMICA DE LAS AYUDAS", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874667, + "name": "ANÁLISIS DE DESASTRES NATURALES Y MEDIDAS PARA SU MITIGACIÓN", + "editionVersion": [ + { + "id": 6874668, + "startDate": "2018-11-19T00:00:00", + "endDate": "2018-11-23T00:00:00", + "totalVacancies": 25, + "totalReserved": 25, + "totalNumberOfHours": 35, + "totalInitialBudget": 8500, + "coordinador": "Mercedes Vallejo Bombín", + "state": "Anulada" + } + ], + "totalVacancies": 25, + "totalReserved": 25, + "totalNumberOfHours": 35, + "totalInitialBudget": 8500 + }, + { + "id": 6874700, + "name": "PREVENCIÓN Y PLANIFICACIÓN DE RIESGOS NATURALES Y TECNOLÓGICOS", + "editionVersion": [ + { + "id": 6874701, + "startDate": "2018-11-12T00:00:00", + "endDate": "2018-11-23T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 65, + "totalInitialBudget": 15300, + "coordinador": "Mercedes Vallejo Bombín", + "state": "Programación" + } + ], + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 65, + "totalInitialBudget": 15300 + }, + { + "id": 6874753, + "name": "SEMINARIO DE CONCLUSIONES DE LA RED DE EXPERTOS PROGRAMA DE GESTION INTEGRAL DEL RIESGO PARA LA REDUCCIÓN DE DESASTRES", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874754, + "name": "SEMINARIO SOBRE LA ACCIÓN SOCIAL EN GESTIÓN DEL RIESGO DE DESASTRE: CULTURA PREVENTIVA Y RESILIENCIA", + "editionVersion": [ + { + "id": 6874755, + "startDate": "2018-09-17T00:00:00", + "endDate": "2018-09-30T00:00:00", + "totalVacancies": 25, + "totalReserved": 25, + "totalNumberOfHours": 35, + "totalInitialBudget": 0, + "coordinador": "Angela Potenciano de las Heras", + "state": "Programación" + } + ], + "totalVacancies": 25, + "totalReserved": 25, + "totalNumberOfHours": 35, + "totalInitialBudget": 0 + }, + { + "id": 6980157, + "name": "GESTIÓN DEL RIESGO EN GRANDES CONCENTRACIONES HUMANAS", + "editionVersion": [ + { + "id": 6980159, + "startDate": "2018-10-22T00:00:00", + "endDate": "2018-10-26T00:00:00", + "totalVacancies": 25, + "totalReserved": 25, + "totalNumberOfHours": 35, + "totalInitialBudget": 9500, + "coordinador": "Fernando Talavera Esteso", + "state": "Anulada" + } + ], + "totalVacancies": 25, + "totalReserved": 25, + "totalNumberOfHours": 35, + "totalInitialBudget": 9500 + }, + { + "id": 6980162, + "name": "COORDINACIÓN DE EMERGENCIAS DESDE CENTROS NACIONALES DE OPERACIONES", + "editionVersion": [ + { + "id": 6980165, + "startDate": "2018-07-31T00:00:00", + "endDate": "2018-07-31T00:00:00", + "totalVacancies": 25, + "totalReserved": 25, + "totalNumberOfHours": 35, + "totalInitialBudget": 9200, + "coordinador": "Francisco José Ruiz Boada", + "state": "Anulada" + } + ], + "totalVacancies": 25, + "totalReserved": 25, + "totalNumberOfHours": 35, + "totalInitialBudget": 9200 + }, + { + "id": 8216482, + "name": "LIDERAZGO APLICADO A LA DIRECCIÓN Y GESTIÓN DE EMERGENCIAS", + "editionVersion": [ + { + "id": 8216485, + "startDate": "2018-10-29T00:00:00", + "endDate": "2018-10-31T00:00:00", + "totalVacancies": 9, + "totalReserved": 9, + "totalNumberOfHours": 21, + "totalInitialBudget": 3500, + "coordinador": "Francisco Javier Frutos Gonzalez", + "state": "Cerrada" + } + ], + "totalVacancies": 9, + "totalReserved": 9, + "totalNumberOfHours": 21, + "totalInitialBudget": 3500 + } + ], + "totalVacancies": 299, + "totalReserved": 299, + "totalNumberOfHours": 651, + "totalInitialBudget": 78200 + }, + { + "id": 6874757, + "name": "6.2 Unión Europea.", + "trainingActivityVersion": [ + { + "id": 6874758, + "name": "\"JORNADA / SEMINARIO Nº 1\"", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874759, + "name": "\"JORNADA / SEMINARIO Nº 2\"", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874760, + "name": "5º ENCUENTRO DEL FORO EUROPEO PARA LA REDUCCIÓN DEL RIESGO DE DESASTRES", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874761, + "name": "EXERCÍCIO COMMAND POST EXERCISE (CPX) - PUESTO DE COMANDO", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874762, + "name": "EXERCÍCIO TABLE-TOP (NÍVEL CODIS/CADIS - DIRETOR DE OPERAÇÕES)", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874763, + "name": "FASE DE ENTRENAMIENTO DEL PROYECTO ERICHA", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874766, + "name": "FASE DE ENTRENAMIENTO Y DISEMINACIÓN DEL PROYECTO SAFETY", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874769, + "name": "JORNADA INTERNACIONAL", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874770, + "name": "JORNADA TÉCNICA SOBRE RESILIENCIA EN LAS ADMINISTRACIONES PÚBLICAS ESPAÑOLAS", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874771, + "name": "JORNADAS DE PRESENTACIÓN DEL PROYECTO IGNIS (Initiative for Global maNagement of bIg fires through Simulation)", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874774, + "name": "RISK MAPPING WORKSHOP. EUROMED PPRD SOUTH PROGRAMME II.", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874775, + "name": "SESIÓN INFORMATIVA SOBRE PROGRAMA DE TRABAJO P.C. UE", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874776, + "name": "TALLER HISPANO-LUSO DE LUCHA CONTRA INCENDIOS FORESTALES: HERAMIENTAS DE GESTIÓN OPERATIVA Y SIMULACIÓN", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874785, + "name": "WORKSHOP: OPERACIONES DE EXTINCIÓN DE INCENDIOS FORESTALES EN LAS REGIONES FRONTERIZAS (PORTUGAL / ESPAÑA)", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6980168, + "name": "SEMINARIO FRANCO-ESPAÑOL SOBRE RIESGOS TECNOLÓGICOS", + "editionVersion": [ + { + "id": 6980171, + "startDate": "2018-04-17T00:00:00", + "endDate": "2018-04-18T00:00:00", + "totalVacancies": 12, + "totalReserved": 12, + "totalNumberOfHours": 12, + "totalInitialBudget": 5000, + "coordinador": "Pablo Calvo Barrios", + "state": "Cerrada" + } + ], + "totalVacancies": 12, + "totalReserved": 12, + "totalNumberOfHours": 12, + "totalInitialBudget": 5000 + }, + { + "id": 6980177, + "name": "JORNADA DE COORDINACIÓN EN INCENDIOS FORESTALES TRANSFRONTERIZOS PORTUGAL - ESPAÑA", + "editionVersion": [ + { + "id": 6980182, + "startDate": "2018-11-05T00:00:00", + "endDate": "2018-11-09T00:00:00", + "totalVacancies": 10, + "totalReserved": 10, + "totalNumberOfHours": 5, + "totalInitialBudget": 3000, + "coordinador": "Angela Potenciano de las Heras", + "state": "Cerrada" + } + ], + "totalVacancies": 10, + "totalReserved": 10, + "totalNumberOfHours": 5, + "totalInitialBudget": 3000 + } + ], + "totalVacancies": 22, + "totalReserved": 22, + "totalNumberOfHours": 17, + "totalInitialBudget": 8000 + }, + { + "id": 6874786, + "name": "6.6 África.", + "trainingActivityVersion": [ + { + "id": 6874787, + "name": "CURSO DE FORMACIÓN DE INSTRUCTORES PARA BOMBEROS DE SENEGAL. (Nivel III).", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + } + ], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0, + "totalInitialBudget": 0 + } + ], + "totalVacancies": 321, + "totalReserved": 321, + "totalNumberOfHours": 668, + "totalInitialBudget": 86200 + }, + { + "id": 8585225, + "name": "7 Prueba alberto", + "submoduleVersion": [ + { + "id": 8585227, + "name": "Prueba Alberto Modulo", + "trainingActivityVersion": [ + { + "id": 8585229, + "name": "Prueba Alberto Submodulo", + "editionVersion": [ + { + "id": 8585231, + "startDate": "2018-09-20T00:00:00", + "endDate": "2018-09-21T00:00:00", + "totalVacancies": 34, + "totalReserved": 0, + "totalNumberOfHours": 21, + "totalInitialBudget": 1000, + "coordinador": "José Pascual Torres", + "state": "Cerrada" + } + ], + "totalVacancies": 34, + "totalReserved": 0, + "totalNumberOfHours": 21, + "totalInitialBudget": 1000 + } + ], + "totalVacancies": 34, + "totalReserved": 0, + "totalNumberOfHours": 21, + "totalInitialBudget": 1000 + } + ], + "totalVacancies": 34, + "totalReserved": 0, + "totalNumberOfHours": 21, + "totalInitialBudget": 1000 + } + ], + "totalVacancies": 8250, + "totalReserved": 4755, + "totalNumberOfHours": 4672, + "totalInitialBudget": 662557 + } +} diff --git a/package.json b/package.json index 9e7faf0..28babdc 100644 --- a/package.json +++ b/package.json @@ -28,6 +28,8 @@ "build": "node build/build.js" }, "dependencies": { + "global": "^4.4.0", + "json-server": "^0.15.0", "popper.js": "^1.15.0", "vue": "^2.4.3" }, diff --git a/src/Table/TableBody.js b/src/Table/TableBody.js index 02e2322..2a97f1e 100644 --- a/src/Table/TableBody.js +++ b/src/Table/TableBody.js @@ -1,5 +1,7 @@ import Checkbox from "../Checkbox/Checkbox"; // eslint-disable-line -import { mixins } from './utils'; +import { + mixins, +} from './utils'; /* eslint-disable no-underscore-dangle */ export default { @@ -24,8 +26,7 @@ export default { const target = this.table.bodyData[rowIndex]; this.table.bodyData.splice(rowIndex, 1, { ...target, - [`_is${type}`]: - typeof value === 'undefined' ? !row[`_is${type}`] : value, + [`_is${type}`]: typeof value === 'undefined' ? !row[`_is${type}`] : value, }); }, getChildrenIndex(parentLevel, parentIndex, careFold = true) { @@ -64,11 +65,18 @@ export default { 'handleEvent', ); const eventType = $event ? $event.type : ''; - const { row, rowIndex, column, columnIndex } = data; + const { + row, + rowIndex, + column, + columnIndex, + } = data; const latestData = this.table.bodyData; // Checkbox if (certainType.checkbox) { - const { isChecked } = others; + const { + isChecked, + } = others; this.toggleStatus('Checked', row, rowIndex, isChecked); if (row._childrenLen > 0) { const childrenIndex = this.getChildrenIndex( @@ -227,74 +235,78 @@ export default { function renderCell(row, rowIndex, column, columnIndex) { // ExpandType if (this.isExpandCell(this.table, columnIndex)) { - return ; + return ; } // Tree's firstProp if (this.table.treeType && this.table.firstProp === column.prop) { - return ( - - {row._childrenLen > 0 && ( - { + row._childrenLen > 0 && ( - this.handleEvent( - $event, - 'icon', - { row, rowIndex, column, columnIndex }, - { isFold: row._isFold }, - ) - } + }-square-o` + } + on-click={ + $event => + this.handleEvent( + $event, + 'icon', { + row, + rowIndex, + column, + columnIndex, + }, { + isFold: row._isFold, + }, + ) + } /> - )} - {column.type === 'template' && column.tooltip && ( -
- {this.table.$scopedSlots[column.template]({ + ) + } { + column.type === 'template' && column.tooltip && (
{ + this.table.$scopedSlots[column.template]({ row, rowIndex, column, columnIndex, - })} -
- )} - {column.type === 'template' && !column.tooltip - ? this.table.$scopedSlots[column.template]({ + }) + }
+ ) + } { + column.type === 'template' && !column.tooltip ? + this.table.$scopedSlots[column.template]({ row, rowIndex, column, columnIndex, - }) - : ''} - {column.type === undefined && column.tooltip && ( -
- {// eslint-disable-next-line no-nested-ternary - column.type === undefined - ? row[column.prop] - ? row[column.prop] - : '' - : ''} -
- )} - {// eslint-disable-next-line no-nested-ternary - column.type === undefined && column.tooltip === undefined - ? row[column.prop] - ? row[column.prop] - : '' - : ''} -
+ }) : + '' + } { + column.type === undefined && column.tooltip && (
{ // eslint-disable-next-line no-nested-ternary + column.type === undefined ? + row[column.prop] ? + row[column.prop] : + '' : '' + }
+ ) + } { // eslint-disable-next-line no-nested-ternary + column.type === undefined && column.tooltip === undefined ? + row[column.prop] ? + row[column.prop] : + '' : + '' + } ); } // TreeType children's index @@ -308,125 +320,135 @@ export default { } if (column.type === undefined || column.type === 'custom') { if (column.tooltip) { - return ( -
- {row[column.prop] ? row[column.prop] : ''} -
+ return (
{ + row[column.prop] ? row[column.prop] : '' + }
); } return row[column.prop]; } else if (column.type === 'template') { - return this.table.$scopedSlots[column.template] - ? this.table.$scopedSlots[column.template]({ + return this.table.$scopedSlots[column.template] ? + this.table.$scopedSlots[column.template]({ row, rowIndex, column, columnIndex, - }) - : ''; + }) : + ''; } return ''; } // Template - return ( - - - {this.table.tableColumns.map(column => ( - - ))} - - - {this.table.bodyData.length > 0 ? ( - this.table.bodyData.map((row, rowIndex) => [ - - {this.table.tableColumns.map((column, columnIndex) => ( - - ))} - , - this.table.expandType && row._isExpanded && ( - + { + this.table.tableColumns.map(column => (+ )) + } + + { + this.table.bodyData.length > 0 ? ( + this.table.bodyData.map((row, rowIndex) => [{ + this.table.tableColumns.map((column, columnIndex) => ( + )) + }, + this.table.expandType && row._isExpanded && ( - - - ), - ]) - ) : ( - - + ), + ]) + ) : ( + - - )} - -
-
- {renderCell.call( - this, - row, - rowIndex, - column, - columnIndex, - )} -
-
+
{ + renderCell.call( + this, + row, + rowIndex, + column, + columnIndex, + ) + }
- {this.table.$scopedSlots.$expand - ? this.table.$scopedSlots.$expand({ row, rowIndex }) - : ''} -
+ { + this.table.$scopedSlots.$expand ? + this.table.$scopedSlots.$expand({ + row, + rowIndex, + }) : '' + }
- {this.table.emptyText} -
+ }--empty-content` + } + colspan = { + this.table.tableColumns.length + } > { + this.table.emptyText + } + ) + } ); }, }; diff --git a/src/Table/TableFooter.js b/src/Table/TableFooter.js index 54c128c..bed266b 100644 --- a/src/Table/TableFooter.js +++ b/src/Table/TableFooter.js @@ -1,4 +1,6 @@ -import { mixins } from './utils'; +import { + mixins, +} from './utils'; /* eslint-disable no-underscore-dangle */ export default { @@ -15,7 +17,9 @@ export default { methods: {}, render() { // 计算各列总和 - function renderCell({ prop }, columnIndex) { + function renderCell({ + prop, + }, columnIndex) { if (columnIndex === 0) { return this.table.sumText; } @@ -54,38 +58,35 @@ export default { } // Template - return ( - - - {this.table.tableColumns.map(column => ( - - ))} - - - - {this.table.tableColumns.map((column, columnIndex) => ( - - ))} - - -
+ return ( + { + this.table.tableColumns.map(column => ( + + )) + } + + { + this.table.tableColumns.map((column, columnIndex) => ()) + }
+
{ + this.table.summaryMethod ? + this.table.summaryMethod( + this.table.bodyData, + column, + columnIndex, + ) : renderCell.call(this, column, columnIndex) + }
); }, }; diff --git a/src/Table/TableHeader.js b/src/Table/TableHeader.js index ac9f4b5..31eb95d 100644 --- a/src/Table/TableHeader.js +++ b/src/Table/TableHeader.js @@ -1,5 +1,7 @@ import Checkbox from "../Checkbox/Checkbox"; // eslint-disable-line -import { mixins } from './utils'; +import { + mixins, +} from './utils'; /* eslint-disable no-underscore-dangle */ export default { @@ -23,7 +25,10 @@ export default { }, render() { // className - function getClassName(type, { headerAlign, prop }) { + function getClassName(type, { + headerAlign, + prop, + }) { const certainType = this.validateType( type, ['cell', 'inner'], @@ -52,13 +57,16 @@ export default { function renderLabel(column, columnIndex) { if (this.isSelectionCell(this.table, columnIndex)) { const allCheck = this.table.bodyData.every(row => row._isChecked); - const indeterminate = - !allCheck && this.table.bodyData.some(row => row._isChecked); - return ( - this.toggleAllChecked(checked)} + const indeterminate = !allCheck && this.table.bodyData.some(row => row._isChecked); + return ( this.toggleAllChecked(checked) + } /> ); } @@ -66,32 +74,34 @@ export default { } // Template - return ( - - - {this.table.tableColumns.map(column => ( - - ))} - - - - {this.table.tableColumns.map((column, columnIndex) => ( - - ))} - - -
-
- {renderLabel.call(this, column, columnIndex)} -
-
+ return ( + { + this.table.tableColumns.map(column => (+ )) + } + + { + this.table.tableColumns.map((column, columnIndex) => ( + )) + }
+
{ + renderLabel.call(this, column, columnIndex) + }
+
); }, }; diff --git a/yarn.lock b/yarn.lock index 885be47..f2434cf 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2,6 +2,18 @@ # yarn lockfile v1 +"@sindresorhus/is@^0.14.0": + version "0.14.0" + resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-0.14.0.tgz#9fb3a3cf3132328151f353de4632e01e52102bea" + integrity sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ== + +"@szmarczak/http-timer@^1.1.2": + version "1.1.2" + resolved "https://registry.yarnpkg.com/@szmarczak/http-timer/-/http-timer-1.1.2.tgz#b1665e2c461a2cd92f4c1bbf50d5454de0d4b421" + integrity sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA== + dependencies: + defer-to-connect "^1.0.1" + abbrev@1: version "1.1.0" resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f" @@ -13,6 +25,14 @@ accepts@~1.3.3: mime-types "~2.1.16" negotiator "0.6.1" +accepts@~1.3.5, accepts@~1.3.7: + version "1.3.7" + resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.7.tgz#531bc726517a3b2b41f850021c6cc15eaab507cd" + integrity sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA== + dependencies: + mime-types "~2.1.24" + negotiator "0.6.2" + acorn-dynamic-import@^2.0.0: version "2.0.2" resolved "https://registry.yarnpkg.com/acorn-dynamic-import/-/acorn-dynamic-import-2.0.2.tgz#c752bd210bef679501b6c6cb7fc84f8f47158cc4" @@ -48,6 +68,16 @@ ajv@^4.7.0, ajv@^4.9.1: co "^4.6.0" json-stable-stringify "^1.0.1" +ajv@^6.5.5: + version "6.10.0" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.10.0.tgz#90d0d54439da587cd7e843bfb7045f50bd22bdf1" + integrity sha512-nffhOpkymDECQyR0mnsUtoCE8RlX38G0rYP+wgLWFyZuUyuuojSSvi/+euOiQBIn63whYwYVIIH1TvE3tu4OEg== + dependencies: + fast-deep-equal "^2.0.1" + fast-json-stable-stringify "^2.0.0" + json-schema-traverse "^0.4.1" + uri-js "^4.2.2" + align-text@^0.1.1, align-text@^0.1.3: version "0.1.4" resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" @@ -60,6 +90,13 @@ alphanum-sort@^1.0.1, alphanum-sort@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/alphanum-sort/-/alphanum-sort-1.0.2.tgz#97a1119649b211ad33691d9f9f486a8ec9fbe0a3" +ansi-align@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-3.0.0.tgz#b536b371cf687caaef236c18d3e21fe3797467cb" + integrity sha512-ZpClVKqXN3RGBmKibdfWzqCY4lnjEuoNzU5T0oEFpfd/z5qJHVarukridD4juLO2FXMiwUQxr9WqQtaYa8XRYw== + dependencies: + string-width "^3.0.0" + ansi-escapes@^1.1.0: version "1.4.0" resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" @@ -76,6 +113,11 @@ ansi-regex@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" +ansi-regex@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997" + integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg== + ansi-styles@^2.2.1: version "2.2.1" resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" @@ -86,6 +128,13 @@ ansi-styles@^3.1.0: dependencies: color-convert "^1.9.0" +ansi-styles@^3.2.0, ansi-styles@^3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" + integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== + dependencies: + color-convert "^1.9.0" + anymatch@^1.3.0: version "1.3.2" resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" @@ -216,10 +265,20 @@ aws-sign2@~0.6.0: version "0.6.0" resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" +aws-sign2@~0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" + integrity sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg= + aws4@^1.2.1: version "1.6.0" resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" +aws4@^1.8.0: + version "1.8.0" + resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.8.0.tgz#f0e003d9ca9e7f59c7a508945d7b2ef9a04a542f" + integrity sha512-ReZxvNHIOv88FlT7rxcXIIC0fPt4KZqZbOlivyWtXLt8ESx84zd3kMC6iK5jVeS2qt+g7ftS7ye4fi06X5rtRQ== + babel-code-frame@^6.11.0, babel-code-frame@^6.16.0, babel-code-frame@^6.22.0, babel-code-frame@^6.26.0: version "6.26.0" resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" @@ -886,6 +945,13 @@ base64-js@^1.0.2: version "1.2.1" resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.1.tgz#a91947da1f4a516ea38e5b4ec0ec3773675e0886" +basic-auth@~2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/basic-auth/-/basic-auth-2.0.1.tgz#b998279bf47ce38344b4f3cf916d4679bbf51e3a" + integrity sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg== + dependencies: + safe-buffer "5.1.2" + bcrypt-pbkdf@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" @@ -914,6 +980,22 @@ bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: version "4.11.8" resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.8.tgz#2cde09eb5ee341f484746bb0309b3253b1b1442f" +body-parser@1.19.0, body-parser@^1.19.0: + version "1.19.0" + resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.19.0.tgz#96b2709e57c9c4e09a6fd66a8fd979844f69f08a" + integrity sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw== + dependencies: + bytes "3.1.0" + content-type "~1.0.4" + debug "2.6.9" + depd "~1.1.2" + http-errors "1.7.2" + iconv-lite "0.4.24" + on-finished "~2.3.0" + qs "6.7.0" + raw-body "2.4.0" + type-is "~1.6.17" + boolbase@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" @@ -924,6 +1006,20 @@ boom@2.x.x: dependencies: hoek "2.x.x" +boxen@^3.0.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/boxen/-/boxen-3.2.0.tgz#fbdff0de93636ab4450886b6ff45b92d098f45eb" + integrity sha512-cU4J/+NodM3IHdSL2yN8bqYqnmlBTidDR4RC7nJs61ZmtGz8VZzM3HLQX0zY5mrSmPtR3xWwsq2jOUQqFZN8+A== + dependencies: + ansi-align "^3.0.0" + camelcase "^5.3.1" + chalk "^2.4.2" + cli-boxes "^2.2.0" + string-width "^3.0.0" + term-size "^1.2.0" + type-fest "^0.3.0" + widest-line "^2.0.0" + brace-expansion@^1.1.7: version "1.1.8" resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" @@ -1029,6 +1125,29 @@ builtin-status-codes@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" +bytes@3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048" + integrity sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg= + +bytes@3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6" + integrity sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg== + +cacheable-request@^6.0.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-6.1.0.tgz#20ffb8bd162ba4be11e9567d823db651052ca912" + integrity sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg== + dependencies: + clone-response "^1.0.2" + get-stream "^5.1.0" + http-cache-semantics "^4.0.0" + keyv "^3.0.0" + lowercase-keys "^2.0.0" + normalize-url "^4.1.0" + responselike "^1.0.2" + caller-path@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" @@ -1054,6 +1173,11 @@ camelcase@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" +camelcase@^5.0.0, camelcase@^5.3.1: + version "5.3.1" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" + integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== + caniuse-api@^1.5.2: version "1.6.1" resolved "https://registry.yarnpkg.com/caniuse-api/-/caniuse-api-1.6.1.tgz#b534e7c734c4f81ec5fbe8aca2ad24354b962c6c" @@ -1092,6 +1216,15 @@ chalk@^1.0.0, chalk@^1.1.1, chalk@^1.1.3: strip-ansi "^3.0.0" supports-color "^2.0.0" +chalk@^2.0.1, chalk@^2.4.2: + version "2.4.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" + integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== + dependencies: + ansi-styles "^3.2.1" + escape-string-regexp "^1.0.5" + supports-color "^5.3.0" + chalk@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.1.0.tgz#ac5becf14fa21b99c6c92ca7a7d7cfd5b17e743e" @@ -1115,6 +1248,11 @@ chokidar@^1.7.0: optionalDependencies: fsevents "^1.0.0" +ci-info@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46" + integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ== + cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: version "1.0.4" resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" @@ -1138,6 +1276,11 @@ clean-css@4.1.x: dependencies: source-map "0.5.x" +cli-boxes@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-2.2.0.tgz#538ecae8f9c6ca508e3c3c95b453fe93cb4c168d" + integrity sha512-gpaBrMAizVEANOpfZp/EEUixTXDyGt7DFzdK5hU+UbWt/J0lB0w20ncZj59Z9a93xHb9u12zF5BS6i9RKbtg4w== + cli-cursor@^1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" @@ -1174,6 +1317,22 @@ cliui@^3.2.0: strip-ansi "^3.0.1" wrap-ansi "^2.0.0" +cliui@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-5.0.0.tgz#deefcfdb2e800784aa34f46fa08e06851c7bbbc5" + integrity sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA== + dependencies: + string-width "^3.1.0" + strip-ansi "^5.2.0" + wrap-ansi "^5.1.0" + +clone-response@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/clone-response/-/clone-response-1.0.2.tgz#d1dc973920314df67fbeb94223b4ee350239e96b" + integrity sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws= + dependencies: + mimic-response "^1.0.0" + clone@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.2.tgz#260b7a99ebb1edfe247538175f783243cb19d149" @@ -1242,6 +1401,13 @@ combined-stream@^1.0.5, combined-stream@~1.0.5: dependencies: delayed-stream "~1.0.0" +combined-stream@^1.0.6, combined-stream@~1.0.6: + version "1.0.8" + resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" + integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== + dependencies: + delayed-stream "~1.0.0" + commander@2.11.x, commander@^2.9.0, commander@~2.11.0: version "2.11.0" resolved "https://registry.yarnpkg.com/commander/-/commander-2.11.0.tgz#157152fd1e7a6c8d98a5b715cf376df928004563" @@ -1250,6 +1416,26 @@ commondir@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" +compressible@~2.0.16: + version "2.0.17" + resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.17.tgz#6e8c108a16ad58384a977f3a482ca20bff2f38c1" + integrity sha512-BGHeLCK1GV7j1bSmQQAi26X+GgWcTjLr/0tzSvMCl3LH1w1IJ4PFSPoV5316b30cneTziC+B1a+3OjoSUcQYmw== + dependencies: + mime-db ">= 1.40.0 < 2" + +compression@^1.7.4: + version "1.7.4" + resolved "https://registry.yarnpkg.com/compression/-/compression-1.7.4.tgz#95523eff170ca57c29a0ca41e6fe131f41e5bb8f" + integrity sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ== + dependencies: + accepts "~1.3.5" + bytes "3.0.0" + compressible "~2.0.16" + debug "2.6.9" + on-headers "~1.0.2" + safe-buffer "5.1.2" + vary "~1.1.2" + concat-map@0.0.1: version "0.0.1" resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" @@ -1269,10 +1455,27 @@ config-chain@~1.1.5: ini "^1.3.4" proto-list "~1.2.1" +configstore@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/configstore/-/configstore-4.0.0.tgz#5933311e95d3687efb592c528b922d9262d227e7" + integrity sha512-CmquAXFBocrzaSM8mtGPMM/HiWmyIpr4CcJl/rgY2uCObZ/S7cKU0silxslqJejl+t/T9HS8E0PUNQD81JGUEQ== + dependencies: + 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" + connect-history-api-fallback@^1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-1.3.0.tgz#e51d17f8f0ef0db90a64fdb47de3051556e9f169" +connect-pause@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/connect-pause/-/connect-pause-0.1.1.tgz#b269b2bb82ddb1ac3db5099c0fb582aba99fb37a" + integrity sha1-smmyu4Ldsaw9tQmcD7WCq6mfs3o= + console-browserify@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" @@ -1301,7 +1504,14 @@ content-disposition@0.5.2: version "0.5.2" resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.2.tgz#0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4" -content-type@~1.0.2: +content-disposition@0.5.3: + version "0.5.3" + resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.3.tgz#e130caf7e7279087c5616c2007d0485698984fbd" + integrity sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g== + dependencies: + safe-buffer "5.1.2" + +content-type@~1.0.2, content-type@~1.0.4: version "1.0.4" resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" @@ -1317,6 +1527,11 @@ cookie@0.3.1: version "0.3.1" resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb" +cookie@0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.4.0.tgz#beb437e7022b3b6d49019d088665303ebe9c14ba" + integrity sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg== + core-js@^2.4.0, core-js@^2.5.0: version "2.5.1" resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.1.tgz#ae6874dc66937789b80754ff5428df66819ca50b" @@ -1325,6 +1540,14 @@ core-util-is@1.0.2, core-util-is@~1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" +cors@^2.8.5: + version "2.8.5" + resolved "https://registry.yarnpkg.com/cors/-/cors-2.8.5.tgz#eac11da51592dd86b9f06f6e7ac293b3df875d29" + integrity sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g== + dependencies: + object-assign "^4" + vary "^1" + cosmiconfig@^2.1.0, cosmiconfig@^2.1.1: version "2.2.2" resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-2.2.2.tgz#6173cebd56fac042c1f4390edf7af6c07c7cb892" @@ -1364,6 +1587,26 @@ create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4: safe-buffer "^5.0.1" sha.js "^2.4.8" +cross-spawn@^5.0.1: + version "5.1.0" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" + integrity sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk= + dependencies: + lru-cache "^4.0.1" + shebang-command "^1.2.0" + which "^1.2.9" + +cross-spawn@^6.0.0: + version "6.0.5" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" + integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== + dependencies: + nice-try "^1.0.4" + path-key "^2.0.1" + semver "^5.5.0" + shebang-command "^1.2.0" + which "^1.2.9" + cryptiles@2.x.x: version "2.0.5" resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" @@ -1385,6 +1628,11 @@ crypto-browserify@^3.11.0: public-encrypt "^4.0.0" randombytes "^2.0.0" +crypto-random-string@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-1.0.0.tgz#a230f64f568310e1498009940790ec99545bca7e" + integrity sha1-ojD2T1aDEOFJgAmUB5DsmVRbyn4= + css-color-names@0.0.4: version "0.0.4" resolved "https://registry.yarnpkg.com/css-color-names/-/css-color-names-0.0.4.tgz#808adc2e79cf84738069b646cb20ec27beb629e0" @@ -1497,20 +1745,53 @@ de-indent@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/de-indent/-/de-indent-1.0.2.tgz#b2038e846dc33baa5796128d0804b455b8c1e21d" +debug@*: + version "4.1.1" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791" + integrity sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw== + dependencies: + ms "^2.1.1" + debug@2.6.8, debug@^2.1.1, debug@^2.2.0, debug@^2.6.8: version "2.6.8" resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc" dependencies: ms "2.0.0" -decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2: +debug@2.6.9: + version "2.6.9" + resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" + integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== + dependencies: + ms "2.0.0" + +debug@3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" + integrity sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g== + dependencies: + ms "2.0.0" + +decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2, decamelize@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" +decompress-response@^3.3.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-3.3.0.tgz#80a4dd323748384bfa248083622aedec982adff3" + integrity sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M= + dependencies: + mimic-response "^1.0.0" + deep-equal@~1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz#f5d260292b660e084eff4cdbc9f08ad3247448b5" +deep-extend@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" + integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== + deep-extend@~0.4.0: version "0.4.2" resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" @@ -1519,6 +1800,11 @@ deep-is@~0.1.3: version "0.1.3" resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" +defer-to-connect@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/defer-to-connect/-/defer-to-connect-1.0.2.tgz#4bae758a314b034ae33902b5aac25a8dd6a8633e" + integrity sha512-k09hcQcTDY+cwgiwa6PYKLm3jlagNzQ+RSvhjzESOGOx+MNOuXkxTfEvPrO1IOQ81tArCFYQgi631clB70RpQw== + define-properties@^1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" @@ -1554,6 +1840,11 @@ depd@1.1.1, depd@~1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.1.tgz#5783b4e1c459f06fa5ca27f991f3d06e7a310359" +depd@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" + integrity sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak= + des.js@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" @@ -1606,6 +1897,11 @@ dom-serializer@0: domelementtype "~1.1.1" entities "~1.1.1" +dom-walk@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/dom-walk/-/dom-walk-0.1.1.tgz#672226dc74c8f799ad35307df936aba11acd6018" + integrity sha1-ZyIm3HTI95mtNTB9+TaroRrNYBg= + domain-browser@^1.1.1: version "1.1.7" resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.1.7.tgz#867aa4b093faa05f1de08c06f4d7b21fdf8698bc" @@ -1650,6 +1946,18 @@ domutils@^1.5.1: dom-serializer "0" domelementtype "1" +dot-prop@^4.1.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.2.0.tgz#1f19e0c2e1aa0e32797c49799f2837ac6af69c57" + integrity sha512-tUMXrxlExSW6U2EXiiKGSBVdYgtV8qlHL+C10TsW4PURY/ic+eaysnSkwB4kA/mBlCyy/IKDJ+Lc3wbWeaXtuQ== + dependencies: + is-obj "^1.0.0" + +duplexer3@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2" + integrity sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI= + duplexer@^0.1.1: version "0.1.1" resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" @@ -1694,6 +2002,11 @@ elliptic@^6.0.0: minimalistic-assert "^1.0.0" minimalistic-crypto-utils "^1.0.0" +emoji-regex@^7.0.1: + version "7.0.3" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156" + integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA== + emojis-list@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" @@ -1702,6 +2015,18 @@ encodeurl@~1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.1.tgz#79e3d58655346909fe6f0f45a5de68103b294d20" +encodeurl@~1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" + integrity sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k= + +end-of-stream@^1.1.0: + version "1.4.1" + resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.1.tgz#ed29634d19baba463b6ce6b80a37213eab71ec43" + integrity sha512-1MkrZNvWTKCaigbn+W15elq2BB/L22nqrSY5DKlo3X6+vclJm8Bb5djXJBmEX6fS3+zCh/F4VBK5Z2KxJt4s2Q== + dependencies: + once "^1.4.0" + enhanced-resolve@^3.3.0: version "3.4.1" resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-3.4.1.tgz#0421e339fd71419b3da13d129b3979040230476e" @@ -1741,6 +2066,14 @@ error-stack-parser@^2.0.0: dependencies: stackframe "^1.0.3" +errorhandler@^1.5.1: + version "1.5.1" + resolved "https://registry.yarnpkg.com/errorhandler/-/errorhandler-1.5.1.tgz#b9ba5d17cf90744cd1e851357a6e75bf806a9a91" + integrity sha512-rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A== + dependencies: + accepts "~1.3.7" + escape-html "~1.0.3" + es-abstract@^1.5.0: version "1.8.2" resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.8.2.tgz#25103263dc4decbda60e0c737ca32313518027ee" @@ -1986,7 +2319,7 @@ esutils@^2.0.2: version "2.0.2" resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" -etag@~1.8.0: +etag@~1.8.0, etag@~1.8.1: version "1.8.1" resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" @@ -2012,6 +2345,32 @@ evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: md5.js "^1.3.4" safe-buffer "^5.1.1" +execa@^0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" + integrity sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c= + dependencies: + 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" + +execa@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8" + integrity sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA== + dependencies: + 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" + exit-hook@^1.0.0: version "1.1.1" resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" @@ -2028,6 +2387,14 @@ expand-range@^1.8.1: dependencies: fill-range "^2.1.0" +express-urlrewrite@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/express-urlrewrite/-/express-urlrewrite-1.2.0.tgz#8e667b7761ff1c7ffdb0efa05d64035387c823eb" + integrity sha1-jmZ7d2H/HH/9sO+gXWQDU4fII+s= + dependencies: + debug "*" + path-to-regexp "^1.0.3" + express@^4.15.2: version "4.15.4" resolved "https://registry.yarnpkg.com/express/-/express-4.15.4.tgz#032e2253489cf8fce02666beca3d11ed7a2daed1" @@ -2061,10 +2428,51 @@ express@^4.15.2: utils-merge "1.0.0" vary "~1.1.1" +express@^4.17.0: + version "4.17.1" + resolved "https://registry.yarnpkg.com/express/-/express-4.17.1.tgz#4491fc38605cf51f8629d39c2b5d026f98a4c134" + integrity sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g== + dependencies: + accepts "~1.3.7" + array-flatten "1.1.1" + body-parser "1.19.0" + content-disposition "0.5.3" + content-type "~1.0.4" + cookie "0.4.0" + cookie-signature "1.0.6" + debug "2.6.9" + depd "~1.1.2" + encodeurl "~1.0.2" + escape-html "~1.0.3" + etag "~1.8.1" + finalhandler "~1.1.2" + fresh "0.5.2" + merge-descriptors "1.0.1" + methods "~1.1.2" + on-finished "~2.3.0" + parseurl "~1.3.3" + path-to-regexp "0.1.7" + proxy-addr "~2.0.5" + qs "6.7.0" + range-parser "~1.2.1" + safe-buffer "5.1.2" + send "0.17.1" + serve-static "1.14.1" + setprototypeof "1.1.1" + statuses "~1.5.0" + type-is "~1.6.18" + utils-merge "1.0.1" + vary "~1.1.2" + extend@^3.0.0, extend@~3.0.0: version "3.0.1" resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" +extend@~3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" + integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== + extglob@^0.3.1: version "0.3.2" resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" @@ -2075,6 +2483,16 @@ extsprintf@1.3.0, extsprintf@^1.2.0: version "1.3.0" resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" +fast-deep-equal@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49" + integrity sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk= + +fast-json-stable-stringify@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" + integrity sha1-1RQsDK7msRifh9OnYREGT4bIu/I= + fast-levenshtein@~2.0.4: version "2.0.6" resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" @@ -2127,6 +2545,19 @@ finalhandler@~1.0.4: statuses "~1.3.1" unpipe "~1.0.0" +finalhandler@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.2.tgz#b7e7d000ffd11938d0fdb053506f6ebabe9f587d" + integrity sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA== + dependencies: + debug "2.6.9" + encodeurl "~1.0.2" + escape-html "~1.0.3" + on-finished "~2.3.0" + parseurl "~1.3.3" + statuses "~1.5.0" + unpipe "~1.0.0" + find-cache-dir@^0.1.1: version "0.1.1" resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-0.1.1.tgz#c8defae57c8a52a8a784f9e31c57c742e993a0b9" @@ -2160,6 +2591,13 @@ find-up@^2.0.0, find-up@^2.1.0: dependencies: locate-path "^2.0.0" +find-up@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" + integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg== + dependencies: + locate-path "^3.0.0" + flat-cache@^1.2.1: version "1.2.2" resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.2.tgz#fa86714e72c21db88601761ecf2f555d1abc6b96" @@ -2205,14 +2643,33 @@ form-data@~2.1.1: combined-stream "^1.0.5" mime-types "^2.1.12" +form-data@~2.3.2: + version "2.3.3" + resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.3.tgz#dcce52c05f644f298c6a7ab936bd724ceffbf3a6" + integrity sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ== + dependencies: + asynckit "^0.4.0" + combined-stream "^1.0.6" + mime-types "^2.1.12" + forwarded@~0.1.0: version "0.1.1" resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.1.tgz#8a4e30c640b05395399a3549c730257728048961" +forwarded@~0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.2.tgz#98c23dab1175657b8c0573e8ceccd91b0ff18c84" + integrity sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ= + fresh@0.5.0: version "0.5.0" resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.0.tgz#f474ca5e6a9246d6fd8e0953cfa9b9c805afa78e" +fresh@0.5.2: + version "0.5.2" + resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" + integrity sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac= + friendly-errors-webpack-plugin@^1.1.3: version "1.6.1" resolved "https://registry.yarnpkg.com/friendly-errors-webpack-plugin/-/friendly-errors-webpack-plugin-1.6.1.tgz#e32781c4722f546a06a9b5d7a7cfa28520375d70" @@ -2280,6 +2737,30 @@ get-caller-file@^1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" +get-caller-file@^2.0.1: + version "2.0.5" + resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" + integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== + +get-stream@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" + integrity sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ= + +get-stream@^4.0.0, get-stream@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5" + integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w== + dependencies: + pump "^3.0.0" + +get-stream@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.1.0.tgz#01203cdc92597f9b909067c3e656cc1f4d3c4dc9" + integrity sha512-EXr1FOzrzTfGeL0gQdeFEvOMm2mzMOglyiOXSTpPC+iAjAKftbr3jpCMWynogwYnM+eSj9sHGc6wjIcDvYiygw== + dependencies: + pump "^3.0.0" + getpass@^0.1.1: version "0.1.7" resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" @@ -2310,6 +2791,21 @@ glob@^7.0.0, glob@^7.0.3, glob@^7.0.5, glob@~7.1.2: once "^1.3.0" path-is-absolute "^1.0.0" +global-dirs@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-0.1.1.tgz#b319c0dd4607f353f3be9cca4c72fc148c49f445" + integrity sha1-sxnA3UYH81PzvpzKTHL8FIxJ9EU= + dependencies: + ini "^1.3.4" + +global@^4.4.0: + version "4.4.0" + resolved "https://registry.yarnpkg.com/global/-/global-4.4.0.tgz#3e7b105179006a323ed71aafca3e9c57a5cc6406" + integrity sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w== + dependencies: + min-document "^2.19.0" + process "^0.11.10" + globals@^9.14.0, globals@^9.18.0: version "9.18.0" resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" @@ -2325,6 +2821,28 @@ globby@^5.0.0: pify "^2.0.0" pinkie-promise "^2.0.0" +got@^9.6.0: + version "9.6.0" + resolved "https://registry.yarnpkg.com/got/-/got-9.6.0.tgz#edf45e7d67f99545705de1f7bbeeeb121765ed85" + integrity sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q== + dependencies: + "@sindresorhus/is" "^0.14.0" + "@szmarczak/http-timer" "^1.1.2" + cacheable-request "^6.0.0" + decompress-response "^3.3.0" + duplexer3 "^0.1.4" + get-stream "^4.1.0" + lowercase-keys "^1.0.1" + mimic-response "^1.0.1" + p-cancelable "^1.0.0" + to-readable-stream "^1.0.0" + url-parse-lax "^3.0.0" + +graceful-fs@^4.1.11, graceful-fs@^4.1.3: + version "4.2.0" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.0.tgz#8d8fdc73977cb04104721cb53666c1ca64cd328b" + integrity sha512-jpSvDPV4Cq/bgtpndIWbI5hmYxhQGHPC4d4cqBPb4DLniCfhJokdXhwhaDuLBGLQdvvRum/UiX6ECVIPvDXqdg== + graceful-fs@^4.1.2: version "4.1.11" resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" @@ -2339,6 +2857,11 @@ har-schema@^1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" +har-schema@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" + integrity sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI= + har-validator@~4.2.1: version "4.2.1" resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" @@ -2346,6 +2869,14 @@ har-validator@~4.2.1: ajv "^4.9.1" har-schema "^1.0.5" +har-validator@~5.1.0: + version "5.1.3" + resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.3.tgz#1ef89ebd3e4996557675eed9893110dc350fa080" + integrity sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g== + dependencies: + ajv "^6.5.5" + har-schema "^2.0.0" + has-ansi@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" @@ -2360,10 +2891,20 @@ has-flag@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" +has-flag@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" + integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= + has-unicode@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" +has-yarn@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/has-yarn/-/has-yarn-2.1.0.tgz#137e11354a7b5bf11aa5cb649cf0c6f3ff2b2e77" + integrity sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw== + has@^1.0.1, has@~1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" @@ -2482,6 +3023,22 @@ htmlparser2@~3.3.0: domutils "1.1" readable-stream "1.0" +http-cache-semantics@^4.0.0: + version "4.0.3" + resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.0.3.tgz#495704773277eeef6e43f9ab2c2c7d259dda25c5" + integrity sha512-TcIMG3qeVLgDr1TEd2XvHaTnMPwYQUQMIBLy+5pLSDKYFc7UIqj39w8EGzZkaxoLv/l2K8HaI0t5AVA+YYgUew== + +http-errors@1.7.2: + version "1.7.2" + resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.2.tgz#4f5029cf13239f31036e5b2e55292bcfbcc85c8f" + integrity sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg== + dependencies: + depd "~1.1.2" + inherits "2.0.3" + setprototypeof "1.1.1" + statuses ">= 1.5.0 < 2" + toidentifier "1.0.0" + http-errors@~1.6.2: version "1.6.2" resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.2.tgz#0a002cc85707192a7e7946ceedc11155f60ec736" @@ -2491,6 +3048,17 @@ http-errors@~1.6.2: setprototypeof "1.0.3" statuses ">= 1.3.1 < 2" +http-errors@~1.7.2: + version "1.7.3" + resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.3.tgz#6c619e4f9c60308c38519498c14fbb10aacebb06" + integrity sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw== + dependencies: + depd "~1.1.2" + inherits "2.0.4" + setprototypeof "1.1.1" + statuses ">= 1.5.0 < 2" + toidentifier "1.0.0" + http-signature@~1.1.0: version "1.1.1" resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" @@ -2499,10 +3067,26 @@ http-signature@~1.1.0: jsprim "^1.2.2" sshpk "^1.7.0" +http-signature@~1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" + integrity sha1-muzZJRFHcvPZW2WmCruPfBj7rOE= + dependencies: + assert-plus "^1.0.0" + jsprim "^1.2.2" + sshpk "^1.7.0" + https-browserify@0.0.1: version "0.0.1" resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-0.0.1.tgz#3f91365cabe60b77ed0ebba24b454e3e09d95a82" +iconv-lite@0.4.24: + version "0.4.24" + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" + integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== + dependencies: + safer-buffer ">= 2.1.2 < 3" + icss-replace-symbols@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz#06ea6f83679a7749e386cfe1fe812ae5db223ded" @@ -2525,6 +3109,11 @@ image-size@~0.5.0: version "0.5.5" resolved "https://registry.yarnpkg.com/image-size/-/image-size-0.5.5.tgz#09dfd4ab9d20e29eb1c3e80b8990378df9e3cb9c" +import-lazy@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-2.1.0.tgz#05698e3d45c88e8d7e9d92cb0584e77f096f3e43" + integrity sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM= + imurmurhash@^0.1.4: version "0.1.4" resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" @@ -2552,6 +3141,11 @@ inherits@2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" +inherits@2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" + integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== + ini@^1.3.4, ini@~1.3.0: version "1.3.4" resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" @@ -2588,10 +3182,20 @@ invert-kv@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" +invert-kv@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-2.0.0.tgz#7393f5afa59ec9ff5f67a27620d11c226e3eec02" + integrity sha512-wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA== + ipaddr.js@1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.4.0.tgz#296aca878a821816e5b85d0a285a99bcff4582f0" +ipaddr.js@1.9.0: + version "1.9.0" + resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.0.tgz#37df74e430a0e47550fe54a2defe30d8acd95f65" + integrity sha512-M4Sjn6N/+O6/IXSJseKqHoFc+5FdGJ22sXqnjTpdZweHK64MzEPAyQZyEU3R/KRv2GLoa7nNtg/C2Ev6m7z+eA== + is-absolute-url@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-2.1.0.tgz#50530dfb84fcc9aa7dbe7852e83a37b93b9f2aa6" @@ -2627,6 +3231,13 @@ is-callable@^1.1.1, is-callable@^1.1.3: version "1.1.3" resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2" +is-ci@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-2.0.0.tgz#6bc6334181810e04b5c22b3d589fdca55026404c" + integrity sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w== + dependencies: + ci-info "^2.0.0" + is-date-object@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" @@ -2679,6 +3290,14 @@ is-glob@^2.0.0, is-glob@^2.0.1: dependencies: is-extglob "^1.0.0" +is-installed-globally@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.1.0.tgz#0dfd98f5a9111716dd535dda6492f67bf3d25a80" + integrity sha1-Df2Y9akRFxbdU13aZJL2e/PSWoA= + dependencies: + global-dirs "^0.1.0" + is-path-inside "^1.0.0" + is-my-json-valid@^2.10.0: version "2.16.1" resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.16.1.tgz#5a846777e2c2620d1e69104e5d3a03b1f6088f11" @@ -2688,6 +3307,11 @@ is-my-json-valid@^2.10.0: jsonpointer "^4.0.0" xtend "^4.0.0" +is-npm@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-3.0.0.tgz#ec9147bfb629c43f494cf67936a961edec7e8053" + integrity sha512-wsigDr1Kkschp2opC4G3yA6r9EgVA6NjRpWzIi9axXqeIaAATPRJc4uLujXe3Nd9uO8KoDyA4MD6aZSeXTADhA== + is-number@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" @@ -2700,6 +3324,11 @@ is-number@^3.0.0: dependencies: kind-of "^3.0.2" +is-obj@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" + integrity sha1-PkcprB9f3gJc19g6iW2rn09n2w8= + is-path-cwd@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" @@ -2728,6 +3357,11 @@ is-primitive@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" +is-promise@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" + integrity sha1-eaKp7OfwlugPNtKy87wWwf9L8/o= + is-property@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" @@ -2750,6 +3384,11 @@ is-resolvable@^1.0.0: dependencies: tryit "^1.0.1" +is-stream@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" + integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ= + is-svg@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/is-svg/-/is-svg-2.1.0.tgz#cf61090da0d9efbcab8722deba6f032208dbb0e9" @@ -2782,6 +3421,11 @@ is-wsl@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d" +is-yarn-global@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/is-yarn-global/-/is-yarn-global-0.3.0.tgz#d502d3382590ea3004893746754c89139973e232" + integrity sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw== + isarray@0.0.1: version "0.0.1" resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" @@ -2790,6 +3434,11 @@ isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" +isexe@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= + isobject@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" @@ -2816,6 +3465,11 @@ istanbul-lib-instrument@^1.7.2: istanbul-lib-coverage "^1.1.1" semver "^5.3.0" +jju@^1.1.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/jju/-/jju-1.4.0.tgz#a3abe2718af241a2b2904f84a625970f389ae32a" + integrity sha1-o6vicYryQaKykE+EpiWXDzia4yo= + js-base64@^2.1.9: version "2.3.2" resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.3.2.tgz#a79a923666372b580f8e27f51845c6f7e8fbfbaf" @@ -2859,14 +3513,59 @@ jsesc@~0.5.0: version "0.5.0" resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" +json-buffer@3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.0.tgz#5b1f397afc75d677bde8bcfc0e47e1f9a3d9a898" + integrity sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg= + json-loader@^0.5.4: version "0.5.7" resolved "https://registry.yarnpkg.com/json-loader/-/json-loader-0.5.7.tgz#dca14a70235ff82f0ac9a3abeb60d337a365185d" +json-parse-helpfulerror@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/json-parse-helpfulerror/-/json-parse-helpfulerror-1.0.3.tgz#13f14ce02eed4e981297b64eb9e3b932e2dd13dc" + integrity sha1-E/FM4C7tTpgSl7ZOueO5MuLdE9w= + dependencies: + jju "^1.1.0" + +json-schema-traverse@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" + integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== + json-schema@0.2.3: version "0.2.3" resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" +json-server@^0.15.0: + version "0.15.0" + resolved "https://registry.yarnpkg.com/json-server/-/json-server-0.15.0.tgz#b8b0840077e46f15608e9eff2c34fc4d63d19139" + integrity sha512-mo9CuRVoEzJ82g/IaxU0ljSKgPpRoj6rYiJoDIUK7VEqplOca2Saq6eTwmRULRgPiRe4hHC0aYB9tNKJUAQGgQ== + dependencies: + body-parser "^1.19.0" + chalk "^2.4.2" + compression "^1.7.4" + connect-pause "^0.1.1" + cors "^2.8.5" + errorhandler "^1.5.1" + express "^4.17.0" + express-urlrewrite "^1.2.0" + json-parse-helpfulerror "^1.0.3" + lodash "^4.17.11" + lodash-id "^0.14.0" + lowdb "^1.0.0" + method-override "^3.0.0" + morgan "^1.9.1" + nanoid "^2.0.2" + object-assign "^4.1.1" + please-upgrade-node "^3.1.1" + pluralize "^7.0.0" + request "^2.88.0" + server-destroy "^1.0.1" + update-notifier "^3.0.0" + yargs "^13.2.4" + json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" @@ -2898,6 +3597,13 @@ jsprim@^1.2.2: json-schema "0.2.3" verror "1.10.0" +keyv@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/keyv/-/keyv-3.1.0.tgz#ecc228486f69991e49e9476485a5be1e8fc5c4d9" + integrity sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA== + dependencies: + json-buffer "3.0.0" + kind-of@^3.0.2: version "3.2.2" resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" @@ -2910,6 +3616,13 @@ kind-of@^4.0.0: dependencies: is-buffer "^1.1.5" +latest-version@^5.0.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-5.1.0.tgz#119dfe908fe38d15dfa43ecd13fa12ec8832face" + integrity sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA== + dependencies: + package-json "^6.3.0" + lazy-cache@^1.0.3: version "1.0.4" resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" @@ -2920,6 +3633,13 @@ lcid@^1.0.0: dependencies: invert-kv "^1.0.0" +lcid@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/lcid/-/lcid-2.0.0.tgz#6ef5d2df60e52f82eb228a4c373e8d1f397253cf" + integrity sha512-avPEb8P8EGnwXKClwsNUgryVjllcRqtMYa49NTsbQagYuT1DcXnl1915oxWjoyGrXR6zH/Y0Zc96xWsPcoDKeA== + dependencies: + invert-kv "^2.0.0" + less-loader@^4.0.5: version "4.0.5" resolved "https://registry.yarnpkg.com/less-loader/-/less-loader-4.0.5.tgz#ae155a7406cac6acd293d785587fcff0f478c4dd" @@ -3002,6 +3722,19 @@ locate-path@^2.0.0: p-locate "^2.0.0" path-exists "^3.0.0" +locate-path@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e" + integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A== + dependencies: + p-locate "^3.0.0" + path-exists "^3.0.0" + +lodash-id@^0.14.0: + version "0.14.0" + resolved "https://registry.yarnpkg.com/lodash-id/-/lodash-id-0.14.0.tgz#baf48934e543a1b5d6346f8c84698b1a8c803896" + integrity sha1-uvSJNOVDobXWNG+MhGmLGoyAOJY= + lodash._baseget@^3.0.0: version "3.7.2" resolved "https://registry.yarnpkg.com/lodash._baseget/-/lodash._baseget-3.7.2.tgz#1b6ae1d5facf3c25532350a13c1197cb8bb674f4" @@ -3039,6 +3772,11 @@ lodash.uniq@^4.5.0: version "4.5.0" resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" +lodash@4, lodash@^4.17.11: + version "4.17.11" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.11.tgz#b39ea6229ef607ecd89e2c8df12536891cac9b8d" + integrity sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg== + lodash@^4.0.0, lodash@^4.14.0, lodash@^4.17.3, lodash@^4.17.4, lodash@^4.3.0: version "4.17.4" resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" @@ -3059,10 +3797,31 @@ loose-envify@^1.0.0: dependencies: js-tokens "^3.0.0" +lowdb@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/lowdb/-/lowdb-1.0.0.tgz#5243be6b22786ccce30e50c9a33eac36b20c8064" + integrity sha512-2+x8esE/Wb9SQ1F9IHaYWfsC9FIecLOPrK4g17FGEayjUWH172H6nwicRovGvSE2CPZouc2MCIqCI7h9d+GftQ== + dependencies: + graceful-fs "^4.1.3" + is-promise "^2.1.0" + lodash "4" + pify "^3.0.0" + steno "^0.4.1" + lower-case@^1.1.1: version "1.1.4" resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-1.1.4.tgz#9a2cabd1b9e8e0ae993a4bf7d5875c39c42e8eac" +lowercase-keys@^1.0.0, lowercase-keys@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.1.tgz#6f9e30b47084d971a7c820ff15a6c5167b74c26f" + integrity sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA== + +lowercase-keys@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-2.0.0.tgz#2603e78b7b4b0006cbca2fbcc8a3202558ac9479" + integrity sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA== + lru-cache@^3.2.0: version "3.2.0" resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-3.2.0.tgz#71789b3b7f5399bec8565dda38aa30d2a097efee" @@ -3086,6 +3845,13 @@ make-dir@^1.0.0: dependencies: pify "^2.3.0" +map-age-cleaner@^0.1.1: + version "0.1.3" + resolved "https://registry.yarnpkg.com/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz#7d583a7306434c055fe474b0f45078e6e1b4b92a" + integrity sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w== + dependencies: + p-defer "^1.0.0" + math-expression-evaluator@^1.2.14: version "1.2.17" resolved "https://registry.yarnpkg.com/math-expression-evaluator/-/math-expression-evaluator-1.2.17.tgz#de819fdbcd84dccd8fae59c6aeb79615b9d266ac" @@ -3101,6 +3867,15 @@ media-typer@0.3.0: version "0.3.0" resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" +mem@^4.0.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/mem/-/mem-4.3.0.tgz#461af497bc4ae09608cdb2e60eefb69bff744178" + integrity sha512-qX2bG48pTqYRVmDB37rn/6PT7LcR8T7oAX3bf99u1Tt1nzxYfxkgqDwUwolPlXweM0XzBOBFzSx4kfp7KP1s/w== + dependencies: + map-age-cleaner "^0.1.1" + mimic-fn "^2.0.0" + p-is-promise "^2.0.0" + memory-fs@^0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.2.0.tgz#f2bb25368bc121e391c2520de92969caee0a0290" @@ -3116,6 +3891,16 @@ merge-descriptors@1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" +method-override@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/method-override/-/method-override-3.0.0.tgz#6ab0d5d574e3208f15b0c9cf45ab52000468d7a2" + integrity sha512-IJ2NNN/mSl9w3kzWB92rcdHpz+HjkxhDJWNDBqSlas+zQdP8wBiJzITPg08M/k2uVvMow7Sk41atndNtt/PHSA== + dependencies: + debug "3.1.0" + methods "~1.1.2" + parseurl "~1.3.2" + vary "~1.1.2" + methods@~1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" @@ -3145,6 +3930,11 @@ miller-rabin@^4.0.0: bn.js "^4.0.0" brorand "^1.0.1" +mime-db@1.40.0, "mime-db@>= 1.40.0 < 2": + version "1.40.0" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.40.0.tgz#a65057e998db090f732a68f6c276d387d4126c32" + integrity sha512-jYdeOMPy9vnxEqFRRo6ZvTZ8d9oPb+k18PKoYNYUe2stVEBPPwsln/qWzdbmaIvnhZ9v2P+CuecK+fpUfsV2mA== + mime-db@~1.30.0: version "1.30.0" resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01" @@ -3155,6 +3945,13 @@ mime-types@^2.1.12, mime-types@~2.1.15, mime-types@~2.1.16, mime-types@~2.1.7: dependencies: mime-db "~1.30.0" +mime-types@~2.1.19, mime-types@~2.1.24: + version "2.1.24" + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.24.tgz#b6f8d0b3e951efb77dedeca194cff6d16f676f81" + integrity sha512-WaFHS3MCl5fapm3oLxU4eYDw77IQM2ACcxQ9RIxfaC3ooc6PFuBMGZZsYpvoXS5D5QTWPieo1jjLdAm3TBP3cQ== + dependencies: + mime-db "1.40.0" + mime@1.3.4: version "1.3.4" resolved "https://registry.yarnpkg.com/mime/-/mime-1.3.4.tgz#115f9e3b6b3daf2959983cb38f149a2d40eb5d53" @@ -3163,6 +3960,11 @@ mime@1.3.x: version "1.3.6" resolved "https://registry.yarnpkg.com/mime/-/mime-1.3.6.tgz#591d84d3653a6b0b4a3b9df8de5aa8108e72e5e0" +mime@1.6.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" + integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== + mime@^1.2.11, mime@^1.3.4: version "1.4.0" resolved "https://registry.yarnpkg.com/mime/-/mime-1.4.0.tgz#69e9e0db51d44f2a3b56e48b7817d7d137f1a343" @@ -3171,6 +3973,23 @@ mimic-fn@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" +mimic-fn@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" + integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== + +mimic-response@^1.0.0, mimic-response@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz#4923538878eef42063cb8a3e3b0798781487ab1b" + integrity sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ== + +min-document@^2.19.0: + version "2.19.0" + resolved "https://registry.yarnpkg.com/min-document/-/min-document-2.19.0.tgz#7bd282e3f5842ed295bb748cdd9f1ffa2c824685" + integrity sha1-e9KC4/WELtKVu3SM3Z8f+iyCRoU= + dependencies: + dom-walk "^0.1.0" + minimalistic-assert@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz#702be2dda6b37f4836bcb3f5db56641b64a1d3d3" @@ -3199,10 +4018,31 @@ mkdirp@0.5.1, "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.0, mkd dependencies: minimist "0.0.8" +morgan@^1.9.1: + version "1.9.1" + resolved "https://registry.yarnpkg.com/morgan/-/morgan-1.9.1.tgz#0a8d16734a1d9afbc824b99df87e738e58e2da59" + integrity sha512-HQStPIV4y3afTiCYVxirakhlCfGkI161c76kKFca7Fk1JusM//Qeo1ej2XaMniiNeaZklMVrh3vTtIzpzwbpmA== + dependencies: + basic-auth "~2.0.0" + debug "2.6.9" + depd "~1.1.2" + on-finished "~2.3.0" + on-headers "~1.0.1" + ms@2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" +ms@2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" + integrity sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg== + +ms@^2.1.1: + version "2.1.2" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" + integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== + mute-stream@0.0.5: version "0.0.5" resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0" @@ -3211,6 +4051,11 @@ nan@^2.3.0: version "2.7.0" resolved "https://registry.yarnpkg.com/nan/-/nan-2.7.0.tgz#d95bf721ec877e08db276ed3fc6eb78f9083ad46" +nanoid@^2.0.2: + version "2.0.3" + resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-2.0.3.tgz#dde999e173bc9d7bd2ee2746b89909ade98e075e" + integrity sha512-NbaoqdhIYmY6FXDRB4eYtDVC9Z9eCbn8TyaiC16LNKtpPv/aqa0tOPD8y6gNE4yUNnaZ7LLhYtXOev/6+cBtfw== + natural-compare@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" @@ -3225,6 +4070,16 @@ negotiator@0.6.1: version "0.6.1" resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9" +negotiator@0.6.2: + version "0.6.2" + resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb" + integrity sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw== + +nice-try@^1.0.4: + version "1.0.5" + resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" + integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== + no-case@^2.2.0: version "2.3.2" resolved "https://registry.yarnpkg.com/no-case/-/no-case-2.3.2.tgz#60b813396be39b3f1288a4c1ed5d1e7d28b464ac" @@ -3343,6 +4198,18 @@ normalize-url@^1.4.0: query-string "^4.1.0" sort-keys "^1.0.0" +normalize-url@^4.1.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-4.3.0.tgz#9c49e10fc1876aeb76dba88bf1b2b5d9fa57b2ee" + integrity sha512-0NLtR71o4k6GLP+mr6Ty34c5GA6CMoEsncKJxvQd8NzPxaHRJNnb5gZE8R1XF4CPIS7QPHLJ74IFszwtNVAHVQ== + +npm-run-path@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" + integrity sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8= + dependencies: + path-key "^2.0.0" + npmlog@^4.0.2: version "4.1.2" resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" @@ -3370,7 +4237,12 @@ oauth-sign@~0.8.1: version "0.8.2" resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" -object-assign@^4.0.1, object-assign@^4.1.0: +oauth-sign@~0.9.0: + version "0.9.0" + resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455" + integrity sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ== + +object-assign@^4, object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: version "4.1.1" resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" @@ -3399,7 +4271,12 @@ on-finished@~2.3.0: dependencies: ee-first "1.1.1" -once@^1.3.0, once@^1.3.3: +on-headers@~1.0.1, on-headers@~1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.2.tgz#772b0ae6aaa525c399e489adfad90c403eb3c28f" + integrity sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA== + +once@^1.3.0, once@^1.3.1, once@^1.3.3, once@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" dependencies: @@ -3459,6 +4336,15 @@ os-locale@^1.4.0: dependencies: lcid "^1.0.0" +os-locale@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-3.1.0.tgz#a802a6ee17f24c10483ab9935719cef4ed16bf1a" + integrity sha512-Z8l3R4wYWM40/52Z+S265okfFj8Kt2cC2MKY+xNi3kFs+XGI7WXu/I309QQQYbRW4ijiZ+yxs9pqEhJh0DqW3Q== + dependencies: + execa "^1.0.0" + lcid "^2.0.0" + mem "^4.0.0" + os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" @@ -3470,16 +4356,65 @@ osenv@^0.1.4: os-homedir "^1.0.0" os-tmpdir "^1.0.0" +p-cancelable@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-1.1.0.tgz#d078d15a3af409220c886f1d9a0ca2e441ab26cc" + integrity sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw== + +p-defer@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/p-defer/-/p-defer-1.0.0.tgz#9f6eb182f6c9aa8cd743004a7d4f96b196b0fb0c" + integrity sha1-n26xgvbJqozXQwBKfU+WsZaw+ww= + +p-finally@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" + integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4= + +p-is-promise@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/p-is-promise/-/p-is-promise-2.1.0.tgz#918cebaea248a62cf7ffab8e3bca8c5f882fc42e" + integrity sha512-Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg== + p-limit@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" +p-limit@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.2.0.tgz#417c9941e6027a9abcba5092dd2904e255b5fbc2" + integrity sha512-pZbTJpoUsCzV48Mc9Nh51VbwO0X9cuPFE8gYwx9BTCt9SF8/b7Zljd2fVgOxhIF/HDTKgpVzs+GPhyKfjLLFRQ== + dependencies: + p-try "^2.0.0" + p-locate@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" dependencies: p-limit "^1.1.0" +p-locate@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" + integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ== + dependencies: + p-limit "^2.0.0" + +p-try@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" + integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== + +package-json@^6.3.0: + version "6.4.0" + resolved "https://registry.yarnpkg.com/package-json/-/package-json-6.4.0.tgz#4f626976604f4a9a41723ce1792b204a60b1b61e" + integrity sha512-bd1T8OBG7hcvMd9c/udgv6u5v9wISP3Oyl9Cm7Weop8EFwrtcQDnS2sb6zhwqus2WslSr5wSTIPiTTpxxmPm7Q== + dependencies: + got "^9.6.0" + registry-auth-token "^3.4.0" + registry-url "^5.0.0" + semver "^6.1.1" + pako@~0.2.0: version "0.2.9" resolved "https://registry.yarnpkg.com/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75" @@ -3519,6 +4454,11 @@ parseurl@~1.3.1: version "1.3.2" resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.2.tgz#fc289d4ed8993119460c156253262cdc8de65bf3" +parseurl@~1.3.2, parseurl@~1.3.3: + version "1.3.3" + resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" + integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== + path-browserify@0.0.0: version "0.0.0" resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a" @@ -3541,6 +4481,11 @@ path-is-inside@^1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" +path-key@^2.0.0, path-key@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" + integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= + path-parse@^1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" @@ -3549,6 +4494,13 @@ path-to-regexp@0.1.7: version "0.1.7" resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" +path-to-regexp@^1.0.3: + version "1.7.0" + resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-1.7.0.tgz#59fde0f435badacba103a84e9d3bc64e96b9937d" + integrity sha1-Wf3g9DW62suhA6hOnTvGTpa5k30= + dependencies: + isarray "0.0.1" + path-type@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" @@ -3577,10 +4529,20 @@ performance-now@^0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" +performance-now@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" + integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns= + pify@^2.0.0, pify@^2.3.0: version "2.3.0" resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" +pify@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" + integrity sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY= + pinkie-promise@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" @@ -3603,10 +4565,22 @@ pkg-dir@^2.0.0: dependencies: find-up "^2.1.0" +please-upgrade-node@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/please-upgrade-node/-/please-upgrade-node-3.1.1.tgz#ed320051dfcc5024fae696712c8288993595e8ac" + integrity sha512-KY1uHnQ2NlQHqIJQpnh/i54rKkuxCEBx+voJIS/Mvb+L2iYd2NMotwduhKTMjfC1uKoX3VXOxLjIYG66dfJTVQ== + dependencies: + semver-compare "^1.0.0" + pluralize@^1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz#d1a21483fd22bb41e58a12fa3421823140897c45" +pluralize@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-7.0.0.tgz#298b89df8b93b0221dbf421ad2b1b1ea23fc6777" + integrity sha512-ARhBOdzS3e41FbkW/XWrTEtukqqLoK5+Z/4UeDaLuSW+39JPeFgs4gCGqsrJHVZX0fUrx//4OF0K1CUGwlIFow== + popper.js@^1.15.0: version "1.15.0" resolved "https://registry.yarnpkg.com/popper.js/-/popper.js-1.15.0.tgz#5560b99bbad7647e9faa475c6b8056621f5a4ff2" @@ -3889,6 +4863,11 @@ prepend-http@^1.0.0: version "1.0.4" resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" +prepend-http@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-2.0.0.tgz#e92434bfa5ea8c19f41cdfd401d741a3c819d897" + integrity sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc= + preserve@^0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" @@ -3908,7 +4887,7 @@ process-nextick-args@~1.0.6: version "1.0.7" resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" -process@^0.11.0, process@~0.11.0: +process@^0.11.0, process@^0.11.10, process@~0.11.0: version "0.11.10" resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" @@ -3933,6 +4912,14 @@ proxy-addr@~1.1.5: forwarded "~0.1.0" ipaddr.js "1.4.0" +proxy-addr@~2.0.5: + version "2.0.5" + resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.5.tgz#34cbd64a2d81f4b1fd21e76f9f06c8a45299ee34" + integrity sha512-t/7RxHXPH6cJtP0pRG6smSr9QJidhB+3kXu0KgXnbGYMgzEnUxRQ4/LDdfOwZEMyIh3/xHb8PX3t+lfL9z+YVQ== + dependencies: + forwarded "~0.1.2" + ipaddr.js "1.9.0" + prr@~0.0.0: version "0.0.0" resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" @@ -3941,6 +4928,11 @@ pseudomap@^1.0.1, pseudomap@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" +psl@^1.1.24: + version "1.1.33" + resolved "https://registry.yarnpkg.com/psl/-/psl-1.1.33.tgz#5533d9384ca7aab86425198e10e8053ebfeab661" + integrity sha512-LTDP2uSrsc7XCb5lO7A8BI1qYxRe/8EqlRvMeEl6rsnYAqDOl8xHR+8lSAIVfrNaSAlTPTNOCgNjWcoUL3AZsw== + public-encrypt@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.0.tgz#39f699f3a46560dd5ebacbca693caf7c65c18cc6" @@ -3951,6 +4943,14 @@ public-encrypt@^4.0.0: parse-asn1 "^5.0.0" randombytes "^2.0.1" +pump@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" + integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== + dependencies: + end-of-stream "^1.1.0" + once "^1.3.1" + punycode@1.3.2: version "1.3.2" resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" @@ -3959,6 +4959,11 @@ punycode@^1.2.4, punycode@^1.4.1: version "1.4.1" resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" +punycode@^2.1.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" + integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== + q@^1.1.2: version "1.5.0" resolved "https://registry.yarnpkg.com/q/-/q-1.5.0.tgz#dd01bac9d06d30e6f219aecb8253ee9ebdc308f1" @@ -3967,10 +4972,20 @@ qs@6.5.0: version "6.5.0" resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.0.tgz#8d04954d364def3efc55b5a0793e1e2c8b1e6e49" +qs@6.7.0: + version "6.7.0" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.7.0.tgz#41dc1a015e3d581f1621776be31afb2876a9b1bc" + integrity sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ== + qs@~6.4.0: version "6.4.0" resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" +qs@~6.5.2: + version "6.5.2" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36" + integrity sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA== + query-string@^4.1.0: version "4.3.4" resolved "https://registry.yarnpkg.com/query-string/-/query-string-4.3.4.tgz#bbb693b9ca915c232515b228b1a02b609043dbeb" @@ -4003,6 +5018,31 @@ range-parser@^1.0.3, range-parser@~1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e" +range-parser@~1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" + integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== + +raw-body@2.4.0: + version "2.4.0" + resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.4.0.tgz#a1ce6fb9c9bc356ca52e89256ab59059e13d0332" + integrity sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q== + dependencies: + bytes "3.1.0" + http-errors "1.7.2" + iconv-lite "0.4.24" + unpipe "1.0.0" + +rc@^1.1.6, rc@^1.2.8: + version "1.2.8" + resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" + integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== + dependencies: + deep-extend "^0.6.0" + ini "~1.3.0" + minimist "^1.2.0" + strip-json-comments "~2.0.1" + rc@^1.1.7: version "1.2.1" resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95" @@ -4138,6 +5178,21 @@ regexpu-core@^2.0.0: regjsgen "^0.2.0" regjsparser "^0.1.4" +registry-auth-token@^3.4.0: + version "3.4.0" + resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-3.4.0.tgz#d7446815433f5d5ed6431cd5dca21048f66b397e" + integrity sha512-4LM6Fw8eBQdwMYcES4yTnn2TqIasbXuwDx3um+QRs7S55aMKCBKBxvPXl2RiUjHwuJLTyYfxSpmfSAjQpcuP+A== + dependencies: + rc "^1.1.6" + safe-buffer "^5.0.1" + +registry-url@^5.0.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-5.1.0.tgz#e98334b50d5434b81136b44ec638d9c2009c5009" + integrity sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw== + dependencies: + rc "^1.2.8" + regjsgen@^0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" @@ -4207,6 +5262,32 @@ request@^2.72.0, request@^2.81.0: tunnel-agent "^0.6.0" uuid "^3.0.0" +request@^2.88.0: + version "2.88.0" + resolved "https://registry.yarnpkg.com/request/-/request-2.88.0.tgz#9c2fca4f7d35b592efe57c7f0a55e81052124fef" + integrity sha512-NAqBSrijGLZdM0WZNsInLJpkJokL72XYjUpnB0iwsRgxh7dB6COrHnTBNwN0E+lHDAJzu7kLAkDeY08z2/A0hg== + dependencies: + 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" + require-directory@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" @@ -4219,6 +5300,11 @@ require-main-filename@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" +require-main-filename@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" + integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg== + require-uncached@^1.0.2: version "1.0.3" resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" @@ -4236,6 +5322,13 @@ resolve@^1.1.6, resolve@^1.2.0, resolve@^1.3.3, resolve@~1.4.0: dependencies: path-parse "^1.0.5" +responselike@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/responselike/-/responselike-1.0.2.tgz#918720ef3b631c5642be068f15ade5a46f4ba1e7" + integrity sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec= + dependencies: + lowercase-keys "^1.0.0" + restore-cursor@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" @@ -4285,6 +5378,11 @@ rx-lite@^3.1.2: version "3.1.2" resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102" +safe-buffer@5.1.2, safe-buffer@^5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" + integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== + safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: version "5.1.1" resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" @@ -4293,14 +5391,41 @@ safe-buffer@~5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.0.1.tgz#d263ca54696cd8a306b5ca6551e92de57918fbe7" +"safer-buffer@>= 2.1.2 < 3": + version "2.1.2" + resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" + integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== + sax@~1.2.1: version "1.2.4" resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" +semver-compare@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc" + integrity sha1-De4hahyUGrN+nvsXiPavxf9VN/w= + +semver-diff@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36" + integrity sha1-S7uEN8jTfksM8aaP1ybsbWRdbTY= + dependencies: + semver "^5.0.3" + "semver@2 || 3 || 4 || 5", semver@^5.1.0, semver@^5.3.0, semver@^5.4.1: version "5.4.1" resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" +semver@^5.0.3, semver@^5.5.0: + version "5.7.0" + resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.0.tgz#790a7cf6fea5459bac96110b29b60412dc8ff96b" + integrity sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA== + +semver@^6.1.1: + version "6.1.2" + resolved "https://registry.yarnpkg.com/semver/-/semver-6.1.2.tgz#079960381376a3db62eb2edc8a3bfb10c7cfe318" + integrity sha512-z4PqiCpomGtWj8633oeAdXm1Kn1W++3T8epkZYnwiVgIYIJ0QHszhInYSJTYxebByQH7KVCEAn8R9duzZW2PhQ== + send@0.15.4: version "0.15.4" resolved "https://registry.yarnpkg.com/send/-/send-0.15.4.tgz#985faa3e284b0273c793364a35c6737bd93905b9" @@ -4319,6 +5444,25 @@ send@0.15.4: range-parser "~1.2.0" statuses "~1.3.1" +send@0.17.1: + version "0.17.1" + resolved "https://registry.yarnpkg.com/send/-/send-0.17.1.tgz#c1d8b059f7900f7466dd4938bdc44e11ddb376c8" + integrity sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg== + dependencies: + debug "2.6.9" + depd "~1.1.2" + destroy "~1.0.4" + encodeurl "~1.0.2" + escape-html "~1.0.3" + etag "~1.8.1" + fresh "0.5.2" + http-errors "~1.7.2" + mime "1.6.0" + ms "2.1.1" + on-finished "~2.3.0" + range-parser "~1.2.1" + statuses "~1.5.0" + serve-static@1.12.4: version "1.12.4" resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.12.4.tgz#9b6aa98eeb7253c4eedc4c1f6fdbca609901a961" @@ -4328,6 +5472,21 @@ serve-static@1.12.4: parseurl "~1.3.1" send "0.15.4" +serve-static@1.14.1: + version "1.14.1" + resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.14.1.tgz#666e636dc4f010f7ef29970a88a674320898b2f9" + integrity sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg== + dependencies: + encodeurl "~1.0.2" + escape-html "~1.0.3" + parseurl "~1.3.3" + send "0.17.1" + +server-destroy@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/server-destroy/-/server-destroy-1.0.1.tgz#f13bf928e42b9c3e79383e61cc3998b5d14e6cdd" + integrity sha1-8Tv5KOQrnD55OD5hzDmYtdFObN0= + set-blocking@^2.0.0, set-blocking@~2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" @@ -4344,12 +5503,29 @@ setprototypeof@1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.0.3.tgz#66567e37043eeb4f04d91bd658c0cbefb55b8e04" +setprototypeof@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.1.tgz#7e95acb24aa92f5885e0abef5ba131330d4ae683" + integrity sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw== + sha.js@^2.4.0, sha.js@^2.4.8: version "2.4.8" resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.8.tgz#37068c2c476b6baf402d14a49c67f597921f634f" dependencies: inherits "^2.0.1" +shebang-command@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" + integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= + dependencies: + shebang-regex "^1.0.0" + +shebang-regex@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" + integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= + shelljs@^0.7.5: version "0.7.8" resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.8.tgz#decbcf874b0d1e5fb72e14b164a9683048e9acb3" @@ -4440,6 +5616,18 @@ stackframe@^1.0.3: version "1.3.1" resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.3.1.tgz#faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e" +"statuses@>= 1.5.0 < 2", statuses@~1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" + integrity sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow= + +steno@^0.4.1: + version "0.4.4" + resolved "https://registry.yarnpkg.com/steno/-/steno-0.4.4.tgz#071105bdfc286e6615c0403c27e9d7b5dcb855cb" + integrity sha1-BxEFvfwobmYVwEA8J+nXtdy4Vcs= + dependencies: + graceful-fs "^4.1.3" + stream-browserify@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db" @@ -4475,13 +5663,22 @@ string-width@^1.0.1, string-width@^1.0.2: is-fullwidth-code-point "^1.0.0" strip-ansi "^3.0.0" -string-width@^2.0.0: +string-width@^2.0.0, string-width@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" dependencies: is-fullwidth-code-point "^2.0.0" strip-ansi "^4.0.0" +string-width@^3.0.0, string-width@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961" + integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w== + dependencies: + emoji-regex "^7.0.1" + is-fullwidth-code-point "^2.0.0" + strip-ansi "^5.1.0" + string.prototype.trim@~1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.1.2.tgz#d04de2c89e137f4d7d206f086b5ed2fae6be8cea" @@ -4516,6 +5713,13 @@ strip-ansi@^4.0.0: dependencies: ansi-regex "^3.0.0" +strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" + integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== + dependencies: + ansi-regex "^4.1.0" + strip-bom@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" @@ -4526,6 +5730,11 @@ strip-bom@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" +strip-eof@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" + integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8= + strip-json-comments@~2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" @@ -4546,6 +5755,13 @@ supports-color@^4.0.0, supports-color@^4.4.0: dependencies: has-flag "^2.0.0" +supports-color@^5.3.0: + version "5.5.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" + integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== + dependencies: + has-flag "^3.0.0" + svgo@^0.7.0: version "0.7.2" resolved "https://registry.yarnpkg.com/svgo/-/svgo-0.7.2.tgz#9f5772413952135c6fefbf40afe6a4faa88b4bb5" @@ -4616,6 +5832,13 @@ tar@^2.2.1: fstream "^1.0.2" inherits "2" +term-size@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/term-size/-/term-size-1.2.0.tgz#458b83887f288fc56d6fffbfad262e26638efa69" + integrity sha1-RYuDiH8oj8Vtb/+/rSYuJmOO+mk= + dependencies: + execa "^0.7.0" + test-exclude@^4.1.1: version "4.1.1" resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.1.1.tgz#4d84964b0966b0087ecc334a2ce002d3d9341e26" @@ -4658,6 +5881,16 @@ to-fast-properties@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" +to-readable-stream@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/to-readable-stream/-/to-readable-stream-1.0.0.tgz#ce0aa0c2f3df6adf852efb404a783e77c0475771" + integrity sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q== + +toidentifier@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.0.tgz#7e1be3470f1e77948bc43d94a3c8f4d7752ba553" + integrity sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw== + toposort@^1.0.0: version "1.0.3" resolved "https://registry.yarnpkg.com/toposort/-/toposort-1.0.3.tgz#f02cd8a74bd8be2fc0e98611c3bacb95a171869c" @@ -4668,6 +5901,14 @@ tough-cookie@~2.3.0: dependencies: punycode "^1.4.1" +tough-cookie@~2.4.3: + version "2.4.3" + resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.4.3.tgz#53f36da3f47783b0925afa06ff9f3b165280f781" + integrity sha512-Q5srk/4vDM54WJsJio3XNn6K2sCG+CQ8G5Wz6bZhRZoAe/+TxjWB/GlFAnYEbkYVlON9FMk/fE3h2RLpPXo4lQ== + dependencies: + psl "^1.1.24" + punycode "^1.4.1" + trim-right@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" @@ -4696,6 +5937,11 @@ type-check@~0.3.2: dependencies: prelude-ls "~1.1.2" +type-fest@^0.3.0: + version "0.3.1" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.3.1.tgz#63d00d204e059474fe5e1b7c011112bbd1dc29e1" + integrity sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ== + type-is@~1.6.15: version "1.6.15" resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.15.tgz#cab10fb4909e441c82842eafe1ad646c81804410" @@ -4703,6 +5949,14 @@ type-is@~1.6.15: media-typer "0.3.0" mime-types "~2.1.15" +type-is@~1.6.17, type-is@~1.6.18: + version "1.6.18" + resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131" + integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g== + dependencies: + media-typer "0.3.0" + mime-types "~2.1.24" + typedarray@^0.0.6: version "0.0.6" resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" @@ -4753,14 +6007,46 @@ uniqs@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/uniqs/-/uniqs-2.0.0.tgz#ffede4b36b25290696e6e165d4a59edb998e6b02" -unpipe@~1.0.0: +unique-string@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-1.0.0.tgz#9e1057cca851abb93398f8b33ae187b99caec11a" + integrity sha1-nhBXzKhRq7kzmPizOuGHuZyuwRo= + dependencies: + crypto-random-string "^1.0.0" + +unpipe@1.0.0, unpipe@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" +update-notifier@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-3.0.0.tgz#e9bbf8f0f5b7a2ce6666ca46334fdb29492e8fab" + integrity sha512-6Xe3oF2bvuoj4YECUc52yxVs94yWrxwqHbzyveDktTS1WhnlTRpNcQMxUshcB7nRVGi1jEXiqL5cW1S5WSyzKg== + dependencies: + boxen "^3.0.0" + chalk "^2.0.1" + configstore "^4.0.0" + has-yarn "^2.1.0" + import-lazy "^2.1.0" + is-ci "^2.0.0" + is-installed-globally "^0.1.0" + is-npm "^3.0.0" + is-yarn-global "^0.3.0" + latest-version "^5.0.0" + semver-diff "^2.0.0" + xdg-basedir "^3.0.0" + upper-case@^1.1.1: version "1.1.3" resolved "https://registry.yarnpkg.com/upper-case/-/upper-case-1.1.3.tgz#f6b4501c2ec4cdd26ba78be7222961de77621598" +uri-js@^4.2.2: + version "4.2.2" + resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0" + integrity sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ== + dependencies: + punycode "^2.1.0" + url-loader@^0.5.9: version "0.5.9" resolved "https://registry.yarnpkg.com/url-loader/-/url-loader-0.5.9.tgz#cc8fea82c7b906e7777019250869e569e995c295" @@ -4768,6 +6054,13 @@ url-loader@^0.5.9: loader-utils "^1.0.2" mime "1.3.x" +url-parse-lax@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-3.0.0.tgz#16b5cafc07dbe3676c1b1999177823d6503acb0c" + integrity sha1-FrXK/Afb42dsGxmZF3gj1lA6yww= + dependencies: + prepend-http "^2.0.0" + url@^0.11.0: version "0.11.0" resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" @@ -4803,10 +6096,20 @@ utils-merge@1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.0.tgz#0294fb922bb9375153541c4f7096231f287c8af8" +utils-merge@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" + integrity sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM= + uuid@^3.0.0: version "3.1.0" resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" +uuid@^3.3.2: + version "3.3.2" + resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.2.tgz#1b4af4955eb3077c501c23872fc6513811587131" + integrity sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA== + validate-npm-package-license@^3.0.1: version "3.0.1" resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" @@ -4814,6 +6117,11 @@ validate-npm-package-license@^3.0.1: spdx-correct "~1.0.0" spdx-expression-parse "~1.0.0" +vary@^1, vary@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" + integrity sha1-IpnwLG3tMNSllhsLn3RSShj2NPw= + vary@~1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.1.tgz#67535ebb694c1d52257457984665323f587e8d37" @@ -4970,12 +6278,31 @@ which-module@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" +which-module@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" + integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho= + +which@^1.2.9: + version "1.3.1" + resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" + integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== + dependencies: + isexe "^2.0.0" + wide-align@^1.1.0: version "1.1.2" resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" dependencies: string-width "^1.0.2" +widest-line@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-2.0.1.tgz#7438764730ec7ef4381ce4df82fb98a53142a3fc" + integrity sha512-Ba5m9/Fa4Xt9eb2ELXt77JxVDV8w7qQrH0zS/TWSJdLyAwQjWoOzpzj5lwVftDz6n/EOu3tNACS84v509qwnJA== + dependencies: + string-width "^2.1.1" + window-size@0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" @@ -4995,10 +6322,28 @@ wrap-ansi@^2.0.0: string-width "^1.0.1" strip-ansi "^3.0.1" +wrap-ansi@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-5.1.0.tgz#1fd1f67235d5b6d0fee781056001bfb694c03b09" + integrity sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q== + dependencies: + ansi-styles "^3.2.0" + string-width "^3.0.0" + strip-ansi "^5.0.0" + wrappy@1: version "1.0.2" resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" +write-file-atomic@^2.0.0: + version "2.4.3" + resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.4.3.tgz#1fd2e9ae1df3e75b8d8c367443c692d4ca81f481" + integrity sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ== + dependencies: + graceful-fs "^4.1.11" + imurmurhash "^0.1.4" + signal-exit "^3.0.2" + write@^0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" @@ -5012,6 +6357,11 @@ ws@^2.3.1: safe-buffer "~5.0.1" ultron "~1.1.0" +xdg-basedir@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-3.0.0.tgz#496b2cc109eca8dbacfe2dc72b603c17c5870ad4" + integrity sha1-SWsswQnsqNus/i3HK2A8F8WHCtQ= + xml-char-classes@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/xml-char-classes/-/xml-char-classes-1.0.0.tgz#64657848a20ffc5df583a42ad8a277b4512bbc4d" @@ -5024,16 +6374,46 @@ y18n@^3.2.1: version "3.2.1" resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" +y18n@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b" + integrity sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w== + yallist@^2.1.2: version "2.1.2" resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" +yargs-parser@^13.1.0: + version "13.1.1" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-13.1.1.tgz#d26058532aa06d365fe091f6a1fc06b2f7e5eca0" + integrity sha512-oVAVsHz6uFrg3XQheFII8ESO2ssAf9luWuAd6Wexsu4F3OtIW0o8IribPXYrD4WC24LWtPrJlGy87y5udK+dxQ== + dependencies: + camelcase "^5.0.0" + decamelize "^1.2.0" + yargs-parser@^4.2.0: version "4.2.1" resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-4.2.1.tgz#29cceac0dc4f03c6c87b4a9f217dd18c9f74871c" dependencies: camelcase "^3.0.0" +yargs@^13.2.4: + version "13.2.4" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-13.2.4.tgz#0b562b794016eb9651b98bd37acf364aa5d6dc83" + integrity sha512-HG/DWAJa1PAnHT9JAhNa8AbAv3FPaiLzioSjCcmuXXhP8MlpHO5vwls4g4j6n30Z74GVQj8Xa62dWVx1QCGklg== + dependencies: + cliui "^5.0.0" + find-up "^3.0.0" + get-caller-file "^2.0.1" + os-locale "^3.1.0" + require-directory "^2.1.1" + require-main-filename "^2.0.0" + set-blocking "^2.0.0" + string-width "^3.0.0" + which-module "^2.0.0" + y18n "^4.0.0" + yargs-parser "^13.1.0" + yargs@^6.0.0: version "6.6.0" resolved "https://registry.yarnpkg.com/yargs/-/yargs-6.6.0.tgz#782ec21ef403345f830a808ca3d513af56065208" From 4f173a1d9e76e19efaa72c2efc412bf6295a28b6 Mon Sep 17 00:00:00 2001 From: alex guerrero Date: Sun, 30 Jun 2019 20:12:57 +0200 Subject: [PATCH 05/17] mejoras --- example/Example.vue | 1 - 1 file changed, 1 deletion(-) diff --git a/example/Example.vue b/example/Example.vue index 9ad86ab..22ccfd2 100644 --- a/example/Example.vue +++ b/example/Example.vue @@ -23,7 +23,6 @@
-
From 8b5c7fd8420db9c89a02d30f1c9631eb85b1ec96 Mon Sep 17 00:00:00 2001 From: Julio Guerrero Date: Mon, 1 Jul 2019 14:14:21 +0200 Subject: [PATCH 06/17] readme y tag name --- README.md | 24 +-- build/webpack.prod.conf.js | 34 ++-- example/Example.vue | 26 +-- example/main.js | 4 +- package.json | 19 +- src/Table/Table.less | 2 +- src/Table/Table.vue | 2 +- src/Table/TableBody.js | 376 +++++++++++++++++++------------------ src/Table/TableFooter.js | 73 +++---- src/Table/TableHeader.js | 85 ++++----- src/Table/utils/mixins.js | 2 +- yarn.lock | 6 +- 12 files changed, 319 insertions(+), 334 deletions(-) diff --git a/README.md b/README.md index 123a10b..29c1f1e 100644 --- a/README.md +++ b/README.md @@ -1,47 +1,39 @@ -# vue-table-with-tree-grid +# vue-tree-view-table -> A table (with tree-grid) component for Vue.js 2.0. (Its style extends [@iView](https://github.com/iview/iview)) - -## Example - -![Example](./example/example.gif) +> A table (with tree-grid) component for Vue.js 2.0. (Its style extends [vue-table-with-tree-grid](https://github.com/MisterTaki/vue-table-with-tree-grid)) ## Installation Use npm: ```shell -npm i vue-table-with-tree-grid -S +npm i vue-tree-view-table -S ``` Or use yarn: ```shell -yarn add vue-table-with-tree-grid +yarn add vue-tree-view-table ``` ## Usage ```javascript import Vue from 'vue' -import ZkTable from 'vue-table-with-tree-grid' +import SafeTreeview from 'vue-tree-view-table' -Vue.use(ZkTable) +Vue.use(SafeTreeview) ``` Or ```javascript import Vue from 'vue' -import ZkTable from 'vue-table-with-tree-grid' +import SafeTreeview from 'vue-tree-view-table' -Vue.component(ZkTable.name, ZkTable) +Vue.component(SafeTreeview.name, SafeTreeview) ``` -more information please see [example...](https://github.com/MisterTaki/vue-table-with-tree-gird/blob/master/example/Example.vue), or git clone this repository and open dev mode (I will give it a homepage later...). - -## API - ### Table Attributes | 属性 | 说明 | 类型 | 参数 | 默认值 | diff --git a/build/webpack.prod.conf.js b/build/webpack.prod.conf.js index b325405..a8fd3d8 100644 --- a/build/webpack.prod.conf.js +++ b/build/webpack.prod.conf.js @@ -1,31 +1,31 @@ -var path = require('path') -var webpack = require('webpack') -var merge = require('webpack-merge') -var config = require('./config') -var baseWebpackConfig = require('./webpack.base.conf') +var path = require("path"); +var webpack = require("webpack"); +var merge = require("webpack-merge"); +var config = require("./config"); +var baseWebpackConfig = require("./webpack.base.conf"); -var env = config.build.env +var env = config.build.env; var webpackConfig = merge(baseWebpackConfig, { - devtool: '#source-map', + devtool: "#source-map", output: { path: config.build.assetsRoot, - filename: 'vue-table-with-tree-grid.js', - library: 'vue-table-with-tree-grid', - libraryTarget: 'umd', + filename: "vue-tree-view-table.js", + library: "vue-tree-view-table", + libraryTarget: "umd", umdNamedDefine: true }, externals: { vue: { - root: 'Vue', - commonjs: 'vue', - commonjs2: 'vue', - amd: 'vue' + root: "Vue", + commonjs: "vue", + commonjs2: "vue", + amd: "vue" } }, plugins: [ new webpack.DefinePlugin({ - 'process.env': env + "process.env": env }), new webpack.optimize.UglifyJsPlugin({ compress: { @@ -34,6 +34,6 @@ var webpackConfig = merge(baseWebpackConfig, { sourceMap: true }) ] -}) +}); -module.exports = webpackConfig +module.exports = webpackConfig; diff --git a/example/Example.vue b/example/Example.vue index 22ccfd2..64f6bf4 100644 --- a/example/Example.vue +++ b/example/Example.vue @@ -1,6 +1,6 @@ - +
+ + + +
+ + @@ -43,7 +43,7 @@ class TrainingPlan { totalInitialBudget, coordinador, state, - ) { + ) { this.id = id; this.name = name; this.startDate = startDate; @@ -157,8 +157,12 @@ export default { if (curentLevel <= 4) { node[levelName].forEach((element) => { level.setChildren( - this.buildTreeView(element, curentLevel + 1, curentLevel === 4 ? node.name : null), - ); + this.buildTreeView( + element, + curentLevel + 1, + curentLevel === 4 ? node.name : null, + ), + ); }); } return level; diff --git a/example/main.js b/example/main.js index 873b576..a69b79e 100644 --- a/example/main.js +++ b/example/main.js @@ -3,13 +3,13 @@ // (runtime-only or standalone) has been set in webpack.base.conf with an alias. import Vue from 'vue'; import Example from './Example'; -import ZkTable from '../src'; +import SafeTreeview from '../src'; Vue.config.productionTip = false; // Vue.component(ZkTable.name, ZkTable); -Vue.use(ZkTable); +Vue.use(SafeTreeview); /* eslint-disable no-new */ new Vue({ diff --git a/package.json b/package.json index 28babdc..e125024 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { - "name": "vue-table-with-tree-grid", - "version": "0.2.4", - "description": "A table (with tree-grid) component for Vue.js 2.0. (Its style extends iView)", + "name": "vue-tree-view-table", + "version": "0.1.2", + "description": "A table (with tree-grid) component for Vue.js 2.0. (Its style extends vue-table-with-tree-grid)", "keywords": [ "vue", "vue-table", @@ -9,17 +9,10 @@ "vue-component", "vue-jsx" ], - "author": "GaoQi ", - "homepage": "https://github.com/MisterTaki/vue-table-with-tree-gird", - "bugs": "https://github.com/MisterTaki/vue-table-with-tree-gird/issues", - "repository": { - "type": "git", - "url": "https://github.com/MisterTaki/vue-table-with-tree-gird" - }, - "main": "lib/vue-table-with-tree-grid.js", + "author": "Alexito ", + "main": "lib/vue-tree-view-table.js", "files": [ "lib", - "example", "src" ], "license": "MIT", @@ -29,7 +22,6 @@ }, "dependencies": { "global": "^4.4.0", - "json-server": "^0.15.0", "popper.js": "^1.15.0", "vue": "^2.4.3" }, @@ -59,6 +51,7 @@ "eventsource-polyfill": "^0.9.6", "friendly-errors-webpack-plugin": "^1.1.3", "html-webpack-plugin": "^2.30.1", + "json-server": "^0.15.0", "less": "^2.7.2", "less-loader": "^4.0.5", "opn": "^5.1.0", diff --git a/src/Table/Table.less b/src/Table/Table.less index ba8803b..cc6c27d 100644 --- a/src/Table/Table.less +++ b/src/Table/Table.less @@ -1,7 +1,7 @@ @import "./font/iconfont"; // text -@prefixCls: zk-table; +@prefixCls: safe-treeview; // color @black: #1f2d3d; @white: #ffffff; diff --git a/src/Table/Table.vue b/src/Table/Table.vue index 0d2c08b..879d6e6 100644 --- a/src/Table/Table.vue +++ b/src/Table/Table.vue @@ -154,7 +154,7 @@ function initialColumns(table, clientWidth) { } export default { - name: 'zk-table', + name: 'safe-treeview', mixins: [mixins], components: { TableHeader, diff --git a/src/Table/TableBody.js b/src/Table/TableBody.js index 2a97f1e..411be47 100644 --- a/src/Table/TableBody.js +++ b/src/Table/TableBody.js @@ -1,11 +1,9 @@ import Checkbox from "../Checkbox/Checkbox"; // eslint-disable-line -import { - mixins, -} from './utils'; +import { mixins } from './utils'; /* eslint-disable no-underscore-dangle */ export default { - name: 'zk-table__body', + name: 'safe-treeview__body', mixins: [mixins], data() { return {}; @@ -26,7 +24,8 @@ export default { const target = this.table.bodyData[rowIndex]; this.table.bodyData.splice(rowIndex, 1, { ...target, - [`_is${type}`]: typeof value === 'undefined' ? !row[`_is${type}`] : value, + [`_is${type}`]: + typeof value === 'undefined' ? !row[`_is${type}`] : value, }); }, getChildrenIndex(parentLevel, parentIndex, careFold = true) { @@ -65,18 +64,11 @@ export default { 'handleEvent', ); const eventType = $event ? $event.type : ''; - const { - row, - rowIndex, - column, - columnIndex, - } = data; + const { row, rowIndex, column, columnIndex } = data; const latestData = this.table.bodyData; // Checkbox if (certainType.checkbox) { - const { - isChecked, - } = others; + const { isChecked } = others; this.toggleStatus('Checked', row, rowIndex, isChecked); if (row._childrenLen > 0) { const childrenIndex = this.getChildrenIndex( @@ -235,78 +227,88 @@ export default { function renderCell(row, rowIndex, column, columnIndex) { // ExpandType if (this.isExpandCell(this.table, columnIndex)) { - return ; + return ; } // Tree's firstProp if (this.table.treeType && this.table.firstProp === column.prop) { - return ( { - row._childrenLen > 0 && ( + {' '} + {row._childrenLen > 0 && ( + - this.handleEvent( - $event, - 'icon', { - row, - rowIndex, - column, - columnIndex, - }, { - isFold: row._isFold, - }, - ) - } + }-square-o`} + on-click={$event => + this.handleEvent( + $event, + 'icon', + { + row, + rowIndex, + column, + columnIndex, + }, + { + isFold: row._isFold, + }, + ) + } /> - ) - } { - column.type === 'template' && column.tooltip && (
{ - this.table.$scopedSlots[column.template]({ + )}{' '} + {column.type === 'template' && column.tooltip && ( +
+ {' '} + {this.table.$scopedSlots[column.template]({ row, rowIndex, column, columnIndex, - }) - }
- ) - } { - column.type === 'template' && !column.tooltip ? - this.table.$scopedSlots[column.template]({ + })}{' '} +
+ )}{' '} + {column.type === 'template' && !column.tooltip + ? this.table.$scopedSlots[column.template]({ row, rowIndex, column, columnIndex, - }) : - '' - } { - column.type === undefined && column.tooltip && (
{ // eslint-disable-next-line no-nested-ternary - column.type === undefined ? - row[column.prop] ? - row[column.prop] : - '' : '' - }
- ) - } { // eslint-disable-next-line no-nested-ternary - column.type === undefined && column.tooltip === undefined ? - row[column.prop] ? - row[column.prop] : - '' : - '' - }
+ }) + : ''}{' '} + {column.type === undefined && column.tooltip && ( +
+ {' '} + {// eslint-disable-next-line no-nested-ternary + column.type === undefined + ? row[column.prop] + ? row[column.prop] + : '' + : ''}{' '} +
+ )}{' '} + {// eslint-disable-next-line no-nested-ternary + column.type === undefined && column.tooltip === undefined + ? row[column.prop] + ? row[column.prop] + : '' + : ''}{' '} + ); } // TreeType children's index @@ -320,135 +322,135 @@ export default { } if (column.type === undefined || column.type === 'custom') { if (column.tooltip) { - return (
{ - row[column.prop] ? row[column.prop] : '' - }
+ return ( +
+ {' '} + {row[column.prop] ? row[column.prop] : ''}{' '} +
); } return row[column.prop]; } else if (column.type === 'template') { - return this.table.$scopedSlots[column.template] ? - this.table.$scopedSlots[column.template]({ + return this.table.$scopedSlots[column.template] + ? this.table.$scopedSlots[column.template]({ row, rowIndex, column, columnIndex, - }) : - ''; + }) + : ''; } return ''; } // Template - return ( - { - this.table.tableColumns.map(column => (- )) - } - - { - this.table.bodyData.length > 0 ? ( - this.table.bodyData.map((row, rowIndex) => [{ - this.table.tableColumns.map((column, columnIndex) => ( - )) - }, - this.table.expandType && row._isExpanded && ( + + {' '} + {this.table.tableColumns.map(column => ( + + ))} + + + {this.table.bodyData.length > 0 ? ( + this.table.bodyData.map((row, rowIndex) => [ + + {this.table.tableColumns.map((column, columnIndex) => ( + + ))} + , + this.table.expandType && row._isExpanded && ( + - - ), - ]) - ) : ( - + + ), + ]) + ) : ( + + - ) - }
-
{ - renderCell.call( - this, - row, - rowIndex, - column, - columnIndex, - ) - }
+
+ {' '} + {renderCell.call( + this, + row, + rowIndex, + column, + columnIndex, + )} +
+
{ - this.table.$scopedSlots.$expand ? - this.table.$scopedSlots.$expand({ - row, - rowIndex, - }) : '' - }
+ + {' '} + {this.table.$scopedSlots.$expand + ? this.table.$scopedSlots.$expand({ + row, + rowIndex, + }) + : ''}{' '} +
{ - this.table.emptyText - }
+ }--empty-content`} + colspan={this.table.tableColumns.length} + > + {' '} + {this.table.emptyText}{' '} + + + )} + + ); }, }; diff --git a/src/Table/TableFooter.js b/src/Table/TableFooter.js index bed266b..3b36062 100644 --- a/src/Table/TableFooter.js +++ b/src/Table/TableFooter.js @@ -1,10 +1,8 @@ -import { - mixins, -} from './utils'; +import { mixins } from './utils'; /* eslint-disable no-underscore-dangle */ export default { - name: 'zk-table__footer', + name: 'safe-treeview__footer', mixins: [mixins], data() { return {}; @@ -17,9 +15,7 @@ export default { methods: {}, render() { // 计算各列总和 - function renderCell({ - prop, - }, columnIndex) { + function renderCell({ prop }, columnIndex) { if (columnIndex === 0) { return this.table.sumText; } @@ -58,35 +54,40 @@ export default { } // Template - return ( - { - this.table.tableColumns.map(column => ( - - )) - } - - { - this.table.tableColumns.map((column, columnIndex) => ()) - }
-
{ - this.table.summaryMethod ? - this.table.summaryMethod( - this.table.bodyData, - column, - columnIndex, - ) : renderCell.call(this, column, columnIndex) - }
+ return ( + + + {this.table.tableColumns.map(column => ( + + ))} + + + + {' '} + {this.table.tableColumns.map((column, columnIndex) => ( + + ))}{' '} + + +
); }, }; diff --git a/src/Table/TableHeader.js b/src/Table/TableHeader.js index 31eb95d..e4ba0a4 100644 --- a/src/Table/TableHeader.js +++ b/src/Table/TableHeader.js @@ -1,11 +1,9 @@ import Checkbox from "../Checkbox/Checkbox"; // eslint-disable-line -import { - mixins, -} from './utils'; +import { mixins } from './utils'; /* eslint-disable no-underscore-dangle */ export default { - name: 'zk-table__header', + name: 'safe-treeview__header', mixins: [mixins], data() { return {}; @@ -25,10 +23,7 @@ export default { }, render() { // className - function getClassName(type, { - headerAlign, - prop, - }) { + function getClassName(type, { headerAlign, prop }) { const certainType = this.validateType( type, ['cell', 'inner'], @@ -57,16 +52,13 @@ export default { function renderLabel(column, columnIndex) { if (this.isSelectionCell(this.table, columnIndex)) { const allCheck = this.table.bodyData.every(row => row._isChecked); - const indeterminate = !allCheck && this.table.bodyData.some(row => row._isChecked); - return ( this.toggleAllChecked(checked) - } + const indeterminate = + !allCheck && this.table.bodyData.some(row => row._isChecked); + return ( + this.toggleAllChecked(checked)} /> ); } @@ -74,34 +66,35 @@ export default { } // Template - return ( - { - this.table.tableColumns.map(column => (- )) - } - - { - this.table.tableColumns.map((column, columnIndex) => ( - )) - }
-
{ - renderLabel.call(this, column, columnIndex) - }
-
+ return ( + + + {' '} + {this.table.tableColumns.map(column => ( + + ))}{' '} + + + + {' '} + {this.table.tableColumns.map((column, columnIndex) => ( + + ))}{' '} + + +
+
+ {' '} + {renderLabel.call(this, column, columnIndex)} +
+
); }, }; diff --git a/src/Table/utils/mixins.js b/src/Table/utils/mixins.js index 38b49dc..b650916 100644 --- a/src/Table/utils/mixins.js +++ b/src/Table/utils/mixins.js @@ -1,7 +1,7 @@ export default { data() { return { - prefixCls: 'zk-table', + prefixCls: 'safe-treeview', }; }, methods: { diff --git a/yarn.lock b/yarn.lock index f2434cf..48bd399 100644 --- a/yarn.lock +++ b/yarn.lock @@ -5422,9 +5422,9 @@ semver@^5.0.3, semver@^5.5.0: integrity sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA== semver@^6.1.1: - version "6.1.2" - resolved "https://registry.yarnpkg.com/semver/-/semver-6.1.2.tgz#079960381376a3db62eb2edc8a3bfb10c7cfe318" - integrity sha512-z4PqiCpomGtWj8633oeAdXm1Kn1W++3T8epkZYnwiVgIYIJ0QHszhInYSJTYxebByQH7KVCEAn8R9duzZW2PhQ== + version "6.1.3" + resolved "https://registry.yarnpkg.com/semver/-/semver-6.1.3.tgz#ef997a1a024f67dd48a7f155df88bb7b5c6c3fc7" + integrity sha512-aymF+56WJJMyXQHcd4hlK4N75rwj5RQpfW8ePlQnJsTYOBLlLbcIErR/G1s9SkIvKBqOudR3KAx4wEqP+F1hNQ== send@0.15.4: version "0.15.4" From ce387e0d24a21032048a7b3771752d77079299d7 Mon Sep 17 00:00:00 2001 From: Julio Guerrero Date: Fri, 9 Aug 2019 14:18:02 +0200 Subject: [PATCH 07/17] correccion para template en la primer fila y arreglo en los estilos del tooltip --- README.md | 42 +++++++++++++++++------------------------- example/Example.vue | 32 +++++--------------------------- package.json | 2 +- src/Table/Table.less | 6 +++--- src/Table/Table.vue | 12 +++--------- src/Table/TableBody.js | 42 +++++------------------------------------- 6 files changed, 34 insertions(+), 102 deletions(-) diff --git a/README.md b/README.md index 29c1f1e..90f8f2e 100644 --- a/README.md +++ b/README.md @@ -36,24 +36,24 @@ Vue.component(SafeTreeview.name, SafeTreeview) ### Table Attributes -| 属性 | 说明 | 类型 | 参数 | 默认值 | +| Atributo | Descripción | tipo | Parametro | Valor por defecto | | ---- | ---- | ---- | ---- | ---- | -| data | 表格各行的数据 | Array | - | [] | -| empty-text | 表格数据为空时显示的文字 | String | - | '暂无数据' | -| columns | 表格各列的配置(具体见下文:Columns Configs) | Array | - | [] | -| show-header | 是否显示表头 | Boolean | - | true | -| show-index | 是否显示数据索引 | Boolean | - | false | -| index-text | 数据索引名称 | String | - | '序号' | -| show-summary | 是否显示表尾合计行 | Boolean | - | false | -| sum-text | 表尾合计行首列名称 | String | - | '合计' | -| summary-method | 表尾合计行计算方法 | Function | data, column, columnIndex | - | -| max-height | 最大高度 | [String, Number] | - | 'auto' | -| stripe | 是否显示间隔斑马纹 | Boolean | - | false | -| border | 是否显示纵向边框 | Boolean | - | false | -| show-row-hover | 鼠标悬停时,是否高亮当前行 | Boolean | - | true | -| tree-type | 是否为树形表格 | Boolean | - | false | -| children-prop | 树形表格中遍历的属性名称 | String | - | 'children' | -| is-fold | 树形表格中父级是否默认折叠 | Boolean | - | true | +| data | datos a mostrar | Array | - | [] | +| empty-text | texto a mostrar cuando no tiene datos | String | - | 'Aun no hay datos' | +| columns | configuracion de las columnas de la tabla(ver abajo:Columns Configs) | Array | - | [] | +| show-header | si se muestra el encabezado | Boolean | - | true | +| show-index | si se muestra el indice de datos | Boolean | - | false | +| index-text | nombre del indice de datos | String | - | 'index' | +| show-summary | si se muestra el final total de la tabla | Boolean | - | false | +| sum-text | suma total de la primera fila | String | - | 'total' | +| summary-method | Método de calculo de suma | Function | data, column, columnIndex | - | +| max-height | Tamaño maximo de la tabla | [String, Number] | - | 'auto' | +| stripe | si se muestra el color en intervalo de las filas | Boolean | - | false | +| border | si la tabla tiene bordes | Boolean | - | false | +| show-row-hover | si se colorea cuando pase el cursor por encima | Boolean | - | true | +| tree-type | si es tipo árbol o no | Boolean | - | false | +| children-prop | nombre de la propiedad que contiene los hijos | String | - | 'children' | +| is-fold | si se muestra plegado | Boolean | - | true | | expand-type | 是否为展开行类型表格(为 True 时,需要添加名称为 '$expand' 的[作用域插槽](https://cn.vuejs.org/v2/guide/components.html#作用域插槽), 它可以获取到 row, rowIndex) | Boolean | - | false | | selection-type | 是否为多选类型表格 | Boolean | - | false | | row-key | 行数据的 Key,用来优化 Table 的渲染 | Function | row, rowIndex | rowIndex | @@ -79,17 +79,9 @@ Vue.component(SafeTreeview.name, SafeTreeview) | 事件名 | 说明 | 参数 | | ---- | ---- | ---- | -| cell-click | 单击某一单元格 | row, rowIndex, column, columnIndex, $event | -| cell-dblclick | 双击某一单元格 | row, rowIndex, column, columnIndex, $event | | cell-contextmenu | 在某一单元格上点击鼠标右键 | row, rowIndex, column, columnIndex, $event | -| cell-mouseenter | 鼠标滑入某一单元格 | row, rowIndex, column, columnIndex, $event | -| cell-mouseleave | 鼠标滑出某一单元格 | row, rowIndex, column, columnIndex, $event | | row-click | 单击某一行 | row, rowIndex, $event | -| row-dblclick | 双击某一行 | row, rowIndex, $event | | row-contextmenu | 在某一行上点击鼠标右键 | row, rowIndex, $event | -| row-mouseenter | 鼠标滑入某一行 | row, rowIndex, $event | -| row-mouseleave | 鼠标滑出某一行 | row, rowIndex, $event | -| checkbox-click | 鼠标单击checkbox | row, rowIndex, $event | | tree-icon-click | 鼠标单击树形icon | row, rowIndex, $event | | expand-cell-click | 鼠标单击展开单元格 | row, rowIndex, $event | diff --git a/example/Example.vue b/example/Example.vue index 64f6bf4..9094830 100644 --- a/example/Example.vue +++ b/example/Example.vue @@ -13,19 +13,12 @@ :tree-type="props.treeType" :is-fold="props.isFold" :expand-type="false" - :max-height="400" + :max-height="600" emptyText="No se han encontrado resultados" :selection-type="false"> - @@ -80,11 +73,13 @@ export default { prop: 'name', label: 'Nombre', width: '350', - tooltip: true, + type: 'template', + template: 'name', }, { prop: 'coordinador', label: 'Coordinador', + tooltip: true, }, { prop: 'startDate', @@ -119,12 +114,6 @@ export default { prop: 'totalVacancies', label: 'P. totales', }, - { - prop: 'actions', - label: 'Acciones', - type: 'template', - template: 'actions', - }, ], }; }, @@ -176,15 +165,4 @@ export default { margin: 0; padding: 0; } - -.switch-list { - margin: 20px 0; - list-style: none; - overflow: hidden; -} - -.switch-item { - margin: 20px; - float: left; -} diff --git a/package.json b/package.json index e125024..a120c91 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "vue-tree-view-table", - "version": "0.1.2", + "version": "0.1.5", "description": "A table (with tree-grid) component for Vue.js 2.0. (Its style extends vue-table-with-tree-grid)", "keywords": [ "vue", diff --git a/src/Table/Table.less b/src/Table/Table.less index cc6c27d..1688ada 100644 --- a/src/Table/Table.less +++ b/src/Table/Table.less @@ -14,15 +14,15 @@ .vue-tooltip { background-color: @popper-background-color; box-sizing: border-box; + white-space: nowrap; color: #fff; - // min-width: 120px; max-width: 320px; padding: 6px 10px; border-radius: 3px; z-index: 100; box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.4); - white-space: normal; text-align: center; + word-break: break-word; &.vue-tooltip-hidden { transform: translateX(-100000px) !important; @@ -228,7 +228,7 @@ .@{prefixCls}--expand-content { padding: 20px; } -.truncate { +.@{prefixCls}--truncate { max-width: 100%; text-overflow: ellipsis; white-space: nowrap; diff --git a/src/Table/Table.vue b/src/Table/Table.vue index 879d6e6..18594b7 100644 --- a/src/Table/Table.vue +++ b/src/Table/Table.vue @@ -204,7 +204,7 @@ export default { }, emptyText: { type: String, - default: '暂无数据', + default: 'Aún no hay datos', }, showHeader: { type: Boolean, @@ -216,7 +216,7 @@ export default { }, indexText: { type: String, - default: '序号', + default: 'index', }, showSummary: { type: Boolean, @@ -224,7 +224,7 @@ export default { }, sumText: { type: String, - default: '合计', + default: 'total', }, summaryMethod: Function, showRowHover: { @@ -283,7 +283,6 @@ export default { }, // computedWidth, computedHeight, tableColumns measure() { - window.console.log('measure'); this.$nextTick(() => { const { clientWidth, clientHeight } = this.$el; this.computedWidth = clientWidth + 2; @@ -321,11 +320,6 @@ export default { }, }, }, - updated() { - // eslint-disable-next-line no-console - console.log('update'); - // this.measure(); - }, mounted() { this.measure(); window.addEventListener('resize', this.measure); diff --git a/src/Table/TableBody.js b/src/Table/TableBody.js index 411be47..ea56ae7 100644 --- a/src/Table/TableBody.js +++ b/src/Table/TableBody.js @@ -261,49 +261,17 @@ export default { ) } /> - )}{' '} - {column.type === 'template' && column.tooltip && ( -
- {' '} - {this.table.$scopedSlots[column.template]({ - row, - rowIndex, - column, - columnIndex, - })}{' '} -
- )}{' '} - {column.type === 'template' && !column.tooltip + )} + {column.type === 'template' ? this.table.$scopedSlots[column.template]({ row, rowIndex, column, columnIndex, }) - : ''}{' '} - {column.type === undefined && column.tooltip && ( -
- {' '} - {// eslint-disable-next-line no-nested-ternary - column.type === undefined - ? row[column.prop] - ? row[column.prop] - : '' - : ''}{' '} -
- )}{' '} + : ''} {// eslint-disable-next-line no-nested-ternary - column.type === undefined && column.tooltip === undefined + column.type === undefined ? row[column.prop] ? row[column.prop] : '' @@ -324,7 +292,7 @@ export default { if (column.tooltip) { return (
Date: Fri, 9 Aug 2019 14:43:35 +0200 Subject: [PATCH 08/17] corregidos estilos --- package.json | 2 +- src/Table/Table.less | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index a120c91..7bc6713 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "vue-tree-view-table", - "version": "0.1.5", + "version": "0.1.6", "description": "A table (with tree-grid) component for Vue.js 2.0. (Its style extends vue-table-with-tree-grid)", "keywords": [ "vue", diff --git a/src/Table/Table.less b/src/Table/Table.less index 1688ada..439e13a 100644 --- a/src/Table/Table.less +++ b/src/Table/Table.less @@ -14,7 +14,7 @@ .vue-tooltip { background-color: @popper-background-color; box-sizing: border-box; - white-space: nowrap; + white-space: normal; color: #fff; max-width: 320px; padding: 6px 10px; From 3e5cd3ff1bc92ed2bcd1db20c25cd1efcf2286f6 Mon Sep 17 00:00:00 2001 From: Julio Guerrero Date: Fri, 27 Sep 2019 08:51:31 +0200 Subject: [PATCH 09/17] mejora de rendimiento --- src/Table/Table.vue | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/Table/Table.vue b/src/Table/Table.vue index 18594b7..efe19c0 100644 --- a/src/Table/Table.vue +++ b/src/Table/Table.vue @@ -40,11 +40,8 @@ import TableBody from './TableBody'; import TableFooter from './TableFooter'; import { mixins, scrollBarWidth as getSbw } from './utils'; -/* eslint-disable no-underscore-dangle */ -/* eslint-disable no-param-reassign */ - function getBodyData(data, isTreeType, childrenProp, isFold, level = 1) { - let bodyData = []; + const bodyData = []; data.forEach((row, index) => { const children = row[childrenProp]; const childrenLen = @@ -64,7 +61,8 @@ function getBodyData(data, isTreeType, childrenProp, isFold, level = 1) { }); if (isTreeType) { if (childrenLen > 0) { - bodyData = bodyData.concat( + Array.prototype.push.apply( + bodyData, getBodyData(children, true, childrenProp, isFold, level + 1), ); } @@ -145,10 +143,12 @@ function initialColumns(table, clientWidth) { const extraWidth = clientWidth - totalWidth; const averageExtraWidth = Math.floor(extraWidth / minWidthColumns.length); minWidthColumns.forEach((column) => { + // eslint-disable-next-line no-param-reassign column.computedWidth = column.minWidth + averageExtraWidth; }); } const tableColumns = otherColumns.concat(minWidthColumns); + // eslint-disable-next-line no-underscore-dangle tableColumns.sort((a, b) => a._index - b._index); return tableColumns; } @@ -301,6 +301,7 @@ export default { } const checkedIndexs = []; this.bodyData.forEach((item, index) => { + // eslint-disable-next-line no-underscore-dangle if (item._isChecked) { if (prop === 'index') { checkedIndexs.push(index); From 27bf649251a256771a2cbcd4934d01423ae2aff2 Mon Sep 17 00:00:00 2001 From: Julio Guerrero Date: Fri, 27 Sep 2019 14:02:14 +0200 Subject: [PATCH 10/17] quitada la parte de lazyloading --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 7bc6713..9576197 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "vue-tree-view-table", - "version": "0.1.6", + "version": "0.1.81", "description": "A table (with tree-grid) component for Vue.js 2.0. (Its style extends vue-table-with-tree-grid)", "keywords": [ "vue", From 3eafc2b998ae45a6894d54fe4f916c6a27a9aa40 Mon Sep 17 00:00:00 2001 From: Julio Guerrero Date: Wed, 2 Oct 2019 17:45:46 +0200 Subject: [PATCH 11/17] correcciones y removido el tooltip --- example/Example.vue | 1 - example/index.html | 5 +- package.json | 2 +- src/Table/Table.less | 94 ------- src/Table/TableBody.js | 13 - src/Table/utils/tooltip-directive.js | 291 -------------------- src/Table/utils/tooltip.js | 389 --------------------------- src/index.js | 2 - 8 files changed, 5 insertions(+), 792 deletions(-) delete mode 100644 src/Table/utils/tooltip-directive.js delete mode 100644 src/Table/utils/tooltip.js diff --git a/example/Example.vue b/example/Example.vue index 9094830..f4cc14f 100644 --- a/example/Example.vue +++ b/example/Example.vue @@ -79,7 +79,6 @@ export default { { prop: 'coordinador', label: 'Coordinador', - tooltip: true, }, { prop: 'startDate', diff --git a/example/index.html b/example/index.html index 00a876e..c3e1840 100644 --- a/example/index.html +++ b/example/index.html @@ -1,12 +1,15 @@ - + + Example +
+ diff --git a/package.json b/package.json index 9576197..453c0c7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "vue-tree-view-table", - "version": "0.1.81", + "version": "0.1.82", "description": "A table (with tree-grid) component for Vue.js 2.0. (Its style extends vue-table-with-tree-grid)", "keywords": [ "vue", diff --git a/src/Table/Table.less b/src/Table/Table.less index 439e13a..e0dd64f 100644 --- a/src/Table/Table.less +++ b/src/Table/Table.less @@ -11,100 +11,6 @@ @popper-background-color: #000; -.vue-tooltip { - background-color: @popper-background-color; - box-sizing: border-box; - white-space: normal; - color: #fff; - max-width: 320px; - padding: 6px 10px; - border-radius: 3px; - z-index: 100; - box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.4); - text-align: center; - word-break: break-word; - - &.vue-tooltip-hidden { - transform: translateX(-100000px) !important; - } - - .vue-tooltip-content { - text-align: center; - } - .tooltip-arrow { - content: ""; - width: 0; - height: 0; - border-style: solid; - position: absolute; - margin: 5px; - } - - &[x-out-of-boundaries] { - display: none; - } - - &[x-placement^="bottom"] { - margin-top: 5px; - - .tooltip-arrow { - border-width: 0 5px 5px 5px; - border-bottom-color: @popper-background-color; - border-top-color: transparent !important; - border-left-color: transparent !important; - border-right-color: transparent !important; - top: -5px; - margin-top: 0; - margin-bottom: 0; - } - } - - &[x-placement^="top"] { - margin-bottom: 5px; - - .tooltip-arrow { - border-width: 5px 5px 0 5px; - border-top-color: @popper-background-color; - border-bottom-color: transparent !important; - border-left-color: transparent !important; - border-right-color: transparent !important; - bottom: -5px; - margin-top: 0; - margin-bottom: 0; - } - } - - &[x-placement^="right"] { - margin-left: 5px; - - .tooltip-arrow { - border-width: 5px 5px 5px 0; - border-right-color: @popper-background-color; - border-top-color: transparent !important; - border-left-color: transparent !important; - border-bottom-color: transparent !important; - left: -5px; - margin-left: 0; - margin-right: 0; - } - } - - &[x-placement^="left"] { - margin-right: 5px; - - .tooltip-arrow { - border-width: 5px 0 5px 5px; - border-left-color: @popper-background-color; - border-top-color: transparent !important; - border-right-color: transparent !important; - border-bottom-color: transparent !important; - right: -5px; - margin-left: 0; - margin-right: 0; - } - } -} - .@{prefixCls} { position: relative; width: 100%; diff --git a/src/Table/TableBody.js b/src/Table/TableBody.js index ea56ae7..318a5a1 100644 --- a/src/Table/TableBody.js +++ b/src/Table/TableBody.js @@ -289,19 +289,6 @@ export default { return ''; } if (column.type === undefined || column.type === 'custom') { - if (column.tooltip) { - return ( -
- {' '} - {row[column.prop] ? row[column.prop] : ''}{' '} -
- ); - } return row[column.prop]; } else if (column.type === 'template') { return this.table.$scopedSlots[column.template] diff --git a/src/Table/utils/tooltip-directive.js b/src/Table/utils/tooltip-directive.js deleted file mode 100644 index e7d541b..0000000 --- a/src/Table/utils/tooltip-directive.js +++ /dev/null @@ -1,291 +0,0 @@ -/* eslint-disable no-underscore-dangle */ -/* eslint-disable no-param-reassign */ -/* eslint-disable no-use-before-define */ -/* eslint-disable no-unused-vars */ -/** - * @author: laurent blanes - * @tutorial: https://hekigan.github.io/vue-directive-tooltip/ - */ -import Tooltip from './tooltip'; - -const BASE_CLASS = 'vue-tooltip'; -const POSITIONS = ['auto', 'top', 'bottom', 'left', 'right']; -const SUB_POSITIONS = ['start', 'end']; - -/** - * usage: - * - * // basic usage: - *
- * or - *
- * - * // change position of tooltip - * // options: auto (default) | bottom | top | left | right - * - * // change sub-position of tooltip - * // options: start | end - * - *
- * - * // add custom class - *
- * - * // toggle visibility - *
- */ -export default { - name: 'tooltip', - config: {}, - install(Vue, installOptions) { - Vue.directive('tooltip', { - bind(el, binding, vnode) { - if (installOptions) { - Tooltip.defaults(installOptions); - } - }, - inserted(el, binding, vnode, oldVnode) { - if (installOptions) { - Tooltip.defaults(installOptions); - } - - const options = filterBindings(binding, vnode); - el.tooltip = new Tooltip(el, options); - - if (binding.modifiers.notrigger && binding.value.visible === true) { - el.tooltip.show(); - } - - if (binding.value && binding.value.visible === false) { - el.tooltip.disabled = true; - } - }, - componentUpdated(el, binding, vnode, oldVnode) { - if (hasUpdated(binding.value, binding.oldValue)) { - update(el, binding, vnode, oldVnode); - } - }, - unbind(el, binding, vnode, oldVnode) { - el.tooltip.destroy(); - }, - }); - }, -}; - -/** - * - * @param {*} vnode component's properties - * @param {*} oldvnode component's previous properties - * @return boolean - */ -function hasUpdated(value, oldValue) { - let updated = false; - - if (typeof value === 'string' && value !== oldValue) { - updated = true; - } else if (isObject(value)) { - Object.keys(value).forEach((prop) => { - if (value[prop] !== oldValue[prop]) { - updated = true; - } - }); - } - return updated; -} - -/** - * Sanitize data - * @param {*} binding - * @param {*} vnode - * @return {*} filtered data object - */ -function filterBindings(binding, vnode) { - const delay = - !binding.value || isNaN(binding.value.delay) - ? Tooltip._defaults.delay - : binding.value.delay; - - if (binding.value.ref) { - if (vnode.context.$refs[binding.value.ref]) { - binding.value.html = vnode.context.$refs[binding.value.ref]; - } else { - console.error(`[Tooltip] no REF element [${binding.value.ref}]`); // eslint-disable-line - } - } - - return { - class: getClass(binding), - id: binding.value ? binding.value.id : null, - html: binding.value ? binding.value.html : null, - placement: getPlacement(binding), - title: getContent(binding), - triggers: getTriggers(binding), - fixIosSafari: binding.modifiers.ios || false, - offset: - binding.value && binding.value.offset - ? binding.value.offset - : Tooltip._defaults.offset, - delay, - }; -} - -/** - * Get placement from modifiers - * @param {*} binding - */ -function getPlacement({ modifiers, value }) { - let MODS = Object.keys(modifiers); - if ( - MODS.length === 0 && - isObject(value) && - typeof value.placement === 'string' - ) { - MODS = value.placement.split('.'); - } - let head = 'bottom'; - let tail = null; - for (let i = 0; i < MODS.length; i++) { - const pos = MODS[i]; - if (POSITIONS.indexOf(pos) > -1) { - head = pos; - } - if (SUB_POSITIONS.indexOf(pos) > -1) { - tail = pos; - } - } - // console.log((head && tail) ? `${head}-${tail}` : head); - // return 'auto'; - return head && tail ? `${head}-${tail}` : head; -} - -/** - * Get trigger value from modifiers - * @param {*} binding - * @return String - */ -function getTriggers({ modifiers }) { - const trigger = []; - if (modifiers.notrigger) { - return trigger; - } else if (modifiers.manual) { - trigger.push('manual'); - } else { - if (modifiers.click) { - trigger.push('click'); - } - - if (modifiers.hover) { - trigger.push('hover'); - } - - if (modifiers.focus) { - trigger.push('focus'); - } - - if (trigger.length === 0) { - trigger.push('hover', 'focus'); - } - } - - return trigger; -} - -/** - * Check if the variable is an object - * @param {*} value - * @return Boolean - */ -function isObject(value) { - return typeof value === 'object'; -} - -/** - * Check if the variable is an html element - * @param {*} value - * @return Boolean - */ -function isElement(value) { - return value instanceof window.Element; -} - -/** - * Get the css class - * @param {*} binding - * @return HTMLElement | String - */ -function getClass({ value }) { - if (value === null) { - return BASE_CLASS; - } else if (isObject(value) && typeof value.class === 'string') { - return `${BASE_CLASS} ${value.class}`; - } else if (Tooltip._defaults.class) { - return `${BASE_CLASS} ${Tooltip._defaults.class}`; - } - return BASE_CLASS; -} - -/** - * Get the content - * @param {*} binding - * @return HTMLElement | String - */ -function getContent({ value }, vnode) { - if (value !== null && isObject(value)) { - if (value.content !== undefined) { - return `${value.content}`; - } else if (value.id && document.getElementById(value.id)) { - return document.getElementById(value.id); - } else if (value.html && document.getElementById(value.html)) { - return document.getElementById(value.html); - } else if (isElement(value.html)) { - return value.html; - } else if (value.ref && vnode) { - return vnode.context.$refs[value.ref] || ''; - } - return ''; - // eslint-disable-next-line no-else-return - } else { - return `${value}`; - } -} - -/** - * Action on element update - * @param {*} el Vue element - * @param {*} binding - */ -function update(el, binding, vnode, oldVnode) { - if (typeof binding.value === 'string') { - el.tooltip.content(binding.value); - } else { - if ( - binding.value && - binding.value.class && - binding.value.class.trim() !== - el.tooltip.options.class.replace(BASE_CLASS, '').trim() - ) { - el.tooltip.class = `${BASE_CLASS} ${binding.value.class.trim()}`; - } - - el.tooltip.content(getContent(binding, vnode)); - - if ( - !binding.modifiers.notrigger && - binding.value && - typeof binding.value.visible === 'boolean' - ) { - el.tooltip.disabled = !binding.value.visible; - return; - } else if (binding.modifiers.notrigger) { - el.tooltip.disabled = false; - } - - const dir = vnode.data.directives[0]; - - if (dir.oldValue.visible !== dir.value.visible) { - if (!el.tooltip.disabled) { - el.tooltip.toggle(dir.value.visible); - } - } - } -} diff --git a/src/Table/utils/tooltip.js b/src/Table/utils/tooltip.js deleted file mode 100644 index 14d15bc..0000000 --- a/src/Table/utils/tooltip.js +++ /dev/null @@ -1,389 +0,0 @@ -/* eslint-disable no-use-before-define */ -/* eslint-disable no-param-reassign */ -/* eslint-disable no-unused-vars */ -/* eslint-disable no-underscore-dangle */ -import Popper from 'popper.js'; - -const CSS = { - HIDDEN: 'vue-tooltip-hidden', - VISIBLE: 'vue-tooltip-visible', -}; -const BASE_CLASS = `h-tooltip ${CSS.HIDDEN}`; -const PLACEMENT = ['top', 'left', 'right', 'bottom', 'auto']; -const SUB_PLACEMENT = ['start', 'end']; - -const EVENTS = { - ADD: 1, - REMOVE: 2, -}; - -const DEFAULT_OPTIONS = { - container: false, - delay: 200, - instance: null, // the popper.js instance - fixIosSafari: false, - eventsEnabled: false, - html: false, - modifiers: { - arrow: { - element: '.tooltip-arrow', - }, - }, - placement: '', - placementPostfix: null, // start | end - removeOnDestroy: true, - title: '', - class: '', // ex: 'tooltip-custom tooltip-other-custom' - triggers: ['hover', 'focus'], - offset: 5, -}; - -const includes = (stack, needle) => stack.indexOf(needle) > -1; - -export default class Tooltip { - constructor(el, options = {}) { - // Tooltip._defaults = DEFAULT_OPTIONS; - this._options = { - ...Tooltip._defaults, - ...{ - onCreate: (data) => { - this.content(this.tooltip.options.title); - // this._$tt.update(); - }, - onUpdate: (data) => { - this.content(this.tooltip.options.title); - // this._$tt.update(); - }, - }, - ...Tooltip.filterOptions(options), - }; - - this._$el = el; - - this._$tpl = this._createTooltipElement(this.options); - this._$tt = new Popper(el, this._$tpl, this._options); - this.setupPopper(); - } - - setupPopper() { - // this._$el.insertAdjacentElement('afterend', this._$tpl); - this.disabled = false; - this._visible = false; - this._clearDelay = null; - this._$tt.disableEventListeners(); - this._setEvents(); - } - - destroy() { - this._cleanEvents(); - if (this._$tpl && this._$tpl.parentNode) { - this._$tpl.parentNode.removeChild(this._$tpl); - } - } - - get options() { - return { ...this._options }; - } - - get tooltip() { - return this._$tt; - } - - get visible() { - return this._visible; - } - - set visible(val) { - if (typeof val === 'boolean') { - this._visible = val; - } - } - - get disabled() { - return this._disabled; - } - - set disabled(val) { - if (typeof val === 'boolean') { - this._disabled = val; - } - } - - show() { - this.toggle(true); - } - - hide() { - this.toggle(false); - } - - toggle(visible, autoHide = true) { - let delay = this._options.delay; - - if (this.disabled === true) { - visible = false; - delay = 0; - } - - if (typeof visible !== 'boolean') { - visible = !this._visible; - } - - if (visible === true) { - delay = 0; - } - - clearTimeout(this._clearDelay); - - if (autoHide === true) { - this._clearDelay = setTimeout(() => { - this.visible = visible; - if (this.visible === true && this.disabled !== true) { - // add tooltip node - this._$el.insertAdjacentElement('afterend', this._$tpl); - - // Need the timeout to be sure that the element is inserted in the DOM - setTimeout(() => { - // enable eventListeners - this._$tt.enableEventListeners(); - // only update if the tooltip is visible - this._$tt.scheduleUpdate(); - // switch CSS - this._$tpl.classList.replace(CSS.HIDDEN, CSS.VISIBLE); - }, 60); - } else { - this._$tpl.classList.replace(CSS.VISIBLE, CSS.HIDDEN); - // remove tooltip node - if (this._$tpl && this._$tpl.parentNode) { - this._$tpl.parentNode.removeChild(this._$tpl); - } - - this._$tt.disableEventListeners(); - } - }, delay); - } - } - - _createTooltipElement(options) { - // wrapper - const $popper = document.createElement('div'); - $popper.setAttribute('id', `tooltip-${randomId()}`); - $popper.setAttribute('class', `${BASE_CLASS} ${this._options.class}`); - - // make arrow - const $arrow = document.createElement('div'); - $arrow.setAttribute('class', 'tooltip-arrow'); - $arrow.setAttribute('x-arrow', ''); - $popper.appendChild($arrow); - - // make content container - const $content = document.createElement('div'); - $content.setAttribute('class', 'tooltip-content'); - $popper.appendChild($content); - - return $popper; - } - - _events(type = EVENTS.ADD) { - const evtType = - type === EVENTS.ADD ? 'addEventListener' : 'removeEventListener'; - if (!Array.isArray(this.options.triggers)) { - console.error("trigger should be an array", this.options.triggers); // eslint-disable-line - return; - } - - const lis = (...params) => this._$el[evtType](...params); - - if (includes(this.options.triggers, 'manual')) { - lis('click', this._onToggle.bind(this), false); - } else { - // For the strange iOS/safari behaviour, we remove any - // 'hover' and replace it by a 'click' event - if ( - this.options.fixIosSafari && - Tooltip.isIosSafari() && - includes(this.options.triggers, 'hover') - ) { - const pos = this.options.triggers.indexOf('hover'); - const click = includes(this.options.triggers, 'click'); - this._options.triggers[pos] = click !== -1 ? 'click' : null; - } - - // eslint-disable-next-line array-callback-return - this.options.triggers.map((evt) => { - switch (evt) { - case 'click': - lis( - 'click', - (e) => { - this._onToggle(e); - }, - false, - ); - // document[evtType]('click', this._onDeactivate.bind(this), false); - break; - case 'hover': - lis('mouseenter', this._onActivate.bind(this), false); - lis('mouseleave', this._onDeactivate.bind(this), false); - break; - case 'focus': - lis('focus', this._onActivate.bind(this), false); - lis('blur', this._onDeactivate.bind(this), true); - break; - default: - break; - } - }); - - if ( - includes(this.options.triggers, 'hover') || - includes(this.options.triggers, 'focus') - ) { - this._$tpl[evtType]( - 'mouseenter', - this._onMouseOverTooltip.bind(this), - false, - ); - this._$tpl[evtType]( - 'mouseleave', - this._onMouseOutTooltip.bind(this), - false, - ); - } - } - } - - _setEvents() { - this._events(); - } - - _cleanEvents() { - this._events(EVENTS.REMOVE); - } - - _onActivate(e) { - this.show(); - } - - _onDeactivate(e) { - this.hide(); - } - - _onToggle(e) { - e.stopPropagation(); - e.preventDefault(); - this.toggle(); - } - - _onMouseOverTooltip(e) { - this.toggle(true, false); - } - - _onMouseOutTooltip(e) { - this.toggle(false); - } - - content(content) { - const wrapper = this.tooltip.popper.querySelector('.tooltip-content'); - if (typeof content === 'string') { - this.tooltip.options.title = content; - wrapper.textContent = content; - } else if (isElement(content)) { - if (content !== wrapper.children[0]) { - wrapper.innerHTML = ''; - // this.tooltip.htmlContent = content.cloneNode(true); - this.tooltip.htmlContent = content; - wrapper.appendChild(this.tooltip.htmlContent); - } - } else { - console.error("unsupported content type", content); // eslint-disable-line - } - } - - set class(val) { - if (typeof val === 'string') { - const classList = this._$tpl.classList.value.replace( - this.options.class, - val, - ); - this._options.class = classList; - this._$tpl.setAttribute('class', classList); - } - } - - static filterOptions(options) { - const opt = { ...options }; - - opt.modifiers = {}; - let head = null; - let tail = null; - if (opt.placement.indexOf('-') > -1) { - [head, tail] = opt.placement.split('-'); - opt.placement = - includes(PLACEMENT, head) && includes(SUB_PLACEMENT, tail) - ? opt.placement - : Tooltip._defaults.placement; - } else { - opt.placement = includes(PLACEMENT, opt.placement) - ? opt.placement - : Tooltip._defaults.placement; - } - - opt.modifiers.offset = { - fn: Tooltip._setOffset, - }; - - return opt; - } - - static _setOffset(data, opts) { - let offset = data.instance.options.offset; - - if (window.isNaN(offset) || offset < 0) { - offset = Tooltip._defaults.offset; - } - - if (data.placement.indexOf('top') !== -1) { - data.offsets.popper.top -= offset; - } else if (data.placement.indexOf('right') !== -1) { - data.offsets.popper.left += offset; - } else if (data.placement.indexOf('bottom') !== -1) { - data.offsets.popper.top += offset; - } else if (data.placement.indexOf('left') !== -1) { - data.offsets.popper.left -= offset; - } - - return data; - } - - static isIosSafari() { - return ( - includes(navigator.userAgent.toLowerCase(), 'mobile') && - includes(navigator.userAgent.toLowerCase(), 'safari') && - (navigator.platform.toLowerCase() === 'iphone' || - navigator.platform.toLowerCase() === 'ipad') - ); - } - - static defaults(data) { - // if (data.placement) { - // data.originalPlacement = data.placement; - // } - Tooltip._defaults = { ...Tooltip._defaults, ...data }; - } -} - -Tooltip._defaults = { ...DEFAULT_OPTIONS }; - -function randomId() { - return `${Date.now()}-${Math.round(Math.random() * 100000000)}`; -} - -/** - * Check if the variable is an html element - * @param {*} value - * @return Boolean - */ -function isElement(value) { - return value instanceof window.Element; -} diff --git a/src/index.js b/src/index.js index 709a5b9..45ffb86 100644 --- a/src/index.js +++ b/src/index.js @@ -1,9 +1,7 @@ import ZkTable from './Table/Table'; -import Tooltip from './Table/utils/tooltip-directive'; ZkTable.install = (Vue) => { Vue.component(ZkTable.name, ZkTable); - Vue.use(Tooltip); }; export default ZkTable; From 794e20995a96aaf6d3b8874ce3b49cd5ffcf9c95 Mon Sep 17 00:00:00 2001 From: Julio Guerrero Date: Mon, 7 Oct 2019 16:51:09 +0200 Subject: [PATCH 12/17] actualizado ignore --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index d697ce3..216a591 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ .DS_Store node_modules/ lib/ +mocks/ npm-debug.log* yarn-debug.log* yarn-error.log* From 8a8ca1d0848971dacd90393d6c25d438bc3a0896 Mon Sep 17 00:00:00 2001 From: Julio Guerrero Date: Mon, 7 Oct 2019 16:52:56 +0200 Subject: [PATCH 13/17] actualizado ignore --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 216a591..d0df8db 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,7 @@ .DS_Store node_modules/ lib/ -mocks/ +./mocks npm-debug.log* yarn-debug.log* yarn-error.log* From a895b4dcf2096bb2a39209c32aa6ecee1c152381 Mon Sep 17 00:00:00 2001 From: Julio Guerrero Date: Mon, 7 Oct 2019 16:56:08 +0200 Subject: [PATCH 14/17] incluido mocks --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index d0df8db..f78ba6d 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,8 @@ node_modules/ lib/ ./mocks +mocks/ +./mocks/* npm-debug.log* yarn-debug.log* yarn-error.log* From d8729b53aa9b7e4a0fc701c272dad0d25501ae83 Mon Sep 17 00:00:00 2001 From: Julio Guerrero Date: Mon, 7 Oct 2019 17:00:51 +0200 Subject: [PATCH 15/17] correcciones --- mocks/db.json | 10860 +++++++++++++++++++++++------------------------- 1 file changed, 5275 insertions(+), 5585 deletions(-) diff --git a/mocks/db.json b/mocks/db.json index 050aff1..687a83d 100644 --- a/mocks/db.json +++ b/mocks/db.json @@ -1,5592 +1,5282 @@ { - "data": - { - "id": 6865748, - "name": "Plan de formación 2018", - "year": 2018, - "moduleVersion": [ - { - "id": 6865749, - "name": "1 FORMACIÓN GENERAL", - "submoduleVersion": [ - { - "id": 6865750, - "name": "1.2 Cursos Generales de Protección Civil.", - "trainingActivityVersion": [ - { - "id": 6865751, - "name": "CURSO DE ASPECTOS LEGALES DE LA PROTECCION CIVIL.", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6865752, - "name": "CURSO DE FORMACIÓN PARA EL MANEJO DE LA APLICACIÓN SAFE", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6865753, - "name": "ESPECIALISTA EN PROTECCIÓN CIVIL Y EMERGENCIAS. Edición on-line.", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6866456, - "name": "FORMACIÓN GENERAL EN PROTECCIÓN CIVIL PARA JEFES DE AGRUPACIÓN Y VOLUNTARIOS DE PC. ONLINE", - "editionVersion": [ - { - "id": 6866457, - "startDate": "2018-04-13T00:00:00", - "endDate": "2018-06-27T00:00:00", - "totalVacancies": 60, - "totalReserved": 0, - "totalNumberOfHours": 60, - "totalInitialBudget": 4650, - "coordinador": "Araceli Ruiz Anca", - "state": "Cerrada" - } - ], - "totalVacancies": 60, - "totalReserved": 0, - "totalNumberOfHours": 60, - "totalInitialBudget": 4650 - }, - { - "id": 6866577, - "name": "JORNADA TÉCNICA PARA COORDINADORES DE ACTIVIDADES FORMATIVAS DENTRO DEL PLAN DE FORMACIÓN DE LA ESCUELA NACIONAL DE PROTECCIÓN CIVIL", - "editionVersion": [ - { - "id": 6866578, - "startDate": "2018-02-06T00:00:00", - "endDate": "2018-02-06T00:00:00", - "totalVacancies": 30, - "totalReserved": 0, - "totalNumberOfHours": 4, - "totalInitialBudget": 300, - "coordinador": "Antonia Garcés de Marcilla Val", - "state": "Programación" - } - ], - "totalVacancies": 30, - "totalReserved": 0, - "totalNumberOfHours": 4, - "totalInitialBudget": 300 - }, - { - "id": 6866587, - "name": "PROTECCIÓN CIVIL. PLANIFICACIÓN DE EMERGENCIAS POR RIESGOS METEOROLÓGICOS, INUNDACIONES E INCENDIOS FORESTALES", - "editionVersion": [ - { - "id": 6866588, - "startDate": "2018-05-07T00:00:00", - "endDate": "2018-05-10T00:00:00", - "totalVacancies": 30, - "totalReserved": 0, - "totalNumberOfHours": 30, - "totalInitialBudget": 3000, - "coordinador": "Rafael Aramendi Sánchez", - "state": "Cerrada" - } - ], - "totalVacancies": 30, - "totalReserved": 0, - "totalNumberOfHours": 30, - "totalInitialBudget": 3000 - } - ], - "totalVacancies": 120, - "totalReserved": 0, - "totalNumberOfHours": 94, - "totalInitialBudget": 7950 - }, - { - "id": 6866627, - "name": "1.3 La Protección Civil en el Contexto de la Comunidad Internacional.", - "trainingActivityVersion": [ - { - "id": 6866628, - "name": "AYUDA HUMANITARIA Y COOPERACIÓN INTERNACIONAL EN MATERIA DE PROTECCIÓN CIVIL", - "editionVersion": [ - { - "id": 6866629, - "startDate": "2018-04-23T00:00:00", - "endDate": "2018-04-27T00:00:00", - "totalVacancies": 25, - "totalReserved": 11, - "totalNumberOfHours": 35, - "totalInitialBudget": 3500, - "coordinador": "Angela Potenciano de las Heras", - "state": "Cerrada" - } - ], - "totalVacancies": 25, - "totalReserved": 11, - "totalNumberOfHours": 35, - "totalInitialBudget": 3500 - }, - { - "id": 6866704, - "name": "JORNADA INFORMATIVA PROGRAMA ANUAL 2018 DE PROTECCIÓN CIVIL UNIÓN EUROPEA", - "editionVersion": [ - { - "id": 6866705, - "startDate": "2018-02-08T00:00:00", - "endDate": "2018-02-08T00:00:00", - "totalVacancies": 40, - "totalReserved": 0, - "totalNumberOfHours": 4, - "totalInitialBudget": 450, - "coordinador": "Álvaro de la Peña Cuesta", - "state": "Cerrada" - } - ], - "totalVacancies": 40, - "totalReserved": 0, - "totalNumberOfHours": 4, - "totalInitialBudget": 450 - } - ], - "totalVacancies": 65, - "totalReserved": 11, - "totalNumberOfHours": 39, - "totalInitialBudget": 3950 - }, - { - "id": 6866720, - "name": "1.4 Organización de la Protección Civil.", - "trainingActivityVersion": [ - { - "id": 6866721, - "name": "ACTUACIÓN DEL SISTEMA NACIONAL DE PROTECCIÓN CIVIL: COMUNIDADES AUTÓNOMAS", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6866724, - "name": "ACTUACIÓN DEL SISTEMA NACIONAL DE PROTECCIÓN CIVIL: DELEGACIONES Y SUBDELEGACIONES EL GOBIERNO", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6866727, - "name": "AUTOPROTECCIÓN Y GESTIÓN DE EMERGENCIAS EN RENFE Y ADIF", - "editionVersion": [ - { - "id": 6866728, - "startDate": "2018-06-20T00:00:00", - "endDate": "2018-06-21T00:00:00", - "totalVacancies": 30, - "totalReserved": 19, - "totalNumberOfHours": 14, - "totalInitialBudget": 320, - "coordinador": "Salvador Rodríguez Pérez", - "state": "Cerrada" - } - ], - "totalVacancies": 30, - "totalReserved": 19, - "totalNumberOfHours": 14, - "totalInitialBudget": 320 - }, - { - "id": 6866761, - "name": "COHESIÓN DEL SISTEMA NACIONAL DE PROTECCIÓN CIVIL: OTRAS ACTIVIDADES", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6866764, - "name": "CURSO DE AUTOPROTECCIÓN Y EMERGENCIAS EN EL ÁMBITO FERROVIARIO", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6866765, - "name": "CURSO LA ORGANIZACIÓN DE RENFE Y SU ACTUACIÓN EN SITUACIONES DE EMERGENCIA", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6866766, - "name": "EL SISTEMA DE PROTECCIÓN CIVIL ESPAÑOL Y LA GESTIÓN DE LAS EMERGENCIAS A NIVEL NACIONAL E INTERNACIONAL", - "editionVersion": [ - { - "id": 6866767, - "startDate": "2018-10-01T00:00:00", - "endDate": "2018-11-29T00:00:00", - "totalVacancies": 52, - "totalReserved": 16, - "totalNumberOfHours": 55, - "totalInitialBudget": 6840, - "coordinador": "María Vara Moral", - "state": "Cerrada" - } - ], - "totalVacancies": 52, - "totalReserved": 16, - "totalNumberOfHours": 55, - "totalInitialBudget": 6840 - }, - { - "id": 6867071, - "name": "JORNADA PARA INTERVINIENTES EN LA OPERACIÓN PASO DEL ESTRECHO", - "editionVersion": [ - { - "id": 6867072, - "startDate": "2018-05-31T00:00:00", - "endDate": "2018-06-01T00:00:00", - "totalVacancies": 50, - "totalReserved": 50, - "totalNumberOfHours": 14, - "totalInitialBudget": 300, - "coordinador": "Francisco Emilio Magaña López", - "state": "Cerrada" - }, - { - "id": 6867108, - "startDate": "2018-06-13T00:00:00", - "endDate": "2018-06-14T00:00:00", - "totalVacancies": 50, - "totalReserved": 50, - "totalNumberOfHours": 13, - "totalInitialBudget": 300, - "coordinador": "Tarek Loukili Lamrani", - "state": "Cerrada" - }, - { - "id": 6867174, - "startDate": "2018-06-12T00:00:00", - "endDate": "2018-06-13T00:00:00", - "totalVacancies": 50, - "totalReserved": 50, - "totalNumberOfHours": 14, - "totalInitialBudget": 300, - "coordinador": "Enrique Álvarez Vigil", - "state": "Cerrada" - }, - { - "id": 7536743, - "startDate": "2018-05-28T00:00:00", - "endDate": "2018-05-29T00:00:00", - "totalVacancies": 50, - "totalReserved": 0, - "totalNumberOfHours": 12, - "totalInitialBudget": 300, - "coordinador": "Antonio García Montero", - "state": "Cerrada" - } - ], - "totalVacancies": 200, - "totalReserved": 150, - "totalNumberOfHours": 53, - "totalInitialBudget": 1200 - }, - { - "id": 6867237, - "name": "JORNADA SOBRE EL FUTURO DE LA FORMACIÓN EN EMERGENCIAS EN EL MARCO DE LAS CUALIFICACIONES PROFESIONALES", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6867238, - "name": "JORNADA TÉCNICA SOBRE NUEVA NORMATIVA EN EMERGENCIAS POR INCENDIOS FORESTALES", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6867239, - "name": "JORNADAS FORMATIVAS SOBRE EL SNPC PARA VOLUNTARIOS REMER Y PROTECCIÓN CIVIL", - "editionVersion": [ - { - "id": 6867240, - "startDate": "2018-12-31T00:00:00", - "endDate": "2018-12-31T00:00:00", - "totalVacancies": 40, - "totalReserved": 0, - "totalNumberOfHours": 7, - "totalInitialBudget": 1000, - "coordinador": "Rita María Domínguez Monzón", - "state": "Anulada" - } - ], - "totalVacancies": 40, - "totalReserved": 0, - "totalNumberOfHours": 7, - "totalInitialBudget": 1000 - }, - { - "id": 6867242, - "name": "JORNADAS TÉCNICAS SOBRE COORDINACIÓN EN FORMACIÓN EN PROTECCIÓN CIVIL", - "editionVersion": [ - { - "id": 6867243, - "startDate": "2018-06-26T00:00:00", - "endDate": "2018-06-27T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 6, - "totalInitialBudget": 1660, - "coordinador": "Antonia Garcés de Marcilla Val", - "state": "Cerrada" - } - ], - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 6, - "totalInitialBudget": 1660 - }, - { - "id": 6980200, - "name": "JORNADA ABIERTA SOBRE EL SISTEMA NACIONAL DE PROTECCIÓN CIVIL", - "editionVersion": [ - { - "id": 6980203, - "startDate": "2018-02-20T00:00:00", - "endDate": "2018-02-20T00:00:00", - "totalVacancies": 90, - "totalReserved": 90, - "totalNumberOfHours": 5, - "totalInitialBudget": 1000, - "coordinador": "Antonia Garcés de Marcilla Val", - "state": "Cerrada" - }, - { - "id": 6980205, - "startDate": "2018-12-31T00:00:00", - "endDate": "2018-12-31T00:00:00", - "totalVacancies": 40, - "totalReserved": 40, - "totalNumberOfHours": 5, - "totalInitialBudget": 1000, - "coordinador": "Antonia Garcés de Marcilla Val", - "state": "Anulada" - } - ], - "totalVacancies": 130, - "totalReserved": 130, - "totalNumberOfHours": 10, - "totalInitialBudget": 2000 - }, - { - "id": 6980209, - "name": "CURSO ONLINE SOBRE EL SISTEMA NACIONAL DE PROTECCIÓN CIVIL PARA NO DIRECTIVOS", - "editionVersion": [ - { - "id": 6980211, - "startDate": "2018-12-31T00:00:00", - "endDate": "2018-12-31T00:00:00", - "totalVacancies": 52, - "totalReserved": 0, - "totalNumberOfHours": 35, - "totalInitialBudget": 2000, - "coordinador": "María Dolores Monzón Merchán", - "state": "Anulada" - } - ], - "totalVacancies": 52, - "totalReserved": 0, - "totalNumberOfHours": 35, - "totalInitialBudget": 2000 - }, - { - "id": 6980213, - "name": "JORNADA SOBRE LA COORDINACIÓN DE LAS UNIDADES DE PC DE LAS DELEGACIONES DEL GOBIERNO PLURIPROVINCIALES CON LAS SUBDELEGACIONES DEL GOBIERNO DE SU ÁMBITO TERRITORIAL Y LA DGPCE", - "editionVersion": [ - { - "id": 6980216, - "startDate": "2018-12-31T00:00:00", - "endDate": "2018-12-31T00:00:00", - "totalVacancies": 40, - "totalReserved": 40, - "totalNumberOfHours": 5, - "totalInitialBudget": 1500, - "coordinador": " ", - "state": "Anulada" - } - ], - "totalVacancies": 40, - "totalReserved": 40, - "totalNumberOfHours": 5, - "totalInitialBudget": 1500 - }, - { - "id": 8206127, - "name": "EL SISTEMA NACIONAL DE PROTECCIÓN CIVIL: COORDINACIÓN DE ACTUACIONES", - "editionVersion": [ - { - "id": 8206139, - "startDate": "2018-11-20T00:00:00", - "endDate": "2018-11-20T00:00:00", - "totalVacancies": 80, - "totalReserved": 80, - "totalNumberOfHours": 6, - "totalInitialBudget": 30000, - "coordinador": "Araceli Ruiz Anca", - "state": "Cerrada" - } - ], - "totalVacancies": 80, - "totalReserved": 80, - "totalNumberOfHours": 6, - "totalInitialBudget": 30000 - } - ], - "totalVacancies": 644, - "totalReserved": 455, - "totalNumberOfHours": 191, - "totalInitialBudget": 46520 - }, - { - "id": 6867255, - "name": "1.1 Fundamentos de la Protección Civil", - "trainingActivityVersion": [ - { - "id": 6867256, - "name": "***JORNADA SOBRE EL NUEVO MARCO LEGAL DE PROTECCIÓN CIVIL: LEY 17/2015 DEL SISTEMA NACIONAL DE PROTECCIÓN CIVIL", - "editionVersion": [ - { - "id": 8552600, - "startDate": "2018-12-30T00:00:00", - "endDate": "2018-12-31T00:00:00", - "totalVacancies": 80, - "totalReserved": 0, - "totalNumberOfHours": 8, - "totalInitialBudget": 0, - "coordinador": "María Vara Moral", - "state": "Programación" - }, - { - "id": 8552602, - "totalVacancies": 80, - "totalReserved": 0, - "totalNumberOfHours": 8, - "totalInitialBudget": 0, - "coordinador": "María Vara Moral", - "state": "Planificación" - } - ], - "totalVacancies": 160, - "totalReserved": 0, - "totalNumberOfHours": 16, - "totalInitialBudget": 0 - } - ], - "totalVacancies": 160, - "totalReserved": 0, - "totalNumberOfHours": 16, - "totalInitialBudget": 0 - } - ], - "totalVacancies": 989, - "totalReserved": 466, - "totalNumberOfHours": 340, - "totalInitialBudget": 58420 - }, - { - "id": 6867257, - "name": "2 ANÁLISIS Y PREVENCIÓN DE RIESGOS DE P.C", - "submoduleVersion": [ - { - "id": 6867258, - "name": "2.2 Bases Metodológicas para su Análisis.", - "trainingActivityVersion": [ - { - "id": 6867259, - "name": "CURSO DE INTERPRETACIÓN DE ANÁLISIS DE RIESGOS", - "editionVersion": [ - { - "id": 8486913, - "totalVacancies": 30, - "totalReserved": 0, - "totalNumberOfHours": 28, - "totalInitialBudget": 0, - "coordinador": "Julia Pastrana de Paz", - "state": "Planificación" - }, - { - "id": 8486914, - "startDate": "2018-12-01T00:00:00", - "endDate": "2018-12-02T00:00:00", - "totalVacancies": 30, - "totalReserved": 9, - "totalNumberOfHours": 28, - "totalInitialBudget": 0, - "coordinador": "Julia Pastrana de Paz", - "state": "Programación" - } - ], - "totalVacancies": 60, - "totalReserved": 9, - "totalNumberOfHours": 56, - "totalInitialBudget": 0 - }, - { - "id": 6867260, - "name": "INTERPRETACIÓN DE MAPAS DE RIESGOS NATURALES Y SISTEMAS DE ALERTA TEMPRANA", - "editionVersion": [ - { - "id": 6867261, - "startDate": "2018-10-01T00:00:00", - "endDate": "2018-10-04T00:00:00", - "totalVacancies": 25, - "totalReserved": 2, - "totalNumberOfHours": 26, - "totalInitialBudget": 3100, - "coordinador": "Angela Potenciano de las Heras", - "state": "Cerrada" - } - ], - "totalVacancies": 25, - "totalReserved": 2, - "totalNumberOfHours": 26, - "totalInitialBudget": 3100 - }, - { - "id": 6867299, - "name": "MEDIDAS PREVENTIVAS ESTRUCTURALES Y NO ESTRUCTURALES FRENTE A RIESGOS NATURALES", - "editionVersion": [ - { - "id": 6867300, - "startDate": "2018-05-23T00:00:00", - "endDate": "2018-05-25T00:00:00", - "totalVacancies": 25, - "totalReserved": 4, - "totalNumberOfHours": 18, - "totalInitialBudget": 2300, - "coordinador": "Angela Potenciano de las Heras", - "state": "Cerrada" - } - ], - "totalVacancies": 25, - "totalReserved": 4, - "totalNumberOfHours": 18, - "totalInitialBudget": 2300 - } - ], - "totalVacancies": 110, - "totalReserved": 15, - "totalNumberOfHours": 100, - "totalInitialBudget": 5400 - }, - { - "id": 6867329, - "name": "2.3 Conocimiento y Análisis de Riesgos Naturales.", - "trainingActivityVersion": [ - { - "id": 6867330, - "name": "ANÁLISIS DEL RIESGO SÍSMICO", - "editionVersion": [ - { - "id": 6867331, - "startDate": "2018-02-19T00:00:00", - "endDate": "2018-02-23T00:00:00", - "totalVacancies": 40, - "totalReserved": 2, - "totalNumberOfHours": 30, - "totalInitialBudget": 4000, - "coordinador": "Estrella Romero Cordón", - "state": "Cerrada" - } - ], - "totalVacancies": 40, - "totalReserved": 2, - "totalNumberOfHours": 30, - "totalInitialBudget": 4000 - }, - { - "id": 6867399, - "name": "CURSO DE INTRODUCCIÓN AL RADAR QPE, QPF EN HIDROMETEOROLOGÍA", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6867400, - "name": "CURSO DE PLANIFICACIÓN DE PROTECCIÓN CIVIL ANTE EL RIESGO SÍSMICO", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6867401, - "name": "FENÓMENOS METEOROLÓGICOS ADVERSOS EN PROTECCIÓN CIVIL", - "editionVersion": [ - { - "id": 6867402, - "startDate": "2018-05-21T00:00:00", - "endDate": "2018-05-24T00:00:00", - "totalVacancies": 20, - "totalReserved": 3, - "totalNumberOfHours": 23, - "totalInitialBudget": 3300, - "coordinador": "Jonathan Gómez Cantero", - "state": "Cerrada" - } - ], - "totalVacancies": 20, - "totalReserved": 3, - "totalNumberOfHours": 23, - "totalInitialBudget": 3300 - }, - { - "id": 6867465, - "name": "JORNADA FORMATIVA RIESGO SÍSMICO EN EL S.E. DE LA PENÍNSULA IBÉRICA", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6867466, - "name": "JORNADA SOBRE LA NUEVA LEY DEL SISTEMA NACIONAL DE PROTECCIÓN CIVIL Y SU APLICACIÓN EN LA GESTIÓN DEL RIESGO DE INUNDACIONES", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6867467, - "name": "JORNADA TÉCNICA METEOROLOGÍA ESPACIAL", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6867468, - "name": "JORNADA TÉCNICA SOBRE PLANES DE GESTIÓN DEL RIESGO DE INUNDACIÓN", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6867469, - "name": "JORNADA TÉCNICA SOBRE RIESGO DE MAREMOTOS. PROYECTO DE LA DIRECTRIZ BÁSICA ANTE EL RIESGO DE MAREMOTOS", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6867470, - "name": "JORNADA TÉCNICA SOBRE RIESGOS SÍSMICO Y VOLCÁNICO", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6867471, - "name": "PLANIFICACIÓN DE PROTECCIÓN CIVIL EN RIESGOS NATURALES", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6867509, - "name": "RIESGOS NATURALES: IDENTIFICACIÓN Y ANÁLISIS. ONLINE", - "editionVersion": [ - { - "id": 6867510, - "startDate": "2018-02-28T00:00:00", - "endDate": "2018-06-25T00:00:00", - "totalVacancies": 50, - "totalReserved": 5, - "totalNumberOfHours": 90, - "totalInitialBudget": 5000, - "coordinador": "Mercedes Vallejo Bombín", - "state": "Cerrada" - } - ], - "totalVacancies": 50, - "totalReserved": 5, - "totalNumberOfHours": 90, - "totalInitialBudget": 5000 - }, - { - "id": 6867689, - "name": "TALLER DE ACTUALIZACIÓN SOBRE GESTIÓN DE RIESGOS GEOLÓGICOS", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6867690, - "name": "TALLER DE ACTUALIZACIÓN SOBRE GESTIÓN DE RIESGOS HIDROMETEOROLÓGICOS", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6979957, - "name": "HERRAMIENTAS DE ANÁLISIS Y PLANIFICACIÓN DE PROTECCIÓN CIVIL EN INCENDIOS FORESTALES", - "editionVersion": [ - { - "id": 6979959, - "startDate": "2018-12-31T00:00:00", - "endDate": "2018-12-31T00:00:00", - "totalVacancies": 20, - "totalReserved": 0, - "totalNumberOfHours": 25, - "totalInitialBudget": 3500, - "coordinador": "Julio César Ramos Fernández", - "state": "Anulada" - } - ], - "totalVacancies": 20, - "totalReserved": 0, - "totalNumberOfHours": 25, - "totalInitialBudget": 3500 - }, - { - "id": 6980098, - "name": "FENÓMENOS METEOROLÓGICOS ADVERSOS. NEVADAS EN EL SURESTE ESPAÑOL", - "editionVersion": [ - { - "id": 6980101, - "startDate": "2018-04-11T00:00:00", - "endDate": "2018-04-12T00:00:00", - "totalVacancies": 25, - "totalReserved": 0, - "totalNumberOfHours": 20, - "totalInitialBudget": 2000, - "coordinador": "Elías Salvador Atienza", - "state": "Cerrada" - } - ], - "totalVacancies": 25, - "totalReserved": 0, - "totalNumberOfHours": 20, - "totalInitialBudget": 2000 - }, - { - "id": 6980104, - "name": "ACTUACIÓN DE PROTECCIÓN CIVIL ANTE EL RIESGO DE INUNDACIONES EN CASTILLA-LA MANCHA", - "editionVersion": [ - { - "id": 6980106, - "startDate": "2018-11-05T00:00:00", - "endDate": "2018-11-07T00:00:00", - "totalVacancies": 25, - "totalReserved": 0, - "totalNumberOfHours": 20, - "totalInitialBudget": 2000, - "coordinador": "Valentín del Hierro Rodrigo", - "state": "Cerrada" - } - ], - "totalVacancies": 25, - "totalReserved": 0, - "totalNumberOfHours": 20, - "totalInitialBudget": 2000 - } - ], - "totalVacancies": 180, - "totalReserved": 10, - "totalNumberOfHours": 208, - "totalInitialBudget": 19800 - }, - { - "id": 6867691, - "name": "2.4 Conocimiento y Análisis de Riesgos Tecnológicos.", - "trainingActivityVersion": [ - { - "id": 6867692, - "name": "CURSO DE RIESGO DE INCENDIOS EN EDIFICIOS (Módulo I). (Nivel II).", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6867693, - "name": "CURSO DE RIESGO DE INCENDIOS EN EDIFICIOS (Módulo II). (Nivel III).", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6867694, - "name": "CURSO DE RIESGOS TECNOLÓGICOS: MÓDULO I (RIESGO QUÍMICO)", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6867695, - "name": "CURSO DE RIESGOS TECNOLÓGICOS: MÓDULO II (RIESGO RADIOLÓGICO)", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6867696, - "name": "EVALUACIÓN DE RIESGOS TECNOLÓGICOS", - "editionVersion": [ - { - "id": 6867697, - "startDate": "2018-09-24T00:00:00", - "endDate": "2018-09-28T00:00:00", - "totalVacancies": 25, - "totalReserved": 0, - "totalNumberOfHours": 35, - "totalInitialBudget": 5800, - "coordinador": "Valeriano Ortega Miravalles", - "state": "Cerrada" - } - ], - "totalVacancies": 25, - "totalReserved": 0, - "totalNumberOfHours": 35, - "totalInitialBudget": 5800 - }, - { - "id": 6867782, - "name": "JORNADA TÉCNICA SOBRE LA BASE NACIONAL DE DATOS SOBRE RIESGO QUÍMICO (BARQUIM)", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6867783, - "name": "JORNADA TÉCNICA SOBRE LA PROTECCIÓN CIVIL ANTE EL RIESGO QUÍMICO: EXPERIENCIAS Y PERSPECTIVAS DE FUTURO", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6867784, - "name": "RIESGOS TECNOLÓGICOS: MÓDULO III (RIESGO EN EL TRANSPORTE DE MERCANCÍAS PELIGROSAS)", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6867845, - "name": "RIESGOS TECNOLÓGICOS: MÓDULO IV (APLICACIONES PRÁCTICAS)", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6867912, - "name": "TALLER DE ACTUALIZACIÓN SOBRE GESTIÓN DEL RIESGO QUÍMICO", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - } - ], - "totalVacancies": 25, - "totalReserved": 0, - "totalNumberOfHours": 35, - "totalInitialBudget": 5800 - }, - { - "id": 6867913, - "name": "2.5 Conocimiento y Análisis de Riesgos Sociales.", - "trainingActivityVersion": [ - { - "id": 6867914, - "name": "ANÁLISIS Y GESTIÓN DE RIESGOS EN GRANDES CONCENTRACIONES HUMANAS", - "editionVersion": [ - { - "id": 6867915, - "startDate": "2018-05-29T00:00:00", - "endDate": "2018-06-01T00:00:00", - "totalVacancies": 30, - "totalReserved": 6, - "totalNumberOfHours": 24, - "totalInitialBudget": 2250, - "coordinador": "Fernando Talavera Esteso", - "state": "Cerrada" - } - ], - "totalVacancies": 30, - "totalReserved": 6, - "totalNumberOfHours": 24, - "totalInitialBudget": 2250 - }, - { - "id": 6867949, - "name": "COLABORACIÓN DEL VOLUNTARIADO DE P. C. EN DISPOSITIVOS ANTE GRANDES CONCENTRACIONES HUMANAS", - "editionVersion": [ - { - "id": 6867950, - "startDate": "2018-05-25T00:00:00", - "endDate": "2018-05-27T00:00:00", - "totalVacancies": 24, - "totalReserved": 0, - "totalNumberOfHours": 20, - "totalInitialBudget": 3500, - "coordinador": "Araceli Ruiz Anca", - "state": "Cerrada" - } - ], - "totalVacancies": 24, - "totalReserved": 0, - "totalNumberOfHours": 20, - "totalInitialBudget": 3500 - }, - { - "id": 6867974, - "name": "CURSO DE COLABORACIÓN DEL VOLUNTARIADO DE P. C. EN DISPOSITIVOS ANTE GRANDES CONCENTRACIONES HUMANAS", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6867975, - "name": "CURSO DE INGRESO AL VOLUNTARIADO DE PROTECCIÓN CIVIL EN CASTILLA Y LEÓN", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6867976, - "name": "JORNADA TÉCNICA SOBRE EL MARCO NORMATIVO Y LA PLANIFICACIÓN DE PROTECCIÓN CIVIL EN GRANDES CONCENTRACIONES HUMANAS. (Nivel III).", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - } - ], - "totalVacancies": 54, - "totalReserved": 6, - "totalNumberOfHours": 44, - "totalInitialBudget": 5750 - }, - { - "id": 6867977, - "name": "2.6 Herramientas para Análisis de Riesgos.", - "trainingActivityVersion": [ - { - "id": 6867978, - "name": "CARTOGRAFÍA BÁSICA APLICADA A PROTECCIÓN CIVIL", - "editionVersion": [ - { - "id": 6867979, - "startDate": "2018-05-07T00:00:00", - "endDate": "2018-05-11T00:00:00", - "totalVacancies": 20, - "totalReserved": 3, - "totalNumberOfHours": 30, - "totalInitialBudget": 3300, - "coordinador": "Francisco Javier Frutos Gonzalez", - "state": "Cerrada" - } - ], - "totalVacancies": 20, - "totalReserved": 3, - "totalNumberOfHours": 30, - "totalInitialBudget": 3300 - }, - { - "id": 6868035, - "name": "CURSO DE HERRAMIENTAS GIS PARA EL ANÁLISIS DE RIESGOS. MÓDULO I", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6868036, - "name": "CURSO DE HERRAMIENTAS GIS PARA EL ANÁLISIS DE RIESGOS. MÓDULO II", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6868037, - "name": "INTRODUCCIÓN A LA INFORMACIÓN GEOGRÁFICA DIGITAL", - "editionVersion": [ - { - "id": 6980147, - "startDate": "2018-12-17T00:00:00", - "endDate": "2018-12-31T00:00:00", - "totalVacancies": 20, - "totalReserved": 0, - "totalNumberOfHours": 15, - "totalInitialBudget": 0, - "coordinador": "Roberto Martínez-Alegría López", - "state": "Anulada" - } - ], - "totalVacancies": 20, - "totalReserved": 0, - "totalNumberOfHours": 15, - "totalInitialBudget": 0 - }, - { - "id": 6868038, - "name": "HERRAMIENTAS GIS APLICADAS A LAS ACTUACIONES DE PROTECCIÓN CIVIL", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6868107, - "name": "HERRAMIENTAS GIS PARA EL ANÁLISIS DE RIESGOS. SEMIPRESENCIAL", - "editionVersion": [ - { - "id": 6868108, - "startDate": "2018-03-05T00:00:00", - "endDate": "2018-06-01T00:00:00", - "totalVacancies": 35, - "totalReserved": 1, - "totalNumberOfHours": 90, - "totalInitialBudget": 3380, - "coordinador": "Mercedes Vallejo Bombín", - "state": "Cerrada" - } - ], - "totalVacancies": 35, - "totalReserved": 1, - "totalNumberOfHours": 90, - "totalInitialBudget": 3380 - }, - { - "id": 6868309, - "name": "INFORMACIÓN GEOGRÁFICA DIGITAL Y SU APLICACIÓN EN PROTECCIÓN CIVIL Y EMERGENCIAS. DATOS ABIERTOS DE LA ADMÓN. PUBLICA", - "editionVersion": [ - { - "id": 6868310, - "startDate": "2018-10-08T00:00:00", - "endDate": "2018-10-11T00:00:00", - "totalVacancies": 18, - "totalReserved": 6, - "totalNumberOfHours": 28, - "totalInitialBudget": 3600, - "coordinador": "Mercedes Vallejo Bombín", - "state": "Cerrada" - } - ], - "totalVacancies": 18, - "totalReserved": 6, - "totalNumberOfHours": 28, - "totalInitialBudget": 3600 - }, - { - "id": 6868359, - "name": "INTERPRETACIÓN GEOMORFOLÓGICA DE ZONAS DE ALTO RIESGO DE INUNDACIÓN", - "editionVersion": [ - { - "id": 6868360, - "startDate": "2018-09-18T00:00:00", - "endDate": "2018-09-20T00:00:00", - "totalVacancies": 15, - "totalReserved": 0, - "totalNumberOfHours": 15, - "totalInitialBudget": 2500, - "coordinador": "Angela Potenciano de las Heras", - "state": "Anulada" - } - ], - "totalVacancies": 15, - "totalReserved": 0, - "totalNumberOfHours": 15, - "totalInitialBudget": 2500 - }, - { - "id": 6868361, - "name": "JORNADA INTERNACIONAL SOBRE EVALUACIÓN DEL RIESGO EN MOVIMIENTOS DEL TERRENO (PROYECTO DORIS). (Nivel III)", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6868362, - "name": "MODELOS DE SIMULACIÓN APLICADOS AL ANÁLISIS DEL RIESGO SÍSMICO Y VOLCÁNICO", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6868366, - "name": "MODELOS DE SIMULACION APLICADOS AL ANALISIS DEL RIESGO VOLCANICO", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6868367, - "name": "MODELOS DE SIMULACIÓN HIDROLÓGICA E HIDRÁULICA APLICADOS AL ANÁLISIS DEL RIESGO POR INUNDACIÓN", - "editionVersion": [ - { - "id": 6868368, - "startDate": "2018-06-04T00:00:00", - "endDate": "2018-06-08T00:00:00", - "totalVacancies": 25, - "totalReserved": 3, - "totalNumberOfHours": 30, - "totalInitialBudget": 4200, - "coordinador": "Angela Potenciano de las Heras", - "state": "Cerrada" - } - ], - "totalVacancies": 25, - "totalReserved": 3, - "totalNumberOfHours": 30, - "totalInitialBudget": 4200 - }, - { - "id": 6868442, - "name": "SEMINARIO DE SEGUIMIENTO DE RESULTADOS DEL PROYECTO DORIS Y LAMPRE", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6868443, - "name": "UTILIZACIÓN DE TELEDETECCIÓN EN LA GESTIÓN DE RIESGOS NATURALES EN PROTECCIÓN CIVIL", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6975970, - "name": "JORNADA SOBRE SISTEMAS DE INFORMACIÓN GEOGRÁFICA EN PROTECCIÓN CIVIL (PENBU)", - "editionVersion": [ - { - "id": 6975973, - "startDate": "2018-09-26T00:00:00", - "endDate": "2018-09-26T00:00:00", - "totalVacancies": 20, - "totalReserved": 0, - "totalNumberOfHours": 5, - "totalInitialBudget": 378, - "coordinador": "Javier Basconcillos Arce", - "state": "Cerrada" - } - ], - "totalVacancies": 20, - "totalReserved": 0, - "totalNumberOfHours": 5, - "totalInitialBudget": 378 - } - ], - "totalVacancies": 153, - "totalReserved": 13, - "totalNumberOfHours": 213, - "totalInitialBudget": 17358 - }, - { - "id": 6868445, - "name": "2.8 Educación (valores) para la Prevención.", - "trainingActivityVersion": [ - { - "id": 6868446, - "name": "ACTUACIÓN EN EMERGENCIAS CON PERSONAS CON DISCAPACIDAD", - "editionVersion": [ - { - "id": 6868447, - "startDate": "2018-05-03T00:00:00", - "endDate": "2018-05-03T00:00:00", - "totalVacancies": 40, - "totalReserved": 2, - "totalNumberOfHours": 6, - "totalInitialBudget": 0, - "coordinador": "Francisco Canes Domenech", - "state": "Cerrada" - }, - { - "id": 6868450, - "startDate": "2018-11-07T00:00:00", - "endDate": "2018-11-07T00:00:00", - "totalVacancies": 40, - "totalReserved": 0, - "totalNumberOfHours": 6, - "totalInitialBudget": 0, - "coordinador": "Francisco Canes Domenech", - "state": "Anulada" - } - ], - "totalVacancies": 80, - "totalReserved": 2, - "totalNumberOfHours": 12, - "totalInitialBudget": 0 - }, - { - "id": 6868454, - "name": "CURSO DE PROCEDIMIENTOS PARA LA GESTION DE LA DOCENCIA EN LA ENPC", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6868455, - "name": "CURSO EALEARNING SOBRE RIESGOS PETROLÍFEROS", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6868456, - "name": "CURSO SOBRE EL SISTEMA NACIONAL DE PROTECCIÓN CIVIL PARA FORMADORES DE VOLUNTARIOS DE PROTECCIÓN CIVIL", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6868457, - "name": "CURSO SOBRE FORMACIÓN EN PROCEDIMIENTOS ESTANDARIZADOS PARA EJERCICIOS PRÁCTICOS DE LA ENPC", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6868458, - "name": "CURSO SOBRE FORMACIÓN EN PROCEDIMIENTOS ESTANDARIZADOS PARA EJERCICIOS PRÁCTICOS DE LA ENPC NIVEL I", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6868459, - "name": "FOMENTO DE LA CULTURA PREVENTIVA EN ESCOLARES", - "editionVersion": [ - { - "id": 6868460, - "startDate": "2018-04-07T00:00:00", - "endDate": "2018-04-08T00:00:00", - "totalVacancies": 30, - "totalReserved": 0, - "totalNumberOfHours": 15, - "totalInitialBudget": 2000, - "coordinador": "Juan Antonio Iborra Bernal", - "state": "Cerrada" - } - ], - "totalVacancies": 30, - "totalReserved": 0, - "totalNumberOfHours": 15, - "totalInitialBudget": 2000 - }, - { - "id": 6868481, - "name": "FORMACIÓN EN METODOLOGÍA TECNOLOGÍA E-LEARNING PARA ACTIVIDADES FORMATIVAS DE LA ENPC", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6868544, - "name": "FORMACIÓN PARA LA DOCENCIA PARA PERSONAL DOCENTE DE PROTECCIÓN CIVIL", - "editionVersion": [ - { - "id": 6868545, - "startDate": "2018-12-31T00:00:00", - "endDate": "2018-12-31T00:00:00", - "totalVacancies": 40, - "totalReserved": 0, - "totalNumberOfHours": 70, - "totalInitialBudget": 8400, - "coordinador": "Araceli Ruiz Anca", - "state": "Anulada" - } - ], - "totalVacancies": 40, - "totalReserved": 0, - "totalNumberOfHours": 70, - "totalInitialBudget": 8400 - }, - { - "id": 6868546, - "name": "PREVENCIÓN DE ACCIDENTES DE TRÁFICO Y LA ATENCIÓN MULTIDISCIPLINAR A LAS VÍCTIMAS, FAMILIARES Y ENTORNO", - "editionVersion": [ - { - "id": 6868547, - "startDate": "2018-12-03T00:00:00", - "endDate": "2018-12-04T00:00:00", - "totalVacancies": 40, - "totalReserved": 0, - "totalNumberOfHours": 16, - "totalInitialBudget": 4906, - "coordinador": "Francisco Canes Domenech", - "state": "Anulada" - } - ], - "totalVacancies": 40, - "totalReserved": 0, - "totalNumberOfHours": 16, - "totalInitialBudget": 4906 - }, - { - "id": 6868579, - "name": "REUNIÓN TÉCNICA SOBRE FORMACIÓN EN PROCEDIMIENTOS ESTANDARIZADOS PARA EJERCICIOS PRÁCTICOS DE LA ENPC", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6868659, - "name": "SEMANA DE LA AUTOPROTECCIÓN DE ESCOLARES", - "editionVersion": [ - { - "id": 6868660, - "startDate": "2018-04-16T00:00:00", - "endDate": "2018-04-21T00:00:00", - "totalVacancies": 1500, - "totalReserved": 999, - "totalNumberOfHours": 35, - "totalInitialBudget": 16300, - "coordinador": "Sergio García Batanero", - "state": "Cerrada" - } - ], - "totalVacancies": 1500, - "totalReserved": 999, - "totalNumberOfHours": 35, - "totalInitialBudget": 16300 - } - ], - "totalVacancies": 1690, - "totalReserved": 1001, - "totalNumberOfHours": 148, - "totalInitialBudget": 31606 - } - ], - "totalVacancies": 2212, - "totalReserved": 1045, - "totalNumberOfHours": 748, - "totalInitialBudget": 85714 - }, - { - "id": 6868668, - "name": "3 PLANIFICACIÓN DE PROTECCIÓN CIVIL", - "submoduleVersion": [ - { - "id": 6868669, - "name": "3.2 Diseño y Elaboración de Planes.", - "trainingActivityVersion": [ - { - "id": 6868670, - "name": "DISEÑO E IMPLANTACIÓN DE PLANES DE AUTOPROTECCIÓN EN EDIFICIOS E INSTALACIONES INDUSTRIALES", - "editionVersion": [ - { - "id": 6868671, - "startDate": "2018-03-12T00:00:00", - "endDate": "2018-03-23T00:00:00", - "totalVacancies": 25, - "totalReserved": 16, - "totalNumberOfHours": 65, - "totalInitialBudget": 5088, - "coordinador": "María Josefa Granada Ferrero", - "state": "Cerrada" - } - ], - "totalVacancies": 25, - "totalReserved": 16, - "totalNumberOfHours": 65, - "totalInitialBudget": 5088 - }, - { - "id": 6868765, - "name": "DISEÑO Y PLANIFICACIÓN DE EMERGENCIAS EN EDIFICIOS E INSTALACIONES", - "editionVersion": [ - { - "id": 6868766, - "startDate": "2018-06-04T00:00:00", - "endDate": "2018-06-08T00:00:00", - "totalVacancies": 30, - "totalReserved": 2, - "totalNumberOfHours": 25, - "totalInitialBudget": 2050, - "coordinador": "Cristina Mónica Toboso Muelas", - "state": "Cerrada" - } - ], - "totalVacancies": 30, - "totalReserved": 2, - "totalNumberOfHours": 25, - "totalInitialBudget": 2050 - }, - { - "id": 6868800, - "name": "JORNADA TÉCNICA DE ELABORACIÓN Y ANÁLISIS DE PLANES DE EMERGENCIA Y AUTOPROTECCIÓN. (Nivel I)", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6868801, - "name": "JORNADA TÉCNICA DE NOVEDADES SOBRE PLANIFICACIÓN DE PROTECCIÓN CIVIL ANTE LOS RIESGOS NUCLEAR Y RADIOLÓGICO", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6979961, - "name": "PREVENCIÓN Y PLANIFICACIÓN DE RIESGOS TECNOLÓGICOS", - "editionVersion": [ - { - "id": 6979963, - "startDate": "2018-12-31T00:00:00", - "endDate": "2018-12-31T00:00:00", - "totalVacancies": 25, - "totalReserved": 0, - "totalNumberOfHours": 35, - "totalInitialBudget": 4800, - "coordinador": "Valeriano Ortega Miravalles", - "state": "Anulada" - } - ], - "totalVacancies": 25, - "totalReserved": 0, - "totalNumberOfHours": 35, - "totalInitialBudget": 4800 - }, - { - "id": 6980142, - "name": "PLANES DE AUTOPROTECCIÓN Y EMERGENCIA EN EDIFICIOS PÚBLICOS", - "editionVersion": [ - { - "id": 6980144, - "startDate": "2018-12-31T00:00:00", - "endDate": "2018-12-31T00:00:00", - "totalVacancies": 25, - "totalReserved": 0, - "totalNumberOfHours": 20, - "totalInitialBudget": 2000, - "coordinador": " ", - "state": "Anulada" - } - ], - "totalVacancies": 25, - "totalReserved": 0, - "totalNumberOfHours": 20, - "totalInitialBudget": 2000 - }, - { - "id": 6980375, - "name": "PLANIFICACIÓN DE PROTECCIÓN CIVIL EN RIESGOS NATURALES", - "editionVersion": [ - { - "id": 6980377, - "startDate": "2018-06-25T00:00:00", - "endDate": "2018-06-28T00:00:00", - "totalVacancies": 25, - "totalReserved": 0, - "totalNumberOfHours": 25, - "totalInitialBudget": 3000, - "coordinador": "Mercedes Vallejo Bombín", - "state": "Cerrada" - } - ], - "totalVacancies": 25, - "totalReserved": 0, - "totalNumberOfHours": 25, - "totalInitialBudget": 3000 - } - ], - "totalVacancies": 130, - "totalReserved": 18, - "totalNumberOfHours": 170, - "totalInitialBudget": 16938 - }, - { - "id": 6868802, - "name": "3.3 Gestión e Implantación de Planes.", - "trainingActivityVersion": [ - { - "id": 6868803, - "name": "GESTIÓN DEL RIESGO DE INUNDACIONES: IMPLANTACIÓN DE NUEVAS NORMATIVAS", - "editionVersion": [ - { - "id": 6868804, - "startDate": "2018-11-26T00:00:00", - "endDate": "2018-11-30T00:00:00", - "totalVacancies": 30, - "totalReserved": 2, - "totalNumberOfHours": 35, - "totalInitialBudget": 3000, - "coordinador": "Estrella Romero Cordón", - "state": "Cerrada" - } - ], - "totalVacancies": 30, - "totalReserved": 2, - "totalNumberOfHours": 35, - "totalInitialBudget": 3000 - }, - { - "id": 6868851, - "name": "II JORNADA TÉCNICA SOBRE PLANES DE AUTOPROTECCIÓN DE CENTROS ESCOLARES EN EL ÁMBITO TERRITORIAL DE LOS PLANES DE EMERGENCIA NUCLEAR", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6868852, - "name": "JORNADA SOBRE INVESTIGACIÓN DE CAUSAS EN LOS PLANES DE PROTECCIÓN CIVIL DE INCENDIOS FORESTALES. ASPECTOS PENALES Y PROCESALES", - "editionVersion": [ - { - "id": 6868853, - "startDate": "2018-05-16T00:00:00", - "endDate": "2018-05-17T00:00:00", - "totalVacancies": 30, - "totalReserved": 0, - "totalNumberOfHours": 10, - "totalInitialBudget": 808, - "coordinador": "Sofía González López", - "state": "Cerrada" - } - ], - "totalVacancies": 30, - "totalReserved": 0, - "totalNumberOfHours": 10, - "totalInitialBudget": 808 - }, - { - "id": 6868873, - "name": "JORNADA TÉCNICA SOBRE LOS PLANES DE COORDINACIÓN Y APOYO: INSTRUMENTOS PARA LA GESTIÓN DE EMERGENCIAS", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6868874, - "name": "METODOLOGÍAS DE ORGANIZACIÓN Y PLANIFICACIÓN DE EJERCICIOS Y SIMULACROS", - "editionVersion": [ - { - "id": 6868875, - "startDate": "2018-04-17T00:00:00", - "endDate": "2018-04-19T00:00:00", - "totalVacancies": 25, - "totalReserved": 4, - "totalNumberOfHours": 24, - "totalInitialBudget": 1200, - "coordinador": "Miguel Tomé de la Vega", - "state": "Cerrada" - } - ], - "totalVacancies": 25, - "totalReserved": 4, - "totalNumberOfHours": 24, - "totalInitialBudget": 1200 - }, - { - "id": 6979965, - "name": "JORNADA SOBRE IMPLANTACIÓN DE PLANES DE EMRGENCIA EN PRESAS", - "editionVersion": [ - { - "id": 6980095, - "startDate": "2018-02-14T00:00:00", - "endDate": "2018-02-14T00:00:00", - "totalVacancies": 40, - "totalReserved": 0, - "totalNumberOfHours": 5, - "totalInitialBudget": 1500, - "coordinador": "Rosa María Torres Saavedra", - "state": "Cerrada" - }, - { - "id": 6980096, - "startDate": "2018-05-09T00:00:00", - "endDate": "2018-05-09T00:00:00", - "totalVacancies": 40, - "totalReserved": 0, - "totalNumberOfHours": 5, - "totalInitialBudget": 1500, - "coordinador": "Rosa María Torres Saavedra", - "state": "Cerrada" - } - ], - "totalVacancies": 80, - "totalReserved": 0, - "totalNumberOfHours": 10, - "totalInitialBudget": 3000 - }, - { - "id": 6980196, - "name": "JORNADA TÉCNICA SOBRE IMPLANTACIÓN Y APLICACION DE LOS PLANES DE EMERGENCIA EXTERIOR DEL SECTOR QUÍMICO", - "editionVersion": [ - { - "id": 6980198, - "startDate": "2018-12-04T00:00:00", - "endDate": "2018-12-04T00:00:00", - "totalVacancies": 40, - "totalReserved": 0, - "totalNumberOfHours": 6, - "totalInitialBudget": 5279, - "coordinador": "Valeriano Ortega Miravalles", - "state": "Cerrada" - } - ], - "totalVacancies": 40, - "totalReserved": 0, - "totalNumberOfHours": 6, - "totalInitialBudget": 5279 - } - ], - "totalVacancies": 205, - "totalReserved": 6, - "totalNumberOfHours": 85, - "totalInitialBudget": 13287 - }, - { - "id": 6868940, - "name": "3.1 Fundamentos de la Planificación", - "trainingActivityVersion": [ - { - "id": 6868941, - "name": "CURSO SOBRE PLANES DE EMERGENCIA PARA PERSONAL DE LOS ÓRGANOS DIRECTIVOS DE LA AGE", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6868942, - "name": "PLANIFICACIÓN DE PROTECCIÓN CIVIL ONLINE", - "editionVersion": [ - { - "id": 6868943, - "startDate": "2018-09-12T00:00:00", - "endDate": "2018-12-10T00:00:00", - "totalVacancies": 60, - "totalReserved": 12, - "totalNumberOfHours": 110, - "totalInitialBudget": 8000, - "coordinador": "Mercedes Vallejo Bombín", - "state": "Anulada" - } - ], - "totalVacancies": 60, - "totalReserved": 12, - "totalNumberOfHours": 110, - "totalInitialBudget": 8000 - } - ], - "totalVacancies": 60, - "totalReserved": 12, - "totalNumberOfHours": 110, - "totalInitialBudget": 8000 - } - ], - "totalVacancies": 395, - "totalReserved": 36, - "totalNumberOfHours": 365, - "totalInitialBudget": 38225 - }, - { - "id": 6868945, - "name": "4 OPERACIONES EN EMERGENCIAS DE P.C", - "submoduleVersion": [ - { - "id": 6868946, - "name": "4.1 Dirección y Gestión de las Intervenciones.", - "trainingActivityVersion": [ - { - "id": 6868947, - "name": "COORDINACIÓN Y GESTIÓN DE EMERGENCIAS", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6869034, - "name": "CURSO DE DIRECCIÓN Y GESTIÓN DE EMERGENCIAS: OPERACIÓN Y CONTROL. (Nivel II).", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6869035, - "name": "CURSO DE METODOLOGÍAS DE GESTION OPERATIVA Y COMANDO", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6869036, - "name": "CURSO DE OPERACIONES DE EXTINCIÓN DE INCENDIOS FORESTALES PARA JEFES DE BIEM", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6869037, - "name": "DIRECCIÓN DE OPERACIONES DE EXTINCIÓN DE INCENDIOS FORESTALES MODULO I", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6869126, - "name": "DIRECCIÓN DE OPERACIONES DE EXTINCIÓN DE INCENDIOS FORESTALES MODULO II", - "editionVersion": [ - { - "id": 6972374, - "startDate": "2018-02-05T00:00:00", - "endDate": "2018-02-16T00:00:00", - "totalVacancies": 22, - "totalReserved": 22, - "totalNumberOfHours": 56, - "totalInitialBudget": 9300, - "coordinador": "Julio César Ramos Fernández", - "state": "Cerrada" - } - ], - "totalVacancies": 22, - "totalReserved": 22, - "totalNumberOfHours": 56, - "totalInitialBudget": 9300 - }, - { - "id": 6869127, - "name": "DIRECCIÓN Y GESTIÓN DE EMERGENCIAS: EVALUACIÓN, COMUNICACIÓN Y COORDINACIÓN", - "editionVersion": [ - { - "id": 6869128, - "startDate": "2018-04-02T00:00:00", - "endDate": "2018-04-06T00:00:00", - "totalVacancies": 21, - "totalReserved": 9, - "totalNumberOfHours": 35, - "totalInitialBudget": 5000, - "coordinador": "María Vara Moral", - "state": "Cerrada" - } - ], - "totalVacancies": 21, - "totalReserved": 9, - "totalNumberOfHours": 35, - "totalInitialBudget": 5000 - }, - { - "id": 6869207, - "name": "GOM II. GESTIÓN OPERATIVA Y MANDO PUESTO DE MANDO AVANZADO, HERAMIENTAS DE GESTIÓN DE UN PMA", - "editionVersion": [ - { - "id": 6869208, - "startDate": "2018-11-26T00:00:00", - "endDate": "2018-11-30T00:00:00", - "totalVacancies": 12, - "totalReserved": 0, - "totalNumberOfHours": 30, - "totalInitialBudget": 3300, - "coordinador": "Pablo Calvo Barrios", - "state": "Anulada" - } - ], - "totalVacancies": 12, - "totalReserved": 0, - "totalNumberOfHours": 30, - "totalInitialBudget": 3300 - }, - { - "id": 6869246, - "name": "GESTIÓN OPERATIVA Y COMANDO MÓDULO III (FORESTAL)", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6869338, - "name": "GESTIÓN OPERATIVA Y MANDO. HERRAMIENTAS DE GESTIÓN DE CRISIS EN UN PUESTO DE MANDO", - "editionVersion": [ - { - "id": 6869339, - "startDate": "2018-10-09T00:00:00", - "endDate": "2018-10-11T00:00:00", - "totalVacancies": 18, - "totalReserved": 2, - "totalNumberOfHours": 21, - "totalInitialBudget": 4000, - "coordinador": "Emilio Leo Ferrando", - "state": "Cerrada" - } - ], - "totalVacancies": 18, - "totalReserved": 2, - "totalNumberOfHours": 21, - "totalInitialBudget": 4000 - }, - { - "id": 6869367, - "name": "INTERMEDIO DE DIRECCIÓN DE EXTINCIÓN DE INCENDIOS FORESTALES", - "editionVersion": [ - { - "id": 6869368, - "startDate": "2018-11-12T00:00:00", - "endDate": "2018-11-23T00:00:00", - "totalVacancies": 22, - "totalReserved": 22, - "totalNumberOfHours": 56, - "totalInitialBudget": 9790, - "coordinador": "Paula Raboso Campos", - "state": "Cerrada" - } - ], - "totalVacancies": 22, - "totalReserved": 22, - "totalNumberOfHours": 56, - "totalInitialBudget": 9790 - }, - { - "id": 6869525, - "name": " JORNADA TÉCNICA SOBRE LA NORMA ISO 22320 SOBRE GESTIÓN DE EMERGENCIAS", - "editionVersion": [ - { - "id": 6869526, - "startDate": "2018-02-27T00:00:00", - "endDate": "2018-02-27T00:00:00", - "totalVacancies": 40, - "totalReserved": 20, - "totalNumberOfHours": 4, - "totalInitialBudget": 1500, - "coordinador": "Luis Sáenz de San Pedro Alba", - "state": "Anulada" - } - ], - "totalVacancies": 40, - "totalReserved": 20, - "totalNumberOfHours": 4, - "totalInitialBudget": 1500 - }, - { - "id": 6869528, - "name": "JORNADA TÉCNICA HISPANO-LUSA SOBRE METODOLOGÍA DE GESTIÓN OPERATIVA EN INCENDIOS FORESTALES. SITUACIONES TRANSFRONTERIZAS", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6869529, - "name": "JORNADA TÉCNICA SOBRE GESTIÓN OPERATIVA DE EMERGENCIAS", - "editionVersion": [ - { - "id": 6869530, - "startDate": "2018-12-31T00:00:00", - "endDate": "2018-12-31T00:00:00", - "totalVacancies": 40, - "totalReserved": 40, - "totalNumberOfHours": 7, - "totalInitialBudget": 1500, - "coordinador": "Luis Sáenz de San Pedro Alba", - "state": "Anulada" - } - ], - "totalVacancies": 40, - "totalReserved": 40, - "totalNumberOfHours": 7, - "totalInitialBudget": 1500 - }, - { - "id": 6869532, - "name": "PLANIFICACIÓN Y GESTIÓN DE EMERGENCIAS SÍSMICAS", - "editionVersion": [ - { - "id": 6869533, - "startDate": "2018-04-09T00:00:00", - "endDate": "2018-04-13T00:00:00", - "totalVacancies": 40, - "totalReserved": 0, - "totalNumberOfHours": 35, - "totalInitialBudget": 4000, - "coordinador": "Estrella Romero Cordón", - "state": "Cerrada" - } - ], - "totalVacancies": 40, - "totalReserved": 0, - "totalNumberOfHours": 35, - "totalInitialBudget": 4000 - }, - { - "id": 6980133, - "name": "GOM 0. CONCEPTOS GENERALES DE GESTIÓN OPERATIVA Y MANDO. ONLINE", - "editionVersion": [ - { - "id": 6980135, - "startDate": "2018-12-31T00:00:00", - "endDate": "2018-12-31T00:00:00", - "totalVacancies": 40, - "totalReserved": 0, - "totalNumberOfHours": 40, - "totalInitialBudget": 3000, - "coordinador": "Pablo Calvo Barrios", - "state": "Anulada" - } - ], - "totalVacancies": 40, - "totalReserved": 0, - "totalNumberOfHours": 40, - "totalInitialBudget": 3000 - }, - { - "id": 6980137, - "name": "GOM I. GESTIÓN OPERATIVA Y MANDO JEFES DE GRUPO", - "editionVersion": [ - { - "id": 6980139, - "startDate": "2018-12-31T00:00:00", - "endDate": "2018-12-31T00:00:00", - "totalVacancies": 12, - "totalReserved": 0, - "totalNumberOfHours": 32, - "totalInitialBudget": 5000, - "coordinador": "Pablo Calvo Barrios", - "state": "Anulada" - }, - { - "id": 6980140, - "startDate": "2018-12-31T00:00:00", - "endDate": "2018-12-31T00:00:00", - "totalVacancies": 12, - "totalReserved": 0, - "totalNumberOfHours": 32, - "totalInitialBudget": 5000, - "coordinador": "Pablo Calvo Barrios", - "state": "Anulada" - } - ], - "totalVacancies": 24, - "totalReserved": 0, - "totalNumberOfHours": 64, - "totalInitialBudget": 10000 - } - ], - "totalVacancies": 279, - "totalReserved": 115, - "totalNumberOfHours": 348, - "totalInitialBudget": 51390 - }, - { - "id": 6869591, - "name": "4.2 Rescate y Salvamento.", - "trainingActivityVersion": [ - { - "id": 6869592, - "name": "ACTUACIÓN EN EMERGENCIAS PARA SERVICIOS ESPECIALES DE SEGURIDAD", - "editionVersion": [ - { - "id": 6869593, - "startDate": "2018-04-06T00:00:00", - "endDate": "2018-04-13T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 32, - "totalInitialBudget": 5900, - "coordinador": "Raúl Mollar Martín", - "state": "Cerrada" - } - ], - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 32, - "totalInitialBudget": 5900 - }, - { - "id": 6869739, - "name": "COORDINACIÓN DE INTERVINIENTES ANTE UN ACCIDENTE DE TRÁFICO", - "editionVersion": [ - { - "id": 6869740, - "startDate": "2018-03-02T00:00:00", - "endDate": "2018-03-03T00:00:00", - "totalVacancies": 25, - "totalReserved": 0, - "totalNumberOfHours": 15, - "totalInitialBudget": 2575, - "coordinador": "Máximo Javier López Miralles", - "state": "Cerrada" - } - ], - "totalVacancies": 25, - "totalReserved": 0, - "totalNumberOfHours": 15, - "totalInitialBudget": 2575 - }, - { - "id": 6869778, - "name": "CURSO AVANZADO DE EXTINCIÓN DE INCENDIOS, BÚSQUEDA Y RESCATE EN ESPACIOS CONFINADOS PARA CUERPOS DE SEGURIDAD EN SITUACIONES DE EMERGENCIA", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6869779, - "name": "CURSO BÁSICO DE PROTOCOLOS DE ACTUACIÓN EN EMERGENCIAS PARA SERVICIOS ESPECIALES DE SEGURIDAD", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6869780, - "name": "CURSO BASICO DE TECNICAS DE INTERVENCION Y SEGURIDAD EN ESPACIOS CONFINADOS Y EXTINCIÓN BASICA PARA CUERPOS DE SEGURIDAD EN SITUACIONES DE EMERGENCIA", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6869781, - "name": "CURSO DE APOYO EN LA BÚSQUEDA Y RESCATE DE PERSONAS EN EL MEDIO ACUÁTICO PARA VOLUNTARIOS DE PROTECCIÓN CIVIL", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6869782, - "name": "CURSO DE ESTRUCTURAS COLAPSADAS PARA INSTRUCTORES DE GRUPOS DE LA ANGPS-IRO. (Nivel II).", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6869783, - "name": "CURSO DE FORMACIÓN PARA VOLUNTARIOS DE PROTECCIÓN CIVIL. ACCIONES A TENER EN CUENTA ANTE UN ACCIDENTE DE TRÁFICO. (Nivel I)", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6869784, - "name": "CURSO DE GUÍAS CANINOS. ESPECIALISTA EN GRANDES ÁREAS. (Nivel III).", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6869785, - "name": "CURSO DE GUÍAS CANINOS. FIGURANTES - PREPARADORES DE PERROS DE RESCATE", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6869786, - "name": "CURSO DE PROTOCOLOS DE ACTUACIÓN EN EMERGENCIAS PARA SERVICIOS ESPECIALES DE SEGURIDAD", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6869787, - "name": "CURSO DE SALVAMENTO ACUÁTICO EN RÍOS Y PANTANOS PARA VOLUNTARIOS DE PROTECCIÓN CIVIL", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6869788, - "name": "CURSO DE TÉCNICAS DE SEGURIDAD E INTERVENCIÓN EN RESCATE Y SALVAMENTO EN ESTRUCTURAS COLAPSADAS. NIVEL BÁSICO. (Nivel I).", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6869789, - "name": "GUÍAS CANINOS. CAPACITACIÓN EN BÚSQUEDA Y SALVAMENTO CON PERROS DE RESCATE", - "editionVersion": [ - { - "id": 6869790, - "startDate": "2018-03-05T00:00:00", - "endDate": "2018-03-10T00:00:00", - "totalVacancies": 20, - "totalReserved": 13, - "totalNumberOfHours": 56, - "totalInitialBudget": 10413, - "coordinador": "Susana Izquierdo Funcia", - "state": "Cerrada" - } - ], - "totalVacancies": 20, - "totalReserved": 13, - "totalNumberOfHours": 56, - "totalInitialBudget": 10413 - }, - { - "id": 6869873, - "name": "GUÍAS CANINOS. ESPECIALISTA EN DESLIZAMIENTOS DEL TERRENO", - "editionVersion": [ - { - "id": 6869874, - "startDate": "2018-05-07T00:00:00", - "endDate": "2018-05-12T00:00:00", - "totalVacancies": 15, - "totalReserved": 10, - "totalNumberOfHours": 56, - "totalInitialBudget": 11614, - "coordinador": "Susana Izquierdo Funcia", - "state": "Cerrada" - } - ], - "totalVacancies": 15, - "totalReserved": 10, - "totalNumberOfHours": 56, - "totalInitialBudget": 11614 - }, - { - "id": 6869968, - "name": "GUÍAS CANINOS. ESPECIALISTA EN ESTRUCTURAS COLAPSADAS", - "editionVersion": [ - { - "id": 6980454, - "startDate": "2018-04-09T00:00:00", - "endDate": "2018-04-14T00:00:00", - "totalVacancies": 15, - "totalReserved": 11, - "totalNumberOfHours": 56, - "totalInitialBudget": 12744, - "coordinador": "Mari Luz López Arbesú", - "state": "Cerrada" - } - ], - "totalVacancies": 15, - "totalReserved": 11, - "totalNumberOfHours": 56, - "totalInitialBudget": 12744 - }, - { - "id": 6870058, - "name": "GUÍAS CANINOS. TÉCNICAS BÁSICAS DE TRABAJO VERTICAL, DESCENSO Y AUTORRESCATE PARA GUÍAS DE INTERVENCIÓN CON PERROS", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6870134, - "name": "GUÍAS DE PERROS. PRIMEROS AUXILIOS VETERINARIOS AVANZADOS PARA PERROS DE RESCATE", - "editionVersion": [ - { - "id": 7006642, - "startDate": "2018-11-30T00:00:00", - "endDate": "2018-12-02T00:00:00", - "totalVacancies": 20, - "totalReserved": 14, - "totalNumberOfHours": 20, - "totalInitialBudget": 6554, - "coordinador": "Mari Luz López Arbesú", - "state": "Anulada" - } - ], - "totalVacancies": 20, - "totalReserved": 14, - "totalNumberOfHours": 20, - "totalInitialBudget": 6554 - }, - { - "id": 6870257, - "name": "GUÍAS DE PERROS. PRIMEROS AUXILIOS VETERINARIOS BÁSICOS PARA PERROS DE RESCATE", - "editionVersion": [ - { - "id": 6980448, - "startDate": "2018-11-24T00:00:00", - "endDate": "2018-12-02T00:00:00", - "totalVacancies": 20, - "totalReserved": 0, - "totalNumberOfHours": 30, - "totalInitialBudget": 7400, - "coordinador": "Mari Luz López Arbesú", - "state": "Anulada" - }, - { - "id": 6870258, - "startDate": "2018-06-09T00:00:00", - "endDate": "2018-06-17T00:00:00", - "totalVacancies": 20, - "totalReserved": 16, - "totalNumberOfHours": 30, - "totalInitialBudget": 7400, - "coordinador": "Mari Luz López Arbesú", - "state": "Cerrada" - } - ], - "totalVacancies": 40, - "totalReserved": 16, - "totalNumberOfHours": 60, - "totalInitialBudget": 14800 - }, - { - "id": 6870330, - "name": "ORIENTACIÓN, MOVILIDAD Y RESCATE EN CONDICIONES DE BAJA O NULA VISIBILIDAD", - "editionVersion": [ - { - "id": 6870331, - "startDate": "2018-11-26T00:00:00", - "endDate": "2018-11-30T00:00:00", - "totalVacancies": 20, - "totalReserved": 0, - "totalNumberOfHours": 35, - "totalInitialBudget": 7185, - "coordinador": "Jesús Mirón Nieto", - "state": "Anulada" - } - ], - "totalVacancies": 20, - "totalReserved": 0, - "totalNumberOfHours": 35, - "totalInitialBudget": 7185 - }, - { - "id": 6870363, - "name": "SALVAMENTO ACUÁTICO PARA VOLUNTARIOS DE PROTECCIÓN CIVIL", - "editionVersion": [ - { - "id": 6870364, - "startDate": "2018-04-26T00:00:00", - "endDate": "2018-04-29T00:00:00", - "totalVacancies": 30, - "totalReserved": 0, - "totalNumberOfHours": 30, - "totalInitialBudget": 3320, - "coordinador": "Arturo Fuente Pedrejón", - "state": "Cerrada" - }, - { - "id": 6870400, - "startDate": "2018-05-17T00:00:00", - "endDate": "2018-05-20T00:00:00", - "totalVacancies": 30, - "totalReserved": 0, - "totalNumberOfHours": 30, - "totalInitialBudget": 3320, - "coordinador": "Oliva García Trasancos", - "state": "Cerrada" - }, - { - "id": 6870424, - "startDate": "2018-06-07T00:00:00", - "endDate": "2018-06-10T00:00:00", - "totalVacancies": 30, - "totalReserved": 0, - "totalNumberOfHours": 30, - "totalInitialBudget": 3320, - "coordinador": "Ramón Pérez Barrientos", - "state": "Cerrada" - } - ], - "totalVacancies": 90, - "totalReserved": 0, - "totalNumberOfHours": 90, - "totalInitialBudget": 9960 - }, - { - "id": 6870454, - "name": "TÉCNICAS DE EXTINCIÓN DE INCENDIOS, BÚSQUEDA, ORIENTACIÓN Y RESCATE EN EDIFICIOS SUBTERRANEOS PARA CUERPOS DE SEGURIDAD EN OPERACIONES ESPECIALES. AVANZADO", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6870558, - "name": "VOLADURAS CONTROLADAS PARA RESCATE", - "editionVersion": [ - { - "id": 6870559, - "startDate": "2018-10-23T00:00:00", - "endDate": "2018-10-25T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 20, - "totalInitialBudget": 5110, - "coordinador": "Sergio Tuñón Iglesias", - "state": "Cerrada" - }, - { - "id": 6870590, - "startDate": "2018-11-27T00:00:00", - "endDate": "2018-11-29T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 20, - "totalInitialBudget": 5110, - "coordinador": "Sergio Tuñón Iglesias", - "state": "Cerrada" - } - ], - "totalVacancies": 40, - "totalReserved": 40, - "totalNumberOfHours": 40, - "totalInitialBudget": 10220 - }, - { - "id": 6979913, - "name": "TÉCNICAS DE EXTINCIÓN Y SALVAMENTO EN ESPACIOS CONFINADOS EN EDIFICIOS SUBTERRÁNEOS PARA CUERPOS DE SEGURIDAD DE OPERACIONES ESPECIALES EN INFRAESTRUCTURAS CRÍTICAS", - "editionVersion": [ - { - "id": 6979916, - "startDate": "2018-02-06T00:00:00", - "endDate": "2018-02-08T00:00:00", - "totalVacancies": 14, - "totalReserved": 14, - "totalNumberOfHours": 24, - "totalInitialBudget": 4940, - "coordinador": "Daniel Arroyo Fernández", - "state": "Cerrada" - }, - { - "id": 6979918, - "startDate": "2018-02-13T00:00:00", - "endDate": "2018-02-15T00:00:00", - "totalVacancies": 14, - "totalReserved": 14, - "totalNumberOfHours": 24, - "totalInitialBudget": 4940, - "coordinador": "Daniel Arroyo Fernández", - "state": "Cerrada" - } - ], - "totalVacancies": 28, - "totalReserved": 28, - "totalNumberOfHours": 48, - "totalInitialBudget": 9880 - } - ], - "totalVacancies": 333, - "totalReserved": 152, - "totalNumberOfHours": 508, - "totalInitialBudget": 101845 - }, - { - "id": 6870600, - "name": "4.3 Intervención de Lucha Contra el Siniestro.", - "trainingActivityVersion": [ - { - "id": 6870601, - "name": "*JORNADA TÉCNICA ASELF Nº3 (PROVISIONAL)*", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6870602, - "name": "*JORNADA TÉCNICA ASELF Nº4 (PROVISIONAL)*", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6870603, - "name": "*JORNADA TÉCNICA ASELF Nº5 (PROVISIONAL)*", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6870604, - "name": "CAPACITACIÓN EN EL MANEJO DE EXTINTORES Y BIES", - "editionVersion": [ - { - "id": 6870605, - "startDate": "2018-02-08T00:00:00", - "endDate": "2018-02-08T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 6, - "totalInitialBudget": 1472, - "coordinador": "Jesús Mirón Nieto", - "state": "Cerrada" - }, - { - "id": 6870618, - "startDate": "2018-02-13T00:00:00", - "endDate": "2018-02-13T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 6, - "totalInitialBudget": 1472, - "coordinador": "Ignacio Tébar del Río", - "state": "Cerrada" - }, - { - "id": 6870630, - "startDate": "2018-02-15T00:00:00", - "endDate": "2018-02-15T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 6, - "totalInitialBudget": 1472, - "coordinador": "Ignacio Tébar del Río", - "state": "Cerrada" - }, - { - "id": 6870643, - "startDate": "2018-02-20T00:00:00", - "endDate": "2018-02-20T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 6, - "totalInitialBudget": 1472, - "coordinador": "Ignacio Tébar del Río", - "state": "Cerrada" - }, - { - "id": 6870653, - "startDate": "2018-02-22T00:00:00", - "endDate": "2018-02-22T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 6, - "totalInitialBudget": 1472, - "coordinador": "Ignacio Tébar del Río", - "state": "Cerrada" - }, - { - "id": 6870660, - "startDate": "2018-02-27T00:00:00", - "endDate": "2018-02-27T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 6, - "totalInitialBudget": 1472, - "coordinador": "Ignacio Tébar del Río", - "state": "Cerrada" - }, - { - "id": 6870667, - "startDate": "2018-10-16T00:00:00", - "endDate": "2018-10-16T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 6, - "totalInitialBudget": 1472, - "coordinador": "Ignacio Tébar del Río", - "state": "Cerrada" - }, - { - "id": 6870683, - "startDate": "2018-10-30T00:00:00", - "endDate": "2018-10-30T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 6, - "totalInitialBudget": 1472, - "coordinador": "Ignacio Tébar del Río", - "state": "Cerrada" - }, - { - "id": 6870689, - "startDate": "2018-10-09T00:00:00", - "endDate": "2018-10-09T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 6, - "totalInitialBudget": 1472, - "coordinador": "Ignacio Tébar del Río", - "state": "Cerrada" - }, - { - "id": 6870696, - "startDate": "2018-04-21T00:00:00", - "endDate": "2018-04-21T00:00:00", - "totalVacancies": 20, - "totalReserved": 0, - "totalNumberOfHours": 6, - "totalInitialBudget": 1472, - "coordinador": "Ignacio Tébar del Río", - "state": "Cerrada" - }, - { - "id": 6870703, - "startDate": "2018-10-06T00:00:00", - "endDate": "2018-10-06T00:00:00", - "totalVacancies": 20, - "totalReserved": 0, - "totalNumberOfHours": 6, - "totalInitialBudget": 1472, - "coordinador": "Jesús Mirón Nieto", - "state": "Cerrada" - } - ], - "totalVacancies": 220, - "totalReserved": 180, - "totalNumberOfHours": 66, - "totalInitialBudget": 16192 - }, - { - "id": 6870738, - "name": "CAPACITACIÓN EN TRABAJOS EN INCENDIOS FORESTALES PARA VOLUNTARIOS DE PROTECCIÓN CIVIL", - "editionVersion": [ - { - "id": 6870739, - "startDate": "2018-04-06T00:00:00", - "endDate": "2018-04-08T00:00:00", - "totalVacancies": 25, - "totalReserved": 0, - "totalNumberOfHours": 20, - "totalInitialBudget": 2020, - "coordinador": "Máximo Javier López Miralles", - "state": "Cerrada" - }, - { - "id": 6870789, - "startDate": "2018-04-13T00:00:00", - "endDate": "2018-04-15T00:00:00", - "totalVacancies": 25, - "totalReserved": 0, - "totalNumberOfHours": 20, - "totalInitialBudget": 2020, - "coordinador": "Máximo Javier López Miralles", - "state": "Cerrada" - } - ], - "totalVacancies": 50, - "totalReserved": 0, - "totalNumberOfHours": 40, - "totalInitialBudget": 4040 - }, - { - "id": 6870837, - "name": "COORDINACIÓN DE INTERVINIENTES EN EMERGENCIAS EN EL TRANSPORTE DE MERCANCÍAS PELIGROSAS", - "editionVersion": [ - { - "id": 6870838, - "startDate": "2018-06-26T00:00:00", - "endDate": "2018-06-28T00:00:00", - "totalVacancies": 20, - "totalReserved": 7, - "totalNumberOfHours": 24, - "totalInitialBudget": 5000, - "coordinador": "Yolanda Sanromán Francisco", - "state": "Cerrada" - } - ], - "totalVacancies": 20, - "totalReserved": 7, - "totalNumberOfHours": 24, - "totalInitialBudget": 5000 - }, - { - "id": 6870901, - "name": "COORDINACIÓN EN LA INTERVENCIÓN Y SEGURIDAD EN SITUACIONES DE EMERGENCIAS PARA PRIMEROS INTERVINIENTES", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6870940, - "name": "CURSO BÁSICO DE EMERGENCIAS NRBQ PARA FUERZAS Y CUERPOS DE SEGURIDAD Y FUERZAS ARMADAS. MÓDULO I", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6870941, - "name": "CURSO BÁSICO DE EMERGENCIAS NRBQ PARA FUERZAS Y CUERPOS DE SEGURIDAD Y FUERZAS ARMADAS. MÓDULO II", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6870942, - "name": "CURSO BÁSICO DE EMERGENCIAS NRBQ PARA FUERZAS Y CUERPOS DE SEGURIDAD. MÓDULO I", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6870943, - "name": "CURSO DE ACTUACIÓN DEL GRUPO DE SEGURIDAD Y ORDEN PÚBLICO EN EMERGENCIAS NUCLEARES", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6870944, - "name": "CURSO DE ACTUALIZACIÓN DEL PLAN DEL GRUPO DE COORDINACIÓN Y ASISTENCIA TÉCNICA", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6870945, - "name": "EMERGENCIAS NUCLEARES (PROTECCIÓN CIVIL, SEGURIDAD NUCLEAR Y PROTECCIÓN RADIOLÓGICA)", - "editionVersion": [ - { - "id": 6980108, - "startDate": "2018-10-01T00:00:00", - "endDate": "2018-10-04T00:00:00", - "totalVacancies": 35, - "totalReserved": 0, - "totalNumberOfHours": 32, - "totalInitialBudget": 0, - "coordinador": "María Dolores Ortín Sonet", - "state": "Cerrada" - } - ], - "totalVacancies": 35, - "totalReserved": 0, - "totalNumberOfHours": 32, - "totalInitialBudget": 0 - }, - { - "id": 6870946, - "name": "CURSO DE COORDINACION ENTRE GRUPOS OPERATIVOS Y SUS PLANES( ELABORACION DE ALGORITMOS/FLUJOS DE ACTUACION) (PENBU)", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6870947, - "name": "CURSO DE FORMACIÓN DE ACTUANTES MUNICIPALES DEL PENVA", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6870948, - "name": "CURSO DE FORMACIÓN DE LOS GRUPOS OPERATIVOS DEL PENCA", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6870949, - "name": "CURSO DE OPERACIONES DE EXTINCIÓN DE INCENDIOS FORESTALES PARA PILOTOS DEL 43 GRUPO", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6870950, - "name": "CURSO DE TÉCNICAS DE ESPECIALIZACIÓN EN INTERVENCIÓN EN EMERGENCIAS CON RIESGO QUÍMICO (NRBQ Nivel II)", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6870951, - "name": "CURSO PARA SECRETARIOS DE AYUNTAMIENTOS Y TÉCNICOS MUNICIPALES DEL PENVA", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6870952, - "name": "EMERGENCIAS RADIOLÓGICAS", - "editionVersion": [ - { - "id": 6870953, - "startDate": "2018-05-28T00:00:00", - "endDate": "2018-05-31T00:00:00", - "totalVacancies": 30, - "totalReserved": 4, - "totalNumberOfHours": 26, - "totalInitialBudget": 0, - "coordinador": "Vicent Guardia Almenar", - "state": "Cerrada" - } - ], - "totalVacancies": 30, - "totalReserved": 4, - "totalNumberOfHours": 26, - "totalInitialBudget": 0 - }, - { - "id": 6870994, - "name": "EMPLEO DE MÁQUINAS EMPUJADORAS EN EXTINCIÓN DE INCENDIOS FORESTALES", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6870995, - "name": "ESPECIALISTAS NRBQ NIVEL 3 PARA LA GUARDIA CIVIL", - "editionVersion": [ - { - "id": 6870996, - "startDate": "2018-09-03T00:00:00", - "endDate": "2018-09-28T00:00:00", - "totalVacancies": 15, - "totalReserved": 15, - "totalNumberOfHours": 113, - "totalInitialBudget": 16780, - "coordinador": "Valeriano Ortega Miravalles", - "state": "Cerrada" - } - ], - "totalVacancies": 15, - "totalReserved": 15, - "totalNumberOfHours": 113, - "totalInitialBudget": 16780 - }, - { - "id": 6871229, - "name": "FORMACIÓN GENERAL PARA ACTUACIÓN EN EMERGENCIAS NUCLEARES ONLINE", - "editionVersion": [ - { - "id": 6871230, - "startDate": "2018-04-09T00:00:00", - "endDate": "2018-06-30T00:00:00", - "totalVacancies": 180, - "totalReserved": 90, - "totalNumberOfHours": 60, - "totalInitialBudget": 3600, - "coordinador": "Isabel Vera Navascués", - "state": "Cerrada" - } - ], - "totalVacancies": 180, - "totalReserved": 90, - "totalNumberOfHours": 60, - "totalInitialBudget": 3600 - }, - { - "id": 6871456, - "name": "FORMACIÓN PARA PRIMEROS INTERVINIENTES EN LOS PLANES DE AUTOPROTECCIÓN", - "editionVersion": [ - { - "id": 6871457, - "startDate": "2018-01-30T00:00:00", - "endDate": "2018-01-30T00:00:00", - "totalVacancies": 24, - "totalReserved": 24, - "totalNumberOfHours": 8, - "totalInitialBudget": 1640, - "coordinador": "Jesús Mirón Nieto", - "state": "Cerrada" - }, - { - "id": 6871464, - "startDate": "2018-02-01T00:00:00", - "endDate": "2018-02-01T00:00:00", - "totalVacancies": 24, - "totalReserved": 24, - "totalNumberOfHours": 8, - "totalInitialBudget": 1640, - "coordinador": "Jesús Mirón Nieto", - "state": "Cerrada" - }, - { - "id": 6871471, - "startDate": "2018-02-06T00:00:00", - "endDate": "2018-02-06T00:00:00", - "totalVacancies": 24, - "totalReserved": 24, - "totalNumberOfHours": 8, - "totalInitialBudget": 1640, - "coordinador": "Jesús Mirón Nieto", - "state": "Cerrada" - } - ], - "totalVacancies": 72, - "totalReserved": 72, - "totalNumberOfHours": 24, - "totalInitialBudget": 4920 - }, - { - "id": 6871478, - "name": "FORMACIÓN Y CAPACITACIÓN DE ACTUANTES DEL GRUPO SANITARIO DEL PENBU - PENSAN / PROCEDIMIENTOS / ACTUACIONES EN ECDS", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6871479, - "name": "INTERVENCIÓN OPERATIVA EN ACCIDENTES EN EL TRANSPORTE DE MMPP EN LA REGIÓN DE MURCIA", - "editionVersion": [ - { - "id": 6871480, - "startDate": "2018-05-08T00:00:00", - "endDate": "2018-05-10T00:00:00", - "totalVacancies": 30, - "totalReserved": 25, - "totalNumberOfHours": 15, - "totalInitialBudget": 1515, - "coordinador": "Gabriel Lambertos Martínez", - "state": "Cerrada" - } - ], - "totalVacancies": 30, - "totalReserved": 25, - "totalNumberOfHours": 15, - "totalInitialBudget": 1515 - }, - { - "id": 6871501, - "name": "JORNADA DE ACTUACIÓN EN EMERGENCIAS NUCLEARES DEL GRUPO DE COORDINACIÓN Y ASISTENCIA TÉCNICA (PENCA)", - "editionVersion": [ - { - "id": 6871502, - "startDate": "2018-12-31T00:00:00", - "endDate": "2018-12-31T00:00:00", - "totalVacancies": 50, - "totalReserved": 50, - "totalNumberOfHours": 5, - "totalInitialBudget": 378, - "coordinador": "María Milagros Vázquez Basquero", - "state": "Anulada" - } - ], - "totalVacancies": 50, - "totalReserved": 50, - "totalNumberOfHours": 5, - "totalInitialBudget": 378 - }, - { - "id": 6871513, - "name": "JORNADA DE ACTUACION EN EMERGENCIAS NUCLEARES DEL GRUPO DE SEGURIDAD CIUDADANA Y ORDEN PUBLICO (PENCA)", - "editionVersion": [ - { - "id": 6871514, - "startDate": "2018-10-29T00:00:00", - "endDate": "2018-10-30T00:00:00", - "totalVacancies": 50, - "totalReserved": 50, - "totalNumberOfHours": 7, - "totalInitialBudget": 378, - "coordinador": "María Milagros Vázquez Basquero", - "state": "Cerrada" - } - ], - "totalVacancies": 50, - "totalReserved": 50, - "totalNumberOfHours": 7, - "totalInitialBudget": 378 - }, - { - "id": 6871532, - "name": "JORNADA DE ACTUACIÓN MUNICIPAL EN EMERGENCIA NUCLEAR (PAMEN) PARA MUNICIPIOS ZONA I (PENVA)", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6871543, - "name": "JORNADA DE ACTUACIÓN MUNICIPAL EN EMERGENCIAS NUCLEARES (PENGUA)", - "editionVersion": [ - { - "id": 6871544, - "startDate": "2018-03-20T00:00:00", - "endDate": "2018-03-20T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 6, - "totalInitialBudget": 378, - "coordinador": "María Jesús Fuertes Menéndez", - "state": "Cerrada" - }, - { - "id": 6871546, - "startDate": "2018-02-19T00:00:00", - "endDate": "2018-02-19T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 6, - "totalInitialBudget": 378, - "coordinador": "María Jesús Fuertes Menéndez", - "state": "Cerrada" - }, - { - "id": 6871598, - "startDate": "2018-05-15T00:00:00", - "endDate": "2018-05-15T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 6, - "totalInitialBudget": 378, - "coordinador": "María Jesús Fuertes Menéndez", - "state": "Cerrada" - }, - { - "id": 6980008, - "startDate": "2018-03-27T00:00:00", - "endDate": "2018-03-27T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 6, - "totalInitialBudget": 378, - "coordinador": "María Jesús Fuertes Menéndez", - "state": "Cerrada" - }, - { - "id": 7799964, - "startDate": "2018-09-19T00:00:00", - "endDate": "2018-09-19T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 6, - "totalInitialBudget": 378, - "coordinador": "María Jesús Fuertes Menéndez", - "state": "Cerrada" - }, - { - "id": 7799966, - "startDate": "2018-07-03T00:00:00", - "endDate": "2018-07-03T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 6, - "totalInitialBudget": 378, - "coordinador": "María Jesús Fuertes Menéndez", - "state": "Cerrada" - }, - { - "id": 7870079, - "startDate": "2018-06-28T00:00:00", - "endDate": "2018-06-28T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 6, - "totalInitialBudget": 378, - "coordinador": "María Jesús Fuertes Menéndez", - "state": "Cerrada" - }, - { - "id": 8006888, - "startDate": "2018-09-27T00:00:00", - "endDate": "2018-09-27T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 6, - "totalInitialBudget": 378, - "coordinador": "María Jesús Fuertes Menéndez", - "state": "Cerrada" - }, - { - "id": 8007099, - "startDate": "2018-11-28T00:00:00", - "endDate": "2018-11-28T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 6, - "totalInitialBudget": 0, - "coordinador": "María Jesús Fuertes Menéndez", - "state": "Programación" - } - ], - "totalVacancies": 180, - "totalReserved": 180, - "totalNumberOfHours": 54, - "totalInitialBudget": 3024 - }, - { - "id": 6871600, - "name": "JORNADA DE ACTUACIÓN MUNICIPAL EN EMERGENCIAS NUCLEARES PARA LOS MUNICIPIOS SEDE ECD (PENCA)", - "editionVersion": [ - { - "id": 6871601, - "startDate": "2018-12-31T00:00:00", - "endDate": "2018-12-31T00:00:00", - "totalVacancies": 50, - "totalReserved": 50, - "totalNumberOfHours": 5, - "totalInitialBudget": 378, - "coordinador": "María Milagros Vázquez Basquero", - "state": "Anulada" - }, - { - "id": 6871603, - "startDate": "2018-12-31T00:00:00", - "endDate": "2018-12-31T00:00:00", - "totalVacancies": 50, - "totalReserved": 50, - "totalNumberOfHours": 5, - "totalInitialBudget": 378, - "coordinador": "María Milagros Vázquez Basquero", - "state": "Anulada" - }, - { - "id": 6871605, - "startDate": "2018-12-31T00:00:00", - "endDate": "2018-12-31T00:00:00", - "totalVacancies": 50, - "totalReserved": 50, - "totalNumberOfHours": 5, - "totalInitialBudget": 378, - "coordinador": "María Milagros Vázquez Basquero", - "state": "Anulada" - } - ], - "totalVacancies": 150, - "totalReserved": 150, - "totalNumberOfHours": 15, - "totalInitialBudget": 1134 - }, - { - "id": 6871607, - "name": "JORNADA DE ACTUACIÓN MUNICIPAL EN EMERGENCIAS NUCLEARES PARA LOS MUNICIPIOS ZONA I (PENCA)", - "editionVersion": [ - { - "id": 6871608, - "startDate": "2018-12-31T00:00:00", - "endDate": "2018-12-31T00:00:00", - "totalVacancies": 25, - "totalReserved": 25, - "totalNumberOfHours": 5, - "totalInitialBudget": 378, - "coordinador": "María Milagros Vázquez Basquero", - "state": "Anulada" - }, - { - "id": 6871610, - "startDate": "2018-12-31T00:00:00", - "endDate": "2018-12-31T00:00:00", - "totalVacancies": 25, - "totalReserved": 25, - "totalNumberOfHours": 5, - "totalInitialBudget": 378, - "coordinador": "María Milagros Vázquez Basquero", - "state": "Anulada" - } - ], - "totalVacancies": 50, - "totalReserved": 50, - "totalNumberOfHours": 10, - "totalInitialBudget": 756 - }, - { - "id": 6871612, - "name": "JORNADA DE FORMACIÓN DE ACTUACIÓN EN EMERGENCIAS NUCLEARES, CON ESPECIAL INCIDENCIA EN AUTOPROTECCIÓN Y EN EL USO DE DOSIMETRÍA PARA ACTUANTES DEL GRUPO GPOL (PENBU)", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6871628, - "name": "JORNADA DE FORMACIÓN DE ACTUANTES MUNICIPALES DEL PENBU", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6871629, - "name": "JORNADA DE FORMACIÓN DE ACTUANTES MUNICIPALES DEL PENCA", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6871630, - "name": "JORNADA DE FORMACIÓN DE ACTUANTES MUNICIPALES DEL PENGUA", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6871631, - "name": "JORNADA DE FORMACIÓN DE ACTUANTES MUNICIPALES DEL PENTA. (Nivel II).", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6871632, - "name": "JORNADA DE FORMACIÓN DE ACTUANTES MUNICIPALES DEL PENVA", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6871633, - "name": "JORNADA DE FORMACIÓN DEL GRUPO DE APOYO LOGÍSTICO", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6871634, - "name": "JORNADA DE FORMACIÓN PARA MANDOS DE GRUPOS OPERATIVOS DEL PENTA. (Nivel II).", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6871635, - "name": "JORNADA DE FORMACIÓN SOBRE ACTUACIONES EN EL CECOP DEL PENBU, CECOPI DE LAS CCAA Y GABINETE TELEGRÁFICO (PENBU)", - "editionVersion": [ - { - "id": 6871636, - "startDate": "2018-03-27T00:00:00", - "endDate": "2018-03-27T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 5, - "totalInitialBudget": 378, - "coordinador": "Javier Basconcillos Arce", - "state": "Cerrada" - } - ], - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 5, - "totalInitialBudget": 378 - }, - { - "id": 6871651, - "name": "JORNADA PARA ACTUANTES DEL GRUPO DE COORDINACIÓN Y ASISTENCIA TÉCNICA DEL PENBU. (Nivel III).", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6871652, - "name": "JORNADA PARA ACTUANTES EN CONTROLES DE ACCESO DEL PENBU", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6871653, - "name": "JORNADA PARA AUTORIDADES LOCALES DE LOS AYUNTAMIENTOS ZONA I DEL PENBU", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6871654, - "name": "JORNADA PARA AUTORIDADES LOCALES Y ACTUANTES DEL PAMEN. (Nivel III).", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6871655, - "name": "JORNADA PRÁCTICA DE FORMACIÓN PARA PERSONAL GRUPOS DE SEGURIDAD CIUDADANA Y ORDEN PUBLICO SOBRE PROCEDIMIENTO DE CONTROL DE ACCESOS (PENBU)", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6871656, - "name": "JORNADA PRÁCTICA PARA ACTUANTES DEL PENBU: CECOP, CECOPI Y CONTROLES DE ACCESO. (Nivel II).", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6871657, - "name": "JORNADA SOBRE APLICACIONES DE MEDIDAS DE PROTECCIÓN A LA POBLACIÓN EN EL ÁMBITO DEL PENBU. PROCEDIMIENTOS OPERATIVOS EN LAS ACTUACIONES EN EMERGENCIA (PENBU)", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6871699, - "name": "JORNADA TÉCNICA PARA LA APLICACIÓN DEL CONFINAMIENTO Y ABASTECIMIENTO A LA POBLACIÓN EN LOS NÚCLEOS DE POBLACIÓN ZONA I (PENBU)", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6871720, - "name": "JORNADA TÉCNICA SOBRE PLANES MUNICIPALES DE EMERGENCIA NUCLEAR PARA AUTORIDADES MUNICIPALES DE ZONA I DE LOS PEN", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6871721, - "name": "JORNADA TEÓRICO-PRÁCTICA SOBRE ACTIVACIÓN ECD PARA GRUPO RADIOLÓGICO. (Nivel III).", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6871722, - "name": "JORNADA TEÓRICO-PRÁCTICA SOBRE FORMACIÓN GENERAL EN ACTUACIÓN EN EMERGENCIAS NUCLEARES", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6871723, - "name": "JORNADA TEÓRICO-PRÁCTICA SOBRE FORMACIÓN GENERAL EN ACTUACIÓN EN EMERGENCIAS NUCLEARES (PENBU)", - "editionVersion": [ - { - "id": 6871724, - "startDate": "2018-06-20T00:00:00", - "endDate": "2018-06-20T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 5, - "totalInitialBudget": 378, - "coordinador": "Javier Basconcillos Arce", - "state": "Cerrada" - }, - { - "id": 6976685, - "startDate": "2018-12-31T00:00:00", - "endDate": "2018-12-31T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 5, - "totalInitialBudget": 378, - "coordinador": " ", - "state": "Anulada" - } - ], - "totalVacancies": 40, - "totalReserved": 40, - "totalNumberOfHours": 10, - "totalInitialBudget": 756 - }, - { - "id": 6871735, - "name": "JORNADA TEÓRICO-PRÁCTICA SOBRE FORMACIÓN GENERAL EN ACTUACIÓN EN EMERGENCIAS NUCLEARES (PENCA)", - "editionVersion": [ - { - "id": 7904932, - "startDate": "2018-06-20T00:00:00", - "endDate": "2018-06-20T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 5, - "totalInitialBudget": 378, - "coordinador": "María Milagros Vázquez Basquero", - "state": "Cerrada" - }, - { - "id": 6871736, - "startDate": "2018-06-05T00:00:00", - "endDate": "2018-06-05T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 5, - "totalInitialBudget": 378, - "coordinador": "María Milagros Vázquez Basquero", - "state": "Cerrada" - } - ], - "totalVacancies": 40, - "totalReserved": 40, - "totalNumberOfHours": 10, - "totalInitialBudget": 756 - }, - { - "id": 6871747, - "name": "JORNADA TEÓRICO-PRÁCTICA SOBRE FORMACIÓN GENERAL EN ACTUACIÓN EN EMERGENCIAS NUCLEARES (PENTA)", - "editionVersion": [ - { - "id": 8007658, - "startDate": "2018-10-03T00:00:00", - "endDate": "2018-10-03T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 5, - "totalInitialBudget": 378, - "coordinador": "Fabiola Ugalde Andrés", - "state": "Cerrada" - }, - { - "id": 8007660, - "startDate": "2018-10-05T00:00:00", - "endDate": "2018-10-05T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 5, - "totalInitialBudget": 378, - "coordinador": "Fabiola Ugalde Andrés", - "state": "Cerrada" - }, - { - "id": 7836528, - "startDate": "2018-05-17T00:00:00", - "endDate": "2018-05-17T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 5, - "totalInitialBudget": 378, - "coordinador": "Fernando Piédrola Nadal", - "state": "Cerrada" - } - ], - "totalVacancies": 60, - "totalReserved": 60, - "totalNumberOfHours": 15, - "totalInitialBudget": 1134 - }, - { - "id": 6871750, - "name": "JORNADA TEÓRICO-PRÁCTICA SOBRE FORMACIÓN GENERAL EN ACTUACIÓN EN EMERGENCIAS NUCLEARES (PENGUA)", - "editionVersion": [ - { - "id": 6871751, - "startDate": "2018-11-12T00:00:00", - "endDate": "2018-11-12T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 7, - "totalInitialBudget": 378, - "coordinador": "María Jesús Fuertes Menéndez", - "state": "Programación" - } - ], - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 7, - "totalInitialBudget": 378 - }, - { - "id": 6871788, - "name": "JORNADA TEÓRICO-PRÁCTICA SOBRE FORMACIÓN GENERAL EN ACTUACIÓN EN EMERGENCIAS NUCLEARES (PENVA)", - "editionVersion": [ - { - "id": 6871789, - "startDate": "2018-10-17T00:00:00", - "endDate": "2018-10-17T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 5, - "totalInitialBudget": 378, - "coordinador": "María Isabel Montón Abarca", - "state": "Cerrada" - } - ], - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 5, - "totalInitialBudget": 378 - }, - { - "id": 6871799, - "name": "JORNADAS DE FOMACIÓN SOBRE EL PENBU Y PARA LA APLICACIÓN DE LA EVACUACIÓN DE CENTROS ESCOLARES EN EMERGENCIA NUCLEAR (PENBU)", - "editionVersion": [ - { - "id": 6871800, - "startDate": "2018-09-19T00:00:00", - "endDate": "2018-09-19T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 5, - "totalInitialBudget": 378, - "coordinador": "Javier Basconcillos Arce", - "state": "Cerrada" - } - ], - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 5, - "totalInitialBudget": 378 - }, - { - "id": 6871815, - "name": "JORNDA DE FORMACION PARA PERSONAL GRUPOS DE SEGURIDAD CIUDADANA Y ORDEN PUBLICO SOBRE PROCEDIMIENTO DE CONTROL DE ACCESOS (PENBU)", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6871816, - "name": "OPERACIONES DE AUTOPROTECCIÓN E INTERVENCIÓN FRENTE AL FUEGO EN LOS EDIFICIOS", - "editionVersion": [ - { - "id": 6871817, - "startDate": "2018-03-05T00:00:00", - "endDate": "2018-03-09T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 35, - "totalInitialBudget": 6358, - "coordinador": "Jesús Mirón Nieto", - "state": "Cerrada" - }, - { - "id": 6871842, - "startDate": "2018-03-19T00:00:00", - "endDate": "2018-03-23T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 35, - "totalInitialBudget": 6358, - "coordinador": "Ignacio Tébar del Río", - "state": "Cerrada" - }, - { - "id": 6871881, - "startDate": "2018-05-21T00:00:00", - "endDate": "2018-05-25T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 35, - "totalInitialBudget": 6358, - "coordinador": "Jesús Mirón Nieto", - "state": "Cerrada" - }, - { - "id": 6871925, - "startDate": "2018-11-12T00:00:00", - "endDate": "2018-11-16T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 35, - "totalInitialBudget": 6358, - "coordinador": "Ignacio Tébar del Río", - "state": "Cerrada" - } - ], - "totalVacancies": 80, - "totalReserved": 80, - "totalNumberOfHours": 140, - "totalInitialBudget": 25432 - }, - { - "id": 6871980, - "name": "OPERACIONES Y DEFENSA CONTRA INCENDIOS FORESTALES EN LA INTERFAZ URBANO-FORESTAL", - "editionVersion": [ - { - "id": 6871981, - "startDate": "2018-04-23T00:00:00", - "endDate": "2018-04-27T00:00:00", - "totalVacancies": 20, - "totalReserved": 0, - "totalNumberOfHours": 30, - "totalInitialBudget": 6500, - "coordinador": "Federico Grillo Delgado", - "state": "Cerrada" - }, - { - "id": 6972372, - "startDate": "2018-11-26T00:00:00", - "endDate": "2018-11-30T00:00:00", - "totalVacancies": 20, - "totalReserved": 0, - "totalNumberOfHours": 30, - "totalInitialBudget": 6500, - "coordinador": "Ferrán Dalmau Rovira", - "state": "Cerrada" - } - ], - "totalVacancies": 40, - "totalReserved": 0, - "totalNumberOfHours": 60, - "totalInitialBudget": 13000 - }, - { - "id": 6872045, - "name": "TALLER SOBRE ACTUALIZACIÓN PARA MIEMBROS DE LAS ORGANIZACIONES ADSCRITAS A LOS PLANES EXTERIORES DE EMERGENCIA NUCLEAR", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6872046, - "name": "TÉCNICAS BÁSICAS DE EXTINCIÓN DE INCENDIOS CON MEDIOS PORTÁTILES", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6872093, - "name": "TÉCNICAS DE ESPECIALIZACIÓN EN INTERVENCIÓN EN EMERGENCIAS CON RIESGO BIOLÓGICO", - "editionVersion": [ - { - "id": 6872094, - "startDate": "2018-11-06T00:00:00", - "endDate": "2018-11-08T00:00:00", - "totalVacancies": 24, - "totalReserved": 24, - "totalNumberOfHours": 21, - "totalInitialBudget": 6761, - "coordinador": "Enrique Martínez Pavón", - "state": "Cerrada" - } - ], - "totalVacancies": 24, - "totalReserved": 24, - "totalNumberOfHours": 21, - "totalInitialBudget": 6761 - }, - { - "id": 6872118, - "name": "TÉCNICAS DE INTERVENCIÓN EN ACCIDENTES CON MERCANCÍAS PELIGROSAS. AVANZADO", - "editionVersion": [ - { - "id": 6872119, - "startDate": "2018-06-04T00:00:00", - "endDate": "2018-06-08T00:00:00", - "totalVacancies": 22, - "totalReserved": 1, - "totalNumberOfHours": 35, - "totalInitialBudget": 11600, - "coordinador": "Yolanda Sanromán Francisco", - "state": "Cerrada" - } - ], - "totalVacancies": 22, - "totalReserved": 1, - "totalNumberOfHours": 35, - "totalInitialBudget": 11600 - }, - { - "id": 6872306, - "name": "TÉCNICAS DE INTERVENCIÓN EN ACCIDENTES CON MERCANCÍAS PELIGROSAS. BÁSICO", - "editionVersion": [ - { - "id": 6872307, - "startDate": "2018-05-07T00:00:00", - "endDate": "2018-05-11T00:00:00", - "totalVacancies": 21, - "totalReserved": 3, - "totalNumberOfHours": 35, - "totalInitialBudget": 11200, - "coordinador": "Yolanda Sanromán Francisco", - "state": "Cerrada" - }, - { - "id": 6872375, - "startDate": "2018-10-01T00:00:00", - "endDate": "2018-10-05T00:00:00", - "totalVacancies": 20, - "totalReserved": 0, - "totalNumberOfHours": 35, - "totalInitialBudget": 11200, - "coordinador": "Yolanda Sanromán Francisco", - "state": "Cerrada" - } - ], - "totalVacancies": 41, - "totalReserved": 3, - "totalNumberOfHours": 70, - "totalInitialBudget": 22400 - }, - { - "id": 6872455, - "name": "TÉCNICAS DE SEGURIDAD E INTERVENCIÓN EN RESCATE Y SALVAMENTO EN ESTRUCTURAS COLAPSADAS EN SITUACIONES DE EMERGENCIA PARA EQUIPOS MULTIDISCIPLINARES", - "editionVersion": [ - { - "id": 6872456, - "startDate": "2018-02-26T00:00:00", - "endDate": "2018-03-02T00:00:00", - "totalVacancies": 22, - "totalReserved": 11, - "totalNumberOfHours": 40, - "totalInitialBudget": 8950, - "coordinador": "Daniel Arroyo Fernández", - "state": "Cerrada" - }, - { - "id": 6872531, - "startDate": "2018-03-12T00:00:00", - "endDate": "2018-03-16T00:00:00", - "totalVacancies": 22, - "totalReserved": 5, - "totalNumberOfHours": 40, - "totalInitialBudget": 8950, - "coordinador": "Daniel Arroyo Fernández", - "state": "Cerrada" - } - ], - "totalVacancies": 44, - "totalReserved": 16, - "totalNumberOfHours": 80, - "totalInitialBudget": 17900 - }, - { - "id": 6872707, - "name": "TEÓRICO-PRÁCTICO PARA ACTUANTES DEL GRUPO DE SEGURIDAD CIUDADANA Y ORDEN PÚBLICO (PENVA)", - "editionVersion": [ - { - "id": 6872708, - "startDate": "2018-12-11T00:00:00", - "endDate": "2018-12-12T00:00:00", - "totalVacancies": 30, - "totalReserved": 30, - "totalNumberOfHours": 10, - "totalInitialBudget": 378, - "coordinador": "María Isabel Montón Abarca", - "state": "Programación" - }, - { - "id": 6872724, - "startDate": "2018-09-25T00:00:00", - "endDate": "2018-09-26T00:00:00", - "totalVacancies": 30, - "totalReserved": 30, - "totalNumberOfHours": 10, - "totalInitialBudget": 378, - "coordinador": "María Isabel Montón Abarca", - "state": "Cerrada" - } - ], - "totalVacancies": 60, - "totalReserved": 60, - "totalNumberOfHours": 20, - "totalInitialBudget": 756 - }, - { - "id": 6872739, - "name": "USO DEL FUEGO PRESCRITO PARA LA PREVENCIÓN Y EXTINCIÓN DE INCENDIOS FORESTALES", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6872740, - "name": "USO DEL FUEGO PRESCRITO PARA LA PREVENCIÓN Y EXTINCIÓN DE INCENDIOS FORESTALES. MÓDULO I", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6872827, - "name": "USO DEL FUEGO PRESCRITO PARA LA PREVENCIÓN Y EXTINCIÓN DE INCENDIOS FORESTALES. MÓDULO II", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6980185, - "name": "JORNADA TÉCNICA SOBRE RESPUESTA INMEDIATA A LAS EMERGENCIAS PRODUCIDAS POR RIESGOS TECNOLÓGICOS. NUEVOS CAMPOS DE ESTUDIO Y DESARROLLO", - "editionVersion": [ - { - "id": 6980190, - "startDate": "2018-01-23T00:00:00", - "endDate": "2018-01-23T00:00:00", - "totalVacancies": 80, - "totalReserved": 0, - "totalNumberOfHours": 5, - "totalInitialBudget": 1000, - "coordinador": "Valeriano Ortega Miravalles", - "state": "Cerrada" - } - ], - "totalVacancies": 80, - "totalReserved": 0, - "totalNumberOfHours": 5, - "totalInitialBudget": 1000 - }, - { - "id": 6980192, - "name": "V WORKSHOP SOBRE RESPUESTA INMEDIATA A LAS EMERGENCIAS PRODUCIDAS POR RIESGOS TECNOLÓGICOS", - "editionVersion": [ - { - "id": 6980194, - "startDate": "2018-01-23T00:00:00", - "endDate": "2018-01-25T00:00:00", - "totalVacancies": 50, - "totalReserved": 0, - "totalNumberOfHours": 13, - "totalInitialBudget": 250, - "coordinador": "Valeriano Ortega Miravalles", - "state": "Cerrada" - } - ], - "totalVacancies": 50, - "totalReserved": 0, - "totalNumberOfHours": 13, - "totalInitialBudget": 250 - }, - { - "id": 8007089, - "name": "FORMACIÓN SOBRE EMERGENCIAS NUCLEARES PARA MUNICIPIOS ZONA I (PENVA)", - "editionVersion": [ - { - "id": 8007091, - "startDate": "2018-11-08T00:00:00", - "endDate": "2018-11-12T00:00:00", - "totalVacancies": 30, - "totalReserved": 30, - "totalNumberOfHours": 8, - "totalInitialBudget": 430, - "coordinador": "María Isabel Montón Abarca", - "state": "Cerrada" - } - ], - "totalVacancies": 30, - "totalReserved": 30, - "totalNumberOfHours": 8, - "totalInitialBudget": 430 - }, - { - "id": 8007094, - "name": "TEÓRICO-PRÁCTICO SOBRE ACTUACIÓN MUNICIPAL EN EMERGENCIA NUCLEAR EN MUNICIPIOS ZONA I (PENVA)", - "editionVersion": [ - { - "id": 8007096, - "startDate": "2018-11-20T00:00:00", - "endDate": "2018-11-22T00:00:00", - "totalVacancies": 30, - "totalReserved": 30, - "totalNumberOfHours": 8, - "totalInitialBudget": 430, - "coordinador": "María Isabel Montón Abarca", - "state": "Cerrada" - } - ], - "totalVacancies": 30, - "totalReserved": 30, - "totalNumberOfHours": 8, - "totalInitialBudget": 430 - }, - { - "id": 8007664, - "name": "JORNADAS DE FORMACIÓN DE ACTUANTES DE LOS PAMEN (PENTA)", - "editionVersion": [ - { - "id": 8007666, - "startDate": "2018-10-24T00:00:00", - "endDate": "2018-10-24T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 5, - "totalInitialBudget": 378, - "coordinador": "Fabiola Ugalde Andrés", - "state": "Cerrada" - }, - { - "id": 8007668, - "startDate": "2018-11-29T00:00:00", - "endDate": "2018-11-29T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 5, - "totalInitialBudget": 378, - "coordinador": "Fabiola Ugalde Andrés", - "state": "Anulada" - } - ], - "totalVacancies": 40, - "totalReserved": 40, - "totalNumberOfHours": 10, - "totalInitialBudget": 756 - }, - { - "id": 8007672, - "name": "JORNADA DE FORMACIÓN DE ACTUANTES DE APOYO AL GRUPO DE COORDINACIÓN Y ASISTENCIA TÉCNICA EN EL CECOP (PENTA)", - "editionVersion": [ - { - "id": 8007674, - "startDate": "2018-11-27T00:00:00", - "endDate": "2018-11-27T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 5, - "totalInitialBudget": 378, - "coordinador": "Fabiola Ugalde Andrés", - "state": "Anulada" - } - ], - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 5, - "totalInitialBudget": 378 - } - ], - "totalVacancies": 1913, - "totalReserved": 1397, - "totalNumberOfHours": 1023, - "totalInitialBudget": 162968 - }, - { - "id": 6872884, - "name": "4.4 Apoyo Logístico y de Seguridad.", - "trainingActivityVersion": [ - { - "id": 6872885, - "name": "CURSO DE APOYO LOGÍSTICO EN EMERGENCIAS", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6872886, - "name": "CURSO DE EVACUACIÓN, DISPERSIÓN Y ALBERGUE EN CATÁSTROFES", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6872887, - "name": "GESTIÓN Y CONTROL DEL SISTEMA DE APOYO LOGÍSTICO EN EMERGENCIAS", - "editionVersion": [ - { - "id": 6872888, - "startDate": "2018-06-04T00:00:00", - "endDate": "2018-06-07T00:00:00", - "totalVacancies": 25, - "totalReserved": 1, - "totalNumberOfHours": 25, - "totalInitialBudget": 3125, - "coordinador": "Francisco García Riesco", - "state": "Anulada" - } - ], - "totalVacancies": 25, - "totalReserved": 1, - "totalNumberOfHours": 25, - "totalInitialBudget": 3125 - }, - { - "id": 6872942, - "name": "PLANIFICACIÓN LOGÍSTICA EN EMERGENCIAS EN EL TERRITORIO", - "editionVersion": [ - { - "id": 6872943, - "startDate": "2018-10-01T00:00:00", - "endDate": "2018-10-04T00:00:00", - "totalVacancies": 25, - "totalReserved": 4, - "totalNumberOfHours": 25, - "totalInitialBudget": 3125, - "coordinador": "Francisco García Riesco", - "state": "Cerrada" - } - ], - "totalVacancies": 25, - "totalReserved": 4, - "totalNumberOfHours": 25, - "totalInitialBudget": 3125 - }, - { - "id": 6873017, - "name": "SEMINARIO DE ACTUACIÓN POLICIAL ANTE CATÁSTROFES", - "editionVersion": [ - { - "id": 6873018, - "startDate": "2018-12-31T00:00:00", - "endDate": "2018-12-31T00:00:00", - "totalVacancies": 650, - "totalReserved": 650, - "totalNumberOfHours": 40, - "totalInitialBudget": 6000, - "coordinador": "Belén García Granjo", - "state": "Anulada" - } - ], - "totalVacancies": 650, - "totalReserved": 650, - "totalNumberOfHours": 40, - "totalInitialBudget": 6000 - }, - { - "id": 6873326, - "name": "X SEMINARIO DE ACTUACIÓN POLICIAL ANTE CATÁSTROFES.", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6873327, - "name": "XI SEMINARIO DE ACTUACIÓN POLICIAL ANTE CATÁSTROFES.", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6873328, - "name": "XII SEMINARIO DE ACTUACIÓN POLICIAL ANTE CASTÁSTROFES", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 8007102, - "name": "JORNADA FORMATIVA PARA ACTUANTES DEL GRUPO DE APOYO LOGÍSTICO (PENGUA)", - "editionVersion": [ - { - "id": 8007104, - "startDate": "2018-10-03T00:00:00", - "endDate": "2018-10-03T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 6, - "totalInitialBudget": 378, - "coordinador": "María Jesús Fuertes Menéndez", - "state": "Cerrada" - } - ], - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 6, - "totalInitialBudget": 378 - } - ], - "totalVacancies": 720, - "totalReserved": 675, - "totalNumberOfHours": 96, - "totalInitialBudget": 12628 - }, - { - "id": 6873329, - "name": "4.5 Asistencia Sanitaria en Emergencias.", - "trainingActivityVersion": [ - { - "id": 6873330, - "name": "ACTUACIÓN SANITARIA EN EMERGENCIAS NUCLEARES ONLINE", - "editionVersion": [ - { - "id": 6873331, - "startDate": "2018-10-01T00:00:00", - "endDate": "2018-11-25T00:00:00", - "totalVacancies": 60, - "totalReserved": 30, - "totalNumberOfHours": 40, - "totalInitialBudget": 2250, - "coordinador": "Isabel Vera Navascués", - "state": "Impartición" - } - ], - "totalVacancies": 60, - "totalReserved": 30, - "totalNumberOfHours": 40, - "totalInitialBudget": 2250 - }, - { - "id": 6873449, - "name": "CURSO DE ASISTENCIA SANITARIA EN CATÁTROFES. TRIAGE. (Nivel I).", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6873450, - "name": "CURSO DE FORMACION DE ACTUANTES DEL GRUPO SANITARIO ECD (PENBU)", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6873451, - "name": "CURSO DE RECICLAJE DE REANIMACIÓN CARDIOPULMONAR Y DESA (Turno de tarde)", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6873452, - "name": "CURSO DE VENDAJES E INMOVILIZACIONES EN CASO DE EMERGENCIA. (Nivel I).", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6873453, - "name": "CURSO SANITARIO PARA VOLUNTARIOS DE PROTECCION CIVIL", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6873454, - "name": "JORNADA TÉCNICA SOBRE CUESTIONES SANITARIAS DE LOS PLANES DE EMERGENCIA NUCLEAR", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6873455, - "name": "JORNADA TEÓRICO-PRÁCTICA SOBRE ACTUACIÓN SANITARIA EN EMERGENCIAS NUCLEARES", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6873456, - "name": "JORNADA TEÓRICO-PRÁCTICA SOBRE ACTUACIÓN SANITARIA EN EMERGENCIAS NUCLEARES (PENBU)", - "editionVersion": [ - { - "id": 6873457, - "startDate": "2018-10-17T00:00:00", - "endDate": "2018-10-17T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 5, - "totalInitialBudget": 378, - "coordinador": "Javier Basconcillos Arce", - "state": "Cerrada" - } - ], - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 5, - "totalInitialBudget": 378 - }, - { - "id": 6873485, - "name": "JORNADA TEÓRICO-PRÁCTICA SOBRE ACTUACIÓN SANITARIA EN EMERGENCIAS NUCLEARES (PENCA)", - "editionVersion": [ - { - "id": 6873486, - "startDate": "2018-12-31T00:00:00", - "endDate": "2018-12-31T00:00:00", - "totalVacancies": 25, - "totalReserved": 25, - "totalNumberOfHours": 5, - "totalInitialBudget": 378, - "coordinador": "María Milagros Vázquez Basquero", - "state": "Anulada" - }, - { - "id": 6873495, - "startDate": "2018-12-31T00:00:00", - "endDate": "2018-12-31T00:00:00", - "totalVacancies": 25, - "totalReserved": 25, - "totalNumberOfHours": 5, - "totalInitialBudget": 378, - "coordinador": "María Milagros Vázquez Basquero", - "state": "Anulada" - } - ], - "totalVacancies": 50, - "totalReserved": 50, - "totalNumberOfHours": 10, - "totalInitialBudget": 756 - }, - { - "id": 6873497, - "name": "JORNADA TEÓRICO-PRÁCTICA SOBRE ACTUACIÓN SANITARIA EN EMERGENCIAS NUCLEARES (PENGUA)", - "editionVersion": [ - { - "id": 6976015, - "startDate": "2018-11-29T00:00:00", - "endDate": "2018-11-29T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 6, - "totalInitialBudget": 378, - "coordinador": "María Jesús Fuertes Menéndez", - "state": "Impartición" - } - ], - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 6, - "totalInitialBudget": 378 - }, - { - "id": 6873498, - "name": "JORNADA TEÓRICO-PRÁCTICA SOBRE ACTUACIÓN SANITARIA EN EMERGENCIAS NUCLEARES (PENTA)", - "editionVersion": [ - { - "id": 6873499, - "startDate": "2018-10-09T00:00:00", - "endDate": "2018-10-09T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 5, - "totalInitialBudget": 378, - "coordinador": "Fabiola Ugalde Andrés", - "state": "Cerrada" - } - ], - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 5, - "totalInitialBudget": 378 - }, - { - "id": 6873518, - "name": "JORNADA TEÓRICO-PRÁCTICA SOBRE ACTUACIÓN SANITARIA EN EMERGENCIAS NUCLEARES (PENVA)", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6873521, - "name": "MOVILIZACIONES E INMOVILIZACIONES EN VÍCTIMAS TRAUMÁTICAS PARA PRIMEROS INTERVINIENTES", - "editionVersion": [ - { - "id": 6873522, - "startDate": "2018-04-03T00:00:00", - "endDate": "2018-04-03T00:00:00", - "totalVacancies": 20, - "totalReserved": 2, - "totalNumberOfHours": 9, - "totalInitialBudget": 1800, - "coordinador": "Esther Pardo Sánchez", - "state": "Cerrada" - }, - { - "id": 8076747, - "startDate": "2018-11-28T00:00:00", - "endDate": "2018-11-28T00:00:00", - "totalVacancies": 20, - "totalReserved": 0, - "totalNumberOfHours": 8, - "totalInitialBudget": 1800, - "coordinador": "Araceli Ruiz Anca", - "state": "Programación" - } - ], - "totalVacancies": 40, - "totalReserved": 2, - "totalNumberOfHours": 17, - "totalInitialBudget": 3600 - }, - { - "id": 6873582, - "name": "MOVILIZACIONES E INMOVILIZACIONES EN VÍCTIMAS TRAUMÁTICAS PARA PRIMEROS INTERVINIENTES PARA VOLUNTARIOS DE PROTECCIÓN CIVIL", - "editionVersion": [ - { - "id": 6873583, - "startDate": "2018-10-06T00:00:00", - "endDate": "2018-10-06T00:00:00", - "totalVacancies": 20, - "totalReserved": 0, - "totalNumberOfHours": 9, - "totalInitialBudget": 1800, - "coordinador": "Esther Pardo Sánchez", - "state": "Anulada" - } - ], - "totalVacancies": 20, - "totalReserved": 0, - "totalNumberOfHours": 9, - "totalInitialBudget": 1800 - }, - { - "id": 6873613, - "name": "REANIMACIÓN CARDIOPULMONAR Y DESA ", - "editionVersion": [ - { - "id": 6873614, - "startDate": "2018-04-02T00:00:00", - "endDate": "2018-04-02T00:00:00", - "totalVacancies": 24, - "totalReserved": 24, - "totalNumberOfHours": 10, - "totalInitialBudget": 2600, - "coordinador": "Esther Pardo Sánchez", - "state": "Cerrada" - }, - { - "id": 6873708, - "startDate": "2018-04-05T00:00:00", - "endDate": "2018-04-05T00:00:00", - "totalVacancies": 24, - "totalReserved": 24, - "totalNumberOfHours": 10, - "totalInitialBudget": 2600, - "coordinador": "Esther Pardo Sánchez", - "state": "Cerrada" - }, - { - "id": 6873748, - "startDate": "2018-05-28T00:00:00", - "endDate": "2018-05-28T00:00:00", - "totalVacancies": 24, - "totalReserved": 24, - "totalNumberOfHours": 10, - "totalInitialBudget": 2600, - "coordinador": "Valeriano Ortega Miravalles", - "state": "Cerrada" - }, - { - "id": 6980367, - "startDate": "2018-11-06T00:00:00", - "endDate": "2018-11-06T00:00:00", - "totalVacancies": 24, - "totalReserved": 0, - "totalNumberOfHours": 10, - "totalInitialBudget": 2600, - "coordinador": "Valeriano Ortega Miravalles", - "state": "Cerrada" - } - ], - "totalVacancies": 96, - "totalReserved": 72, - "totalNumberOfHours": 40, - "totalInitialBudget": 10400 - }, - { - "id": 6873809, - "name": "RECICLAJE DE REANIMACIÓN CARDIOPULMONAR Y DESA (Turno de mañana)", - "editionVersion": [ - { - "id": 6873810, - "startDate": "2018-04-04T00:00:00", - "endDate": "2018-04-04T00:00:00", - "totalVacancies": 24, - "totalReserved": 24, - "totalNumberOfHours": 5, - "totalInitialBudget": 1415, - "coordinador": "Esther Pardo Sánchez", - "state": "Cerrada" - }, - { - "id": 6873860, - "startDate": "2018-11-07T00:00:00", - "endDate": "2018-11-07T00:00:00", - "totalVacancies": 24, - "totalReserved": 0, - "totalNumberOfHours": 5, - "totalInitialBudget": 1415, - "coordinador": "Valeriano Ortega Miravalles", - "state": "Cerrada" - } - ], - "totalVacancies": 48, - "totalReserved": 24, - "totalNumberOfHours": 10, - "totalInitialBudget": 2830 - } - ], - "totalVacancies": 374, - "totalReserved": 238, - "totalNumberOfHours": 142, - "totalInitialBudget": 22770 - }, - { - "id": 6873883, - "name": "4.6 Asistencia Psicosocial en Emergencias.", - "trainingActivityVersion": [ - { - "id": 6873884, - "name": "APOYO PSICOLÓGICO, AUTOCONTROL EMOCIONAL Y MANEJO DE ESTRÉS EN GRUPOS DE INTERVENCIÓN", - "editionVersion": [ - { - "id": 6873885, - "startDate": "2018-05-21T00:00:00", - "endDate": "2018-05-25T00:00:00", - "totalVacancies": 30, - "totalReserved": 11, - "totalNumberOfHours": 30, - "totalInitialBudget": 1900, - "coordinador": "Isabel Vera Navascués", - "state": "Cerrada" - } - ], - "totalVacancies": 30, - "totalReserved": 11, - "totalNumberOfHours": 30, - "totalInitialBudget": 1900 - }, - { - "id": 6873921, - "name": "EL PSICÓLOGO EN SITUACIONES DE RIESGOS, EMERGENCIAS Y CATÁSTROFES: OBJETIVOS, FUNCIONES Y TAREAS", - "editionVersion": [ - { - "id": 6873922, - "startDate": "2018-06-25T00:00:00", - "endDate": "2018-06-29T00:00:00", - "totalVacancies": 25, - "totalReserved": 10, - "totalNumberOfHours": 30, - "totalInitialBudget": 2650, - "coordinador": "Elena Puertas López", - "state": "Cerrada" - } - ], - "totalVacancies": 25, - "totalReserved": 10, - "totalNumberOfHours": 30, - "totalInitialBudget": 2650 - }, - { - "id": 6873957, - "name": "GESTIÓN DE LA ATENCIÓN A VÍCTIMAS Y FAMILIARES EN EMERGENCIAS MASIVAS POR TRANSPORTE COLECTIVO", - "editionVersion": [ - { - "id": 6873958, - "startDate": "2018-03-20T00:00:00", - "endDate": "2018-03-22T00:00:00", - "totalVacancies": 25, - "totalReserved": 25, - "totalNumberOfHours": 21, - "totalInitialBudget": 3000, - "coordinador": "Elena Puertas López", - "state": "Cerrada" - }, - { - "id": 6873986, - "startDate": "2018-10-09T00:00:00", - "endDate": "2018-10-11T00:00:00", - "totalVacancies": 25, - "totalReserved": 25, - "totalNumberOfHours": 21, - "totalInitialBudget": 3000, - "coordinador": "Elena Puertas López", - "state": "Cerrada" - } - ], - "totalVacancies": 50, - "totalReserved": 50, - "totalNumberOfHours": 42, - "totalInitialBudget": 6000 - }, - { - "id": 6874049, - "name": "HABILIDADES PSICOSOCIALES EN LA GESTIÓN DE EMERGENCIAS", - "editionVersion": [ - { - "id": 6874050, - "startDate": "2018-11-27T00:00:00", - "endDate": "2018-11-29T00:00:00", - "totalVacancies": 30, - "totalReserved": 12, - "totalNumberOfHours": 18, - "totalInitialBudget": 1600, - "coordinador": "Isabel Vera Navascués", - "state": "Cerrada" - } - ], - "totalVacancies": 30, - "totalReserved": 12, - "totalNumberOfHours": 18, - "totalInitialBudget": 1600 - }, - { - "id": 6874068, - "name": "JORNADA TÉCNICA SOBRE FORMACIÓN, PLANIFICACIÓN E INTERVENCIÓN DE PSICÓLOGOS EN EMERGENCIAS Y CATÁSTROFES EN ESPAÑA", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - } - ], - "totalVacancies": 135, - "totalReserved": 83, - "totalNumberOfHours": 120, - "totalInitialBudget": 12150 - }, - { - "id": 6874069, - "name": "4.7 Técnicas Adicionales para las Intervenciones.", - "trainingActivityVersion": [ - { - "id": 6874070, - "name": "CURSO SOBRE RIESGOS NATURALES Y PC PARA PROFESIONALES DE LA INFORMACIÓN Y DIVULGACIÓN. (Nivel II)", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874071, - "name": "FORMACIÓN A PERSONAS DE CONTACTO DEL SISTEMA DE ASISTENCIA A VÍCTIMAS Y FAMILIARES DE ACCIDENTES AÉREOS. FASE 3. HABILIDADES PSICOSOCIALES PARA LAS PERSONAS DE CONTACTO", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874072, - "name": "FORMACIÓN INICIAL A PERSONAS DE CONTACTO DEL SISTEMA DE ASISTENCIA A VÍCTIMAS Y FAMILIARES DE ACCIDENTES AÉREOS. SEMIPRESENCIAL", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874073, - "name": "FORMACIÓN PRÁCTICA DE DESPLIEGUE, COMUNICACIONES Y MANEJO DE HERRAMIENTAS DE GEOPOSICIONAMIENTO PARA VOLUNTARIOS DE PROTECCIÓN CIVIL", - "editionVersion": [ - { - "id": 6874074, - "startDate": "2018-12-17T00:00:00", - "endDate": "2018-12-31T00:00:00", - "totalVacancies": 20, - "totalReserved": 0, - "totalNumberOfHours": 15, - "totalInitialBudget": 0, - "coordinador": "Roberto Martínez-Alegría López", - "state": "Anulada" - } - ], - "totalVacancies": 20, - "totalReserved": 0, - "totalNumberOfHours": 15, - "totalInitialBudget": 0 - }, - { - "id": 6874093, - "name": "INTERVENCIÓN EN PATRIMONIO CULTURAL EN SITUACIONES DE EMERGENCIA. PLAN NACIONAL DE EMERGENCIAS Y GESTIÓN DE RIESGOS", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874144, - "name": "INTRODUCCIÓN A LA CARTOGRAFÍA Y SITUACIÓN EN EL TERRENO PARA VOLUNTARIOS DE PROTECCIÓN CIVIL", - "editionVersion": [ - { - "id": 6874145, - "startDate": "2018-03-09T00:00:00", - "endDate": "2018-03-11T00:00:00", - "totalVacancies": 25, - "totalReserved": 0, - "totalNumberOfHours": 20, - "totalInitialBudget": 2320, - "coordinador": "Arturo Fuente Pedrejón", - "state": "Cerrada" - }, - { - "id": 6974386, - "startDate": "2018-06-01T00:00:00", - "endDate": "2018-06-03T00:00:00", - "totalVacancies": 25, - "totalReserved": 0, - "totalNumberOfHours": 20, - "totalInitialBudget": 2320, - "coordinador": "Arturo Fuente Pedrejón", - "state": "Cerrada" - } - ], - "totalVacancies": 50, - "totalReserved": 0, - "totalNumberOfHours": 40, - "totalInitialBudget": 4640 - }, - { - "id": 6874161, - "name": "JORNADA DE INTERVENCIÓN EN PATRIMONIO CULTURAL EN SITUACIONES DE EMERGENCIA. PLAN NACIONAL DE EMERGENCIAS Y GESTIÓN DE RIESGOS", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874192, - "name": "SEMINARIO SOBRE COORDINACIÓN INSTITUCIONAL EN LA ASISTENCIA A VÍCTIMAS DE ACCIDENTES DE AVIACIÓN CIVIL Y SUS FAMILIARES", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6975910, - "name": "JORNADA DE ACTUANTES DEL PENBU SOBRE AUTOPROTECCIÓN Y MANEJO DE LOS EQUIPAMIENTOS RADIOMÉTRICOS (PENBU)", - "editionVersion": [ - { - "id": 6975952, - "startDate": "2018-11-20T00:00:00", - "endDate": "2018-11-20T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 5, - "totalInitialBudget": 378, - "coordinador": "Javier Basconcillos Arce", - "state": "Cerrada" - } - ], - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 5, - "totalInitialBudget": 378 - } - ], - "totalVacancies": 90, - "totalReserved": 20, - "totalNumberOfHours": 60, - "totalInitialBudget": 5018 - }, - { - "id": 6874254, - "name": "4.8 Técnicas de Información y Comunicación en Emergencias.", - "trainingActivityVersion": [ - { - "id": 6874255, - "name": "COMUNICACIÓN EN LA ORGANIZACIÓN DE PROTECCIÓN CIVIL Y EMERGENCIAS", - "editionVersion": [ - { - "id": 6874256, - "startDate": "2018-05-12T00:00:00", - "endDate": "2018-05-20T00:00:00", - "totalVacancies": 30, - "totalReserved": 0, - "totalNumberOfHours": 25, - "totalInitialBudget": 3382, - "coordinador": "Angel Ibáñez Peiró", - "state": "Cerrada" - } - ], - "totalVacancies": 30, - "totalReserved": 0, - "totalNumberOfHours": 25, - "totalInitialBudget": 3382 - }, - { - "id": 6874318, - "name": "COMUNICACIONES DE EMERGENCIAS PARA VOLUNTARIOS DE PROTECCIÓN CIVIL", - "editionVersion": [ - { - "id": 6874319, - "startDate": "2018-03-24T00:00:00", - "endDate": "2018-03-25T00:00:00", - "totalVacancies": 30, - "totalReserved": 0, - "totalNumberOfHours": 12, - "totalInitialBudget": 1720, - "coordinador": "Ramón Pérez Barrientos", - "state": "Cerrada" - }, - { - "id": 6874340, - "startDate": "2018-04-14T00:00:00", - "endDate": "2018-04-15T00:00:00", - "totalVacancies": 30, - "totalReserved": 0, - "totalNumberOfHours": 12, - "totalInitialBudget": 1720, - "coordinador": "Juan Manuel Corral Sánchez", - "state": "Cerrada" - } - ], - "totalVacancies": 60, - "totalReserved": 0, - "totalNumberOfHours": 24, - "totalInitialBudget": 3440 - }, - { - "id": 6874360, - "name": "CURSO DE GESTIÓN DE LA INFORMACIÓN EN EMERGENCIAS", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874361, - "name": "JORNADA DEL SERVICIO DE COMUNICACIONES Y AVISOS A LA POBLACIÓN DE LOS PAMEN DEL PENBU", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874362, - "name": "JORNADA PRÁCTICA DE ACTIVACIÓN DE LA REMER PARA LA COBERTURA RADIO EN LA ZONA I DEL PENBU", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874363, - "name": "JORNADA TÉCNICA SOBRE LA INFORMACIÓN A LA POBLACIÓN EN LA GESTIÓN DE RIESGOS Y EMERGENCIAS: APLICACIÓN A LOS PLANES DE EMERGENCIA NUCLEAR", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874364, - "name": "JORNADA TÉCNICA SOBRE MANEJO DE LA APLICACIÓN INFORMÁTICA SIGAME", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874365, - "name": "JORNADA TÉCNICA SOBRE MANEJO DE LA APLICACIÓN SIAGEN PARA AYUDA A LA GESTIÓN DE EMERGENCIAS NUCLEARES", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874366, - "name": "JORNADA TÉCNICA SOBRE REDES DE COMUNICACIONES DE PROTECCIÓN CIVIL", - "editionVersion": [ - { - "id": 6874367, - "startDate": "2018-05-01T00:00:00", - "endDate": "2018-05-01T00:00:00", - "totalVacancies": 40, - "totalReserved": 40, - "totalNumberOfHours": 7, - "totalInitialBudget": 1500, - "coordinador": "Fernando Prieto Fernández", - "state": "Anulada" - } - ], - "totalVacancies": 40, - "totalReserved": 40, - "totalNumberOfHours": 7, - "totalInitialBudget": 1500 - }, - { - "id": 6874369, - "name": "SISTEMAS DE INFORMACIÓN Y TELECOMUNICACIONES EN EMERGENCIAS", - "editionVersion": [ - { - "id": 6874370, - "startDate": "2018-04-16T00:00:00", - "endDate": "2018-04-19T00:00:00", - "totalVacancies": 25, - "totalReserved": 11, - "totalNumberOfHours": 29, - "totalInitialBudget": 2800, - "coordinador": "José Pascual Torres", - "state": "Cerrada" - } - ], - "totalVacancies": 25, - "totalReserved": 11, - "totalNumberOfHours": 29, - "totalInitialBudget": 2800 - }, - { - "id": 6975955, - "name": "JORNADAS TÉCNICAS PARA ACTUANTES DE LOS PAMEN. COMUNICACIONES Y AVISOS EN LA POBLACIÓN EN LOS NUCLEOS DE POBLACIÓN ZONA I (PENBU)", - "editionVersion": [ - { - "id": 6975958, - "startDate": "2018-05-08T00:00:00", - "endDate": "2018-05-08T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 5, - "totalInitialBudget": 378, - "coordinador": "Javier Basconcillos Arce", - "state": "Cerrada" - }, - { - "id": 6975960, - "startDate": "2018-05-16T00:00:00", - "endDate": "2018-05-16T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 5, - "totalInitialBudget": 378, - "coordinador": "Javier Basconcillos Arce", - "state": "Cerrada" - }, - { - "id": 6975962, - "startDate": "2018-05-30T00:00:00", - "endDate": "2018-05-30T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 5, - "totalInitialBudget": 378, - "coordinador": "Javier Basconcillos Arce", - "state": "Cerrada" - }, - { - "id": 6975964, - "startDate": "2018-12-31T00:00:00", - "endDate": "2018-12-31T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 5, - "totalInitialBudget": 378, - "coordinador": "Javier Basconcillos Arce", - "state": "Anulada" - }, - { - "id": 6977045, - "startDate": "2018-12-31T00:00:00", - "endDate": "2018-12-31T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 5, - "totalInitialBudget": 378, - "coordinador": " ", - "state": "Anulada" - } - ], - "totalVacancies": 100, - "totalReserved": 100, - "totalNumberOfHours": 25, - "totalInitialBudget": 1890 - }, - { - "id": 6978319, - "name": "JORNADA DE FORMACION GENERAL TEÓRICO-PRÁCTICA DE EN COMUNICACIONES EN EMERGENCIAS NUCLEARES (PENBU)", - "editionVersion": [ - { - "id": 6978322, - "startDate": "2018-12-31T00:00:00", - "endDate": "2018-12-31T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 5, - "totalInitialBudget": 378, - "coordinador": " ", - "state": "Anulada" - } - ], - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 5, - "totalInitialBudget": 378 - }, - { - "id": 6980123, - "name": "INFORMACIÓN A LA POBLACIÓN EN SITUACIONES DE RIESGOS Y EMERGENCIA. CULTURA PREVENTIVA Y RESILIENCIA", - "editionVersion": [ - { - "id": 6980125, - "startDate": "2018-04-23T00:00:00", - "endDate": "2018-04-27T00:00:00", - "totalVacancies": 25, - "totalReserved": 0, - "totalNumberOfHours": 30, - "totalInitialBudget": 3000, - "coordinador": "Elena Puertas López", - "state": "Cerrada" - } - ], - "totalVacancies": 25, - "totalReserved": 0, - "totalNumberOfHours": 30, - "totalInitialBudget": 3000 - }, - { - "id": 6980149, - "name": "JORNADA SOBRE LA RED DE EMERGENCIA REMER EN EL MARCO DE LA LEY 1772015 DEL SNPC", - "editionVersion": [ - { - "id": 6980152, - "startDate": "2018-11-29T00:00:00", - "endDate": "2018-11-29T00:00:00", - "totalVacancies": 40, - "totalReserved": 0, - "totalNumberOfHours": 5, - "totalInitialBudget": 1000, - "coordinador": "Jesús Portillo García-Pintos", - "state": "Programación" - } - ], - "totalVacancies": 40, - "totalReserved": 0, - "totalNumberOfHours": 5, - "totalInitialBudget": 1000 - } - ], - "totalVacancies": 340, - "totalReserved": 171, - "totalNumberOfHours": 150, - "totalInitialBudget": 17390 - } - ], - "totalVacancies": 4184, - "totalReserved": 2851, - "totalNumberOfHours": 2447, - "totalInitialBudget": 386159 - }, - { - "id": 6874422, - "name": "5 REHABILITACIÓN Y RECONSTRUCCION EN CATÁSTROFES", - "submoduleVersion": [ - { - "id": 6874423, - "name": "5.1 Evaluación de Daños.", - "trainingActivityVersion": [ - { - "id": 6874424, - "name": "CURSO PARA SECRETARIOS DE AYUNTAMIENTOS Y TÉCNICOS MUNICIPALES", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874425, - "name": "INTERVENCIÓN TÉCNICA EN CATÁSTROFES: ESTIMACIÓN Y VALORACIÓN DE DAÑOS", - "editionVersion": [ - { - "id": 6874426, - "startDate": "2018-03-12T00:00:00", - "endDate": "2018-03-16T00:00:00", - "totalVacancies": 30, - "totalReserved": 6, - "totalNumberOfHours": 25, - "totalInitialBudget": 2900, - "coordinador": "Sofía González López", - "state": "Cerrada" - } - ], - "totalVacancies": 30, - "totalReserved": 6, - "totalNumberOfHours": 25, - "totalInitialBudget": 2900 - } - ], - "totalVacancies": 30, - "totalReserved": 6, - "totalNumberOfHours": 25, - "totalInitialBudget": 2900 - }, - { - "id": 6874479, - "name": "5.2 Restablecimento Servicios Básicos.", - "trainingActivityVersion": [ - { - "id": 6874480, - "name": "INTERVENCIÓN DEL VOLUNTARIADO DE ARQUITECTURA E INGENIERÍA EN CATÁSTROFES", - "editionVersion": [ - { - "id": 6874481, - "startDate": "2018-11-05T00:00:00", - "endDate": "2018-11-09T00:00:00", - "totalVacancies": 40, - "totalReserved": 0, - "totalNumberOfHours": 25, - "totalInitialBudget": 0, - "coordinador": "Magdalena Lorente Martínez", - "state": "Anulada" - } - ], - "totalVacancies": 40, - "totalReserved": 0, - "totalNumberOfHours": 25, - "totalInitialBudget": 0 - }, - { - "id": 6874500, - "name": "REHABILITACIÓN POST CATÁSTROFES", - "editionVersion": [ - { - "id": 6874501, - "startDate": "2018-11-05T00:00:00", - "endDate": "2018-11-08T00:00:00", - "totalVacancies": 25, - "totalReserved": 10, - "totalNumberOfHours": 28, - "totalInitialBudget": 3561, - "coordinador": "José Pascual Torres", - "state": "Cerrada" - } - ], - "totalVacancies": 25, - "totalReserved": 10, - "totalNumberOfHours": 28, - "totalInitialBudget": 3561 - } - ], - "totalVacancies": 65, - "totalReserved": 10, - "totalNumberOfHours": 53, - "totalInitialBudget": 3561 - }, - { - "id": 6874546, - "name": "5.3 Ayudas y Subvenciones a la Rehabilitación", - "trainingActivityVersion": [ - { - "id": 6874547, - "name": "JORNADAS FORMATIVAS PARA RESPONSABLES TÉCNICOS MUNICIPALES EN LA ELABORACIÓN DE PROYECTOS DESTINADOS A SUBVENCIONES Y AYUDAS (PENBU)", - "editionVersion": [ - { - "id": 6874548, - "startDate": "2018-12-31T00:00:00", - "endDate": "2018-12-31T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 5, - "totalInitialBudget": 378, - "coordinador": "Javier Basconcillos Arce", - "state": "Anulada" - } - ], - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 5, - "totalInitialBudget": 378 - } - ], - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 5, - "totalInitialBudget": 378 - } - ], - "totalVacancies": 115, - "totalReserved": 36, - "totalNumberOfHours": 83, - "totalInitialBudget": 6839 - }, - { - "id": 6874572, - "name": "6 INTERNACIONAL", - "submoduleVersion": [ - { - "id": 6874573, - "name": "6.1 Iberoamérica.", - "trainingActivityVersion": [ - { - "id": 6874574, - "name": "ACTIVIDAD VIRTUAL “RED DE EXPERTOS EN GESTIÓN DE RIESGOS DE DESASTRES”", - "editionVersion": [ - { - "id": 6874575, - "startDate": "2018-10-01T00:00:00", - "endDate": "2018-12-31T00:00:00", - "totalVacancies": 50, - "totalReserved": 50, - "totalNumberOfHours": 150, - "totalInitialBudget": 0, - "coordinador": "Angela Potenciano de las Heras", - "state": "Programación" - } - ], - "totalVacancies": 50, - "totalReserved": 50, - "totalNumberOfHours": 150, - "totalInitialBudget": 0 - }, - { - "id": 6874577, - "name": "CIUDADES EN RIESGO FRENTE A CIUDADES RESILIENTES EN EL HORIZONTE DEL CAMBIO CLIMÁTICO", - "editionVersion": [ - { - "id": 6874578, - "startDate": "2018-05-28T00:00:00", - "endDate": "2018-06-01T00:00:00", - "totalVacancies": 25, - "totalReserved": 25, - "totalNumberOfHours": 35, - "totalInitialBudget": 8400, - "coordinador": "Angela Potenciano de las Heras", - "state": "Anulada" - } - ], - "totalVacancies": 25, - "totalReserved": 25, - "totalNumberOfHours": 35, - "totalInitialBudget": 8400 - }, - { - "id": 6874641, - "name": "CURSO DE COORDINACIÓN INTERNACIONAL ANTE DESASTRES (Nivel III).", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874642, - "name": "CURSO DE DIRECCIÓN Y GESTIÓN DE EMERGENCIAS: EVALUACIÓN, COMUNICACIÓN Y COORDINACIÓN. (Nivel III).", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874643, - "name": "CURSO DE EVALUACIÓN Y COORDINACIÓN DE AYUDA INTERNACIONAL ", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874644, - "name": "CURSO DE FORMACIÓN BÁSICA Y DE ESPECIALIZACIÓN DE GUÍAS CANINOS PARA SALVAMENTO EN ESTRUCTURAS COLAPSADAS. (Nivel III).", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874645, - "name": "CURSO DE GESTIÓN DE RIESGOS ASOCIADOS A GRANDES CONCENTRACIONES HUMANAS", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874646, - "name": "CURSO DE PLANIFICACIÓN DE RECURSOS Y SERVICIOS BÁSICOS EN EMERGENCIAS LOCALES. PLANES DE CONTINGENCIA Y Y PLANES DE INTEGRACIÓN DE EMERGENCIAS", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874647, - "name": "CURSO DE PROGRAMAS PARA EL DESARROLLO DE UNA CULTURA PREVENTIVA EN PROTECCIÓN CIVIL", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874648, - "name": "CURSO RIESGO Y TERRITORIO: GESTIÓN DEL RIESGO DE DESASTRES EN LAS POLÍTICAS PÚBLICAS DE PLANIFICACIÓN TERRITORIAL Y ORDENACIÓN URBANA", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874649, - "name": "GESTIÓN OPERATIVA EN CATÁSTROFES", - "editionVersion": [ - { - "id": 6874650, - "startDate": "2018-11-12T00:00:00", - "endDate": "2018-11-23T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 95, - "totalInitialBudget": 15300, - "coordinador": "Julio César Ramos Fernández", - "state": "Programación" - } - ], - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 95, - "totalInitialBudget": 15300 - }, - { - "id": 6874652, - "name": "GESTIÓN Y PLANIFICACIÓN DE EMERGENCIAS EN ENTORNOS URBANOS. ONLINE", - "editionVersion": [ - { - "id": 6874653, - "startDate": "2018-10-22T00:00:00", - "endDate": "2018-12-16T00:00:00", - "totalVacancies": 50, - "totalReserved": 50, - "totalNumberOfHours": 110, - "totalInitialBudget": 0, - "coordinador": "Angela Potenciano de las Heras", - "state": "Programación" - } - ], - "totalVacancies": 50, - "totalReserved": 50, - "totalNumberOfHours": 110, - "totalInitialBudget": 0 - }, - { - "id": 6874655, - "name": "HERRAMIENTAS PARA EL ANÁLISIS DE LOS RIESGOS NATURALES EN PROTECCIÓN CIVIL", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874656, - "name": "LA FORMACIÓN COMO OBJETIVO PRIORITARIO EN LA POLÍTICAS PÚBLICAS DE PROTECCIÓN CIVIL", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874657, - "name": "LA GESTIÓN INTEGRAL DE LOS RIESGOS NATURALES Y TECNOLÓGICOS", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874658, - "name": "LA PREVENCIÓN DEL RIESGO DE DESASTRES EN LA ORDENACIÓN TERRITORIAL Y EL DESARROLLO URBANO", - "editionVersion": [ - { - "id": 6874659, - "startDate": "2018-05-21T00:00:00", - "endDate": "2018-05-25T00:00:00", - "totalVacancies": 25, - "totalReserved": 25, - "totalNumberOfHours": 35, - "totalInitialBudget": 8500, - "coordinador": "María Vara Moral", - "state": "Anulada" - } - ], - "totalVacancies": 25, - "totalReserved": 25, - "totalNumberOfHours": 35, - "totalInitialBudget": 8500 - }, - { - "id": 6874666, - "name": "LA REHABILITACIÓN POST CATÁSTROFE. EL CAMINO HACIA LA PREVENCIÓN. EVALUACIÓN DE DAÑOS Y GESTIÓN ECONÓMICA DE LAS AYUDAS", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874667, - "name": "ANÁLISIS DE DESASTRES NATURALES Y MEDIDAS PARA SU MITIGACIÓN", - "editionVersion": [ - { - "id": 6874668, - "startDate": "2018-11-19T00:00:00", - "endDate": "2018-11-23T00:00:00", - "totalVacancies": 25, - "totalReserved": 25, - "totalNumberOfHours": 35, - "totalInitialBudget": 8500, - "coordinador": "Mercedes Vallejo Bombín", - "state": "Anulada" - } - ], - "totalVacancies": 25, - "totalReserved": 25, - "totalNumberOfHours": 35, - "totalInitialBudget": 8500 - }, - { - "id": 6874700, - "name": "PREVENCIÓN Y PLANIFICACIÓN DE RIESGOS NATURALES Y TECNOLÓGICOS", - "editionVersion": [ - { - "id": 6874701, - "startDate": "2018-11-12T00:00:00", - "endDate": "2018-11-23T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 65, - "totalInitialBudget": 15300, - "coordinador": "Mercedes Vallejo Bombín", - "state": "Programación" - } - ], - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 65, - "totalInitialBudget": 15300 - }, - { - "id": 6874753, - "name": "SEMINARIO DE CONCLUSIONES DE LA RED DE EXPERTOS PROGRAMA DE GESTION INTEGRAL DEL RIESGO PARA LA REDUCCIÓN DE DESASTRES", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874754, - "name": "SEMINARIO SOBRE LA ACCIÓN SOCIAL EN GESTIÓN DEL RIESGO DE DESASTRE: CULTURA PREVENTIVA Y RESILIENCIA", - "editionVersion": [ - { - "id": 6874755, - "startDate": "2018-09-17T00:00:00", - "endDate": "2018-09-30T00:00:00", - "totalVacancies": 25, - "totalReserved": 25, - "totalNumberOfHours": 35, - "totalInitialBudget": 0, - "coordinador": "Angela Potenciano de las Heras", - "state": "Programación" - } - ], - "totalVacancies": 25, - "totalReserved": 25, - "totalNumberOfHours": 35, - "totalInitialBudget": 0 - }, - { - "id": 6980157, - "name": "GESTIÓN DEL RIESGO EN GRANDES CONCENTRACIONES HUMANAS", - "editionVersion": [ - { - "id": 6980159, - "startDate": "2018-10-22T00:00:00", - "endDate": "2018-10-26T00:00:00", - "totalVacancies": 25, - "totalReserved": 25, - "totalNumberOfHours": 35, - "totalInitialBudget": 9500, - "coordinador": "Fernando Talavera Esteso", - "state": "Anulada" - } - ], - "totalVacancies": 25, - "totalReserved": 25, - "totalNumberOfHours": 35, - "totalInitialBudget": 9500 - }, - { - "id": 6980162, - "name": "COORDINACIÓN DE EMERGENCIAS DESDE CENTROS NACIONALES DE OPERACIONES", - "editionVersion": [ - { - "id": 6980165, - "startDate": "2018-07-31T00:00:00", - "endDate": "2018-07-31T00:00:00", - "totalVacancies": 25, - "totalReserved": 25, - "totalNumberOfHours": 35, - "totalInitialBudget": 9200, - "coordinador": "Francisco José Ruiz Boada", - "state": "Anulada" - } - ], - "totalVacancies": 25, - "totalReserved": 25, - "totalNumberOfHours": 35, - "totalInitialBudget": 9200 - }, - { - "id": 8216482, - "name": "LIDERAZGO APLICADO A LA DIRECCIÓN Y GESTIÓN DE EMERGENCIAS", - "editionVersion": [ - { - "id": 8216485, - "startDate": "2018-10-29T00:00:00", - "endDate": "2018-10-31T00:00:00", - "totalVacancies": 9, - "totalReserved": 9, - "totalNumberOfHours": 21, - "totalInitialBudget": 3500, - "coordinador": "Francisco Javier Frutos Gonzalez", - "state": "Cerrada" - } - ], - "totalVacancies": 9, - "totalReserved": 9, - "totalNumberOfHours": 21, - "totalInitialBudget": 3500 - } - ], - "totalVacancies": 299, - "totalReserved": 299, - "totalNumberOfHours": 651, - "totalInitialBudget": 78200 - }, - { - "id": 6874757, - "name": "6.2 Unión Europea.", - "trainingActivityVersion": [ - { - "id": 6874758, - "name": "\"JORNADA / SEMINARIO Nº 1\"", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874759, - "name": "\"JORNADA / SEMINARIO Nº 2\"", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874760, - "name": "5º ENCUENTRO DEL FORO EUROPEO PARA LA REDUCCIÓN DEL RIESGO DE DESASTRES", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874761, - "name": "EXERCÍCIO COMMAND POST EXERCISE (CPX) - PUESTO DE COMANDO", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874762, - "name": "EXERCÍCIO TABLE-TOP (NÍVEL CODIS/CADIS - DIRETOR DE OPERAÇÕES)", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874763, - "name": "FASE DE ENTRENAMIENTO DEL PROYECTO ERICHA", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874766, - "name": "FASE DE ENTRENAMIENTO Y DISEMINACIÓN DEL PROYECTO SAFETY", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874769, - "name": "JORNADA INTERNACIONAL", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874770, - "name": "JORNADA TÉCNICA SOBRE RESILIENCIA EN LAS ADMINISTRACIONES PÚBLICAS ESPAÑOLAS", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874771, - "name": "JORNADAS DE PRESENTACIÓN DEL PROYECTO IGNIS (Initiative for Global maNagement of bIg fires through Simulation)", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874774, - "name": "RISK MAPPING WORKSHOP. EUROMED PPRD SOUTH PROGRAMME II.", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874775, - "name": "SESIÓN INFORMATIVA SOBRE PROGRAMA DE TRABAJO P.C. UE", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874776, - "name": "TALLER HISPANO-LUSO DE LUCHA CONTRA INCENDIOS FORESTALES: HERAMIENTAS DE GESTIÓN OPERATIVA Y SIMULACIÓN", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874785, - "name": "WORKSHOP: OPERACIONES DE EXTINCIÓN DE INCENDIOS FORESTALES EN LAS REGIONES FRONTERIZAS (PORTUGAL / ESPAÑA)", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6980168, - "name": "SEMINARIO FRANCO-ESPAÑOL SOBRE RIESGOS TECNOLÓGICOS", - "editionVersion": [ - { - "id": 6980171, - "startDate": "2018-04-17T00:00:00", - "endDate": "2018-04-18T00:00:00", - "totalVacancies": 12, - "totalReserved": 12, - "totalNumberOfHours": 12, - "totalInitialBudget": 5000, - "coordinador": "Pablo Calvo Barrios", - "state": "Cerrada" - } - ], - "totalVacancies": 12, - "totalReserved": 12, - "totalNumberOfHours": 12, - "totalInitialBudget": 5000 - }, - { - "id": 6980177, - "name": "JORNADA DE COORDINACIÓN EN INCENDIOS FORESTALES TRANSFRONTERIZOS PORTUGAL - ESPAÑA", - "editionVersion": [ - { - "id": 6980182, - "startDate": "2018-11-05T00:00:00", - "endDate": "2018-11-09T00:00:00", - "totalVacancies": 10, - "totalReserved": 10, - "totalNumberOfHours": 5, - "totalInitialBudget": 3000, - "coordinador": "Angela Potenciano de las Heras", - "state": "Cerrada" - } - ], - "totalVacancies": 10, - "totalReserved": 10, - "totalNumberOfHours": 5, - "totalInitialBudget": 3000 - } - ], - "totalVacancies": 22, - "totalReserved": 22, - "totalNumberOfHours": 17, - "totalInitialBudget": 8000 - }, - { - "id": 6874786, - "name": "6.6 África.", - "trainingActivityVersion": [ - { - "id": 6874787, - "name": "CURSO DE FORMACIÓN DE INSTRUCTORES PARA BOMBEROS DE SENEGAL. (Nivel III).", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - } - ], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0, - "totalInitialBudget": 0 - } - ], - "totalVacancies": 321, - "totalReserved": 321, - "totalNumberOfHours": 668, - "totalInitialBudget": 86200 + "data": { + "id": 1236865748, + "name": "Plan de formación 2018", + "year": 2018, + "moduleVersion": [{ + "id": 6865749, + "name": "1 FORMACIÓN GENERAL", + "submoduleVersion": [{ + "id": 6865750, + "name": "1.2 Cursos Generales de Protección Civil.", + "trainingActivityVersion": [{ + "id": 6865751, + "name": "CURSO DE ASPECTOS LEGALES DE LA PROTECCION CIVIL.", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6865752, + "name": "CURSO DE FORMACIÓN PARA EL MANEJO DE LA APLICACIÓN SAFE", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6865753, + "name": "ESPECIALISTA EN PROTECCIÓN CIVIL Y EMERGENCIAS. Edición on-line.", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6866456, + "name": "FORMACIÓN GENERAL EN PROTECCIÓN CIVIL PARA JEFES DE AGRUPACIÓN Y VOLUNTARIOS DE PC. ONLINE", + "editionVersion": [{ + "id": 6866457, + "startDate": "2018-04-13T00:00:00", + "endDate": "2018-06-27T00:00:00", + "totalVacancies": 60, + "totalReserved": 0, + "totalNumberOfHours": 60, + "totalInitialBudget": 4650, + "coordinador": "Araceli Ruiz Anca", + "state": "Cerrada" + }], + "totalVacancies": 60, + "totalReserved": 0, + "totalNumberOfHours": 60, + "totalInitialBudget": 4650 + }, + { + "id": 6866577, + "name": "JORNADA TÉCNICA PARA COORDINADORES DE ACTIVIDADES FORMATIVAS DENTRO DEL PLAN DE FORMACIÓN DE LA ESCUELA NACIONAL DE PROTECCIÓN CIVIL", + "editionVersion": [{ + "id": 6866578, + "startDate": "2018-02-06T00:00:00", + "endDate": "2018-02-06T00:00:00", + "totalVacancies": 30, + "totalReserved": 0, + "totalNumberOfHours": 4, + "totalInitialBudget": 300, + "coordinador": "Antonia Garcés de Marcilla Val", + "state": "Programación" + }], + "totalVacancies": 30, + "totalReserved": 0, + "totalNumberOfHours": 4, + "totalInitialBudget": 300 + }, + { + "id": 6866587, + "name": "PROTECCIÓN CIVIL. PLANIFICACIÓN DE EMERGENCIAS POR RIESGOS METEOROLÓGICOS, INUNDACIONES E INCENDIOS FORESTALES", + "editionVersion": [{ + "id": 6866588, + "startDate": "2018-05-07T00:00:00", + "endDate": "2018-05-10T00:00:00", + "totalVacancies": 30, + "totalReserved": 0, + "totalNumberOfHours": 30, + "totalInitialBudget": 3000, + "coordinador": "Rafael Aramendi Sánchez", + "state": "Cerrada" + }], + "totalVacancies": 30, + "totalReserved": 0, + "totalNumberOfHours": 30, + "totalInitialBudget": 3000 + } + ], + "totalVacancies": 120, + "totalReserved": 0, + "totalNumberOfHours": 94, + "totalInitialBudget": 7950 + }, + { + "id": 6866627, + "name": "1.3 La Protección Civil en el Contexto de la Comunidad Internacional.", + "trainingActivityVersion": [{ + "id": 6866628, + "name": "AYUDA HUMANITARIA Y COOPERACIÓN INTERNACIONAL EN MATERIA DE PROTECCIÓN CIVIL", + "editionVersion": [{ + "id": 6866629, + "startDate": "2018-04-23T00:00:00", + "endDate": "2018-04-27T00:00:00", + "totalVacancies": 25, + "totalReserved": 11, + "totalNumberOfHours": 35, + "totalInitialBudget": 3500, + "coordinador": "Angela Potenciano de las Heras", + "state": "Cerrada" + }], + "totalVacancies": 25, + "totalReserved": 11, + "totalNumberOfHours": 35, + "totalInitialBudget": 3500 + }, + { + "id": 6866704, + "name": "JORNADA INFORMATIVA PROGRAMA ANUAL 2018 DE PROTECCIÓN CIVIL UNIÓN EUROPEA", + "editionVersion": [{ + "id": 6866705, + "startDate": "2018-02-08T00:00:00", + "endDate": "2018-02-08T00:00:00", + "totalVacancies": 40, + "totalReserved": 0, + "totalNumberOfHours": 4, + "totalInitialBudget": 450, + "coordinador": "Álvaro de la Peña Cuesta", + "state": "Cerrada" + }], + "totalVacancies": 40, + "totalReserved": 0, + "totalNumberOfHours": 4, + "totalInitialBudget": 450 + } + ], + "totalVacancies": 65, + "totalReserved": 11, + "totalNumberOfHours": 39, + "totalInitialBudget": 3950 + }, + { + "id": 6866720, + "name": "1.4 Organización de la Protección Civil.", + "trainingActivityVersion": [{ + "id": 6866721, + "name": "ACTUACIÓN DEL SISTEMA NACIONAL DE PROTECCIÓN CIVIL: COMUNIDADES AUTÓNOMAS", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6866724, + "name": "ACTUACIÓN DEL SISTEMA NACIONAL DE PROTECCIÓN CIVIL: DELEGACIONES Y SUBDELEGACIONES EL GOBIERNO", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6866727, + "name": "AUTOPROTECCIÓN Y GESTIÓN DE EMERGENCIAS EN RENFE Y ADIF", + "editionVersion": [{ + "id": 6866728, + "startDate": "2018-06-20T00:00:00", + "endDate": "2018-06-21T00:00:00", + "totalVacancies": 30, + "totalReserved": 19, + "totalNumberOfHours": 14, + "totalInitialBudget": 320, + "coordinador": "Salvador Rodríguez Pérez", + "state": "Cerrada" + }], + "totalVacancies": 30, + "totalReserved": 19, + "totalNumberOfHours": 14, + "totalInitialBudget": 320 + }, + { + "id": 6866761, + "name": "COHESIÓN DEL SISTEMA NACIONAL DE PROTECCIÓN CIVIL: OTRAS ACTIVIDADES", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6866764, + "name": "CURSO DE AUTOPROTECCIÓN Y EMERGENCIAS EN EL ÁMBITO FERROVIARIO", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6866765, + "name": "CURSO LA ORGANIZACIÓN DE RENFE Y SU ACTUACIÓN EN SITUACIONES DE EMERGENCIA", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6866766, + "name": "EL SISTEMA DE PROTECCIÓN CIVIL ESPAÑOL Y LA GESTIÓN DE LAS EMERGENCIAS A NIVEL NACIONAL E INTERNACIONAL", + "editionVersion": [{ + "id": 6866767, + "startDate": "2018-10-01T00:00:00", + "endDate": "2018-11-29T00:00:00", + "totalVacancies": 52, + "totalReserved": 16, + "totalNumberOfHours": 55, + "totalInitialBudget": 6840, + "coordinador": "María Vara Moral", + "state": "Cerrada" + }], + "totalVacancies": 52, + "totalReserved": 16, + "totalNumberOfHours": 55, + "totalInitialBudget": 6840 + }, + { + "id": 6867071, + "name": "JORNADA PARA INTERVINIENTES EN LA OPERACIÓN PASO DEL ESTRECHO", + "editionVersion": [{ + "id": 6867072, + "startDate": "2018-05-31T00:00:00", + "endDate": "2018-06-01T00:00:00", + "totalVacancies": 50, + "totalReserved": 50, + "totalNumberOfHours": 14, + "totalInitialBudget": 300, + "coordinador": "Francisco Emilio Magaña López", + "state": "Cerrada" + }, + { + "id": 6867108, + "startDate": "2018-06-13T00:00:00", + "endDate": "2018-06-14T00:00:00", + "totalVacancies": 50, + "totalReserved": 50, + "totalNumberOfHours": 13, + "totalInitialBudget": 300, + "coordinador": "Tarek Loukili Lamrani", + "state": "Cerrada" + }, + { + "id": 6867174, + "startDate": "2018-06-12T00:00:00", + "endDate": "2018-06-13T00:00:00", + "totalVacancies": 50, + "totalReserved": 50, + "totalNumberOfHours": 14, + "totalInitialBudget": 300, + "coordinador": "Enrique Álvarez Vigil", + "state": "Cerrada" + }, + { + "id": 7536743, + "startDate": "2018-05-28T00:00:00", + "endDate": "2018-05-29T00:00:00", + "totalVacancies": 50, + "totalReserved": 0, + "totalNumberOfHours": 12, + "totalInitialBudget": 300, + "coordinador": "Antonio García Montero", + "state": "Cerrada" + } + ], + "totalVacancies": 200, + "totalReserved": 150, + "totalNumberOfHours": 53, + "totalInitialBudget": 1200 + }, + { + "id": 6867237, + "name": "JORNADA SOBRE EL FUTURO DE LA FORMACIÓN EN EMERGENCIAS EN EL MARCO DE LAS CUALIFICACIONES PROFESIONALES", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6867238, + "name": "JORNADA TÉCNICA SOBRE NUEVA NORMATIVA EN EMERGENCIAS POR INCENDIOS FORESTALES", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6867239, + "name": "JORNADAS FORMATIVAS SOBRE EL SNPC PARA VOLUNTARIOS REMER Y PROTECCIÓN CIVIL", + "editionVersion": [{ + "id": 6867240, + "startDate": "2018-12-31T00:00:00", + "endDate": "2018-12-31T00:00:00", + "totalVacancies": 40, + "totalReserved": 0, + "totalNumberOfHours": 7, + "totalInitialBudget": 1000, + "coordinador": "Rita María Domínguez Monzón", + "state": "Anulada" + }], + "totalVacancies": 40, + "totalReserved": 0, + "totalNumberOfHours": 7, + "totalInitialBudget": 1000 + }, + { + "id": 6867242, + "name": "JORNADAS TÉCNICAS SOBRE COORDINACIÓN EN FORMACIÓN EN PROTECCIÓN CIVIL", + "editionVersion": [{ + "id": 6867243, + "startDate": "2018-06-26T00:00:00", + "endDate": "2018-06-27T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 6, + "totalInitialBudget": 1660, + "coordinador": "Antonia Garcés de Marcilla Val", + "state": "Cerrada" + }], + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 6, + "totalInitialBudget": 1660 + }, + { + "id": 6980200, + "name": "JORNADA ABIERTA SOBRE EL SISTEMA NACIONAL DE PROTECCIÓN CIVIL", + "editionVersion": [{ + "id": 6980203, + "startDate": "2018-02-20T00:00:00", + "endDate": "2018-02-20T00:00:00", + "totalVacancies": 90, + "totalReserved": 90, + "totalNumberOfHours": 5, + "totalInitialBudget": 1000, + "coordinador": "Antonia Garcés de Marcilla Val", + "state": "Cerrada" + }, + { + "id": 6980205, + "startDate": "2018-12-31T00:00:00", + "endDate": "2018-12-31T00:00:00", + "totalVacancies": 40, + "totalReserved": 40, + "totalNumberOfHours": 5, + "totalInitialBudget": 1000, + "coordinador": "Antonia Garcés de Marcilla Val", + "state": "Anulada" + } + ], + "totalVacancies": 130, + "totalReserved": 130, + "totalNumberOfHours": 10, + "totalInitialBudget": 2000 + }, + { + "id": 6980209, + "name": "CURSO ONLINE SOBRE EL SISTEMA NACIONAL DE PROTECCIÓN CIVIL PARA NO DIRECTIVOS", + "editionVersion": [{ + "id": 6980211, + "startDate": "2018-12-31T00:00:00", + "endDate": "2018-12-31T00:00:00", + "totalVacancies": 52, + "totalReserved": 0, + "totalNumberOfHours": 35, + "totalInitialBudget": 2000, + "coordinador": "María Dolores Monzón Merchán", + "state": "Anulada" + }], + "totalVacancies": 52, + "totalReserved": 0, + "totalNumberOfHours": 35, + "totalInitialBudget": 2000 + }, + { + "id": 6980213, + "name": "JORNADA SOBRE LA COORDINACIÓN DE LAS UNIDADES DE PC DE LAS DELEGACIONES DEL GOBIERNO PLURIPROVINCIALES CON LAS SUBDELEGACIONES DEL GOBIERNO DE SU ÁMBITO TERRITORIAL Y LA DGPCE", + "editionVersion": [{ + "id": 6980216, + "startDate": "2018-12-31T00:00:00", + "endDate": "2018-12-31T00:00:00", + "totalVacancies": 40, + "totalReserved": 40, + "totalNumberOfHours": 5, + "totalInitialBudget": 1500, + "coordinador": " ", + "state": "Anulada" + }], + "totalVacancies": 40, + "totalReserved": 40, + "totalNumberOfHours": 5, + "totalInitialBudget": 1500 + }, + { + "id": 8206127, + "name": "EL SISTEMA NACIONAL DE PROTECCIÓN CIVIL: COORDINACIÓN DE ACTUACIONES", + "editionVersion": [{ + "id": 8206139, + "startDate": "2018-11-20T00:00:00", + "endDate": "2018-11-20T00:00:00", + "totalVacancies": 80, + "totalReserved": 80, + "totalNumberOfHours": 6, + "totalInitialBudget": 30000, + "coordinador": "Araceli Ruiz Anca", + "state": "Cerrada" + }], + "totalVacancies": 80, + "totalReserved": 80, + "totalNumberOfHours": 6, + "totalInitialBudget": 30000 + } + ], + "totalVacancies": 644, + "totalReserved": 455, + "totalNumberOfHours": 191, + "totalInitialBudget": 46520 + }, + { + "id": 6867255, + "name": "1.1 Fundamentos de la Protección Civil", + "trainingActivityVersion": [{ + "id": 6867256, + "name": "***JORNADA SOBRE EL NUEVO MARCO LEGAL DE PROTECCIÓN CIVIL: LEY 17/2015 DEL SISTEMA NACIONAL DE PROTECCIÓN CIVIL", + "editionVersion": [{ + "id": 8552600, + "startDate": "2018-12-30T00:00:00", + "endDate": "2018-12-31T00:00:00", + "totalVacancies": 80, + "totalReserved": 0, + "totalNumberOfHours": 8, + "totalInitialBudget": 0, + "coordinador": "María Vara Moral", + "state": "Programación" }, { - "id": 8585225, - "name": "7 Prueba alberto", - "submoduleVersion": [ - { - "id": 8585227, - "name": "Prueba Alberto Modulo", - "trainingActivityVersion": [ - { - "id": 8585229, - "name": "Prueba Alberto Submodulo", - "editionVersion": [ - { - "id": 8585231, - "startDate": "2018-09-20T00:00:00", - "endDate": "2018-09-21T00:00:00", - "totalVacancies": 34, - "totalReserved": 0, - "totalNumberOfHours": 21, - "totalInitialBudget": 1000, - "coordinador": "José Pascual Torres", - "state": "Cerrada" - } - ], - "totalVacancies": 34, - "totalReserved": 0, - "totalNumberOfHours": 21, - "totalInitialBudget": 1000 - } - ], - "totalVacancies": 34, - "totalReserved": 0, - "totalNumberOfHours": 21, - "totalInitialBudget": 1000 - } - ], - "totalVacancies": 34, + "id": 8552602, + "totalVacancies": 80, + "totalReserved": 0, + "totalNumberOfHours": 8, + "totalInitialBudget": 0, + "coordinador": "María Vara Moral", + "state": "Planificación" + } + ], + "totalVacancies": 160, + "totalReserved": 0, + "totalNumberOfHours": 16, + "totalInitialBudget": 0 + }], + "totalVacancies": 160, + "totalReserved": 0, + "totalNumberOfHours": 16, + "totalInitialBudget": 0 + } + ], + "totalVacancies": 989, + "totalReserved": 466, + "totalNumberOfHours": 340, + "totalInitialBudget": 58420 + }, + { + "id": 6867257, + "name": "2 ANÁLISIS Y PREVENCIÓN DE RIESGOS DE P.C", + "submoduleVersion": [{ + "id": 6867258, + "name": "2.2 Bases Metodológicas para su Análisis.", + "trainingActivityVersion": [{ + "id": 6867259, + "name": "CURSO DE INTERPRETACIÓN DE ANÁLISIS DE RIESGOS", + "editionVersion": [{ + "id": 8486913, + "totalVacancies": 30, "totalReserved": 0, + "totalNumberOfHours": 28, + "totalInitialBudget": 0, + "coordinador": "Julia Pastrana de Paz", + "state": "Planificación" + }, + { + "id": 8486914, + "startDate": "2018-12-01T00:00:00", + "endDate": "2018-12-02T00:00:00", + "totalVacancies": 30, + "totalReserved": 9, + "totalNumberOfHours": 28, + "totalInitialBudget": 0, + "coordinador": "Julia Pastrana de Paz", + "state": "Programación" + } + ], + "totalVacancies": 60, + "totalReserved": 9, + "totalNumberOfHours": 56, + "totalInitialBudget": 0 + }, + { + "id": 6867260, + "name": "INTERPRETACIÓN DE MAPAS DE RIESGOS NATURALES Y SISTEMAS DE ALERTA TEMPRANA", + "editionVersion": [{ + "id": 6867261, + "startDate": "2018-10-01T00:00:00", + "endDate": "2018-10-04T00:00:00", + "totalVacancies": 25, + "totalReserved": 2, + "totalNumberOfHours": 26, + "totalInitialBudget": 3100, + "coordinador": "Angela Potenciano de las Heras", + "state": "Cerrada" + }], + "totalVacancies": 25, + "totalReserved": 2, + "totalNumberOfHours": 26, + "totalInitialBudget": 3100 + }, + { + "id": 6867299, + "name": "MEDIDAS PREVENTIVAS ESTRUCTURALES Y NO ESTRUCTURALES FRENTE A RIESGOS NATURALES", + "editionVersion": [{ + "id": 6867300, + "startDate": "2018-05-23T00:00:00", + "endDate": "2018-05-25T00:00:00", + "totalVacancies": 25, + "totalReserved": 4, + "totalNumberOfHours": 18, + "totalInitialBudget": 2300, + "coordinador": "Angela Potenciano de las Heras", + "state": "Cerrada" + }], + "totalVacancies": 25, + "totalReserved": 4, + "totalNumberOfHours": 18, + "totalInitialBudget": 2300 + } + ], + "totalVacancies": 110, + "totalReserved": 15, + "totalNumberOfHours": 100, + "totalInitialBudget": 5400 + }, + { + "id": 6867329, + "name": "2.3 Conocimiento y Análisis de Riesgos Naturales.", + "trainingActivityVersion": [{ + "id": 6867330, + "name": "ANÁLISIS DEL RIESGO SÍSMICO", + "editionVersion": [{ + "id": 6867331, + "startDate": "2018-02-19T00:00:00", + "endDate": "2018-02-23T00:00:00", + "totalVacancies": 40, + "totalReserved": 2, + "totalNumberOfHours": 30, + "totalInitialBudget": 4000, + "coordinador": "Estrella Romero Cordón", + "state": "Cerrada" + }], + "totalVacancies": 40, + "totalReserved": 2, + "totalNumberOfHours": 30, + "totalInitialBudget": 4000 + }, + { + "id": 6867399, + "name": "CURSO DE INTRODUCCIÓN AL RADAR QPE, QPF EN HIDROMETEOROLOGÍA", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6867400, + "name": "CURSO DE PLANIFICACIÓN DE PROTECCIÓN CIVIL ANTE EL RIESGO SÍSMICO", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6867401, + "name": "FENÓMENOS METEOROLÓGICOS ADVERSOS EN PROTECCIÓN CIVIL", + "editionVersion": [{ + "id": 6867402, + "startDate": "2018-05-21T00:00:00", + "endDate": "2018-05-24T00:00:00", + "totalVacancies": 20, + "totalReserved": 3, + "totalNumberOfHours": 23, + "totalInitialBudget": 3300, + "coordinador": "Jonathan Gómez Cantero", + "state": "Cerrada" + }], + "totalVacancies": 20, + "totalReserved": 3, + "totalNumberOfHours": 23, + "totalInitialBudget": 3300 + }, + { + "id": 6867465, + "name": "JORNADA FORMATIVA RIESGO SÍSMICO EN EL S.E. DE LA PENÍNSULA IBÉRICA", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6867466, + "name": "JORNADA SOBRE LA NUEVA LEY DEL SISTEMA NACIONAL DE PROTECCIÓN CIVIL Y SU APLICACIÓN EN LA GESTIÓN DEL RIESGO DE INUNDACIONES", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6867467, + "name": "JORNADA TÉCNICA METEOROLOGÍA ESPACIAL", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6867468, + "name": "JORNADA TÉCNICA SOBRE PLANES DE GESTIÓN DEL RIESGO DE INUNDACIÓN", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6867469, + "name": "JORNADA TÉCNICA SOBRE RIESGO DE MAREMOTOS. PROYECTO DE LA DIRECTRIZ BÁSICA ANTE EL RIESGO DE MAREMOTOS", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6867470, + "name": "JORNADA TÉCNICA SOBRE RIESGOS SÍSMICO Y VOLCÁNICO", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6867471, + "name": "PLANIFICACIÓN DE PROTECCIÓN CIVIL EN RIESGOS NATURALES", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6867509, + "name": "RIESGOS NATURALES: IDENTIFICACIÓN Y ANÁLISIS. ONLINE", + "editionVersion": [{ + "id": 6867510, + "startDate": "2018-02-28T00:00:00", + "endDate": "2018-06-25T00:00:00", + "totalVacancies": 50, + "totalReserved": 5, + "totalNumberOfHours": 90, + "totalInitialBudget": 5000, + "coordinador": "Mercedes Vallejo Bombín", + "state": "Cerrada" + }], + "totalVacancies": 50, + "totalReserved": 5, + "totalNumberOfHours": 90, + "totalInitialBudget": 5000 + }, + { + "id": 6867689, + "name": "TALLER DE ACTUALIZACIÓN SOBRE GESTIÓN DE RIESGOS GEOLÓGICOS", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6867690, + "name": "TALLER DE ACTUALIZACIÓN SOBRE GESTIÓN DE RIESGOS HIDROMETEOROLÓGICOS", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6979957, + "name": "HERRAMIENTAS DE ANÁLISIS Y PLANIFICACIÓN DE PROTECCIÓN CIVIL EN INCENDIOS FORESTALES", + "editionVersion": [{ + "id": 6979959, + "startDate": "2018-12-31T00:00:00", + "endDate": "2018-12-31T00:00:00", + "totalVacancies": 20, + "totalReserved": 0, + "totalNumberOfHours": 25, + "totalInitialBudget": 3500, + "coordinador": "Julio César Ramos Fernández", + "state": "Anulada" + }], + "totalVacancies": 20, + "totalReserved": 0, + "totalNumberOfHours": 25, + "totalInitialBudget": 3500 + }, + { + "id": 6980098, + "name": "FENÓMENOS METEOROLÓGICOS ADVERSOS. NEVADAS EN EL SURESTE ESPAÑOL", + "editionVersion": [{ + "id": 6980101, + "startDate": "2018-04-11T00:00:00", + "endDate": "2018-04-12T00:00:00", + "totalVacancies": 25, + "totalReserved": 0, + "totalNumberOfHours": 20, + "totalInitialBudget": 2000, + "coordinador": "Elías Salvador Atienza", + "state": "Cerrada" + }], + "totalVacancies": 25, + "totalReserved": 0, + "totalNumberOfHours": 20, + "totalInitialBudget": 2000 + }, + { + "id": 6980104, + "name": "ACTUACIÓN DE PROTECCIÓN CIVIL ANTE EL RIESGO DE INUNDACIONES EN CASTILLA-LA MANCHA", + "editionVersion": [{ + "id": 6980106, + "startDate": "2018-11-05T00:00:00", + "endDate": "2018-11-07T00:00:00", + "totalVacancies": 25, + "totalReserved": 0, + "totalNumberOfHours": 20, + "totalInitialBudget": 2000, + "coordinador": "Valentín del Hierro Rodrigo", + "state": "Cerrada" + }], + "totalVacancies": 25, + "totalReserved": 0, + "totalNumberOfHours": 20, + "totalInitialBudget": 2000 + } + ], + "totalVacancies": 180, + "totalReserved": 10, + "totalNumberOfHours": 208, + "totalInitialBudget": 19800 + }, + { + "id": 6867691, + "name": "2.4 Conocimiento y Análisis de Riesgos Tecnológicos.", + "trainingActivityVersion": [{ + "id": 6867692, + "name": "CURSO DE RIESGO DE INCENDIOS EN EDIFICIOS (Módulo I). (Nivel II).", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6867693, + "name": "CURSO DE RIESGO DE INCENDIOS EN EDIFICIOS (Módulo II). (Nivel III).", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6867694, + "name": "CURSO DE RIESGOS TECNOLÓGICOS: MÓDULO I (RIESGO QUÍMICO)", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6867695, + "name": "CURSO DE RIESGOS TECNOLÓGICOS: MÓDULO II (RIESGO RADIOLÓGICO)", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6867696, + "name": "EVALUACIÓN DE RIESGOS TECNOLÓGICOS", + "editionVersion": [{ + "id": 6867697, + "startDate": "2018-09-24T00:00:00", + "endDate": "2018-09-28T00:00:00", + "totalVacancies": 25, + "totalReserved": 0, + "totalNumberOfHours": 35, + "totalInitialBudget": 5800, + "coordinador": "Valeriano Ortega Miravalles", + "state": "Cerrada" + }], + "totalVacancies": 25, + "totalReserved": 0, + "totalNumberOfHours": 35, + "totalInitialBudget": 5800 + }, + { + "id": 6867782, + "name": "JORNADA TÉCNICA SOBRE LA BASE NACIONAL DE DATOS SOBRE RIESGO QUÍMICO (BARQUIM)", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6867783, + "name": "JORNADA TÉCNICA SOBRE LA PROTECCIÓN CIVIL ANTE EL RIESGO QUÍMICO: EXPERIENCIAS Y PERSPECTIVAS DE FUTURO", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6867784, + "name": "RIESGOS TECNOLÓGICOS: MÓDULO III (RIESGO EN EL TRANSPORTE DE MERCANCÍAS PELIGROSAS)", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6867845, + "name": "RIESGOS TECNOLÓGICOS: MÓDULO IV (APLICACIONES PRÁCTICAS)", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6867912, + "name": "TALLER DE ACTUALIZACIÓN SOBRE GESTIÓN DEL RIESGO QUÍMICO", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + } + ], + "totalVacancies": 25, + "totalReserved": 0, + "totalNumberOfHours": 35, + "totalInitialBudget": 5800 + }, + { + "id": 6867913, + "name": "2.5 Conocimiento y Análisis de Riesgos Sociales.", + "trainingActivityVersion": [{ + "id": 6867914, + "name": "ANÁLISIS Y GESTIÓN DE RIESGOS EN GRANDES CONCENTRACIONES HUMANAS", + "editionVersion": [{ + "id": 6867915, + "startDate": "2018-05-29T00:00:00", + "endDate": "2018-06-01T00:00:00", + "totalVacancies": 30, + "totalReserved": 6, + "totalNumberOfHours": 24, + "totalInitialBudget": 2250, + "coordinador": "Fernando Talavera Esteso", + "state": "Cerrada" + }], + "totalVacancies": 30, + "totalReserved": 6, + "totalNumberOfHours": 24, + "totalInitialBudget": 2250 + }, + { + "id": 6867949, + "name": "COLABORACIÓN DEL VOLUNTARIADO DE P. C. EN DISPOSITIVOS ANTE GRANDES CONCENTRACIONES HUMANAS", + "editionVersion": [{ + "id": 6867950, + "startDate": "2018-05-25T00:00:00", + "endDate": "2018-05-27T00:00:00", + "totalVacancies": 24, + "totalReserved": 0, + "totalNumberOfHours": 20, + "totalInitialBudget": 3500, + "coordinador": "Araceli Ruiz Anca", + "state": "Cerrada" + }], + "totalVacancies": 24, + "totalReserved": 0, + "totalNumberOfHours": 20, + "totalInitialBudget": 3500 + }, + { + "id": 6867974, + "name": "CURSO DE COLABORACIÓN DEL VOLUNTARIADO DE P. C. EN DISPOSITIVOS ANTE GRANDES CONCENTRACIONES HUMANAS", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6867975, + "name": "CURSO DE INGRESO AL VOLUNTARIADO DE PROTECCIÓN CIVIL EN CASTILLA Y LEÓN", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6867976, + "name": "JORNADA TÉCNICA SOBRE EL MARCO NORMATIVO Y LA PLANIFICACIÓN DE PROTECCIÓN CIVIL EN GRANDES CONCENTRACIONES HUMANAS. (Nivel III).", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + } + ], + "totalVacancies": 54, + "totalReserved": 6, + "totalNumberOfHours": 44, + "totalInitialBudget": 5750 + }, + { + "id": 6867977, + "name": "2.6 Herramientas para Análisis de Riesgos.", + "trainingActivityVersion": [{ + "id": 6867978, + "name": "CARTOGRAFÍA BÁSICA APLICADA A PROTECCIÓN CIVIL", + "editionVersion": [{ + "id": 6867979, + "startDate": "2018-05-07T00:00:00", + "endDate": "2018-05-11T00:00:00", + "totalVacancies": 20, + "totalReserved": 3, + "totalNumberOfHours": 30, + "totalInitialBudget": 3300, + "coordinador": "Francisco Javier Frutos Gonzalez", + "state": "Cerrada" + }], + "totalVacancies": 20, + "totalReserved": 3, + "totalNumberOfHours": 30, + "totalInitialBudget": 3300 + }, + { + "id": 6868035, + "name": "CURSO DE HERRAMIENTAS GIS PARA EL ANÁLISIS DE RIESGOS. MÓDULO I", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6868036, + "name": "CURSO DE HERRAMIENTAS GIS PARA EL ANÁLISIS DE RIESGOS. MÓDULO II", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6868037, + "name": "INTRODUCCIÓN A LA INFORMACIÓN GEOGRÁFICA DIGITAL", + "editionVersion": [{ + "id": 6980147, + "startDate": "2018-12-17T00:00:00", + "endDate": "2018-12-31T00:00:00", + "totalVacancies": 20, + "totalReserved": 0, + "totalNumberOfHours": 15, + "totalInitialBudget": 0, + "coordinador": "Roberto Martínez-Alegría López", + "state": "Anulada" + }], + "totalVacancies": 20, + "totalReserved": 0, + "totalNumberOfHours": 15, + "totalInitialBudget": 0 + }, + { + "id": 6868038, + "name": "HERRAMIENTAS GIS APLICADAS A LAS ACTUACIONES DE PROTECCIÓN CIVIL", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6868107, + "name": "HERRAMIENTAS GIS PARA EL ANÁLISIS DE RIESGOS. SEMIPRESENCIAL", + "editionVersion": [{ + "id": 6868108, + "startDate": "2018-03-05T00:00:00", + "endDate": "2018-06-01T00:00:00", + "totalVacancies": 35, + "totalReserved": 1, + "totalNumberOfHours": 90, + "totalInitialBudget": 3380, + "coordinador": "Mercedes Vallejo Bombín", + "state": "Cerrada" + }], + "totalVacancies": 35, + "totalReserved": 1, + "totalNumberOfHours": 90, + "totalInitialBudget": 3380 + }, + { + "id": 6868309, + "name": "INFORMACIÓN GEOGRÁFICA DIGITAL Y SU APLICACIÓN EN PROTECCIÓN CIVIL Y EMERGENCIAS. DATOS ABIERTOS DE LA ADMÓN. PUBLICA", + "editionVersion": [{ + "id": 6868310, + "startDate": "2018-10-08T00:00:00", + "endDate": "2018-10-11T00:00:00", + "totalVacancies": 18, + "totalReserved": 6, + "totalNumberOfHours": 28, + "totalInitialBudget": 3600, + "coordinador": "Mercedes Vallejo Bombín", + "state": "Cerrada" + }], + "totalVacancies": 18, + "totalReserved": 6, + "totalNumberOfHours": 28, + "totalInitialBudget": 3600 + }, + { + "id": 6868359, + "name": "INTERPRETACIÓN GEOMORFOLÓGICA DE ZONAS DE ALTO RIESGO DE INUNDACIÓN", + "editionVersion": [{ + "id": 6868360, + "startDate": "2018-09-18T00:00:00", + "endDate": "2018-09-20T00:00:00", + "totalVacancies": 15, + "totalReserved": 0, + "totalNumberOfHours": 15, + "totalInitialBudget": 2500, + "coordinador": "Angela Potenciano de las Heras", + "state": "Anulada" + }], + "totalVacancies": 15, + "totalReserved": 0, + "totalNumberOfHours": 15, + "totalInitialBudget": 2500 + }, + { + "id": 6868361, + "name": "JORNADA INTERNACIONAL SOBRE EVALUACIÓN DEL RIESGO EN MOVIMIENTOS DEL TERRENO (PROYECTO DORIS). (Nivel III)", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6868362, + "name": "MODELOS DE SIMULACIÓN APLICADOS AL ANÁLISIS DEL RIESGO SÍSMICO Y VOLCÁNICO", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6868366, + "name": "MODELOS DE SIMULACION APLICADOS AL ANALISIS DEL RIESGO VOLCANICO", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6868367, + "name": "MODELOS DE SIMULACIÓN HIDROLÓGICA E HIDRÁULICA APLICADOS AL ANÁLISIS DEL RIESGO POR INUNDACIÓN", + "editionVersion": [{ + "id": 6868368, + "startDate": "2018-06-04T00:00:00", + "endDate": "2018-06-08T00:00:00", + "totalVacancies": 25, + "totalReserved": 3, + "totalNumberOfHours": 30, + "totalInitialBudget": 4200, + "coordinador": "Angela Potenciano de las Heras", + "state": "Cerrada" + }], + "totalVacancies": 25, + "totalReserved": 3, + "totalNumberOfHours": 30, + "totalInitialBudget": 4200 + }, + { + "id": 6868442, + "name": "SEMINARIO DE SEGUIMIENTO DE RESULTADOS DEL PROYECTO DORIS Y LAMPRE", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6868443, + "name": "UTILIZACIÓN DE TELEDETECCIÓN EN LA GESTIÓN DE RIESGOS NATURALES EN PROTECCIÓN CIVIL", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6975970, + "name": "JORNADA SOBRE SISTEMAS DE INFORMACIÓN GEOGRÁFICA EN PROTECCIÓN CIVIL (PENBU)", + "editionVersion": [{ + "id": 6975973, + "startDate": "2018-09-26T00:00:00", + "endDate": "2018-09-26T00:00:00", + "totalVacancies": 20, + "totalReserved": 0, + "totalNumberOfHours": 5, + "totalInitialBudget": 378, + "coordinador": "Javier Basconcillos Arce", + "state": "Cerrada" + }], + "totalVacancies": 20, + "totalReserved": 0, + "totalNumberOfHours": 5, + "totalInitialBudget": 378 + } + ], + "totalVacancies": 153, + "totalReserved": 13, + "totalNumberOfHours": 213, + "totalInitialBudget": 17358 + }, + { + "id": 6868445, + "name": "2.8 Educación (valores) para la Prevención.", + "trainingActivityVersion": [{ + "id": 6868446, + "name": "ACTUACIÓN EN EMERGENCIAS CON PERSONAS CON DISCAPACIDAD", + "editionVersion": [{ + "id": 6868447, + "startDate": "2018-05-03T00:00:00", + "endDate": "2018-05-03T00:00:00", + "totalVacancies": 40, + "totalReserved": 2, + "totalNumberOfHours": 6, + "totalInitialBudget": 0, + "coordinador": "Francisco Canes Domenech", + "state": "Cerrada" + }, + { + "id": 6868450, + "startDate": "2018-11-07T00:00:00", + "endDate": "2018-11-07T00:00:00", + "totalVacancies": 40, + "totalReserved": 0, + "totalNumberOfHours": 6, + "totalInitialBudget": 0, + "coordinador": "Francisco Canes Domenech", + "state": "Anulada" + } + ], + "totalVacancies": 80, + "totalReserved": 2, + "totalNumberOfHours": 12, + "totalInitialBudget": 0 + }, + { + "id": 6868454, + "name": "CURSO DE PROCEDIMIENTOS PARA LA GESTION DE LA DOCENCIA EN LA ENPC", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6868455, + "name": "CURSO EALEARNING SOBRE RIESGOS PETROLÍFEROS", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6868456, + "name": "CURSO SOBRE EL SISTEMA NACIONAL DE PROTECCIÓN CIVIL PARA FORMADORES DE VOLUNTARIOS DE PROTECCIÓN CIVIL", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6868457, + "name": "CURSO SOBRE FORMACIÓN EN PROCEDIMIENTOS ESTANDARIZADOS PARA EJERCICIOS PRÁCTICOS DE LA ENPC", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6868458, + "name": "CURSO SOBRE FORMACIÓN EN PROCEDIMIENTOS ESTANDARIZADOS PARA EJERCICIOS PRÁCTICOS DE LA ENPC NIVEL I", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6868459, + "name": "FOMENTO DE LA CULTURA PREVENTIVA EN ESCOLARES", + "editionVersion": [{ + "id": 6868460, + "startDate": "2018-04-07T00:00:00", + "endDate": "2018-04-08T00:00:00", + "totalVacancies": 30, + "totalReserved": 0, + "totalNumberOfHours": 15, + "totalInitialBudget": 2000, + "coordinador": "Juan Antonio Iborra Bernal", + "state": "Cerrada" + }], + "totalVacancies": 30, + "totalReserved": 0, + "totalNumberOfHours": 15, + "totalInitialBudget": 2000 + }, + { + "id": 6868481, + "name": "FORMACIÓN EN METODOLOGÍA TECNOLOGÍA E-LEARNING PARA ACTIVIDADES FORMATIVAS DE LA ENPC", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6868544, + "name": "FORMACIÓN PARA LA DOCENCIA PARA PERSONAL DOCENTE DE PROTECCIÓN CIVIL", + "editionVersion": [{ + "id": 6868545, + "startDate": "2018-12-31T00:00:00", + "endDate": "2018-12-31T00:00:00", + "totalVacancies": 40, + "totalReserved": 0, + "totalNumberOfHours": 70, + "totalInitialBudget": 8400, + "coordinador": "Araceli Ruiz Anca", + "state": "Anulada" + }], + "totalVacancies": 40, + "totalReserved": 0, + "totalNumberOfHours": 70, + "totalInitialBudget": 8400 + }, + { + "id": 6868546, + "name": "PREVENCIÓN DE ACCIDENTES DE TRÁFICO Y LA ATENCIÓN MULTIDISCIPLINAR A LAS VÍCTIMAS, FAMILIARES Y ENTORNO", + "editionVersion": [{ + "id": 6868547, + "startDate": "2018-12-03T00:00:00", + "endDate": "2018-12-04T00:00:00", + "totalVacancies": 40, + "totalReserved": 0, + "totalNumberOfHours": 16, + "totalInitialBudget": 4906, + "coordinador": "Francisco Canes Domenech", + "state": "Anulada" + }], + "totalVacancies": 40, + "totalReserved": 0, + "totalNumberOfHours": 16, + "totalInitialBudget": 4906 + }, + { + "id": 6868579, + "name": "REUNIÓN TÉCNICA SOBRE FORMACIÓN EN PROCEDIMIENTOS ESTANDARIZADOS PARA EJERCICIOS PRÁCTICOS DE LA ENPC", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6868659, + "name": "SEMANA DE LA AUTOPROTECCIÓN DE ESCOLARES", + "editionVersion": [{ + "id": 6868660, + "startDate": "2018-04-16T00:00:00", + "endDate": "2018-04-21T00:00:00", + "totalVacancies": 1500, + "totalReserved": 999, + "totalNumberOfHours": 35, + "totalInitialBudget": 16300, + "coordinador": "Sergio García Batanero", + "state": "Cerrada" + }], + "totalVacancies": 1500, + "totalReserved": 999, + "totalNumberOfHours": 35, + "totalInitialBudget": 16300 + } + ], + "totalVacancies": 1690, + "totalReserved": 1001, + "totalNumberOfHours": 148, + "totalInitialBudget": 31606 + } + ], + "totalVacancies": 2212, + "totalReserved": 1045, + "totalNumberOfHours": 748, + "totalInitialBudget": 85714 + }, + { + "id": 6868668, + "name": "3 PLANIFICACIÓN DE PROTECCIÓN CIVIL", + "submoduleVersion": [{ + "id": 6868669, + "name": "3.2 Diseño y Elaboración de Planes.", + "trainingActivityVersion": [{ + "id": 6868670, + "name": "DISEÑO E IMPLANTACIÓN DE PLANES DE AUTOPROTECCIÓN EN EDIFICIOS E INSTALACIONES INDUSTRIALES", + "editionVersion": [{ + "id": 6868671, + "startDate": "2018-03-12T00:00:00", + "endDate": "2018-03-23T00:00:00", + "totalVacancies": 25, + "totalReserved": 16, + "totalNumberOfHours": 65, + "totalInitialBudget": 5088, + "coordinador": "María Josefa Granada Ferrero", + "state": "Cerrada" + }], + "totalVacancies": 25, + "totalReserved": 16, + "totalNumberOfHours": 65, + "totalInitialBudget": 5088 + }, + { + "id": 6868765, + "name": "DISEÑO Y PLANIFICACIÓN DE EMERGENCIAS EN EDIFICIOS E INSTALACIONES", + "editionVersion": [{ + "id": 6868766, + "startDate": "2018-06-04T00:00:00", + "endDate": "2018-06-08T00:00:00", + "totalVacancies": 30, + "totalReserved": 2, + "totalNumberOfHours": 25, + "totalInitialBudget": 2050, + "coordinador": "Cristina Mónica Toboso Muelas", + "state": "Cerrada" + }], + "totalVacancies": 30, + "totalReserved": 2, + "totalNumberOfHours": 25, + "totalInitialBudget": 2050 + }, + { + "id": 6868800, + "name": "JORNADA TÉCNICA DE ELABORACIÓN Y ANÁLISIS DE PLANES DE EMERGENCIA Y AUTOPROTECCIÓN. (Nivel I)", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6868801, + "name": "JORNADA TÉCNICA DE NOVEDADES SOBRE PLANIFICACIÓN DE PROTECCIÓN CIVIL ANTE LOS RIESGOS NUCLEAR Y RADIOLÓGICO", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6979961, + "name": "PREVENCIÓN Y PLANIFICACIÓN DE RIESGOS TECNOLÓGICOS", + "editionVersion": [{ + "id": 6979963, + "startDate": "2018-12-31T00:00:00", + "endDate": "2018-12-31T00:00:00", + "totalVacancies": 25, + "totalReserved": 0, + "totalNumberOfHours": 35, + "totalInitialBudget": 4800, + "coordinador": "Valeriano Ortega Miravalles", + "state": "Anulada" + }], + "totalVacancies": 25, + "totalReserved": 0, + "totalNumberOfHours": 35, + "totalInitialBudget": 4800 + }, + { + "id": 6980142, + "name": "PLANES DE AUTOPROTECCIÓN Y EMERGENCIA EN EDIFICIOS PÚBLICOS", + "editionVersion": [{ + "id": 6980144, + "startDate": "2018-12-31T00:00:00", + "endDate": "2018-12-31T00:00:00", + "totalVacancies": 25, + "totalReserved": 0, + "totalNumberOfHours": 20, + "totalInitialBudget": 2000, + "coordinador": " ", + "state": "Anulada" + }], + "totalVacancies": 25, + "totalReserved": 0, + "totalNumberOfHours": 20, + "totalInitialBudget": 2000 + }, + { + "id": 6980375, + "name": "PLANIFICACIÓN DE PROTECCIÓN CIVIL EN RIESGOS NATURALES", + "editionVersion": [{ + "id": 6980377, + "startDate": "2018-06-25T00:00:00", + "endDate": "2018-06-28T00:00:00", + "totalVacancies": 25, + "totalReserved": 0, + "totalNumberOfHours": 25, + "totalInitialBudget": 3000, + "coordinador": "Mercedes Vallejo Bombín", + "state": "Cerrada" + }], + "totalVacancies": 25, + "totalReserved": 0, + "totalNumberOfHours": 25, + "totalInitialBudget": 3000 + } + ], + "totalVacancies": 130, + "totalReserved": 18, + "totalNumberOfHours": 170, + "totalInitialBudget": 16938 + }, + { + "id": 6868802, + "name": "3.3 Gestión e Implantación de Planes.", + "trainingActivityVersion": [{ + "id": 6868803, + "name": "GESTIÓN DEL RIESGO DE INUNDACIONES: IMPLANTACIÓN DE NUEVAS NORMATIVAS", + "editionVersion": [{ + "id": 6868804, + "startDate": "2018-11-26T00:00:00", + "endDate": "2018-11-30T00:00:00", + "totalVacancies": 30, + "totalReserved": 2, + "totalNumberOfHours": 35, + "totalInitialBudget": 3000, + "coordinador": "Estrella Romero Cordón", + "state": "Cerrada" + }], + "totalVacancies": 30, + "totalReserved": 2, + "totalNumberOfHours": 35, + "totalInitialBudget": 3000 + }, + { + "id": 6868851, + "name": "II JORNADA TÉCNICA SOBRE PLANES DE AUTOPROTECCIÓN DE CENTROS ESCOLARES EN EL ÁMBITO TERRITORIAL DE LOS PLANES DE EMERGENCIA NUCLEAR", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6868852, + "name": "JORNADA SOBRE INVESTIGACIÓN DE CAUSAS EN LOS PLANES DE PROTECCIÓN CIVIL DE INCENDIOS FORESTALES. ASPECTOS PENALES Y PROCESALES", + "editionVersion": [{ + "id": 6868853, + "startDate": "2018-05-16T00:00:00", + "endDate": "2018-05-17T00:00:00", + "totalVacancies": 30, + "totalReserved": 0, + "totalNumberOfHours": 10, + "totalInitialBudget": 808, + "coordinador": "Sofía González López", + "state": "Cerrada" + }], + "totalVacancies": 30, + "totalReserved": 0, + "totalNumberOfHours": 10, + "totalInitialBudget": 808 + }, + { + "id": 6868873, + "name": "JORNADA TÉCNICA SOBRE LOS PLANES DE COORDINACIÓN Y APOYO: INSTRUMENTOS PARA LA GESTIÓN DE EMERGENCIAS", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6868874, + "name": "METODOLOGÍAS DE ORGANIZACIÓN Y PLANIFICACIÓN DE EJERCICIOS Y SIMULACROS", + "editionVersion": [{ + "id": 6868875, + "startDate": "2018-04-17T00:00:00", + "endDate": "2018-04-19T00:00:00", + "totalVacancies": 25, + "totalReserved": 4, + "totalNumberOfHours": 24, + "totalInitialBudget": 1200, + "coordinador": "Miguel Tomé de la Vega", + "state": "Cerrada" + }], + "totalVacancies": 25, + "totalReserved": 4, + "totalNumberOfHours": 24, + "totalInitialBudget": 1200 + }, + { + "id": 6979965, + "name": "JORNADA SOBRE IMPLANTACIÓN DE PLANES DE EMRGENCIA EN PRESAS", + "editionVersion": [{ + "id": 6980095, + "startDate": "2018-02-14T00:00:00", + "endDate": "2018-02-14T00:00:00", + "totalVacancies": 40, + "totalReserved": 0, + "totalNumberOfHours": 5, + "totalInitialBudget": 1500, + "coordinador": "Rosa María Torres Saavedra", + "state": "Cerrada" + }, + { + "id": 6980096, + "startDate": "2018-05-09T00:00:00", + "endDate": "2018-05-09T00:00:00", + "totalVacancies": 40, + "totalReserved": 0, + "totalNumberOfHours": 5, + "totalInitialBudget": 1500, + "coordinador": "Rosa María Torres Saavedra", + "state": "Cerrada" + } + ], + "totalVacancies": 80, + "totalReserved": 0, + "totalNumberOfHours": 10, + "totalInitialBudget": 3000 + }, + { + "id": 6980196, + "name": "JORNADA TÉCNICA SOBRE IMPLANTACIÓN Y APLICACION DE LOS PLANES DE EMERGENCIA EXTERIOR DEL SECTOR QUÍMICO", + "editionVersion": [{ + "id": 6980198, + "startDate": "2018-12-04T00:00:00", + "endDate": "2018-12-04T00:00:00", + "totalVacancies": 40, + "totalReserved": 0, + "totalNumberOfHours": 6, + "totalInitialBudget": 5279, + "coordinador": "Valeriano Ortega Miravalles", + "state": "Cerrada" + }], + "totalVacancies": 40, + "totalReserved": 0, + "totalNumberOfHours": 6, + "totalInitialBudget": 5279 + } + ], + "totalVacancies": 205, + "totalReserved": 6, + "totalNumberOfHours": 85, + "totalInitialBudget": 13287 + }, + { + "id": 6868940, + "name": "3.1 Fundamentos de la Planificación", + "trainingActivityVersion": [{ + "id": 6868941, + "name": "CURSO SOBRE PLANES DE EMERGENCIA PARA PERSONAL DE LOS ÓRGANOS DIRECTIVOS DE LA AGE", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6868942, + "name": "PLANIFICACIÓN DE PROTECCIÓN CIVIL ONLINE", + "editionVersion": [{ + "id": 6868943, + "startDate": "2018-09-12T00:00:00", + "endDate": "2018-12-10T00:00:00", + "totalVacancies": 60, + "totalReserved": 12, + "totalNumberOfHours": 110, + "totalInitialBudget": 8000, + "coordinador": "Mercedes Vallejo Bombín", + "state": "Anulada" + }], + "totalVacancies": 60, + "totalReserved": 12, + "totalNumberOfHours": 110, + "totalInitialBudget": 8000 + } + ], + "totalVacancies": 60, + "totalReserved": 12, + "totalNumberOfHours": 110, + "totalInitialBudget": 8000 + } + ], + "totalVacancies": 395, + "totalReserved": 36, + "totalNumberOfHours": 365, + "totalInitialBudget": 38225 + }, + { + "id": 6868945, + "name": "4 OPERACIONES EN EMERGENCIAS DE P.C", + "submoduleVersion": [{ + "id": 6868946, + "name": "4.1 Dirección y Gestión de las Intervenciones.", + "trainingActivityVersion": [{ + "id": 6868947, + "name": "COORDINACIÓN Y GESTIÓN DE EMERGENCIAS", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6869034, + "name": "CURSO DE DIRECCIÓN Y GESTIÓN DE EMERGENCIAS: OPERACIÓN Y CONTROL. (Nivel II).", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6869035, + "name": "CURSO DE METODOLOGÍAS DE GESTION OPERATIVA Y COMANDO", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6869036, + "name": "CURSO DE OPERACIONES DE EXTINCIÓN DE INCENDIOS FORESTALES PARA JEFES DE BIEM", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6869037, + "name": "DIRECCIÓN DE OPERACIONES DE EXTINCIÓN DE INCENDIOS FORESTALES MODULO I", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6869126, + "name": "DIRECCIÓN DE OPERACIONES DE EXTINCIÓN DE INCENDIOS FORESTALES MODULO II", + "editionVersion": [{ + "id": 6972374, + "startDate": "2018-02-05T00:00:00", + "endDate": "2018-02-16T00:00:00", + "totalVacancies": 22, + "totalReserved": 22, + "totalNumberOfHours": 56, + "totalInitialBudget": 9300, + "coordinador": "Julio César Ramos Fernández", + "state": "Cerrada" + }], + "totalVacancies": 22, + "totalReserved": 22, + "totalNumberOfHours": 56, + "totalInitialBudget": 9300 + }, + { + "id": 6869127, + "name": "DIRECCIÓN Y GESTIÓN DE EMERGENCIAS: EVALUACIÓN, COMUNICACIÓN Y COORDINACIÓN", + "editionVersion": [{ + "id": 6869128, + "startDate": "2018-04-02T00:00:00", + "endDate": "2018-04-06T00:00:00", + "totalVacancies": 21, + "totalReserved": 9, + "totalNumberOfHours": 35, + "totalInitialBudget": 5000, + "coordinador": "María Vara Moral", + "state": "Cerrada" + }], + "totalVacancies": 21, + "totalReserved": 9, + "totalNumberOfHours": 35, + "totalInitialBudget": 5000 + }, + { + "id": 6869207, + "name": "GOM II. GESTIÓN OPERATIVA Y MANDO PUESTO DE MANDO AVANZADO, HERAMIENTAS DE GESTIÓN DE UN PMA", + "editionVersion": [{ + "id": 6869208, + "startDate": "2018-11-26T00:00:00", + "endDate": "2018-11-30T00:00:00", + "totalVacancies": 12, + "totalReserved": 0, + "totalNumberOfHours": 30, + "totalInitialBudget": 3300, + "coordinador": "Pablo Calvo Barrios", + "state": "Anulada" + }], + "totalVacancies": 12, + "totalReserved": 0, + "totalNumberOfHours": 30, + "totalInitialBudget": 3300 + }, + { + "id": 6869246, + "name": "GESTIÓN OPERATIVA Y COMANDO MÓDULO III (FORESTAL)", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6869338, + "name": "GESTIÓN OPERATIVA Y MANDO. HERRAMIENTAS DE GESTIÓN DE CRISIS EN UN PUESTO DE MANDO", + "editionVersion": [{ + "id": 6869339, + "startDate": "2018-10-09T00:00:00", + "endDate": "2018-10-11T00:00:00", + "totalVacancies": 18, + "totalReserved": 2, + "totalNumberOfHours": 21, + "totalInitialBudget": 4000, + "coordinador": "Emilio Leo Ferrando", + "state": "Cerrada" + }], + "totalVacancies": 18, + "totalReserved": 2, + "totalNumberOfHours": 21, + "totalInitialBudget": 4000 + }, + { + "id": 6869367, + "name": "INTERMEDIO DE DIRECCIÓN DE EXTINCIÓN DE INCENDIOS FORESTALES", + "editionVersion": [{ + "id": 6869368, + "startDate": "2018-11-12T00:00:00", + "endDate": "2018-11-23T00:00:00", + "totalVacancies": 22, + "totalReserved": 22, + "totalNumberOfHours": 56, + "totalInitialBudget": 9790, + "coordinador": "Paula Raboso Campos", + "state": "Cerrada" + }], + "totalVacancies": 22, + "totalReserved": 22, + "totalNumberOfHours": 56, + "totalInitialBudget": 9790 + }, + { + "id": 6869525, + "name": " JORNADA TÉCNICA SOBRE LA NORMA ISO 22320 SOBRE GESTIÓN DE EMERGENCIAS", + "editionVersion": [{ + "id": 6869526, + "startDate": "2018-02-27T00:00:00", + "endDate": "2018-02-27T00:00:00", + "totalVacancies": 40, + "totalReserved": 20, + "totalNumberOfHours": 4, + "totalInitialBudget": 1500, + "coordinador": "Luis Sáenz de San Pedro Alba", + "state": "Anulada" + }], + "totalVacancies": 40, + "totalReserved": 20, + "totalNumberOfHours": 4, + "totalInitialBudget": 1500 + }, + { + "id": 6869528, + "name": "JORNADA TÉCNICA HISPANO-LUSA SOBRE METODOLOGÍA DE GESTIÓN OPERATIVA EN INCENDIOS FORESTALES. SITUACIONES TRANSFRONTERIZAS", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6869529, + "name": "JORNADA TÉCNICA SOBRE GESTIÓN OPERATIVA DE EMERGENCIAS", + "editionVersion": [{ + "id": 6869530, + "startDate": "2018-12-31T00:00:00", + "endDate": "2018-12-31T00:00:00", + "totalVacancies": 40, + "totalReserved": 40, + "totalNumberOfHours": 7, + "totalInitialBudget": 1500, + "coordinador": "Luis Sáenz de San Pedro Alba", + "state": "Anulada" + }], + "totalVacancies": 40, + "totalReserved": 40, + "totalNumberOfHours": 7, + "totalInitialBudget": 1500 + }, + { + "id": 6869532, + "name": "PLANIFICACIÓN Y GESTIÓN DE EMERGENCIAS SÍSMICAS", + "editionVersion": [{ + "id": 6869533, + "startDate": "2018-04-09T00:00:00", + "endDate": "2018-04-13T00:00:00", + "totalVacancies": 40, + "totalReserved": 0, + "totalNumberOfHours": 35, + "totalInitialBudget": 4000, + "coordinador": "Estrella Romero Cordón", + "state": "Cerrada" + }], + "totalVacancies": 40, + "totalReserved": 0, + "totalNumberOfHours": 35, + "totalInitialBudget": 4000 + }, + { + "id": 6980133, + "name": "GOM 0. CONCEPTOS GENERALES DE GESTIÓN OPERATIVA Y MANDO. ONLINE", + "editionVersion": [{ + "id": 6980135, + "startDate": "2018-12-31T00:00:00", + "endDate": "2018-12-31T00:00:00", + "totalVacancies": 40, + "totalReserved": 0, + "totalNumberOfHours": 40, + "totalInitialBudget": 3000, + "coordinador": "Pablo Calvo Barrios", + "state": "Anulada" + }], + "totalVacancies": 40, + "totalReserved": 0, + "totalNumberOfHours": 40, + "totalInitialBudget": 3000 + }, + { + "id": 6980137, + "name": "GOM I. GESTIÓN OPERATIVA Y MANDO JEFES DE GRUPO", + "editionVersion": [{ + "id": 6980139, + "startDate": "2018-12-31T00:00:00", + "endDate": "2018-12-31T00:00:00", + "totalVacancies": 12, + "totalReserved": 0, + "totalNumberOfHours": 32, + "totalInitialBudget": 5000, + "coordinador": "Pablo Calvo Barrios", + "state": "Anulada" + }, + { + "id": 6980140, + "startDate": "2018-12-31T00:00:00", + "endDate": "2018-12-31T00:00:00", + "totalVacancies": 12, + "totalReserved": 0, + "totalNumberOfHours": 32, + "totalInitialBudget": 5000, + "coordinador": "Pablo Calvo Barrios", + "state": "Anulada" + } + ], + "totalVacancies": 24, + "totalReserved": 0, + "totalNumberOfHours": 64, + "totalInitialBudget": 10000 + } + ], + "totalVacancies": 279, + "totalReserved": 115, + "totalNumberOfHours": 348, + "totalInitialBudget": 51390 + }, + { + "id": 6869591, + "name": "4.2 Rescate y Salvamento.", + "trainingActivityVersion": [{ + "id": 6869592, + "name": "ACTUACIÓN EN EMERGENCIAS PARA SERVICIOS ESPECIALES DE SEGURIDAD", + "editionVersion": [{ + "id": 6869593, + "startDate": "2018-04-06T00:00:00", + "endDate": "2018-04-13T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 32, + "totalInitialBudget": 5900, + "coordinador": "Raúl Mollar Martín", + "state": "Cerrada" + }], + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 32, + "totalInitialBudget": 5900 + }, + { + "id": 6869739, + "name": "COORDINACIÓN DE INTERVINIENTES ANTE UN ACCIDENTE DE TRÁFICO", + "editionVersion": [{ + "id": 6869740, + "startDate": "2018-03-02T00:00:00", + "endDate": "2018-03-03T00:00:00", + "totalVacancies": 25, + "totalReserved": 0, + "totalNumberOfHours": 15, + "totalInitialBudget": 2575, + "coordinador": "Máximo Javier López Miralles", + "state": "Cerrada" + }], + "totalVacancies": 25, + "totalReserved": 0, + "totalNumberOfHours": 15, + "totalInitialBudget": 2575 + }, + { + "id": 6869778, + "name": "CURSO AVANZADO DE EXTINCIÓN DE INCENDIOS, BÚSQUEDA Y RESCATE EN ESPACIOS CONFINADOS PARA CUERPOS DE SEGURIDAD EN SITUACIONES DE EMERGENCIA", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6869779, + "name": "CURSO BÁSICO DE PROTOCOLOS DE ACTUACIÓN EN EMERGENCIAS PARA SERVICIOS ESPECIALES DE SEGURIDAD", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6869780, + "name": "CURSO BASICO DE TECNICAS DE INTERVENCION Y SEGURIDAD EN ESPACIOS CONFINADOS Y EXTINCIÓN BASICA PARA CUERPOS DE SEGURIDAD EN SITUACIONES DE EMERGENCIA", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6869781, + "name": "CURSO DE APOYO EN LA BÚSQUEDA Y RESCATE DE PERSONAS EN EL MEDIO ACUÁTICO PARA VOLUNTARIOS DE PROTECCIÓN CIVIL", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6869782, + "name": "CURSO DE ESTRUCTURAS COLAPSADAS PARA INSTRUCTORES DE GRUPOS DE LA ANGPS-IRO. (Nivel II).", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6869783, + "name": "CURSO DE FORMACIÓN PARA VOLUNTARIOS DE PROTECCIÓN CIVIL. ACCIONES A TENER EN CUENTA ANTE UN ACCIDENTE DE TRÁFICO. (Nivel I)", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6869784, + "name": "CURSO DE GUÍAS CANINOS. ESPECIALISTA EN GRANDES ÁREAS. (Nivel III).", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6869785, + "name": "CURSO DE GUÍAS CANINOS. FIGURANTES - PREPARADORES DE PERROS DE RESCATE", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6869786, + "name": "CURSO DE PROTOCOLOS DE ACTUACIÓN EN EMERGENCIAS PARA SERVICIOS ESPECIALES DE SEGURIDAD", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6869787, + "name": "CURSO DE SALVAMENTO ACUÁTICO EN RÍOS Y PANTANOS PARA VOLUNTARIOS DE PROTECCIÓN CIVIL", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6869788, + "name": "CURSO DE TÉCNICAS DE SEGURIDAD E INTERVENCIÓN EN RESCATE Y SALVAMENTO EN ESTRUCTURAS COLAPSADAS. NIVEL BÁSICO. (Nivel I).", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6869789, + "name": "GUÍAS CANINOS. CAPACITACIÓN EN BÚSQUEDA Y SALVAMENTO CON PERROS DE RESCATE", + "editionVersion": [{ + "id": 6869790, + "startDate": "2018-03-05T00:00:00", + "endDate": "2018-03-10T00:00:00", + "totalVacancies": 20, + "totalReserved": 13, + "totalNumberOfHours": 56, + "totalInitialBudget": 10413, + "coordinador": "Susana Izquierdo Funcia", + "state": "Cerrada" + }], + "totalVacancies": 20, + "totalReserved": 13, + "totalNumberOfHours": 56, + "totalInitialBudget": 10413 + }, + { + "id": 6869873, + "name": "GUÍAS CANINOS. ESPECIALISTA EN DESLIZAMIENTOS DEL TERRENO", + "editionVersion": [{ + "id": 6869874, + "startDate": "2018-05-07T00:00:00", + "endDate": "2018-05-12T00:00:00", + "totalVacancies": 15, + "totalReserved": 10, + "totalNumberOfHours": 56, + "totalInitialBudget": 11614, + "coordinador": "Susana Izquierdo Funcia", + "state": "Cerrada" + }], + "totalVacancies": 15, + "totalReserved": 10, + "totalNumberOfHours": 56, + "totalInitialBudget": 11614 + }, + { + "id": 6869968, + "name": "GUÍAS CANINOS. ESPECIALISTA EN ESTRUCTURAS COLAPSADAS", + "editionVersion": [{ + "id": 6980454, + "startDate": "2018-04-09T00:00:00", + "endDate": "2018-04-14T00:00:00", + "totalVacancies": 15, + "totalReserved": 11, + "totalNumberOfHours": 56, + "totalInitialBudget": 12744, + "coordinador": "Mari Luz López Arbesú", + "state": "Cerrada" + }], + "totalVacancies": 15, + "totalReserved": 11, + "totalNumberOfHours": 56, + "totalInitialBudget": 12744 + }, + { + "id": 6870058, + "name": "GUÍAS CANINOS. TÉCNICAS BÁSICAS DE TRABAJO VERTICAL, DESCENSO Y AUTORRESCATE PARA GUÍAS DE INTERVENCIÓN CON PERROS", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6870134, + "name": "GUÍAS DE PERROS. PRIMEROS AUXILIOS VETERINARIOS AVANZADOS PARA PERROS DE RESCATE", + "editionVersion": [{ + "id": 7006642, + "startDate": "2018-11-30T00:00:00", + "endDate": "2018-12-02T00:00:00", + "totalVacancies": 20, + "totalReserved": 14, + "totalNumberOfHours": 20, + "totalInitialBudget": 6554, + "coordinador": "Mari Luz López Arbesú", + "state": "Anulada" + }], + "totalVacancies": 20, + "totalReserved": 14, + "totalNumberOfHours": 20, + "totalInitialBudget": 6554 + }, + { + "id": 6870257, + "name": "GUÍAS DE PERROS. PRIMEROS AUXILIOS VETERINARIOS BÁSICOS PARA PERROS DE RESCATE", + "editionVersion": [{ + "id": 6980448, + "startDate": "2018-11-24T00:00:00", + "endDate": "2018-12-02T00:00:00", + "totalVacancies": 20, + "totalReserved": 0, + "totalNumberOfHours": 30, + "totalInitialBudget": 7400, + "coordinador": "Mari Luz López Arbesú", + "state": "Anulada" + }, + { + "id": 6870258, + "startDate": "2018-06-09T00:00:00", + "endDate": "2018-06-17T00:00:00", + "totalVacancies": 20, + "totalReserved": 16, + "totalNumberOfHours": 30, + "totalInitialBudget": 7400, + "coordinador": "Mari Luz López Arbesú", + "state": "Cerrada" + } + ], + "totalVacancies": 40, + "totalReserved": 16, + "totalNumberOfHours": 60, + "totalInitialBudget": 14800 + }, + { + "id": 6870330, + "name": "ORIENTACIÓN, MOVILIDAD Y RESCATE EN CONDICIONES DE BAJA O NULA VISIBILIDAD", + "editionVersion": [{ + "id": 6870331, + "startDate": "2018-11-26T00:00:00", + "endDate": "2018-11-30T00:00:00", + "totalVacancies": 20, + "totalReserved": 0, + "totalNumberOfHours": 35, + "totalInitialBudget": 7185, + "coordinador": "Jesús Mirón Nieto", + "state": "Anulada" + }], + "totalVacancies": 20, + "totalReserved": 0, + "totalNumberOfHours": 35, + "totalInitialBudget": 7185 + }, + { + "id": 6870363, + "name": "SALVAMENTO ACUÁTICO PARA VOLUNTARIOS DE PROTECCIÓN CIVIL", + "editionVersion": [{ + "id": 6870364, + "startDate": "2018-04-26T00:00:00", + "endDate": "2018-04-29T00:00:00", + "totalVacancies": 30, + "totalReserved": 0, + "totalNumberOfHours": 30, + "totalInitialBudget": 3320, + "coordinador": "Arturo Fuente Pedrejón", + "state": "Cerrada" + }, + { + "id": 6870400, + "startDate": "2018-05-17T00:00:00", + "endDate": "2018-05-20T00:00:00", + "totalVacancies": 30, + "totalReserved": 0, + "totalNumberOfHours": 30, + "totalInitialBudget": 3320, + "coordinador": "Oliva García Trasancos", + "state": "Cerrada" + }, + { + "id": 6870424, + "startDate": "2018-06-07T00:00:00", + "endDate": "2018-06-10T00:00:00", + "totalVacancies": 30, + "totalReserved": 0, + "totalNumberOfHours": 30, + "totalInitialBudget": 3320, + "coordinador": "Ramón Pérez Barrientos", + "state": "Cerrada" + } + ], + "totalVacancies": 90, + "totalReserved": 0, + "totalNumberOfHours": 90, + "totalInitialBudget": 9960 + }, + { + "id": 6870454, + "name": "TÉCNICAS DE EXTINCIÓN DE INCENDIOS, BÚSQUEDA, ORIENTACIÓN Y RESCATE EN EDIFICIOS SUBTERRANEOS PARA CUERPOS DE SEGURIDAD EN OPERACIONES ESPECIALES. AVANZADO", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6870558, + "name": "VOLADURAS CONTROLADAS PARA RESCATE", + "editionVersion": [{ + "id": 6870559, + "startDate": "2018-10-23T00:00:00", + "endDate": "2018-10-25T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 20, + "totalInitialBudget": 5110, + "coordinador": "Sergio Tuñón Iglesias", + "state": "Cerrada" + }, + { + "id": 6870590, + "startDate": "2018-11-27T00:00:00", + "endDate": "2018-11-29T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 20, + "totalInitialBudget": 5110, + "coordinador": "Sergio Tuñón Iglesias", + "state": "Cerrada" + } + ], + "totalVacancies": 40, + "totalReserved": 40, + "totalNumberOfHours": 40, + "totalInitialBudget": 10220 + }, + { + "id": 6979913, + "name": "TÉCNICAS DE EXTINCIÓN Y SALVAMENTO EN ESPACIOS CONFINADOS EN EDIFICIOS SUBTERRÁNEOS PARA CUERPOS DE SEGURIDAD DE OPERACIONES ESPECIALES EN INFRAESTRUCTURAS CRÍTICAS", + "editionVersion": [{ + "id": 6979916, + "startDate": "2018-02-06T00:00:00", + "endDate": "2018-02-08T00:00:00", + "totalVacancies": 14, + "totalReserved": 14, + "totalNumberOfHours": 24, + "totalInitialBudget": 4940, + "coordinador": "Daniel Arroyo Fernández", + "state": "Cerrada" + }, + { + "id": 6979918, + "startDate": "2018-02-13T00:00:00", + "endDate": "2018-02-15T00:00:00", + "totalVacancies": 14, + "totalReserved": 14, + "totalNumberOfHours": 24, + "totalInitialBudget": 4940, + "coordinador": "Daniel Arroyo Fernández", + "state": "Cerrada" + } + ], + "totalVacancies": 28, + "totalReserved": 28, + "totalNumberOfHours": 48, + "totalInitialBudget": 9880 + } + ], + "totalVacancies": 333, + "totalReserved": 152, + "totalNumberOfHours": 508, + "totalInitialBudget": 101845 + }, + { + "id": 6870600, + "name": "4.3 Intervención de Lucha Contra el Siniestro.", + "trainingActivityVersion": [{ + "id": 6870601, + "name": "*JORNADA TÉCNICA ASELF Nº3 (PROVISIONAL)*", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6870602, + "name": "*JORNADA TÉCNICA ASELF Nº4 (PROVISIONAL)*", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6870603, + "name": "*JORNADA TÉCNICA ASELF Nº5 (PROVISIONAL)*", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6870604, + "name": "CAPACITACIÓN EN EL MANEJO DE EXTINTORES Y BIES", + "editionVersion": [{ + "id": 6870605, + "startDate": "2018-02-08T00:00:00", + "endDate": "2018-02-08T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 6, + "totalInitialBudget": 1472, + "coordinador": "Jesús Mirón Nieto", + "state": "Cerrada" + }, + { + "id": 6870618, + "startDate": "2018-02-13T00:00:00", + "endDate": "2018-02-13T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 6, + "totalInitialBudget": 1472, + "coordinador": "Ignacio Tébar del Río", + "state": "Cerrada" + }, + { + "id": 6870630, + "startDate": "2018-02-15T00:00:00", + "endDate": "2018-02-15T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 6, + "totalInitialBudget": 1472, + "coordinador": "Ignacio Tébar del Río", + "state": "Cerrada" + }, + { + "id": 6870643, + "startDate": "2018-02-20T00:00:00", + "endDate": "2018-02-20T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 6, + "totalInitialBudget": 1472, + "coordinador": "Ignacio Tébar del Río", + "state": "Cerrada" + }, + { + "id": 6870653, + "startDate": "2018-02-22T00:00:00", + "endDate": "2018-02-22T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 6, + "totalInitialBudget": 1472, + "coordinador": "Ignacio Tébar del Río", + "state": "Cerrada" + }, + { + "id": 6870660, + "startDate": "2018-02-27T00:00:00", + "endDate": "2018-02-27T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 6, + "totalInitialBudget": 1472, + "coordinador": "Ignacio Tébar del Río", + "state": "Cerrada" + }, + { + "id": 6870667, + "startDate": "2018-10-16T00:00:00", + "endDate": "2018-10-16T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 6, + "totalInitialBudget": 1472, + "coordinador": "Ignacio Tébar del Río", + "state": "Cerrada" + }, + { + "id": 6870683, + "startDate": "2018-10-30T00:00:00", + "endDate": "2018-10-30T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 6, + "totalInitialBudget": 1472, + "coordinador": "Ignacio Tébar del Río", + "state": "Cerrada" + }, + { + "id": 6870689, + "startDate": "2018-10-09T00:00:00", + "endDate": "2018-10-09T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 6, + "totalInitialBudget": 1472, + "coordinador": "Ignacio Tébar del Río", + "state": "Cerrada" + }, + { + "id": 6870696, + "startDate": "2018-04-21T00:00:00", + "endDate": "2018-04-21T00:00:00", + "totalVacancies": 20, + "totalReserved": 0, + "totalNumberOfHours": 6, + "totalInitialBudget": 1472, + "coordinador": "Ignacio Tébar del Río", + "state": "Cerrada" + }, + { + "id": 6870703, + "startDate": "2018-10-06T00:00:00", + "endDate": "2018-10-06T00:00:00", + "totalVacancies": 20, + "totalReserved": 0, + "totalNumberOfHours": 6, + "totalInitialBudget": 1472, + "coordinador": "Jesús Mirón Nieto", + "state": "Cerrada" + } + ], + "totalVacancies": 220, + "totalReserved": 180, + "totalNumberOfHours": 66, + "totalInitialBudget": 16192 + }, + { + "id": 6870738, + "name": "CAPACITACIÓN EN TRABAJOS EN INCENDIOS FORESTALES PARA VOLUNTARIOS DE PROTECCIÓN CIVIL", + "editionVersion": [{ + "id": 6870739, + "startDate": "2018-04-06T00:00:00", + "endDate": "2018-04-08T00:00:00", + "totalVacancies": 25, + "totalReserved": 0, + "totalNumberOfHours": 20, + "totalInitialBudget": 2020, + "coordinador": "Máximo Javier López Miralles", + "state": "Cerrada" + }, + { + "id": 6870789, + "startDate": "2018-04-13T00:00:00", + "endDate": "2018-04-15T00:00:00", + "totalVacancies": 25, + "totalReserved": 0, + "totalNumberOfHours": 20, + "totalInitialBudget": 2020, + "coordinador": "Máximo Javier López Miralles", + "state": "Cerrada" + } + ], + "totalVacancies": 50, + "totalReserved": 0, + "totalNumberOfHours": 40, + "totalInitialBudget": 4040 + }, + { + "id": 6870837, + "name": "COORDINACIÓN DE INTERVINIENTES EN EMERGENCIAS EN EL TRANSPORTE DE MERCANCÍAS PELIGROSAS", + "editionVersion": [{ + "id": 6870838, + "startDate": "2018-06-26T00:00:00", + "endDate": "2018-06-28T00:00:00", + "totalVacancies": 20, + "totalReserved": 7, + "totalNumberOfHours": 24, + "totalInitialBudget": 5000, + "coordinador": "Yolanda Sanromán Francisco", + "state": "Cerrada" + }], + "totalVacancies": 20, + "totalReserved": 7, + "totalNumberOfHours": 24, + "totalInitialBudget": 5000 + }, + { + "id": 6870901, + "name": "COORDINACIÓN EN LA INTERVENCIÓN Y SEGURIDAD EN SITUACIONES DE EMERGENCIAS PARA PRIMEROS INTERVINIENTES", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6870940, + "name": "CURSO BÁSICO DE EMERGENCIAS NRBQ PARA FUERZAS Y CUERPOS DE SEGURIDAD Y FUERZAS ARMADAS. MÓDULO I", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6870941, + "name": "CURSO BÁSICO DE EMERGENCIAS NRBQ PARA FUERZAS Y CUERPOS DE SEGURIDAD Y FUERZAS ARMADAS. MÓDULO II", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6870942, + "name": "CURSO BÁSICO DE EMERGENCIAS NRBQ PARA FUERZAS Y CUERPOS DE SEGURIDAD. MÓDULO I", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6870943, + "name": "CURSO DE ACTUACIÓN DEL GRUPO DE SEGURIDAD Y ORDEN PÚBLICO EN EMERGENCIAS NUCLEARES", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6870944, + "name": "CURSO DE ACTUALIZACIÓN DEL PLAN DEL GRUPO DE COORDINACIÓN Y ASISTENCIA TÉCNICA", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6870945, + "name": "EMERGENCIAS NUCLEARES (PROTECCIÓN CIVIL, SEGURIDAD NUCLEAR Y PROTECCIÓN RADIOLÓGICA)", + "editionVersion": [{ + "id": 6980108, + "startDate": "2018-10-01T00:00:00", + "endDate": "2018-10-04T00:00:00", + "totalVacancies": 35, + "totalReserved": 0, + "totalNumberOfHours": 32, + "totalInitialBudget": 0, + "coordinador": "María Dolores Ortín Sonet", + "state": "Cerrada" + }], + "totalVacancies": 35, + "totalReserved": 0, + "totalNumberOfHours": 32, + "totalInitialBudget": 0 + }, + { + "id": 6870946, + "name": "CURSO DE COORDINACION ENTRE GRUPOS OPERATIVOS Y SUS PLANES( ELABORACION DE ALGORITMOS/FLUJOS DE ACTUACION) (PENBU)", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6870947, + "name": "CURSO DE FORMACIÓN DE ACTUANTES MUNICIPALES DEL PENVA", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6870948, + "name": "CURSO DE FORMACIÓN DE LOS GRUPOS OPERATIVOS DEL PENCA", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6870949, + "name": "CURSO DE OPERACIONES DE EXTINCIÓN DE INCENDIOS FORESTALES PARA PILOTOS DEL 43 GRUPO", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6870950, + "name": "CURSO DE TÉCNICAS DE ESPECIALIZACIÓN EN INTERVENCIÓN EN EMERGENCIAS CON RIESGO QUÍMICO (NRBQ Nivel II)", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6870951, + "name": "CURSO PARA SECRETARIOS DE AYUNTAMIENTOS Y TÉCNICOS MUNICIPALES DEL PENVA", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6870952, + "name": "EMERGENCIAS RADIOLÓGICAS", + "editionVersion": [{ + "id": 6870953, + "startDate": "2018-05-28T00:00:00", + "endDate": "2018-05-31T00:00:00", + "totalVacancies": 30, + "totalReserved": 4, + "totalNumberOfHours": 26, + "totalInitialBudget": 0, + "coordinador": "Vicent Guardia Almenar", + "state": "Cerrada" + }], + "totalVacancies": 30, + "totalReserved": 4, + "totalNumberOfHours": 26, + "totalInitialBudget": 0 + }, + { + "id": 6870994, + "name": "EMPLEO DE MÁQUINAS EMPUJADORAS EN EXTINCIÓN DE INCENDIOS FORESTALES", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6870995, + "name": "ESPECIALISTAS NRBQ NIVEL 3 PARA LA GUARDIA CIVIL", + "editionVersion": [{ + "id": 6870996, + "startDate": "2018-09-03T00:00:00", + "endDate": "2018-09-28T00:00:00", + "totalVacancies": 15, + "totalReserved": 15, + "totalNumberOfHours": 113, + "totalInitialBudget": 16780, + "coordinador": "Valeriano Ortega Miravalles", + "state": "Cerrada" + }], + "totalVacancies": 15, + "totalReserved": 15, + "totalNumberOfHours": 113, + "totalInitialBudget": 16780 + }, + { + "id": 6871229, + "name": "FORMACIÓN GENERAL PARA ACTUACIÓN EN EMERGENCIAS NUCLEARES ONLINE", + "editionVersion": [{ + "id": 6871230, + "startDate": "2018-04-09T00:00:00", + "endDate": "2018-06-30T00:00:00", + "totalVacancies": 180, + "totalReserved": 90, + "totalNumberOfHours": 60, + "totalInitialBudget": 3600, + "coordinador": "Isabel Vera Navascués", + "state": "Cerrada" + }], + "totalVacancies": 180, + "totalReserved": 90, + "totalNumberOfHours": 60, + "totalInitialBudget": 3600 + }, + { + "id": 6871456, + "name": "FORMACIÓN PARA PRIMEROS INTERVINIENTES EN LOS PLANES DE AUTOPROTECCIÓN", + "editionVersion": [{ + "id": 6871457, + "startDate": "2018-01-30T00:00:00", + "endDate": "2018-01-30T00:00:00", + "totalVacancies": 24, + "totalReserved": 24, + "totalNumberOfHours": 8, + "totalInitialBudget": 1640, + "coordinador": "Jesús Mirón Nieto", + "state": "Cerrada" + }, + { + "id": 6871464, + "startDate": "2018-02-01T00:00:00", + "endDate": "2018-02-01T00:00:00", + "totalVacancies": 24, + "totalReserved": 24, + "totalNumberOfHours": 8, + "totalInitialBudget": 1640, + "coordinador": "Jesús Mirón Nieto", + "state": "Cerrada" + }, + { + "id": 6871471, + "startDate": "2018-02-06T00:00:00", + "endDate": "2018-02-06T00:00:00", + "totalVacancies": 24, + "totalReserved": 24, + "totalNumberOfHours": 8, + "totalInitialBudget": 1640, + "coordinador": "Jesús Mirón Nieto", + "state": "Cerrada" + } + ], + "totalVacancies": 72, + "totalReserved": 72, + "totalNumberOfHours": 24, + "totalInitialBudget": 4920 + }, + { + "id": 6871478, + "name": "FORMACIÓN Y CAPACITACIÓN DE ACTUANTES DEL GRUPO SANITARIO DEL PENBU - PENSAN / PROCEDIMIENTOS / ACTUACIONES EN ECDS", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6871479, + "name": "INTERVENCIÓN OPERATIVA EN ACCIDENTES EN EL TRANSPORTE DE MMPP EN LA REGIÓN DE MURCIA", + "editionVersion": [{ + "id": 6871480, + "startDate": "2018-05-08T00:00:00", + "endDate": "2018-05-10T00:00:00", + "totalVacancies": 30, + "totalReserved": 25, + "totalNumberOfHours": 15, + "totalInitialBudget": 1515, + "coordinador": "Gabriel Lambertos Martínez", + "state": "Cerrada" + }], + "totalVacancies": 30, + "totalReserved": 25, + "totalNumberOfHours": 15, + "totalInitialBudget": 1515 + }, + { + "id": 6871501, + "name": "JORNADA DE ACTUACIÓN EN EMERGENCIAS NUCLEARES DEL GRUPO DE COORDINACIÓN Y ASISTENCIA TÉCNICA (PENCA)", + "editionVersion": [{ + "id": 6871502, + "startDate": "2018-12-31T00:00:00", + "endDate": "2018-12-31T00:00:00", + "totalVacancies": 50, + "totalReserved": 50, + "totalNumberOfHours": 5, + "totalInitialBudget": 378, + "coordinador": "María Milagros Vázquez Basquero", + "state": "Anulada" + }], + "totalVacancies": 50, + "totalReserved": 50, + "totalNumberOfHours": 5, + "totalInitialBudget": 378 + }, + { + "id": 6871513, + "name": "JORNADA DE ACTUACION EN EMERGENCIAS NUCLEARES DEL GRUPO DE SEGURIDAD CIUDADANA Y ORDEN PUBLICO (PENCA)", + "editionVersion": [{ + "id": 6871514, + "startDate": "2018-10-29T00:00:00", + "endDate": "2018-10-30T00:00:00", + "totalVacancies": 50, + "totalReserved": 50, + "totalNumberOfHours": 7, + "totalInitialBudget": 378, + "coordinador": "María Milagros Vázquez Basquero", + "state": "Cerrada" + }], + "totalVacancies": 50, + "totalReserved": 50, + "totalNumberOfHours": 7, + "totalInitialBudget": 378 + }, + { + "id": 6871532, + "name": "JORNADA DE ACTUACIÓN MUNICIPAL EN EMERGENCIA NUCLEAR (PAMEN) PARA MUNICIPIOS ZONA I (PENVA)", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6871543, + "name": "JORNADA DE ACTUACIÓN MUNICIPAL EN EMERGENCIAS NUCLEARES (PENGUA)", + "editionVersion": [{ + "id": 6871544, + "startDate": "2018-03-20T00:00:00", + "endDate": "2018-03-20T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 6, + "totalInitialBudget": 378, + "coordinador": "María Jesús Fuertes Menéndez", + "state": "Cerrada" + }, + { + "id": 6871546, + "startDate": "2018-02-19T00:00:00", + "endDate": "2018-02-19T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 6, + "totalInitialBudget": 378, + "coordinador": "María Jesús Fuertes Menéndez", + "state": "Cerrada" + }, + { + "id": 6871598, + "startDate": "2018-05-15T00:00:00", + "endDate": "2018-05-15T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 6, + "totalInitialBudget": 378, + "coordinador": "María Jesús Fuertes Menéndez", + "state": "Cerrada" + }, + { + "id": 6980008, + "startDate": "2018-03-27T00:00:00", + "endDate": "2018-03-27T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 6, + "totalInitialBudget": 378, + "coordinador": "María Jesús Fuertes Menéndez", + "state": "Cerrada" + }, + { + "id": 7799964, + "startDate": "2018-09-19T00:00:00", + "endDate": "2018-09-19T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 6, + "totalInitialBudget": 378, + "coordinador": "María Jesús Fuertes Menéndez", + "state": "Cerrada" + }, + { + "id": 7799966, + "startDate": "2018-07-03T00:00:00", + "endDate": "2018-07-03T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 6, + "totalInitialBudget": 378, + "coordinador": "María Jesús Fuertes Menéndez", + "state": "Cerrada" + }, + { + "id": 7870079, + "startDate": "2018-06-28T00:00:00", + "endDate": "2018-06-28T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 6, + "totalInitialBudget": 378, + "coordinador": "María Jesús Fuertes Menéndez", + "state": "Cerrada" + }, + { + "id": 8006888, + "startDate": "2018-09-27T00:00:00", + "endDate": "2018-09-27T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 6, + "totalInitialBudget": 378, + "coordinador": "María Jesús Fuertes Menéndez", + "state": "Cerrada" + }, + { + "id": 8007099, + "startDate": "2018-11-28T00:00:00", + "endDate": "2018-11-28T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 6, + "totalInitialBudget": 0, + "coordinador": "María Jesús Fuertes Menéndez", + "state": "Programación" + } + ], + "totalVacancies": 180, + "totalReserved": 180, + "totalNumberOfHours": 54, + "totalInitialBudget": 3024 + }, + { + "id": 6871600, + "name": "JORNADA DE ACTUACIÓN MUNICIPAL EN EMERGENCIAS NUCLEARES PARA LOS MUNICIPIOS SEDE ECD (PENCA)", + "editionVersion": [{ + "id": 6871601, + "startDate": "2018-12-31T00:00:00", + "endDate": "2018-12-31T00:00:00", + "totalVacancies": 50, + "totalReserved": 50, + "totalNumberOfHours": 5, + "totalInitialBudget": 378, + "coordinador": "María Milagros Vázquez Basquero", + "state": "Anulada" + }, + { + "id": 6871603, + "startDate": "2018-12-31T00:00:00", + "endDate": "2018-12-31T00:00:00", + "totalVacancies": 50, + "totalReserved": 50, + "totalNumberOfHours": 5, + "totalInitialBudget": 378, + "coordinador": "María Milagros Vázquez Basquero", + "state": "Anulada" + }, + { + "id": 6871605, + "startDate": "2018-12-31T00:00:00", + "endDate": "2018-12-31T00:00:00", + "totalVacancies": 50, + "totalReserved": 50, + "totalNumberOfHours": 5, + "totalInitialBudget": 378, + "coordinador": "María Milagros Vázquez Basquero", + "state": "Anulada" + } + ], + "totalVacancies": 150, + "totalReserved": 150, + "totalNumberOfHours": 15, + "totalInitialBudget": 1134 + }, + { + "id": 6871607, + "name": "JORNADA DE ACTUACIÓN MUNICIPAL EN EMERGENCIAS NUCLEARES PARA LOS MUNICIPIOS ZONA I (PENCA)", + "editionVersion": [{ + "id": 6871608, + "startDate": "2018-12-31T00:00:00", + "endDate": "2018-12-31T00:00:00", + "totalVacancies": 25, + "totalReserved": 25, + "totalNumberOfHours": 5, + "totalInitialBudget": 378, + "coordinador": "María Milagros Vázquez Basquero", + "state": "Anulada" + }, + { + "id": 6871610, + "startDate": "2018-12-31T00:00:00", + "endDate": "2018-12-31T00:00:00", + "totalVacancies": 25, + "totalReserved": 25, + "totalNumberOfHours": 5, + "totalInitialBudget": 378, + "coordinador": "María Milagros Vázquez Basquero", + "state": "Anulada" + } + ], + "totalVacancies": 50, + "totalReserved": 50, + "totalNumberOfHours": 10, + "totalInitialBudget": 756 + }, + { + "id": 6871612, + "name": "JORNADA DE FORMACIÓN DE ACTUACIÓN EN EMERGENCIAS NUCLEARES, CON ESPECIAL INCIDENCIA EN AUTOPROTECCIÓN Y EN EL USO DE DOSIMETRÍA PARA ACTUANTES DEL GRUPO GPOL (PENBU)", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6871628, + "name": "JORNADA DE FORMACIÓN DE ACTUANTES MUNICIPALES DEL PENBU", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6871629, + "name": "JORNADA DE FORMACIÓN DE ACTUANTES MUNICIPALES DEL PENCA", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6871630, + "name": "JORNADA DE FORMACIÓN DE ACTUANTES MUNICIPALES DEL PENGUA", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6871631, + "name": "JORNADA DE FORMACIÓN DE ACTUANTES MUNICIPALES DEL PENTA. (Nivel II).", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6871632, + "name": "JORNADA DE FORMACIÓN DE ACTUANTES MUNICIPALES DEL PENVA", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6871633, + "name": "JORNADA DE FORMACIÓN DEL GRUPO DE APOYO LOGÍSTICO", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6871634, + "name": "JORNADA DE FORMACIÓN PARA MANDOS DE GRUPOS OPERATIVOS DEL PENTA. (Nivel II).", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6871635, + "name": "JORNADA DE FORMACIÓN SOBRE ACTUACIONES EN EL CECOP DEL PENBU, CECOPI DE LAS CCAA Y GABINETE TELEGRÁFICO (PENBU)", + "editionVersion": [{ + "id": 6871636, + "startDate": "2018-03-27T00:00:00", + "endDate": "2018-03-27T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 5, + "totalInitialBudget": 378, + "coordinador": "Javier Basconcillos Arce", + "state": "Cerrada" + }], + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 5, + "totalInitialBudget": 378 + }, + { + "id": 6871651, + "name": "JORNADA PARA ACTUANTES DEL GRUPO DE COORDINACIÓN Y ASISTENCIA TÉCNICA DEL PENBU. (Nivel III).", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6871652, + "name": "JORNADA PARA ACTUANTES EN CONTROLES DE ACCESO DEL PENBU", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6871653, + "name": "JORNADA PARA AUTORIDADES LOCALES DE LOS AYUNTAMIENTOS ZONA I DEL PENBU", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6871654, + "name": "JORNADA PARA AUTORIDADES LOCALES Y ACTUANTES DEL PAMEN. (Nivel III).", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6871655, + "name": "JORNADA PRÁCTICA DE FORMACIÓN PARA PERSONAL GRUPOS DE SEGURIDAD CIUDADANA Y ORDEN PUBLICO SOBRE PROCEDIMIENTO DE CONTROL DE ACCESOS (PENBU)", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6871656, + "name": "JORNADA PRÁCTICA PARA ACTUANTES DEL PENBU: CECOP, CECOPI Y CONTROLES DE ACCESO. (Nivel II).", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6871657, + "name": "JORNADA SOBRE APLICACIONES DE MEDIDAS DE PROTECCIÓN A LA POBLACIÓN EN EL ÁMBITO DEL PENBU. PROCEDIMIENTOS OPERATIVOS EN LAS ACTUACIONES EN EMERGENCIA (PENBU)", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6871699, + "name": "JORNADA TÉCNICA PARA LA APLICACIÓN DEL CONFINAMIENTO Y ABASTECIMIENTO A LA POBLACIÓN EN LOS NÚCLEOS DE POBLACIÓN ZONA I (PENBU)", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6871720, + "name": "JORNADA TÉCNICA SOBRE PLANES MUNICIPALES DE EMERGENCIA NUCLEAR PARA AUTORIDADES MUNICIPALES DE ZONA I DE LOS PEN", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6871721, + "name": "JORNADA TEÓRICO-PRÁCTICA SOBRE ACTIVACIÓN ECD PARA GRUPO RADIOLÓGICO. (Nivel III).", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6871722, + "name": "JORNADA TEÓRICO-PRÁCTICA SOBRE FORMACIÓN GENERAL EN ACTUACIÓN EN EMERGENCIAS NUCLEARES", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6871723, + "name": "JORNADA TEÓRICO-PRÁCTICA SOBRE FORMACIÓN GENERAL EN ACTUACIÓN EN EMERGENCIAS NUCLEARES (PENBU)", + "editionVersion": [{ + "id": 6871724, + "startDate": "2018-06-20T00:00:00", + "endDate": "2018-06-20T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 5, + "totalInitialBudget": 378, + "coordinador": "Javier Basconcillos Arce", + "state": "Cerrada" + }, + { + "id": 6976685, + "startDate": "2018-12-31T00:00:00", + "endDate": "2018-12-31T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 5, + "totalInitialBudget": 378, + "coordinador": " ", + "state": "Anulada" + } + ], + "totalVacancies": 40, + "totalReserved": 40, + "totalNumberOfHours": 10, + "totalInitialBudget": 756 + }, + { + "id": 6871735, + "name": "JORNADA TEÓRICO-PRÁCTICA SOBRE FORMACIÓN GENERAL EN ACTUACIÓN EN EMERGENCIAS NUCLEARES (PENCA)", + "editionVersion": [{ + "id": 7904932, + "startDate": "2018-06-20T00:00:00", + "endDate": "2018-06-20T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 5, + "totalInitialBudget": 378, + "coordinador": "María Milagros Vázquez Basquero", + "state": "Cerrada" + }, + { + "id": 6871736, + "startDate": "2018-06-05T00:00:00", + "endDate": "2018-06-05T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 5, + "totalInitialBudget": 378, + "coordinador": "María Milagros Vázquez Basquero", + "state": "Cerrada" + } + ], + "totalVacancies": 40, + "totalReserved": 40, + "totalNumberOfHours": 10, + "totalInitialBudget": 756 + }, + { + "id": 6871747, + "name": "JORNADA TEÓRICO-PRÁCTICA SOBRE FORMACIÓN GENERAL EN ACTUACIÓN EN EMERGENCIAS NUCLEARES (PENTA)", + "editionVersion": [{ + "id": 8007658, + "startDate": "2018-10-03T00:00:00", + "endDate": "2018-10-03T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 5, + "totalInitialBudget": 378, + "coordinador": "Fabiola Ugalde Andrés", + "state": "Cerrada" + }, + { + "id": 8007660, + "startDate": "2018-10-05T00:00:00", + "endDate": "2018-10-05T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 5, + "totalInitialBudget": 378, + "coordinador": "Fabiola Ugalde Andrés", + "state": "Cerrada" + }, + { + "id": 7836528, + "startDate": "2018-05-17T00:00:00", + "endDate": "2018-05-17T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 5, + "totalInitialBudget": 378, + "coordinador": "Fernando Piédrola Nadal", + "state": "Cerrada" + } + ], + "totalVacancies": 60, + "totalReserved": 60, + "totalNumberOfHours": 15, + "totalInitialBudget": 1134 + }, + { + "id": 6871750, + "name": "JORNADA TEÓRICO-PRÁCTICA SOBRE FORMACIÓN GENERAL EN ACTUACIÓN EN EMERGENCIAS NUCLEARES (PENGUA)", + "editionVersion": [{ + "id": 6871751, + "startDate": "2018-11-12T00:00:00", + "endDate": "2018-11-12T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 7, + "totalInitialBudget": 378, + "coordinador": "María Jesús Fuertes Menéndez", + "state": "Programación" + }], + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 7, + "totalInitialBudget": 378 + }, + { + "id": 6871788, + "name": "JORNADA TEÓRICO-PRÁCTICA SOBRE FORMACIÓN GENERAL EN ACTUACIÓN EN EMERGENCIAS NUCLEARES (PENVA)", + "editionVersion": [{ + "id": 6871789, + "startDate": "2018-10-17T00:00:00", + "endDate": "2018-10-17T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 5, + "totalInitialBudget": 378, + "coordinador": "María Isabel Montón Abarca", + "state": "Cerrada" + }], + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 5, + "totalInitialBudget": 378 + }, + { + "id": 6871799, + "name": "JORNADAS DE FOMACIÓN SOBRE EL PENBU Y PARA LA APLICACIÓN DE LA EVACUACIÓN DE CENTROS ESCOLARES EN EMERGENCIA NUCLEAR (PENBU)", + "editionVersion": [{ + "id": 6871800, + "startDate": "2018-09-19T00:00:00", + "endDate": "2018-09-19T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 5, + "totalInitialBudget": 378, + "coordinador": "Javier Basconcillos Arce", + "state": "Cerrada" + }], + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 5, + "totalInitialBudget": 378 + }, + { + "id": 6871815, + "name": "JORNDA DE FORMACION PARA PERSONAL GRUPOS DE SEGURIDAD CIUDADANA Y ORDEN PUBLICO SOBRE PROCEDIMIENTO DE CONTROL DE ACCESOS (PENBU)", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6871816, + "name": "OPERACIONES DE AUTOPROTECCIÓN E INTERVENCIÓN FRENTE AL FUEGO EN LOS EDIFICIOS", + "editionVersion": [{ + "id": 6871817, + "startDate": "2018-03-05T00:00:00", + "endDate": "2018-03-09T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 35, + "totalInitialBudget": 6358, + "coordinador": "Jesús Mirón Nieto", + "state": "Cerrada" + }, + { + "id": 6871842, + "startDate": "2018-03-19T00:00:00", + "endDate": "2018-03-23T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 35, + "totalInitialBudget": 6358, + "coordinador": "Ignacio Tébar del Río", + "state": "Cerrada" + }, + { + "id": 6871881, + "startDate": "2018-05-21T00:00:00", + "endDate": "2018-05-25T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 35, + "totalInitialBudget": 6358, + "coordinador": "Jesús Mirón Nieto", + "state": "Cerrada" + }, + { + "id": 6871925, + "startDate": "2018-11-12T00:00:00", + "endDate": "2018-11-16T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 35, + "totalInitialBudget": 6358, + "coordinador": "Ignacio Tébar del Río", + "state": "Cerrada" + } + ], + "totalVacancies": 80, + "totalReserved": 80, + "totalNumberOfHours": 140, + "totalInitialBudget": 25432 + }, + { + "id": 6871980, + "name": "OPERACIONES Y DEFENSA CONTRA INCENDIOS FORESTALES EN LA INTERFAZ URBANO-FORESTAL", + "editionVersion": [{ + "id": 6871981, + "startDate": "2018-04-23T00:00:00", + "endDate": "2018-04-27T00:00:00", + "totalVacancies": 20, + "totalReserved": 0, + "totalNumberOfHours": 30, + "totalInitialBudget": 6500, + "coordinador": "Federico Grillo Delgado", + "state": "Cerrada" + }, + { + "id": 6972372, + "startDate": "2018-11-26T00:00:00", + "endDate": "2018-11-30T00:00:00", + "totalVacancies": 20, + "totalReserved": 0, + "totalNumberOfHours": 30, + "totalInitialBudget": 6500, + "coordinador": "Ferrán Dalmau Rovira", + "state": "Cerrada" + } + ], + "totalVacancies": 40, + "totalReserved": 0, + "totalNumberOfHours": 60, + "totalInitialBudget": 13000 + }, + { + "id": 6872045, + "name": "TALLER SOBRE ACTUALIZACIÓN PARA MIEMBROS DE LAS ORGANIZACIONES ADSCRITAS A LOS PLANES EXTERIORES DE EMERGENCIA NUCLEAR", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6872046, + "name": "TÉCNICAS BÁSICAS DE EXTINCIÓN DE INCENDIOS CON MEDIOS PORTÁTILES", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6872093, + "name": "TÉCNICAS DE ESPECIALIZACIÓN EN INTERVENCIÓN EN EMERGENCIAS CON RIESGO BIOLÓGICO", + "editionVersion": [{ + "id": 6872094, + "startDate": "2018-11-06T00:00:00", + "endDate": "2018-11-08T00:00:00", + "totalVacancies": 24, + "totalReserved": 24, + "totalNumberOfHours": 21, + "totalInitialBudget": 6761, + "coordinador": "Enrique Martínez Pavón", + "state": "Cerrada" + }], + "totalVacancies": 24, + "totalReserved": 24, + "totalNumberOfHours": 21, + "totalInitialBudget": 6761 + }, + { + "id": 6872118, + "name": "TÉCNICAS DE INTERVENCIÓN EN ACCIDENTES CON MERCANCÍAS PELIGROSAS. AVANZADO", + "editionVersion": [{ + "id": 6872119, + "startDate": "2018-06-04T00:00:00", + "endDate": "2018-06-08T00:00:00", + "totalVacancies": 22, + "totalReserved": 1, + "totalNumberOfHours": 35, + "totalInitialBudget": 11600, + "coordinador": "Yolanda Sanromán Francisco", + "state": "Cerrada" + }], + "totalVacancies": 22, + "totalReserved": 1, + "totalNumberOfHours": 35, + "totalInitialBudget": 11600 + }, + { + "id": 6872306, + "name": "TÉCNICAS DE INTERVENCIÓN EN ACCIDENTES CON MERCANCÍAS PELIGROSAS. BÁSICO", + "editionVersion": [{ + "id": 6872307, + "startDate": "2018-05-07T00:00:00", + "endDate": "2018-05-11T00:00:00", + "totalVacancies": 21, + "totalReserved": 3, + "totalNumberOfHours": 35, + "totalInitialBudget": 11200, + "coordinador": "Yolanda Sanromán Francisco", + "state": "Cerrada" + }, + { + "id": 6872375, + "startDate": "2018-10-01T00:00:00", + "endDate": "2018-10-05T00:00:00", + "totalVacancies": 20, + "totalReserved": 0, + "totalNumberOfHours": 35, + "totalInitialBudget": 11200, + "coordinador": "Yolanda Sanromán Francisco", + "state": "Cerrada" + } + ], + "totalVacancies": 41, + "totalReserved": 3, + "totalNumberOfHours": 70, + "totalInitialBudget": 22400 + }, + { + "id": 6872455, + "name": "TÉCNICAS DE SEGURIDAD E INTERVENCIÓN EN RESCATE Y SALVAMENTO EN ESTRUCTURAS COLAPSADAS EN SITUACIONES DE EMERGENCIA PARA EQUIPOS MULTIDISCIPLINARES", + "editionVersion": [{ + "id": 6872456, + "startDate": "2018-02-26T00:00:00", + "endDate": "2018-03-02T00:00:00", + "totalVacancies": 22, + "totalReserved": 11, + "totalNumberOfHours": 40, + "totalInitialBudget": 8950, + "coordinador": "Daniel Arroyo Fernández", + "state": "Cerrada" + }, + { + "id": 6872531, + "startDate": "2018-03-12T00:00:00", + "endDate": "2018-03-16T00:00:00", + "totalVacancies": 22, + "totalReserved": 5, + "totalNumberOfHours": 40, + "totalInitialBudget": 8950, + "coordinador": "Daniel Arroyo Fernández", + "state": "Cerrada" + } + ], + "totalVacancies": 44, + "totalReserved": 16, + "totalNumberOfHours": 80, + "totalInitialBudget": 17900 + }, + { + "id": 6872707, + "name": "TEÓRICO-PRÁCTICO PARA ACTUANTES DEL GRUPO DE SEGURIDAD CIUDADANA Y ORDEN PÚBLICO (PENVA)", + "editionVersion": [{ + "id": 6872708, + "startDate": "2018-12-11T00:00:00", + "endDate": "2018-12-12T00:00:00", + "totalVacancies": 30, + "totalReserved": 30, + "totalNumberOfHours": 10, + "totalInitialBudget": 378, + "coordinador": "María Isabel Montón Abarca", + "state": "Programación" + }, + { + "id": 6872724, + "startDate": "2018-09-25T00:00:00", + "endDate": "2018-09-26T00:00:00", + "totalVacancies": 30, + "totalReserved": 30, + "totalNumberOfHours": 10, + "totalInitialBudget": 378, + "coordinador": "María Isabel Montón Abarca", + "state": "Cerrada" + } + ], + "totalVacancies": 60, + "totalReserved": 60, + "totalNumberOfHours": 20, + "totalInitialBudget": 756 + }, + { + "id": 6872739, + "name": "USO DEL FUEGO PRESCRITO PARA LA PREVENCIÓN Y EXTINCIÓN DE INCENDIOS FORESTALES", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6872740, + "name": "USO DEL FUEGO PRESCRITO PARA LA PREVENCIÓN Y EXTINCIÓN DE INCENDIOS FORESTALES. MÓDULO I", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6872827, + "name": "USO DEL FUEGO PRESCRITO PARA LA PREVENCIÓN Y EXTINCIÓN DE INCENDIOS FORESTALES. MÓDULO II", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6980185, + "name": "JORNADA TÉCNICA SOBRE RESPUESTA INMEDIATA A LAS EMERGENCIAS PRODUCIDAS POR RIESGOS TECNOLÓGICOS. NUEVOS CAMPOS DE ESTUDIO Y DESARROLLO", + "editionVersion": [{ + "id": 6980190, + "startDate": "2018-01-23T00:00:00", + "endDate": "2018-01-23T00:00:00", + "totalVacancies": 80, + "totalReserved": 0, + "totalNumberOfHours": 5, + "totalInitialBudget": 1000, + "coordinador": "Valeriano Ortega Miravalles", + "state": "Cerrada" + }], + "totalVacancies": 80, + "totalReserved": 0, + "totalNumberOfHours": 5, + "totalInitialBudget": 1000 + }, + { + "id": 6980192, + "name": "V WORKSHOP SOBRE RESPUESTA INMEDIATA A LAS EMERGENCIAS PRODUCIDAS POR RIESGOS TECNOLÓGICOS", + "editionVersion": [{ + "id": 6980194, + "startDate": "2018-01-23T00:00:00", + "endDate": "2018-01-25T00:00:00", + "totalVacancies": 50, + "totalReserved": 0, + "totalNumberOfHours": 13, + "totalInitialBudget": 250, + "coordinador": "Valeriano Ortega Miravalles", + "state": "Cerrada" + }], + "totalVacancies": 50, + "totalReserved": 0, + "totalNumberOfHours": 13, + "totalInitialBudget": 250 + }, + { + "id": 8007089, + "name": "FORMACIÓN SOBRE EMERGENCIAS NUCLEARES PARA MUNICIPIOS ZONA I (PENVA)", + "editionVersion": [{ + "id": 8007091, + "startDate": "2018-11-08T00:00:00", + "endDate": "2018-11-12T00:00:00", + "totalVacancies": 30, + "totalReserved": 30, + "totalNumberOfHours": 8, + "totalInitialBudget": 430, + "coordinador": "María Isabel Montón Abarca", + "state": "Cerrada" + }], + "totalVacancies": 30, + "totalReserved": 30, + "totalNumberOfHours": 8, + "totalInitialBudget": 430 + }, + { + "id": 8007094, + "name": "TEÓRICO-PRÁCTICO SOBRE ACTUACIÓN MUNICIPAL EN EMERGENCIA NUCLEAR EN MUNICIPIOS ZONA I (PENVA)", + "editionVersion": [{ + "id": 8007096, + "startDate": "2018-11-20T00:00:00", + "endDate": "2018-11-22T00:00:00", + "totalVacancies": 30, + "totalReserved": 30, + "totalNumberOfHours": 8, + "totalInitialBudget": 430, + "coordinador": "María Isabel Montón Abarca", + "state": "Cerrada" + }], + "totalVacancies": 30, + "totalReserved": 30, + "totalNumberOfHours": 8, + "totalInitialBudget": 430 + }, + { + "id": 8007664, + "name": "JORNADAS DE FORMACIÓN DE ACTUANTES DE LOS PAMEN (PENTA)", + "editionVersion": [{ + "id": 8007666, + "startDate": "2018-10-24T00:00:00", + "endDate": "2018-10-24T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 5, + "totalInitialBudget": 378, + "coordinador": "Fabiola Ugalde Andrés", + "state": "Cerrada" + }, + { + "id": 8007668, + "startDate": "2018-11-29T00:00:00", + "endDate": "2018-11-29T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 5, + "totalInitialBudget": 378, + "coordinador": "Fabiola Ugalde Andrés", + "state": "Anulada" + } + ], + "totalVacancies": 40, + "totalReserved": 40, + "totalNumberOfHours": 10, + "totalInitialBudget": 756 + }, + { + "id": 8007672, + "name": "JORNADA DE FORMACIÓN DE ACTUANTES DE APOYO AL GRUPO DE COORDINACIÓN Y ASISTENCIA TÉCNICA EN EL CECOP (PENTA)", + "editionVersion": [{ + "id": 8007674, + "startDate": "2018-11-27T00:00:00", + "endDate": "2018-11-27T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 5, + "totalInitialBudget": 378, + "coordinador": "Fabiola Ugalde Andrés", + "state": "Anulada" + }], + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 5, + "totalInitialBudget": 378 + } + ], + "totalVacancies": 1913, + "totalReserved": 1397, + "totalNumberOfHours": 1023, + "totalInitialBudget": 162968 + }, + { + "id": 6872884, + "name": "4.4 Apoyo Logístico y de Seguridad.", + "trainingActivityVersion": [{ + "id": 6872885, + "name": "CURSO DE APOYO LOGÍSTICO EN EMERGENCIAS", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6872886, + "name": "CURSO DE EVACUACIÓN, DISPERSIÓN Y ALBERGUE EN CATÁSTROFES", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6872887, + "name": "GESTIÓN Y CONTROL DEL SISTEMA DE APOYO LOGÍSTICO EN EMERGENCIAS", + "editionVersion": [{ + "id": 6872888, + "startDate": "2018-06-04T00:00:00", + "endDate": "2018-06-07T00:00:00", + "totalVacancies": 25, + "totalReserved": 1, + "totalNumberOfHours": 25, + "totalInitialBudget": 3125, + "coordinador": "Francisco García Riesco", + "state": "Anulada" + }], + "totalVacancies": 25, + "totalReserved": 1, + "totalNumberOfHours": 25, + "totalInitialBudget": 3125 + }, + { + "id": 6872942, + "name": "PLANIFICACIÓN LOGÍSTICA EN EMERGENCIAS EN EL TERRITORIO", + "editionVersion": [{ + "id": 6872943, + "startDate": "2018-10-01T00:00:00", + "endDate": "2018-10-04T00:00:00", + "totalVacancies": 25, + "totalReserved": 4, + "totalNumberOfHours": 25, + "totalInitialBudget": 3125, + "coordinador": "Francisco García Riesco", + "state": "Cerrada" + }], + "totalVacancies": 25, + "totalReserved": 4, + "totalNumberOfHours": 25, + "totalInitialBudget": 3125 + }, + { + "id": 6873017, + "name": "SEMINARIO DE ACTUACIÓN POLICIAL ANTE CATÁSTROFES", + "editionVersion": [{ + "id": 6873018, + "startDate": "2018-12-31T00:00:00", + "endDate": "2018-12-31T00:00:00", + "totalVacancies": 650, + "totalReserved": 650, + "totalNumberOfHours": 40, + "totalInitialBudget": 6000, + "coordinador": "Belén García Granjo", + "state": "Anulada" + }], + "totalVacancies": 650, + "totalReserved": 650, + "totalNumberOfHours": 40, + "totalInitialBudget": 6000 + }, + { + "id": 6873326, + "name": "X SEMINARIO DE ACTUACIÓN POLICIAL ANTE CATÁSTROFES.", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6873327, + "name": "XI SEMINARIO DE ACTUACIÓN POLICIAL ANTE CATÁSTROFES.", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6873328, + "name": "XII SEMINARIO DE ACTUACIÓN POLICIAL ANTE CASTÁSTROFES", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 8007102, + "name": "JORNADA FORMATIVA PARA ACTUANTES DEL GRUPO DE APOYO LOGÍSTICO (PENGUA)", + "editionVersion": [{ + "id": 8007104, + "startDate": "2018-10-03T00:00:00", + "endDate": "2018-10-03T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 6, + "totalInitialBudget": 378, + "coordinador": "María Jesús Fuertes Menéndez", + "state": "Cerrada" + }], + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 6, + "totalInitialBudget": 378 + } + ], + "totalVacancies": 720, + "totalReserved": 675, + "totalNumberOfHours": 96, + "totalInitialBudget": 12628 + }, + { + "id": 6873329, + "name": "4.5 Asistencia Sanitaria en Emergencias.", + "trainingActivityVersion": [{ + "id": 6873330, + "name": "ACTUACIÓN SANITARIA EN EMERGENCIAS NUCLEARES ONLINE", + "editionVersion": [{ + "id": 6873331, + "startDate": "2018-10-01T00:00:00", + "endDate": "2018-11-25T00:00:00", + "totalVacancies": 60, + "totalReserved": 30, + "totalNumberOfHours": 40, + "totalInitialBudget": 2250, + "coordinador": "Isabel Vera Navascués", + "state": "Impartición" + }], + "totalVacancies": 60, + "totalReserved": 30, + "totalNumberOfHours": 40, + "totalInitialBudget": 2250 + }, + { + "id": 6873449, + "name": "CURSO DE ASISTENCIA SANITARIA EN CATÁTROFES. TRIAGE. (Nivel I).", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6873450, + "name": "CURSO DE FORMACION DE ACTUANTES DEL GRUPO SANITARIO ECD (PENBU)", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6873451, + "name": "CURSO DE RECICLAJE DE REANIMACIÓN CARDIOPULMONAR Y DESA (Turno de tarde)", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6873452, + "name": "CURSO DE VENDAJES E INMOVILIZACIONES EN CASO DE EMERGENCIA. (Nivel I).", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6873453, + "name": "CURSO SANITARIO PARA VOLUNTARIOS DE PROTECCION CIVIL", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6873454, + "name": "JORNADA TÉCNICA SOBRE CUESTIONES SANITARIAS DE LOS PLANES DE EMERGENCIA NUCLEAR", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6873455, + "name": "JORNADA TEÓRICO-PRÁCTICA SOBRE ACTUACIÓN SANITARIA EN EMERGENCIAS NUCLEARES", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6873456, + "name": "JORNADA TEÓRICO-PRÁCTICA SOBRE ACTUACIÓN SANITARIA EN EMERGENCIAS NUCLEARES (PENBU)", + "editionVersion": [{ + "id": 6873457, + "startDate": "2018-10-17T00:00:00", + "endDate": "2018-10-17T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 5, + "totalInitialBudget": 378, + "coordinador": "Javier Basconcillos Arce", + "state": "Cerrada" + }], + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 5, + "totalInitialBudget": 378 + }, + { + "id": 6873485, + "name": "JORNADA TEÓRICO-PRÁCTICA SOBRE ACTUACIÓN SANITARIA EN EMERGENCIAS NUCLEARES (PENCA)", + "editionVersion": [{ + "id": 6873486, + "startDate": "2018-12-31T00:00:00", + "endDate": "2018-12-31T00:00:00", + "totalVacancies": 25, + "totalReserved": 25, + "totalNumberOfHours": 5, + "totalInitialBudget": 378, + "coordinador": "María Milagros Vázquez Basquero", + "state": "Anulada" + }, + { + "id": 6873495, + "startDate": "2018-12-31T00:00:00", + "endDate": "2018-12-31T00:00:00", + "totalVacancies": 25, + "totalReserved": 25, + "totalNumberOfHours": 5, + "totalInitialBudget": 378, + "coordinador": "María Milagros Vázquez Basquero", + "state": "Anulada" + } + ], + "totalVacancies": 50, + "totalReserved": 50, + "totalNumberOfHours": 10, + "totalInitialBudget": 756 + }, + { + "id": 6873497, + "name": "JORNADA TEÓRICO-PRÁCTICA SOBRE ACTUACIÓN SANITARIA EN EMERGENCIAS NUCLEARES (PENGUA)", + "editionVersion": [{ + "id": 6976015, + "startDate": "2018-11-29T00:00:00", + "endDate": "2018-11-29T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 6, + "totalInitialBudget": 378, + "coordinador": "María Jesús Fuertes Menéndez", + "state": "Impartición" + }], + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 6, + "totalInitialBudget": 378 + }, + { + "id": 6873498, + "name": "JORNADA TEÓRICO-PRÁCTICA SOBRE ACTUACIÓN SANITARIA EN EMERGENCIAS NUCLEARES (PENTA)", + "editionVersion": [{ + "id": 6873499, + "startDate": "2018-10-09T00:00:00", + "endDate": "2018-10-09T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 5, + "totalInitialBudget": 378, + "coordinador": "Fabiola Ugalde Andrés", + "state": "Cerrada" + }], + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 5, + "totalInitialBudget": 378 + }, + { + "id": 6873518, + "name": "JORNADA TEÓRICO-PRÁCTICA SOBRE ACTUACIÓN SANITARIA EN EMERGENCIAS NUCLEARES (PENVA)", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6873521, + "name": "MOVILIZACIONES E INMOVILIZACIONES EN VÍCTIMAS TRAUMÁTICAS PARA PRIMEROS INTERVINIENTES", + "editionVersion": [{ + "id": 6873522, + "startDate": "2018-04-03T00:00:00", + "endDate": "2018-04-03T00:00:00", + "totalVacancies": 20, + "totalReserved": 2, + "totalNumberOfHours": 9, + "totalInitialBudget": 1800, + "coordinador": "Esther Pardo Sánchez", + "state": "Cerrada" + }, + { + "id": 8076747, + "startDate": "2018-11-28T00:00:00", + "endDate": "2018-11-28T00:00:00", + "totalVacancies": 20, + "totalReserved": 0, + "totalNumberOfHours": 8, + "totalInitialBudget": 1800, + "coordinador": "Araceli Ruiz Anca", + "state": "Programación" + } + ], + "totalVacancies": 40, + "totalReserved": 2, + "totalNumberOfHours": 17, + "totalInitialBudget": 3600 + }, + { + "id": 6873582, + "name": "MOVILIZACIONES E INMOVILIZACIONES EN VÍCTIMAS TRAUMÁTICAS PARA PRIMEROS INTERVINIENTES PARA VOLUNTARIOS DE PROTECCIÓN CIVIL", + "editionVersion": [{ + "id": 6873583, + "startDate": "2018-10-06T00:00:00", + "endDate": "2018-10-06T00:00:00", + "totalVacancies": 20, + "totalReserved": 0, + "totalNumberOfHours": 9, + "totalInitialBudget": 1800, + "coordinador": "Esther Pardo Sánchez", + "state": "Anulada" + }], + "totalVacancies": 20, + "totalReserved": 0, + "totalNumberOfHours": 9, + "totalInitialBudget": 1800 + }, + { + "id": 6873613, + "name": "REANIMACIÓN CARDIOPULMONAR Y DESA ", + "editionVersion": [{ + "id": 6873614, + "startDate": "2018-04-02T00:00:00", + "endDate": "2018-04-02T00:00:00", + "totalVacancies": 24, + "totalReserved": 24, + "totalNumberOfHours": 10, + "totalInitialBudget": 2600, + "coordinador": "Esther Pardo Sánchez", + "state": "Cerrada" + }, + { + "id": 6873708, + "startDate": "2018-04-05T00:00:00", + "endDate": "2018-04-05T00:00:00", + "totalVacancies": 24, + "totalReserved": 24, + "totalNumberOfHours": 10, + "totalInitialBudget": 2600, + "coordinador": "Esther Pardo Sánchez", + "state": "Cerrada" + }, + { + "id": 6873748, + "startDate": "2018-05-28T00:00:00", + "endDate": "2018-05-28T00:00:00", + "totalVacancies": 24, + "totalReserved": 24, + "totalNumberOfHours": 10, + "totalInitialBudget": 2600, + "coordinador": "Valeriano Ortega Miravalles", + "state": "Cerrada" + }, + { + "id": 6980367, + "startDate": "2018-11-06T00:00:00", + "endDate": "2018-11-06T00:00:00", + "totalVacancies": 24, + "totalReserved": 0, + "totalNumberOfHours": 10, + "totalInitialBudget": 2600, + "coordinador": "Valeriano Ortega Miravalles", + "state": "Cerrada" + } + ], + "totalVacancies": 96, + "totalReserved": 72, + "totalNumberOfHours": 40, + "totalInitialBudget": 10400 + }, + { + "id": 6873809, + "name": "RECICLAJE DE REANIMACIÓN CARDIOPULMONAR Y DESA (Turno de mañana)", + "editionVersion": [{ + "id": 6873810, + "startDate": "2018-04-04T00:00:00", + "endDate": "2018-04-04T00:00:00", + "totalVacancies": 24, + "totalReserved": 24, + "totalNumberOfHours": 5, + "totalInitialBudget": 1415, + "coordinador": "Esther Pardo Sánchez", + "state": "Cerrada" + }, + { + "id": 6873860, + "startDate": "2018-11-07T00:00:00", + "endDate": "2018-11-07T00:00:00", + "totalVacancies": 24, + "totalReserved": 0, + "totalNumberOfHours": 5, + "totalInitialBudget": 1415, + "coordinador": "Valeriano Ortega Miravalles", + "state": "Cerrada" + } + ], + "totalVacancies": 48, + "totalReserved": 24, + "totalNumberOfHours": 10, + "totalInitialBudget": 2830 + } + ], + "totalVacancies": 374, + "totalReserved": 238, + "totalNumberOfHours": 142, + "totalInitialBudget": 22770 + }, + { + "id": 6873883, + "name": "4.6 Asistencia Psicosocial en Emergencias.", + "trainingActivityVersion": [{ + "id": 6873884, + "name": "APOYO PSICOLÓGICO, AUTOCONTROL EMOCIONAL Y MANEJO DE ESTRÉS EN GRUPOS DE INTERVENCIÓN", + "editionVersion": [{ + "id": 6873885, + "startDate": "2018-05-21T00:00:00", + "endDate": "2018-05-25T00:00:00", + "totalVacancies": 30, + "totalReserved": 11, + "totalNumberOfHours": 30, + "totalInitialBudget": 1900, + "coordinador": "Isabel Vera Navascués", + "state": "Cerrada" + }], + "totalVacancies": 30, + "totalReserved": 11, + "totalNumberOfHours": 30, + "totalInitialBudget": 1900 + }, + { + "id": 6873921, + "name": "EL PSICÓLOGO EN SITUACIONES DE RIESGOS, EMERGENCIAS Y CATÁSTROFES: OBJETIVOS, FUNCIONES Y TAREAS", + "editionVersion": [{ + "id": 6873922, + "startDate": "2018-06-25T00:00:00", + "endDate": "2018-06-29T00:00:00", + "totalVacancies": 25, + "totalReserved": 10, + "totalNumberOfHours": 30, + "totalInitialBudget": 2650, + "coordinador": "Elena Puertas López", + "state": "Cerrada" + }], + "totalVacancies": 25, + "totalReserved": 10, + "totalNumberOfHours": 30, + "totalInitialBudget": 2650 + }, + { + "id": 6873957, + "name": "GESTIÓN DE LA ATENCIÓN A VÍCTIMAS Y FAMILIARES EN EMERGENCIAS MASIVAS POR TRANSPORTE COLECTIVO", + "editionVersion": [{ + "id": 6873958, + "startDate": "2018-03-20T00:00:00", + "endDate": "2018-03-22T00:00:00", + "totalVacancies": 25, + "totalReserved": 25, "totalNumberOfHours": 21, - "totalInitialBudget": 1000 - } + "totalInitialBudget": 3000, + "coordinador": "Elena Puertas López", + "state": "Cerrada" + }, + { + "id": 6873986, + "startDate": "2018-10-09T00:00:00", + "endDate": "2018-10-11T00:00:00", + "totalVacancies": 25, + "totalReserved": 25, + "totalNumberOfHours": 21, + "totalInitialBudget": 3000, + "coordinador": "Elena Puertas López", + "state": "Cerrada" + } + ], + "totalVacancies": 50, + "totalReserved": 50, + "totalNumberOfHours": 42, + "totalInitialBudget": 6000 + }, + { + "id": 6874049, + "name": "HABILIDADES PSICOSOCIALES EN LA GESTIÓN DE EMERGENCIAS", + "editionVersion": [{ + "id": 6874050, + "startDate": "2018-11-27T00:00:00", + "endDate": "2018-11-29T00:00:00", + "totalVacancies": 30, + "totalReserved": 12, + "totalNumberOfHours": 18, + "totalInitialBudget": 1600, + "coordinador": "Isabel Vera Navascués", + "state": "Cerrada" + }], + "totalVacancies": 30, + "totalReserved": 12, + "totalNumberOfHours": 18, + "totalInitialBudget": 1600 + }, + { + "id": 6874068, + "name": "JORNADA TÉCNICA SOBRE FORMACIÓN, PLANIFICACIÓN E INTERVENCIÓN DE PSICÓLOGOS EN EMERGENCIAS Y CATÁSTROFES EN ESPAÑA", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + } + ], + "totalVacancies": 135, + "totalReserved": 83, + "totalNumberOfHours": 120, + "totalInitialBudget": 12150 + }, + { + "id": 6874069, + "name": "4.7 Técnicas Adicionales para las Intervenciones.", + "trainingActivityVersion": [{ + "id": 6874070, + "name": "CURSO SOBRE RIESGOS NATURALES Y PC PARA PROFESIONALES DE LA INFORMACIÓN Y DIVULGACIÓN. (Nivel II)", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874071, + "name": "FORMACIÓN A PERSONAS DE CONTACTO DEL SISTEMA DE ASISTENCIA A VÍCTIMAS Y FAMILIARES DE ACCIDENTES AÉREOS. FASE 3. HABILIDADES PSICOSOCIALES PARA LAS PERSONAS DE CONTACTO", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874072, + "name": "FORMACIÓN INICIAL A PERSONAS DE CONTACTO DEL SISTEMA DE ASISTENCIA A VÍCTIMAS Y FAMILIARES DE ACCIDENTES AÉREOS. SEMIPRESENCIAL", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874073, + "name": "FORMACIÓN PRÁCTICA DE DESPLIEGUE, COMUNICACIONES Y MANEJO DE HERRAMIENTAS DE GEOPOSICIONAMIENTO PARA VOLUNTARIOS DE PROTECCIÓN CIVIL", + "editionVersion": [{ + "id": 6874074, + "startDate": "2018-12-17T00:00:00", + "endDate": "2018-12-31T00:00:00", + "totalVacancies": 20, + "totalReserved": 0, + "totalNumberOfHours": 15, + "totalInitialBudget": 0, + "coordinador": "Roberto Martínez-Alegría López", + "state": "Anulada" + }], + "totalVacancies": 20, + "totalReserved": 0, + "totalNumberOfHours": 15, + "totalInitialBudget": 0 + }, + { + "id": 6874093, + "name": "INTERVENCIÓN EN PATRIMONIO CULTURAL EN SITUACIONES DE EMERGENCIA. PLAN NACIONAL DE EMERGENCIAS Y GESTIÓN DE RIESGOS", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874144, + "name": "INTRODUCCIÓN A LA CARTOGRAFÍA Y SITUACIÓN EN EL TERRENO PARA VOLUNTARIOS DE PROTECCIÓN CIVIL", + "editionVersion": [{ + "id": 6874145, + "startDate": "2018-03-09T00:00:00", + "endDate": "2018-03-11T00:00:00", + "totalVacancies": 25, + "totalReserved": 0, + "totalNumberOfHours": 20, + "totalInitialBudget": 2320, + "coordinador": "Arturo Fuente Pedrejón", + "state": "Cerrada" + }, + { + "id": 6974386, + "startDate": "2018-06-01T00:00:00", + "endDate": "2018-06-03T00:00:00", + "totalVacancies": 25, + "totalReserved": 0, + "totalNumberOfHours": 20, + "totalInitialBudget": 2320, + "coordinador": "Arturo Fuente Pedrejón", + "state": "Cerrada" + } + ], + "totalVacancies": 50, + "totalReserved": 0, + "totalNumberOfHours": 40, + "totalInitialBudget": 4640 + }, + { + "id": 6874161, + "name": "JORNADA DE INTERVENCIÓN EN PATRIMONIO CULTURAL EN SITUACIONES DE EMERGENCIA. PLAN NACIONAL DE EMERGENCIAS Y GESTIÓN DE RIESGOS", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874192, + "name": "SEMINARIO SOBRE COORDINACIÓN INSTITUCIONAL EN LA ASISTENCIA A VÍCTIMAS DE ACCIDENTES DE AVIACIÓN CIVIL Y SUS FAMILIARES", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6975910, + "name": "JORNADA DE ACTUANTES DEL PENBU SOBRE AUTOPROTECCIÓN Y MANEJO DE LOS EQUIPAMIENTOS RADIOMÉTRICOS (PENBU)", + "editionVersion": [{ + "id": 6975952, + "startDate": "2018-11-20T00:00:00", + "endDate": "2018-11-20T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 5, + "totalInitialBudget": 378, + "coordinador": "Javier Basconcillos Arce", + "state": "Cerrada" + }], + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 5, + "totalInitialBudget": 378 + } + ], + "totalVacancies": 90, + "totalReserved": 20, + "totalNumberOfHours": 60, + "totalInitialBudget": 5018 + }, + { + "id": 6874254, + "name": "4.8 Técnicas de Información y Comunicación en Emergencias.", + "trainingActivityVersion": [{ + "id": 6874255, + "name": "COMUNICACIÓN EN LA ORGANIZACIÓN DE PROTECCIÓN CIVIL Y EMERGENCIAS", + "editionVersion": [{ + "id": 6874256, + "startDate": "2018-05-12T00:00:00", + "endDate": "2018-05-20T00:00:00", + "totalVacancies": 30, + "totalReserved": 0, + "totalNumberOfHours": 25, + "totalInitialBudget": 3382, + "coordinador": "Angel Ibáñez Peiró", + "state": "Cerrada" + }], + "totalVacancies": 30, + "totalReserved": 0, + "totalNumberOfHours": 25, + "totalInitialBudget": 3382 + }, + { + "id": 6874318, + "name": "COMUNICACIONES DE EMERGENCIAS PARA VOLUNTARIOS DE PROTECCIÓN CIVIL", + "editionVersion": [{ + "id": 6874319, + "startDate": "2018-03-24T00:00:00", + "endDate": "2018-03-25T00:00:00", + "totalVacancies": 30, + "totalReserved": 0, + "totalNumberOfHours": 12, + "totalInitialBudget": 1720, + "coordinador": "Ramón Pérez Barrientos", + "state": "Cerrada" + }, + { + "id": 6874340, + "startDate": "2018-04-14T00:00:00", + "endDate": "2018-04-15T00:00:00", + "totalVacancies": 30, + "totalReserved": 0, + "totalNumberOfHours": 12, + "totalInitialBudget": 1720, + "coordinador": "Juan Manuel Corral Sánchez", + "state": "Cerrada" + } + ], + "totalVacancies": 60, + "totalReserved": 0, + "totalNumberOfHours": 24, + "totalInitialBudget": 3440 + }, + { + "id": 6874360, + "name": "CURSO DE GESTIÓN DE LA INFORMACIÓN EN EMERGENCIAS", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874361, + "name": "JORNADA DEL SERVICIO DE COMUNICACIONES Y AVISOS A LA POBLACIÓN DE LOS PAMEN DEL PENBU", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874362, + "name": "JORNADA PRÁCTICA DE ACTIVACIÓN DE LA REMER PARA LA COBERTURA RADIO EN LA ZONA I DEL PENBU", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874363, + "name": "JORNADA TÉCNICA SOBRE LA INFORMACIÓN A LA POBLACIÓN EN LA GESTIÓN DE RIESGOS Y EMERGENCIAS: APLICACIÓN A LOS PLANES DE EMERGENCIA NUCLEAR", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874364, + "name": "JORNADA TÉCNICA SOBRE MANEJO DE LA APLICACIÓN INFORMÁTICA SIGAME", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874365, + "name": "JORNADA TÉCNICA SOBRE MANEJO DE LA APLICACIÓN SIAGEN PARA AYUDA A LA GESTIÓN DE EMERGENCIAS NUCLEARES", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874366, + "name": "JORNADA TÉCNICA SOBRE REDES DE COMUNICACIONES DE PROTECCIÓN CIVIL", + "editionVersion": [{ + "id": 6874367, + "startDate": "2018-05-01T00:00:00", + "endDate": "2018-05-01T00:00:00", + "totalVacancies": 40, + "totalReserved": 40, + "totalNumberOfHours": 7, + "totalInitialBudget": 1500, + "coordinador": "Fernando Prieto Fernández", + "state": "Anulada" + }], + "totalVacancies": 40, + "totalReserved": 40, + "totalNumberOfHours": 7, + "totalInitialBudget": 1500 + }, + { + "id": 6874369, + "name": "SISTEMAS DE INFORMACIÓN Y TELECOMUNICACIONES EN EMERGENCIAS", + "editionVersion": [{ + "id": 6874370, + "startDate": "2018-04-16T00:00:00", + "endDate": "2018-04-19T00:00:00", + "totalVacancies": 25, + "totalReserved": 11, + "totalNumberOfHours": 29, + "totalInitialBudget": 2800, + "coordinador": "José Pascual Torres", + "state": "Cerrada" + }], + "totalVacancies": 25, + "totalReserved": 11, + "totalNumberOfHours": 29, + "totalInitialBudget": 2800 + }, + { + "id": 6975955, + "name": "JORNADAS TÉCNICAS PARA ACTUANTES DE LOS PAMEN. COMUNICACIONES Y AVISOS EN LA POBLACIÓN EN LOS NUCLEOS DE POBLACIÓN ZONA I (PENBU)", + "editionVersion": [{ + "id": 6975958, + "startDate": "2018-05-08T00:00:00", + "endDate": "2018-05-08T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 5, + "totalInitialBudget": 378, + "coordinador": "Javier Basconcillos Arce", + "state": "Cerrada" + }, + { + "id": 6975960, + "startDate": "2018-05-16T00:00:00", + "endDate": "2018-05-16T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 5, + "totalInitialBudget": 378, + "coordinador": "Javier Basconcillos Arce", + "state": "Cerrada" + }, + { + "id": 6975962, + "startDate": "2018-05-30T00:00:00", + "endDate": "2018-05-30T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 5, + "totalInitialBudget": 378, + "coordinador": "Javier Basconcillos Arce", + "state": "Cerrada" + }, + { + "id": 6975964, + "startDate": "2018-12-31T00:00:00", + "endDate": "2018-12-31T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 5, + "totalInitialBudget": 378, + "coordinador": "Javier Basconcillos Arce", + "state": "Anulada" + }, + { + "id": 6977045, + "startDate": "2018-12-31T00:00:00", + "endDate": "2018-12-31T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 5, + "totalInitialBudget": 378, + "coordinador": " ", + "state": "Anulada" + } + ], + "totalVacancies": 100, + "totalReserved": 100, + "totalNumberOfHours": 25, + "totalInitialBudget": 1890 + }, + { + "id": 6978319, + "name": "JORNADA DE FORMACION GENERAL TEÓRICO-PRÁCTICA DE EN COMUNICACIONES EN EMERGENCIAS NUCLEARES (PENBU)", + "editionVersion": [{ + "id": 6978322, + "startDate": "2018-12-31T00:00:00", + "endDate": "2018-12-31T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 5, + "totalInitialBudget": 378, + "coordinador": " ", + "state": "Anulada" + }], + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 5, + "totalInitialBudget": 378 + }, + { + "id": 6980123, + "name": "INFORMACIÓN A LA POBLACIÓN EN SITUACIONES DE RIESGOS Y EMERGENCIA. CULTURA PREVENTIVA Y RESILIENCIA", + "editionVersion": [{ + "id": 6980125, + "startDate": "2018-04-23T00:00:00", + "endDate": "2018-04-27T00:00:00", + "totalVacancies": 25, + "totalReserved": 0, + "totalNumberOfHours": 30, + "totalInitialBudget": 3000, + "coordinador": "Elena Puertas López", + "state": "Cerrada" + }], + "totalVacancies": 25, + "totalReserved": 0, + "totalNumberOfHours": 30, + "totalInitialBudget": 3000 + }, + { + "id": 6980149, + "name": "JORNADA SOBRE LA RED DE EMERGENCIA REMER EN EL MARCO DE LA LEY 1772015 DEL SNPC", + "editionVersion": [{ + "id": 6980152, + "startDate": "2018-11-29T00:00:00", + "endDate": "2018-11-29T00:00:00", + "totalVacancies": 40, + "totalReserved": 0, + "totalNumberOfHours": 5, + "totalInitialBudget": 1000, + "coordinador": "Jesús Portillo García-Pintos", + "state": "Programación" + }], + "totalVacancies": 40, + "totalReserved": 0, + "totalNumberOfHours": 5, + "totalInitialBudget": 1000 + } + ], + "totalVacancies": 340, + "totalReserved": 171, + "totalNumberOfHours": 150, + "totalInitialBudget": 17390 + } + ], + "totalVacancies": 4184, + "totalReserved": 2851, + "totalNumberOfHours": 2447, + "totalInitialBudget": 386159 + }, + { + "id": 6874422, + "name": "5 REHABILITACIÓN Y RECONSTRUCCION EN CATÁSTROFES", + "submoduleVersion": [{ + "id": 6874423, + "name": "5.1 Evaluación de Daños.", + "trainingActivityVersion": [{ + "id": 6874424, + "name": "CURSO PARA SECRETARIOS DE AYUNTAMIENTOS Y TÉCNICOS MUNICIPALES", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874425, + "name": "INTERVENCIÓN TÉCNICA EN CATÁSTROFES: ESTIMACIÓN Y VALORACIÓN DE DAÑOS", + "editionVersion": [{ + "id": 6874426, + "startDate": "2018-03-12T00:00:00", + "endDate": "2018-03-16T00:00:00", + "totalVacancies": 30, + "totalReserved": 6, + "totalNumberOfHours": 25, + "totalInitialBudget": 2900, + "coordinador": "Sofía González López", + "state": "Cerrada" + }], + "totalVacancies": 30, + "totalReserved": 6, + "totalNumberOfHours": 25, + "totalInitialBudget": 2900 + } + ], + "totalVacancies": 30, + "totalReserved": 6, + "totalNumberOfHours": 25, + "totalInitialBudget": 2900 + }, + { + "id": 6874479, + "name": "5.2 Restablecimento Servicios Básicos.", + "trainingActivityVersion": [{ + "id": 6874480, + "name": "INTERVENCIÓN DEL VOLUNTARIADO DE ARQUITECTURA E INGENIERÍA EN CATÁSTROFES", + "editionVersion": [{ + "id": 6874481, + "startDate": "2018-11-05T00:00:00", + "endDate": "2018-11-09T00:00:00", + "totalVacancies": 40, + "totalReserved": 0, + "totalNumberOfHours": 25, + "totalInitialBudget": 0, + "coordinador": "Magdalena Lorente Martínez", + "state": "Anulada" + }], + "totalVacancies": 40, + "totalReserved": 0, + "totalNumberOfHours": 25, + "totalInitialBudget": 0 + }, + { + "id": 6874500, + "name": "REHABILITACIÓN POST CATÁSTROFES", + "editionVersion": [{ + "id": 6874501, + "startDate": "2018-11-05T00:00:00", + "endDate": "2018-11-08T00:00:00", + "totalVacancies": 25, + "totalReserved": 10, + "totalNumberOfHours": 28, + "totalInitialBudget": 3561, + "coordinador": "José Pascual Torres", + "state": "Cerrada" + }], + "totalVacancies": 25, + "totalReserved": 10, + "totalNumberOfHours": 28, + "totalInitialBudget": 3561 + } + ], + "totalVacancies": 65, + "totalReserved": 10, + "totalNumberOfHours": 53, + "totalInitialBudget": 3561 + }, + { + "id": 6874546, + "name": "5.3 Ayudas y Subvenciones a la Rehabilitación", + "trainingActivityVersion": [{ + "id": 6874547, + "name": "JORNADAS FORMATIVAS PARA RESPONSABLES TÉCNICOS MUNICIPALES EN LA ELABORACIÓN DE PROYECTOS DESTINADOS A SUBVENCIONES Y AYUDAS (PENBU)", + "editionVersion": [{ + "id": 6874548, + "startDate": "2018-12-31T00:00:00", + "endDate": "2018-12-31T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 5, + "totalInitialBudget": 378, + "coordinador": "Javier Basconcillos Arce", + "state": "Anulada" + }], + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 5, + "totalInitialBudget": 378 + }], + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 5, + "totalInitialBudget": 378 + } + ], + "totalVacancies": 115, + "totalReserved": 36, + "totalNumberOfHours": 83, + "totalInitialBudget": 6839 + }, + { + "id": 6874572, + "name": "6 INTERNACIONAL", + "submoduleVersion": [{ + "id": 6874573, + "name": "6.1 Iberoamérica.", + "trainingActivityVersion": [{ + "id": 6874574, + "name": "ACTIVIDAD VIRTUAL “RED DE EXPERTOS EN GESTIÓN DE RIESGOS DE DESASTRES”", + "editionVersion": [{ + "id": 6874575, + "startDate": "2018-10-01T00:00:00", + "endDate": "2018-12-31T00:00:00", + "totalVacancies": 50, + "totalReserved": 50, + "totalNumberOfHours": 150, + "totalInitialBudget": 0, + "coordinador": "Angela Potenciano de las Heras", + "state": "Programación" + }], + "totalVacancies": 50, + "totalReserved": 50, + "totalNumberOfHours": 150, + "totalInitialBudget": 0 + }, + { + "id": 6874577, + "name": "CIUDADES EN RIESGO FRENTE A CIUDADES RESILIENTES EN EL HORIZONTE DEL CAMBIO CLIMÁTICO", + "editionVersion": [{ + "id": 6874578, + "startDate": "2018-05-28T00:00:00", + "endDate": "2018-06-01T00:00:00", + "totalVacancies": 25, + "totalReserved": 25, + "totalNumberOfHours": 35, + "totalInitialBudget": 8400, + "coordinador": "Angela Potenciano de las Heras", + "state": "Anulada" + }], + "totalVacancies": 25, + "totalReserved": 25, + "totalNumberOfHours": 35, + "totalInitialBudget": 8400 + }, + { + "id": 6874641, + "name": "CURSO DE COORDINACIÓN INTERNACIONAL ANTE DESASTRES (Nivel III).", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874642, + "name": "CURSO DE DIRECCIÓN Y GESTIÓN DE EMERGENCIAS: EVALUACIÓN, COMUNICACIÓN Y COORDINACIÓN. (Nivel III).", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874643, + "name": "CURSO DE EVALUACIÓN Y COORDINACIÓN DE AYUDA INTERNACIONAL ", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874644, + "name": "CURSO DE FORMACIÓN BÁSICA Y DE ESPECIALIZACIÓN DE GUÍAS CANINOS PARA SALVAMENTO EN ESTRUCTURAS COLAPSADAS. (Nivel III).", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874645, + "name": "CURSO DE GESTIÓN DE RIESGOS ASOCIADOS A GRANDES CONCENTRACIONES HUMANAS", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874646, + "name": "CURSO DE PLANIFICACIÓN DE RECURSOS Y SERVICIOS BÁSICOS EN EMERGENCIAS LOCALES. PLANES DE CONTINGENCIA Y Y PLANES DE INTEGRACIÓN DE EMERGENCIAS", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874647, + "name": "CURSO DE PROGRAMAS PARA EL DESARROLLO DE UNA CULTURA PREVENTIVA EN PROTECCIÓN CIVIL", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874648, + "name": "CURSO RIESGO Y TERRITORIO: GESTIÓN DEL RIESGO DE DESASTRES EN LAS POLÍTICAS PÚBLICAS DE PLANIFICACIÓN TERRITORIAL Y ORDENACIÓN URBANA", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874649, + "name": "GESTIÓN OPERATIVA EN CATÁSTROFES", + "editionVersion": [{ + "id": 6874650, + "startDate": "2018-11-12T00:00:00", + "endDate": "2018-11-23T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 95, + "totalInitialBudget": 15300, + "coordinador": "Julio César Ramos Fernández", + "state": "Programación" + }], + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 95, + "totalInitialBudget": 15300 + }, + { + "id": 6874652, + "name": "GESTIÓN Y PLANIFICACIÓN DE EMERGENCIAS EN ENTORNOS URBANOS. ONLINE", + "editionVersion": [{ + "id": 6874653, + "startDate": "2018-10-22T00:00:00", + "endDate": "2018-12-16T00:00:00", + "totalVacancies": 50, + "totalReserved": 50, + "totalNumberOfHours": 110, + "totalInitialBudget": 0, + "coordinador": "Angela Potenciano de las Heras", + "state": "Programación" + }], + "totalVacancies": 50, + "totalReserved": 50, + "totalNumberOfHours": 110, + "totalInitialBudget": 0 + }, + { + "id": 6874655, + "name": "HERRAMIENTAS PARA EL ANÁLISIS DE LOS RIESGOS NATURALES EN PROTECCIÓN CIVIL", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874656, + "name": "LA FORMACIÓN COMO OBJETIVO PRIORITARIO EN LA POLÍTICAS PÚBLICAS DE PROTECCIÓN CIVIL", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874657, + "name": "LA GESTIÓN INTEGRAL DE LOS RIESGOS NATURALES Y TECNOLÓGICOS", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874658, + "name": "LA PREVENCIÓN DEL RIESGO DE DESASTRES EN LA ORDENACIÓN TERRITORIAL Y EL DESARROLLO URBANO", + "editionVersion": [{ + "id": 6874659, + "startDate": "2018-05-21T00:00:00", + "endDate": "2018-05-25T00:00:00", + "totalVacancies": 25, + "totalReserved": 25, + "totalNumberOfHours": 35, + "totalInitialBudget": 8500, + "coordinador": "María Vara Moral", + "state": "Anulada" + }], + "totalVacancies": 25, + "totalReserved": 25, + "totalNumberOfHours": 35, + "totalInitialBudget": 8500 + }, + { + "id": 6874666, + "name": "LA REHABILITACIÓN POST CATÁSTROFE. EL CAMINO HACIA LA PREVENCIÓN. EVALUACIÓN DE DAÑOS Y GESTIÓN ECONÓMICA DE LAS AYUDAS", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874667, + "name": "ANÁLISIS DE DESASTRES NATURALES Y MEDIDAS PARA SU MITIGACIÓN", + "editionVersion": [{ + "id": 6874668, + "startDate": "2018-11-19T00:00:00", + "endDate": "2018-11-23T00:00:00", + "totalVacancies": 25, + "totalReserved": 25, + "totalNumberOfHours": 35, + "totalInitialBudget": 8500, + "coordinador": "Mercedes Vallejo Bombín", + "state": "Anulada" + }], + "totalVacancies": 25, + "totalReserved": 25, + "totalNumberOfHours": 35, + "totalInitialBudget": 8500 + }, + { + "id": 6874700, + "name": "PREVENCIÓN Y PLANIFICACIÓN DE RIESGOS NATURALES Y TECNOLÓGICOS", + "editionVersion": [{ + "id": 6874701, + "startDate": "2018-11-12T00:00:00", + "endDate": "2018-11-23T00:00:00", + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 65, + "totalInitialBudget": 15300, + "coordinador": "Mercedes Vallejo Bombín", + "state": "Programación" + }], + "totalVacancies": 20, + "totalReserved": 20, + "totalNumberOfHours": 65, + "totalInitialBudget": 15300 + }, + { + "id": 6874753, + "name": "SEMINARIO DE CONCLUSIONES DE LA RED DE EXPERTOS PROGRAMA DE GESTION INTEGRAL DEL RIESGO PARA LA REDUCCIÓN DE DESASTRES", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874754, + "name": "SEMINARIO SOBRE LA ACCIÓN SOCIAL EN GESTIÓN DEL RIESGO DE DESASTRE: CULTURA PREVENTIVA Y RESILIENCIA", + "editionVersion": [{ + "id": 6874755, + "startDate": "2018-09-17T00:00:00", + "endDate": "2018-09-30T00:00:00", + "totalVacancies": 25, + "totalReserved": 25, + "totalNumberOfHours": 35, + "totalInitialBudget": 0, + "coordinador": "Angela Potenciano de las Heras", + "state": "Programación" + }], + "totalVacancies": 25, + "totalReserved": 25, + "totalNumberOfHours": 35, + "totalInitialBudget": 0 + }, + { + "id": 6980157, + "name": "GESTIÓN DEL RIESGO EN GRANDES CONCENTRACIONES HUMANAS", + "editionVersion": [{ + "id": 6980159, + "startDate": "2018-10-22T00:00:00", + "endDate": "2018-10-26T00:00:00", + "totalVacancies": 25, + "totalReserved": 25, + "totalNumberOfHours": 35, + "totalInitialBudget": 9500, + "coordinador": "Fernando Talavera Esteso", + "state": "Anulada" + }], + "totalVacancies": 25, + "totalReserved": 25, + "totalNumberOfHours": 35, + "totalInitialBudget": 9500 + }, + { + "id": 6980162, + "name": "COORDINACIÓN DE EMERGENCIAS DESDE CENTROS NACIONALES DE OPERACIONES", + "editionVersion": [{ + "id": 6980165, + "startDate": "2018-07-31T00:00:00", + "endDate": "2018-07-31T00:00:00", + "totalVacancies": 25, + "totalReserved": 25, + "totalNumberOfHours": 35, + "totalInitialBudget": 9200, + "coordinador": "Francisco José Ruiz Boada", + "state": "Anulada" + }], + "totalVacancies": 25, + "totalReserved": 25, + "totalNumberOfHours": 35, + "totalInitialBudget": 9200 + }, + { + "id": 8216482, + "name": "LIDERAZGO APLICADO A LA DIRECCIÓN Y GESTIÓN DE EMERGENCIAS", + "editionVersion": [{ + "id": 8216485, + "startDate": "2018-10-29T00:00:00", + "endDate": "2018-10-31T00:00:00", + "totalVacancies": 9, + "totalReserved": 9, + "totalNumberOfHours": 21, + "totalInitialBudget": 3500, + "coordinador": "Francisco Javier Frutos Gonzalez", + "state": "Cerrada" + }], + "totalVacancies": 9, + "totalReserved": 9, + "totalNumberOfHours": 21, + "totalInitialBudget": 3500 + } + ], + "totalVacancies": 299, + "totalReserved": 299, + "totalNumberOfHours": 651, + "totalInitialBudget": 78200 + }, + { + "id": 6874757, + "name": "6.2 Unión Europea.", + "trainingActivityVersion": [{ + "id": 6874758, + "name": "\"JORNADA / SEMINARIO Nº 1\"", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874759, + "name": "\"JORNADA / SEMINARIO Nº 2\"", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874760, + "name": "5º ENCUENTRO DEL FORO EUROPEO PARA LA REDUCCIÓN DEL RIESGO DE DESASTRES", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874761, + "name": "EXERCÍCIO COMMAND POST EXERCISE (CPX) - PUESTO DE COMANDO", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874762, + "name": "EXERCÍCIO TABLE-TOP (NÍVEL CODIS/CADIS - DIRETOR DE OPERAÇÕES)", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874763, + "name": "FASE DE ENTRENAMIENTO DEL PROYECTO ERICHA", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874766, + "name": "FASE DE ENTRENAMIENTO Y DISEMINACIÓN DEL PROYECTO SAFETY", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874769, + "name": "JORNADA INTERNACIONAL", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874770, + "name": "JORNADA TÉCNICA SOBRE RESILIENCIA EN LAS ADMINISTRACIONES PÚBLICAS ESPAÑOLAS", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874771, + "name": "JORNADAS DE PRESENTACIÓN DEL PROYECTO IGNIS (Initiative for Global maNagement of bIg fires through Simulation)", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874774, + "name": "RISK MAPPING WORKSHOP. EUROMED PPRD SOUTH PROGRAMME II.", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874775, + "name": "SESIÓN INFORMATIVA SOBRE PROGRAMA DE TRABAJO P.C. UE", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874776, + "name": "TALLER HISPANO-LUSO DE LUCHA CONTRA INCENDIOS FORESTALES: HERAMIENTAS DE GESTIÓN OPERATIVA Y SIMULACIÓN", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6874785, + "name": "WORKSHOP: OPERACIONES DE EXTINCIÓN DE INCENDIOS FORESTALES EN LAS REGIONES FRONTERIZAS (PORTUGAL / ESPAÑA)", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }, + { + "id": 6980168, + "name": "SEMINARIO FRANCO-ESPAÑOL SOBRE RIESGOS TECNOLÓGICOS", + "editionVersion": [{ + "id": 6980171, + "startDate": "2018-04-17T00:00:00", + "endDate": "2018-04-18T00:00:00", + "totalVacancies": 12, + "totalReserved": 12, + "totalNumberOfHours": 12, + "totalInitialBudget": 5000, + "coordinador": "Pablo Calvo Barrios", + "state": "Cerrada" + }], + "totalVacancies": 12, + "totalReserved": 12, + "totalNumberOfHours": 12, + "totalInitialBudget": 5000 + }, + { + "id": 6980177, + "name": "JORNADA DE COORDINACIÓN EN INCENDIOS FORESTALES TRANSFRONTERIZOS PORTUGAL - ESPAÑA", + "editionVersion": [{ + "id": 6980182, + "startDate": "2018-11-05T00:00:00", + "endDate": "2018-11-09T00:00:00", + "totalVacancies": 10, + "totalReserved": 10, + "totalNumberOfHours": 5, + "totalInitialBudget": 3000, + "coordinador": "Angela Potenciano de las Heras", + "state": "Cerrada" + }], + "totalVacancies": 10, + "totalReserved": 10, + "totalNumberOfHours": 5, + "totalInitialBudget": 3000 + } ], - "totalVacancies": 8250, - "totalReserved": 4755, - "totalNumberOfHours": 4672, - "totalInitialBudget": 662557 - } + "totalVacancies": 22, + "totalReserved": 22, + "totalNumberOfHours": 17, + "totalInitialBudget": 8000 + }, + { + "id": 6874786, + "name": "6.6 África.", + "trainingActivityVersion": [{ + "id": 6874787, + "name": "CURSO DE FORMACIÓN DE INSTRUCTORES PARA BOMBEROS DE SENEGAL. (Nivel III).", + "editionVersion": [], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0 + }], + "totalVacancies": 0, + "totalReserved": 0, + "totalNumberOfHours": 0, + "totalInitialBudget": 0 + } + ], + "totalVacancies": 321, + "totalReserved": 321, + "totalNumberOfHours": 668, + "totalInitialBudget": 86200 + }, + { + "id": 8585225, + "name": "7 Prueba alberto", + "submoduleVersion": [{ + "id": 8585227, + "name": "Prueba Alberto Modulo", + "trainingActivityVersion": [{ + "id": 8585229, + "name": "Prueba Alberto Submodulo", + "editionVersion": [{ + "id": 8585231, + "startDate": "2018-09-20T00:00:00", + "endDate": "2018-09-21T00:00:00", + "totalVacancies": 34, + "totalReserved": 0, + "totalNumberOfHours": 21, + "totalInitialBudget": 1000, + "coordinador": "José Pascual Torres", + "state": "Cerrada" + }], + "totalVacancies": 34, + "totalReserved": 0, + "totalNumberOfHours": 21, + "totalInitialBudget": 1000 + }], + "totalVacancies": 34, + "totalReserved": 0, + "totalNumberOfHours": 21, + "totalInitialBudget": 1000 + }], + "totalVacancies": 34, + "totalReserved": 0, + "totalNumberOfHours": 21, + "totalInitialBudget": 1000 + } + ], + "totalVacancies": 8250, + "totalReserved": 4755, + "totalNumberOfHours": 4672, + "totalInitialBudget": 662557 + } } From 0f0bbae5b2cd3ca27b3534d00e8af6d288249bc1 Mon Sep 17 00:00:00 2001 From: Julio Guerrero Date: Mon, 7 Oct 2019 17:21:59 +0200 Subject: [PATCH 16/17] =?UTF-8?q?actualizaci=C3=B3n=20de=20dependencias?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mocks/db.json | 5282 ------------------- package-lock.json | 11968 ++++++++++++++++++++++++++++++++++++++++++++ package.json | 11 +- 3 files changed, 11973 insertions(+), 5288 deletions(-) delete mode 100644 mocks/db.json create mode 100644 package-lock.json diff --git a/mocks/db.json b/mocks/db.json deleted file mode 100644 index 687a83d..0000000 --- a/mocks/db.json +++ /dev/null @@ -1,5282 +0,0 @@ -{ - "data": { - "id": 1236865748, - "name": "Plan de formación 2018", - "year": 2018, - "moduleVersion": [{ - "id": 6865749, - "name": "1 FORMACIÓN GENERAL", - "submoduleVersion": [{ - "id": 6865750, - "name": "1.2 Cursos Generales de Protección Civil.", - "trainingActivityVersion": [{ - "id": 6865751, - "name": "CURSO DE ASPECTOS LEGALES DE LA PROTECCION CIVIL.", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6865752, - "name": "CURSO DE FORMACIÓN PARA EL MANEJO DE LA APLICACIÓN SAFE", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6865753, - "name": "ESPECIALISTA EN PROTECCIÓN CIVIL Y EMERGENCIAS. Edición on-line.", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6866456, - "name": "FORMACIÓN GENERAL EN PROTECCIÓN CIVIL PARA JEFES DE AGRUPACIÓN Y VOLUNTARIOS DE PC. ONLINE", - "editionVersion": [{ - "id": 6866457, - "startDate": "2018-04-13T00:00:00", - "endDate": "2018-06-27T00:00:00", - "totalVacancies": 60, - "totalReserved": 0, - "totalNumberOfHours": 60, - "totalInitialBudget": 4650, - "coordinador": "Araceli Ruiz Anca", - "state": "Cerrada" - }], - "totalVacancies": 60, - "totalReserved": 0, - "totalNumberOfHours": 60, - "totalInitialBudget": 4650 - }, - { - "id": 6866577, - "name": "JORNADA TÉCNICA PARA COORDINADORES DE ACTIVIDADES FORMATIVAS DENTRO DEL PLAN DE FORMACIÓN DE LA ESCUELA NACIONAL DE PROTECCIÓN CIVIL", - "editionVersion": [{ - "id": 6866578, - "startDate": "2018-02-06T00:00:00", - "endDate": "2018-02-06T00:00:00", - "totalVacancies": 30, - "totalReserved": 0, - "totalNumberOfHours": 4, - "totalInitialBudget": 300, - "coordinador": "Antonia Garcés de Marcilla Val", - "state": "Programación" - }], - "totalVacancies": 30, - "totalReserved": 0, - "totalNumberOfHours": 4, - "totalInitialBudget": 300 - }, - { - "id": 6866587, - "name": "PROTECCIÓN CIVIL. PLANIFICACIÓN DE EMERGENCIAS POR RIESGOS METEOROLÓGICOS, INUNDACIONES E INCENDIOS FORESTALES", - "editionVersion": [{ - "id": 6866588, - "startDate": "2018-05-07T00:00:00", - "endDate": "2018-05-10T00:00:00", - "totalVacancies": 30, - "totalReserved": 0, - "totalNumberOfHours": 30, - "totalInitialBudget": 3000, - "coordinador": "Rafael Aramendi Sánchez", - "state": "Cerrada" - }], - "totalVacancies": 30, - "totalReserved": 0, - "totalNumberOfHours": 30, - "totalInitialBudget": 3000 - } - ], - "totalVacancies": 120, - "totalReserved": 0, - "totalNumberOfHours": 94, - "totalInitialBudget": 7950 - }, - { - "id": 6866627, - "name": "1.3 La Protección Civil en el Contexto de la Comunidad Internacional.", - "trainingActivityVersion": [{ - "id": 6866628, - "name": "AYUDA HUMANITARIA Y COOPERACIÓN INTERNACIONAL EN MATERIA DE PROTECCIÓN CIVIL", - "editionVersion": [{ - "id": 6866629, - "startDate": "2018-04-23T00:00:00", - "endDate": "2018-04-27T00:00:00", - "totalVacancies": 25, - "totalReserved": 11, - "totalNumberOfHours": 35, - "totalInitialBudget": 3500, - "coordinador": "Angela Potenciano de las Heras", - "state": "Cerrada" - }], - "totalVacancies": 25, - "totalReserved": 11, - "totalNumberOfHours": 35, - "totalInitialBudget": 3500 - }, - { - "id": 6866704, - "name": "JORNADA INFORMATIVA PROGRAMA ANUAL 2018 DE PROTECCIÓN CIVIL UNIÓN EUROPEA", - "editionVersion": [{ - "id": 6866705, - "startDate": "2018-02-08T00:00:00", - "endDate": "2018-02-08T00:00:00", - "totalVacancies": 40, - "totalReserved": 0, - "totalNumberOfHours": 4, - "totalInitialBudget": 450, - "coordinador": "Álvaro de la Peña Cuesta", - "state": "Cerrada" - }], - "totalVacancies": 40, - "totalReserved": 0, - "totalNumberOfHours": 4, - "totalInitialBudget": 450 - } - ], - "totalVacancies": 65, - "totalReserved": 11, - "totalNumberOfHours": 39, - "totalInitialBudget": 3950 - }, - { - "id": 6866720, - "name": "1.4 Organización de la Protección Civil.", - "trainingActivityVersion": [{ - "id": 6866721, - "name": "ACTUACIÓN DEL SISTEMA NACIONAL DE PROTECCIÓN CIVIL: COMUNIDADES AUTÓNOMAS", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6866724, - "name": "ACTUACIÓN DEL SISTEMA NACIONAL DE PROTECCIÓN CIVIL: DELEGACIONES Y SUBDELEGACIONES EL GOBIERNO", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6866727, - "name": "AUTOPROTECCIÓN Y GESTIÓN DE EMERGENCIAS EN RENFE Y ADIF", - "editionVersion": [{ - "id": 6866728, - "startDate": "2018-06-20T00:00:00", - "endDate": "2018-06-21T00:00:00", - "totalVacancies": 30, - "totalReserved": 19, - "totalNumberOfHours": 14, - "totalInitialBudget": 320, - "coordinador": "Salvador Rodríguez Pérez", - "state": "Cerrada" - }], - "totalVacancies": 30, - "totalReserved": 19, - "totalNumberOfHours": 14, - "totalInitialBudget": 320 - }, - { - "id": 6866761, - "name": "COHESIÓN DEL SISTEMA NACIONAL DE PROTECCIÓN CIVIL: OTRAS ACTIVIDADES", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6866764, - "name": "CURSO DE AUTOPROTECCIÓN Y EMERGENCIAS EN EL ÁMBITO FERROVIARIO", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6866765, - "name": "CURSO LA ORGANIZACIÓN DE RENFE Y SU ACTUACIÓN EN SITUACIONES DE EMERGENCIA", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6866766, - "name": "EL SISTEMA DE PROTECCIÓN CIVIL ESPAÑOL Y LA GESTIÓN DE LAS EMERGENCIAS A NIVEL NACIONAL E INTERNACIONAL", - "editionVersion": [{ - "id": 6866767, - "startDate": "2018-10-01T00:00:00", - "endDate": "2018-11-29T00:00:00", - "totalVacancies": 52, - "totalReserved": 16, - "totalNumberOfHours": 55, - "totalInitialBudget": 6840, - "coordinador": "María Vara Moral", - "state": "Cerrada" - }], - "totalVacancies": 52, - "totalReserved": 16, - "totalNumberOfHours": 55, - "totalInitialBudget": 6840 - }, - { - "id": 6867071, - "name": "JORNADA PARA INTERVINIENTES EN LA OPERACIÓN PASO DEL ESTRECHO", - "editionVersion": [{ - "id": 6867072, - "startDate": "2018-05-31T00:00:00", - "endDate": "2018-06-01T00:00:00", - "totalVacancies": 50, - "totalReserved": 50, - "totalNumberOfHours": 14, - "totalInitialBudget": 300, - "coordinador": "Francisco Emilio Magaña López", - "state": "Cerrada" - }, - { - "id": 6867108, - "startDate": "2018-06-13T00:00:00", - "endDate": "2018-06-14T00:00:00", - "totalVacancies": 50, - "totalReserved": 50, - "totalNumberOfHours": 13, - "totalInitialBudget": 300, - "coordinador": "Tarek Loukili Lamrani", - "state": "Cerrada" - }, - { - "id": 6867174, - "startDate": "2018-06-12T00:00:00", - "endDate": "2018-06-13T00:00:00", - "totalVacancies": 50, - "totalReserved": 50, - "totalNumberOfHours": 14, - "totalInitialBudget": 300, - "coordinador": "Enrique Álvarez Vigil", - "state": "Cerrada" - }, - { - "id": 7536743, - "startDate": "2018-05-28T00:00:00", - "endDate": "2018-05-29T00:00:00", - "totalVacancies": 50, - "totalReserved": 0, - "totalNumberOfHours": 12, - "totalInitialBudget": 300, - "coordinador": "Antonio García Montero", - "state": "Cerrada" - } - ], - "totalVacancies": 200, - "totalReserved": 150, - "totalNumberOfHours": 53, - "totalInitialBudget": 1200 - }, - { - "id": 6867237, - "name": "JORNADA SOBRE EL FUTURO DE LA FORMACIÓN EN EMERGENCIAS EN EL MARCO DE LAS CUALIFICACIONES PROFESIONALES", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6867238, - "name": "JORNADA TÉCNICA SOBRE NUEVA NORMATIVA EN EMERGENCIAS POR INCENDIOS FORESTALES", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6867239, - "name": "JORNADAS FORMATIVAS SOBRE EL SNPC PARA VOLUNTARIOS REMER Y PROTECCIÓN CIVIL", - "editionVersion": [{ - "id": 6867240, - "startDate": "2018-12-31T00:00:00", - "endDate": "2018-12-31T00:00:00", - "totalVacancies": 40, - "totalReserved": 0, - "totalNumberOfHours": 7, - "totalInitialBudget": 1000, - "coordinador": "Rita María Domínguez Monzón", - "state": "Anulada" - }], - "totalVacancies": 40, - "totalReserved": 0, - "totalNumberOfHours": 7, - "totalInitialBudget": 1000 - }, - { - "id": 6867242, - "name": "JORNADAS TÉCNICAS SOBRE COORDINACIÓN EN FORMACIÓN EN PROTECCIÓN CIVIL", - "editionVersion": [{ - "id": 6867243, - "startDate": "2018-06-26T00:00:00", - "endDate": "2018-06-27T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 6, - "totalInitialBudget": 1660, - "coordinador": "Antonia Garcés de Marcilla Val", - "state": "Cerrada" - }], - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 6, - "totalInitialBudget": 1660 - }, - { - "id": 6980200, - "name": "JORNADA ABIERTA SOBRE EL SISTEMA NACIONAL DE PROTECCIÓN CIVIL", - "editionVersion": [{ - "id": 6980203, - "startDate": "2018-02-20T00:00:00", - "endDate": "2018-02-20T00:00:00", - "totalVacancies": 90, - "totalReserved": 90, - "totalNumberOfHours": 5, - "totalInitialBudget": 1000, - "coordinador": "Antonia Garcés de Marcilla Val", - "state": "Cerrada" - }, - { - "id": 6980205, - "startDate": "2018-12-31T00:00:00", - "endDate": "2018-12-31T00:00:00", - "totalVacancies": 40, - "totalReserved": 40, - "totalNumberOfHours": 5, - "totalInitialBudget": 1000, - "coordinador": "Antonia Garcés de Marcilla Val", - "state": "Anulada" - } - ], - "totalVacancies": 130, - "totalReserved": 130, - "totalNumberOfHours": 10, - "totalInitialBudget": 2000 - }, - { - "id": 6980209, - "name": "CURSO ONLINE SOBRE EL SISTEMA NACIONAL DE PROTECCIÓN CIVIL PARA NO DIRECTIVOS", - "editionVersion": [{ - "id": 6980211, - "startDate": "2018-12-31T00:00:00", - "endDate": "2018-12-31T00:00:00", - "totalVacancies": 52, - "totalReserved": 0, - "totalNumberOfHours": 35, - "totalInitialBudget": 2000, - "coordinador": "María Dolores Monzón Merchán", - "state": "Anulada" - }], - "totalVacancies": 52, - "totalReserved": 0, - "totalNumberOfHours": 35, - "totalInitialBudget": 2000 - }, - { - "id": 6980213, - "name": "JORNADA SOBRE LA COORDINACIÓN DE LAS UNIDADES DE PC DE LAS DELEGACIONES DEL GOBIERNO PLURIPROVINCIALES CON LAS SUBDELEGACIONES DEL GOBIERNO DE SU ÁMBITO TERRITORIAL Y LA DGPCE", - "editionVersion": [{ - "id": 6980216, - "startDate": "2018-12-31T00:00:00", - "endDate": "2018-12-31T00:00:00", - "totalVacancies": 40, - "totalReserved": 40, - "totalNumberOfHours": 5, - "totalInitialBudget": 1500, - "coordinador": " ", - "state": "Anulada" - }], - "totalVacancies": 40, - "totalReserved": 40, - "totalNumberOfHours": 5, - "totalInitialBudget": 1500 - }, - { - "id": 8206127, - "name": "EL SISTEMA NACIONAL DE PROTECCIÓN CIVIL: COORDINACIÓN DE ACTUACIONES", - "editionVersion": [{ - "id": 8206139, - "startDate": "2018-11-20T00:00:00", - "endDate": "2018-11-20T00:00:00", - "totalVacancies": 80, - "totalReserved": 80, - "totalNumberOfHours": 6, - "totalInitialBudget": 30000, - "coordinador": "Araceli Ruiz Anca", - "state": "Cerrada" - }], - "totalVacancies": 80, - "totalReserved": 80, - "totalNumberOfHours": 6, - "totalInitialBudget": 30000 - } - ], - "totalVacancies": 644, - "totalReserved": 455, - "totalNumberOfHours": 191, - "totalInitialBudget": 46520 - }, - { - "id": 6867255, - "name": "1.1 Fundamentos de la Protección Civil", - "trainingActivityVersion": [{ - "id": 6867256, - "name": "***JORNADA SOBRE EL NUEVO MARCO LEGAL DE PROTECCIÓN CIVIL: LEY 17/2015 DEL SISTEMA NACIONAL DE PROTECCIÓN CIVIL", - "editionVersion": [{ - "id": 8552600, - "startDate": "2018-12-30T00:00:00", - "endDate": "2018-12-31T00:00:00", - "totalVacancies": 80, - "totalReserved": 0, - "totalNumberOfHours": 8, - "totalInitialBudget": 0, - "coordinador": "María Vara Moral", - "state": "Programación" - }, - { - "id": 8552602, - "totalVacancies": 80, - "totalReserved": 0, - "totalNumberOfHours": 8, - "totalInitialBudget": 0, - "coordinador": "María Vara Moral", - "state": "Planificación" - } - ], - "totalVacancies": 160, - "totalReserved": 0, - "totalNumberOfHours": 16, - "totalInitialBudget": 0 - }], - "totalVacancies": 160, - "totalReserved": 0, - "totalNumberOfHours": 16, - "totalInitialBudget": 0 - } - ], - "totalVacancies": 989, - "totalReserved": 466, - "totalNumberOfHours": 340, - "totalInitialBudget": 58420 - }, - { - "id": 6867257, - "name": "2 ANÁLISIS Y PREVENCIÓN DE RIESGOS DE P.C", - "submoduleVersion": [{ - "id": 6867258, - "name": "2.2 Bases Metodológicas para su Análisis.", - "trainingActivityVersion": [{ - "id": 6867259, - "name": "CURSO DE INTERPRETACIÓN DE ANÁLISIS DE RIESGOS", - "editionVersion": [{ - "id": 8486913, - "totalVacancies": 30, - "totalReserved": 0, - "totalNumberOfHours": 28, - "totalInitialBudget": 0, - "coordinador": "Julia Pastrana de Paz", - "state": "Planificación" - }, - { - "id": 8486914, - "startDate": "2018-12-01T00:00:00", - "endDate": "2018-12-02T00:00:00", - "totalVacancies": 30, - "totalReserved": 9, - "totalNumberOfHours": 28, - "totalInitialBudget": 0, - "coordinador": "Julia Pastrana de Paz", - "state": "Programación" - } - ], - "totalVacancies": 60, - "totalReserved": 9, - "totalNumberOfHours": 56, - "totalInitialBudget": 0 - }, - { - "id": 6867260, - "name": "INTERPRETACIÓN DE MAPAS DE RIESGOS NATURALES Y SISTEMAS DE ALERTA TEMPRANA", - "editionVersion": [{ - "id": 6867261, - "startDate": "2018-10-01T00:00:00", - "endDate": "2018-10-04T00:00:00", - "totalVacancies": 25, - "totalReserved": 2, - "totalNumberOfHours": 26, - "totalInitialBudget": 3100, - "coordinador": "Angela Potenciano de las Heras", - "state": "Cerrada" - }], - "totalVacancies": 25, - "totalReserved": 2, - "totalNumberOfHours": 26, - "totalInitialBudget": 3100 - }, - { - "id": 6867299, - "name": "MEDIDAS PREVENTIVAS ESTRUCTURALES Y NO ESTRUCTURALES FRENTE A RIESGOS NATURALES", - "editionVersion": [{ - "id": 6867300, - "startDate": "2018-05-23T00:00:00", - "endDate": "2018-05-25T00:00:00", - "totalVacancies": 25, - "totalReserved": 4, - "totalNumberOfHours": 18, - "totalInitialBudget": 2300, - "coordinador": "Angela Potenciano de las Heras", - "state": "Cerrada" - }], - "totalVacancies": 25, - "totalReserved": 4, - "totalNumberOfHours": 18, - "totalInitialBudget": 2300 - } - ], - "totalVacancies": 110, - "totalReserved": 15, - "totalNumberOfHours": 100, - "totalInitialBudget": 5400 - }, - { - "id": 6867329, - "name": "2.3 Conocimiento y Análisis de Riesgos Naturales.", - "trainingActivityVersion": [{ - "id": 6867330, - "name": "ANÁLISIS DEL RIESGO SÍSMICO", - "editionVersion": [{ - "id": 6867331, - "startDate": "2018-02-19T00:00:00", - "endDate": "2018-02-23T00:00:00", - "totalVacancies": 40, - "totalReserved": 2, - "totalNumberOfHours": 30, - "totalInitialBudget": 4000, - "coordinador": "Estrella Romero Cordón", - "state": "Cerrada" - }], - "totalVacancies": 40, - "totalReserved": 2, - "totalNumberOfHours": 30, - "totalInitialBudget": 4000 - }, - { - "id": 6867399, - "name": "CURSO DE INTRODUCCIÓN AL RADAR QPE, QPF EN HIDROMETEOROLOGÍA", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6867400, - "name": "CURSO DE PLANIFICACIÓN DE PROTECCIÓN CIVIL ANTE EL RIESGO SÍSMICO", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6867401, - "name": "FENÓMENOS METEOROLÓGICOS ADVERSOS EN PROTECCIÓN CIVIL", - "editionVersion": [{ - "id": 6867402, - "startDate": "2018-05-21T00:00:00", - "endDate": "2018-05-24T00:00:00", - "totalVacancies": 20, - "totalReserved": 3, - "totalNumberOfHours": 23, - "totalInitialBudget": 3300, - "coordinador": "Jonathan Gómez Cantero", - "state": "Cerrada" - }], - "totalVacancies": 20, - "totalReserved": 3, - "totalNumberOfHours": 23, - "totalInitialBudget": 3300 - }, - { - "id": 6867465, - "name": "JORNADA FORMATIVA RIESGO SÍSMICO EN EL S.E. DE LA PENÍNSULA IBÉRICA", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6867466, - "name": "JORNADA SOBRE LA NUEVA LEY DEL SISTEMA NACIONAL DE PROTECCIÓN CIVIL Y SU APLICACIÓN EN LA GESTIÓN DEL RIESGO DE INUNDACIONES", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6867467, - "name": "JORNADA TÉCNICA METEOROLOGÍA ESPACIAL", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6867468, - "name": "JORNADA TÉCNICA SOBRE PLANES DE GESTIÓN DEL RIESGO DE INUNDACIÓN", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6867469, - "name": "JORNADA TÉCNICA SOBRE RIESGO DE MAREMOTOS. PROYECTO DE LA DIRECTRIZ BÁSICA ANTE EL RIESGO DE MAREMOTOS", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6867470, - "name": "JORNADA TÉCNICA SOBRE RIESGOS SÍSMICO Y VOLCÁNICO", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6867471, - "name": "PLANIFICACIÓN DE PROTECCIÓN CIVIL EN RIESGOS NATURALES", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6867509, - "name": "RIESGOS NATURALES: IDENTIFICACIÓN Y ANÁLISIS. ONLINE", - "editionVersion": [{ - "id": 6867510, - "startDate": "2018-02-28T00:00:00", - "endDate": "2018-06-25T00:00:00", - "totalVacancies": 50, - "totalReserved": 5, - "totalNumberOfHours": 90, - "totalInitialBudget": 5000, - "coordinador": "Mercedes Vallejo Bombín", - "state": "Cerrada" - }], - "totalVacancies": 50, - "totalReserved": 5, - "totalNumberOfHours": 90, - "totalInitialBudget": 5000 - }, - { - "id": 6867689, - "name": "TALLER DE ACTUALIZACIÓN SOBRE GESTIÓN DE RIESGOS GEOLÓGICOS", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6867690, - "name": "TALLER DE ACTUALIZACIÓN SOBRE GESTIÓN DE RIESGOS HIDROMETEOROLÓGICOS", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6979957, - "name": "HERRAMIENTAS DE ANÁLISIS Y PLANIFICACIÓN DE PROTECCIÓN CIVIL EN INCENDIOS FORESTALES", - "editionVersion": [{ - "id": 6979959, - "startDate": "2018-12-31T00:00:00", - "endDate": "2018-12-31T00:00:00", - "totalVacancies": 20, - "totalReserved": 0, - "totalNumberOfHours": 25, - "totalInitialBudget": 3500, - "coordinador": "Julio César Ramos Fernández", - "state": "Anulada" - }], - "totalVacancies": 20, - "totalReserved": 0, - "totalNumberOfHours": 25, - "totalInitialBudget": 3500 - }, - { - "id": 6980098, - "name": "FENÓMENOS METEOROLÓGICOS ADVERSOS. NEVADAS EN EL SURESTE ESPAÑOL", - "editionVersion": [{ - "id": 6980101, - "startDate": "2018-04-11T00:00:00", - "endDate": "2018-04-12T00:00:00", - "totalVacancies": 25, - "totalReserved": 0, - "totalNumberOfHours": 20, - "totalInitialBudget": 2000, - "coordinador": "Elías Salvador Atienza", - "state": "Cerrada" - }], - "totalVacancies": 25, - "totalReserved": 0, - "totalNumberOfHours": 20, - "totalInitialBudget": 2000 - }, - { - "id": 6980104, - "name": "ACTUACIÓN DE PROTECCIÓN CIVIL ANTE EL RIESGO DE INUNDACIONES EN CASTILLA-LA MANCHA", - "editionVersion": [{ - "id": 6980106, - "startDate": "2018-11-05T00:00:00", - "endDate": "2018-11-07T00:00:00", - "totalVacancies": 25, - "totalReserved": 0, - "totalNumberOfHours": 20, - "totalInitialBudget": 2000, - "coordinador": "Valentín del Hierro Rodrigo", - "state": "Cerrada" - }], - "totalVacancies": 25, - "totalReserved": 0, - "totalNumberOfHours": 20, - "totalInitialBudget": 2000 - } - ], - "totalVacancies": 180, - "totalReserved": 10, - "totalNumberOfHours": 208, - "totalInitialBudget": 19800 - }, - { - "id": 6867691, - "name": "2.4 Conocimiento y Análisis de Riesgos Tecnológicos.", - "trainingActivityVersion": [{ - "id": 6867692, - "name": "CURSO DE RIESGO DE INCENDIOS EN EDIFICIOS (Módulo I). (Nivel II).", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6867693, - "name": "CURSO DE RIESGO DE INCENDIOS EN EDIFICIOS (Módulo II). (Nivel III).", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6867694, - "name": "CURSO DE RIESGOS TECNOLÓGICOS: MÓDULO I (RIESGO QUÍMICO)", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6867695, - "name": "CURSO DE RIESGOS TECNOLÓGICOS: MÓDULO II (RIESGO RADIOLÓGICO)", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6867696, - "name": "EVALUACIÓN DE RIESGOS TECNOLÓGICOS", - "editionVersion": [{ - "id": 6867697, - "startDate": "2018-09-24T00:00:00", - "endDate": "2018-09-28T00:00:00", - "totalVacancies": 25, - "totalReserved": 0, - "totalNumberOfHours": 35, - "totalInitialBudget": 5800, - "coordinador": "Valeriano Ortega Miravalles", - "state": "Cerrada" - }], - "totalVacancies": 25, - "totalReserved": 0, - "totalNumberOfHours": 35, - "totalInitialBudget": 5800 - }, - { - "id": 6867782, - "name": "JORNADA TÉCNICA SOBRE LA BASE NACIONAL DE DATOS SOBRE RIESGO QUÍMICO (BARQUIM)", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6867783, - "name": "JORNADA TÉCNICA SOBRE LA PROTECCIÓN CIVIL ANTE EL RIESGO QUÍMICO: EXPERIENCIAS Y PERSPECTIVAS DE FUTURO", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6867784, - "name": "RIESGOS TECNOLÓGICOS: MÓDULO III (RIESGO EN EL TRANSPORTE DE MERCANCÍAS PELIGROSAS)", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6867845, - "name": "RIESGOS TECNOLÓGICOS: MÓDULO IV (APLICACIONES PRÁCTICAS)", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6867912, - "name": "TALLER DE ACTUALIZACIÓN SOBRE GESTIÓN DEL RIESGO QUÍMICO", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - } - ], - "totalVacancies": 25, - "totalReserved": 0, - "totalNumberOfHours": 35, - "totalInitialBudget": 5800 - }, - { - "id": 6867913, - "name": "2.5 Conocimiento y Análisis de Riesgos Sociales.", - "trainingActivityVersion": [{ - "id": 6867914, - "name": "ANÁLISIS Y GESTIÓN DE RIESGOS EN GRANDES CONCENTRACIONES HUMANAS", - "editionVersion": [{ - "id": 6867915, - "startDate": "2018-05-29T00:00:00", - "endDate": "2018-06-01T00:00:00", - "totalVacancies": 30, - "totalReserved": 6, - "totalNumberOfHours": 24, - "totalInitialBudget": 2250, - "coordinador": "Fernando Talavera Esteso", - "state": "Cerrada" - }], - "totalVacancies": 30, - "totalReserved": 6, - "totalNumberOfHours": 24, - "totalInitialBudget": 2250 - }, - { - "id": 6867949, - "name": "COLABORACIÓN DEL VOLUNTARIADO DE P. C. EN DISPOSITIVOS ANTE GRANDES CONCENTRACIONES HUMANAS", - "editionVersion": [{ - "id": 6867950, - "startDate": "2018-05-25T00:00:00", - "endDate": "2018-05-27T00:00:00", - "totalVacancies": 24, - "totalReserved": 0, - "totalNumberOfHours": 20, - "totalInitialBudget": 3500, - "coordinador": "Araceli Ruiz Anca", - "state": "Cerrada" - }], - "totalVacancies": 24, - "totalReserved": 0, - "totalNumberOfHours": 20, - "totalInitialBudget": 3500 - }, - { - "id": 6867974, - "name": "CURSO DE COLABORACIÓN DEL VOLUNTARIADO DE P. C. EN DISPOSITIVOS ANTE GRANDES CONCENTRACIONES HUMANAS", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6867975, - "name": "CURSO DE INGRESO AL VOLUNTARIADO DE PROTECCIÓN CIVIL EN CASTILLA Y LEÓN", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6867976, - "name": "JORNADA TÉCNICA SOBRE EL MARCO NORMATIVO Y LA PLANIFICACIÓN DE PROTECCIÓN CIVIL EN GRANDES CONCENTRACIONES HUMANAS. (Nivel III).", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - } - ], - "totalVacancies": 54, - "totalReserved": 6, - "totalNumberOfHours": 44, - "totalInitialBudget": 5750 - }, - { - "id": 6867977, - "name": "2.6 Herramientas para Análisis de Riesgos.", - "trainingActivityVersion": [{ - "id": 6867978, - "name": "CARTOGRAFÍA BÁSICA APLICADA A PROTECCIÓN CIVIL", - "editionVersion": [{ - "id": 6867979, - "startDate": "2018-05-07T00:00:00", - "endDate": "2018-05-11T00:00:00", - "totalVacancies": 20, - "totalReserved": 3, - "totalNumberOfHours": 30, - "totalInitialBudget": 3300, - "coordinador": "Francisco Javier Frutos Gonzalez", - "state": "Cerrada" - }], - "totalVacancies": 20, - "totalReserved": 3, - "totalNumberOfHours": 30, - "totalInitialBudget": 3300 - }, - { - "id": 6868035, - "name": "CURSO DE HERRAMIENTAS GIS PARA EL ANÁLISIS DE RIESGOS. MÓDULO I", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6868036, - "name": "CURSO DE HERRAMIENTAS GIS PARA EL ANÁLISIS DE RIESGOS. MÓDULO II", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6868037, - "name": "INTRODUCCIÓN A LA INFORMACIÓN GEOGRÁFICA DIGITAL", - "editionVersion": [{ - "id": 6980147, - "startDate": "2018-12-17T00:00:00", - "endDate": "2018-12-31T00:00:00", - "totalVacancies": 20, - "totalReserved": 0, - "totalNumberOfHours": 15, - "totalInitialBudget": 0, - "coordinador": "Roberto Martínez-Alegría López", - "state": "Anulada" - }], - "totalVacancies": 20, - "totalReserved": 0, - "totalNumberOfHours": 15, - "totalInitialBudget": 0 - }, - { - "id": 6868038, - "name": "HERRAMIENTAS GIS APLICADAS A LAS ACTUACIONES DE PROTECCIÓN CIVIL", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6868107, - "name": "HERRAMIENTAS GIS PARA EL ANÁLISIS DE RIESGOS. SEMIPRESENCIAL", - "editionVersion": [{ - "id": 6868108, - "startDate": "2018-03-05T00:00:00", - "endDate": "2018-06-01T00:00:00", - "totalVacancies": 35, - "totalReserved": 1, - "totalNumberOfHours": 90, - "totalInitialBudget": 3380, - "coordinador": "Mercedes Vallejo Bombín", - "state": "Cerrada" - }], - "totalVacancies": 35, - "totalReserved": 1, - "totalNumberOfHours": 90, - "totalInitialBudget": 3380 - }, - { - "id": 6868309, - "name": "INFORMACIÓN GEOGRÁFICA DIGITAL Y SU APLICACIÓN EN PROTECCIÓN CIVIL Y EMERGENCIAS. DATOS ABIERTOS DE LA ADMÓN. PUBLICA", - "editionVersion": [{ - "id": 6868310, - "startDate": "2018-10-08T00:00:00", - "endDate": "2018-10-11T00:00:00", - "totalVacancies": 18, - "totalReserved": 6, - "totalNumberOfHours": 28, - "totalInitialBudget": 3600, - "coordinador": "Mercedes Vallejo Bombín", - "state": "Cerrada" - }], - "totalVacancies": 18, - "totalReserved": 6, - "totalNumberOfHours": 28, - "totalInitialBudget": 3600 - }, - { - "id": 6868359, - "name": "INTERPRETACIÓN GEOMORFOLÓGICA DE ZONAS DE ALTO RIESGO DE INUNDACIÓN", - "editionVersion": [{ - "id": 6868360, - "startDate": "2018-09-18T00:00:00", - "endDate": "2018-09-20T00:00:00", - "totalVacancies": 15, - "totalReserved": 0, - "totalNumberOfHours": 15, - "totalInitialBudget": 2500, - "coordinador": "Angela Potenciano de las Heras", - "state": "Anulada" - }], - "totalVacancies": 15, - "totalReserved": 0, - "totalNumberOfHours": 15, - "totalInitialBudget": 2500 - }, - { - "id": 6868361, - "name": "JORNADA INTERNACIONAL SOBRE EVALUACIÓN DEL RIESGO EN MOVIMIENTOS DEL TERRENO (PROYECTO DORIS). (Nivel III)", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6868362, - "name": "MODELOS DE SIMULACIÓN APLICADOS AL ANÁLISIS DEL RIESGO SÍSMICO Y VOLCÁNICO", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6868366, - "name": "MODELOS DE SIMULACION APLICADOS AL ANALISIS DEL RIESGO VOLCANICO", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6868367, - "name": "MODELOS DE SIMULACIÓN HIDROLÓGICA E HIDRÁULICA APLICADOS AL ANÁLISIS DEL RIESGO POR INUNDACIÓN", - "editionVersion": [{ - "id": 6868368, - "startDate": "2018-06-04T00:00:00", - "endDate": "2018-06-08T00:00:00", - "totalVacancies": 25, - "totalReserved": 3, - "totalNumberOfHours": 30, - "totalInitialBudget": 4200, - "coordinador": "Angela Potenciano de las Heras", - "state": "Cerrada" - }], - "totalVacancies": 25, - "totalReserved": 3, - "totalNumberOfHours": 30, - "totalInitialBudget": 4200 - }, - { - "id": 6868442, - "name": "SEMINARIO DE SEGUIMIENTO DE RESULTADOS DEL PROYECTO DORIS Y LAMPRE", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6868443, - "name": "UTILIZACIÓN DE TELEDETECCIÓN EN LA GESTIÓN DE RIESGOS NATURALES EN PROTECCIÓN CIVIL", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6975970, - "name": "JORNADA SOBRE SISTEMAS DE INFORMACIÓN GEOGRÁFICA EN PROTECCIÓN CIVIL (PENBU)", - "editionVersion": [{ - "id": 6975973, - "startDate": "2018-09-26T00:00:00", - "endDate": "2018-09-26T00:00:00", - "totalVacancies": 20, - "totalReserved": 0, - "totalNumberOfHours": 5, - "totalInitialBudget": 378, - "coordinador": "Javier Basconcillos Arce", - "state": "Cerrada" - }], - "totalVacancies": 20, - "totalReserved": 0, - "totalNumberOfHours": 5, - "totalInitialBudget": 378 - } - ], - "totalVacancies": 153, - "totalReserved": 13, - "totalNumberOfHours": 213, - "totalInitialBudget": 17358 - }, - { - "id": 6868445, - "name": "2.8 Educación (valores) para la Prevención.", - "trainingActivityVersion": [{ - "id": 6868446, - "name": "ACTUACIÓN EN EMERGENCIAS CON PERSONAS CON DISCAPACIDAD", - "editionVersion": [{ - "id": 6868447, - "startDate": "2018-05-03T00:00:00", - "endDate": "2018-05-03T00:00:00", - "totalVacancies": 40, - "totalReserved": 2, - "totalNumberOfHours": 6, - "totalInitialBudget": 0, - "coordinador": "Francisco Canes Domenech", - "state": "Cerrada" - }, - { - "id": 6868450, - "startDate": "2018-11-07T00:00:00", - "endDate": "2018-11-07T00:00:00", - "totalVacancies": 40, - "totalReserved": 0, - "totalNumberOfHours": 6, - "totalInitialBudget": 0, - "coordinador": "Francisco Canes Domenech", - "state": "Anulada" - } - ], - "totalVacancies": 80, - "totalReserved": 2, - "totalNumberOfHours": 12, - "totalInitialBudget": 0 - }, - { - "id": 6868454, - "name": "CURSO DE PROCEDIMIENTOS PARA LA GESTION DE LA DOCENCIA EN LA ENPC", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6868455, - "name": "CURSO EALEARNING SOBRE RIESGOS PETROLÍFEROS", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6868456, - "name": "CURSO SOBRE EL SISTEMA NACIONAL DE PROTECCIÓN CIVIL PARA FORMADORES DE VOLUNTARIOS DE PROTECCIÓN CIVIL", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6868457, - "name": "CURSO SOBRE FORMACIÓN EN PROCEDIMIENTOS ESTANDARIZADOS PARA EJERCICIOS PRÁCTICOS DE LA ENPC", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6868458, - "name": "CURSO SOBRE FORMACIÓN EN PROCEDIMIENTOS ESTANDARIZADOS PARA EJERCICIOS PRÁCTICOS DE LA ENPC NIVEL I", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6868459, - "name": "FOMENTO DE LA CULTURA PREVENTIVA EN ESCOLARES", - "editionVersion": [{ - "id": 6868460, - "startDate": "2018-04-07T00:00:00", - "endDate": "2018-04-08T00:00:00", - "totalVacancies": 30, - "totalReserved": 0, - "totalNumberOfHours": 15, - "totalInitialBudget": 2000, - "coordinador": "Juan Antonio Iborra Bernal", - "state": "Cerrada" - }], - "totalVacancies": 30, - "totalReserved": 0, - "totalNumberOfHours": 15, - "totalInitialBudget": 2000 - }, - { - "id": 6868481, - "name": "FORMACIÓN EN METODOLOGÍA TECNOLOGÍA E-LEARNING PARA ACTIVIDADES FORMATIVAS DE LA ENPC", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6868544, - "name": "FORMACIÓN PARA LA DOCENCIA PARA PERSONAL DOCENTE DE PROTECCIÓN CIVIL", - "editionVersion": [{ - "id": 6868545, - "startDate": "2018-12-31T00:00:00", - "endDate": "2018-12-31T00:00:00", - "totalVacancies": 40, - "totalReserved": 0, - "totalNumberOfHours": 70, - "totalInitialBudget": 8400, - "coordinador": "Araceli Ruiz Anca", - "state": "Anulada" - }], - "totalVacancies": 40, - "totalReserved": 0, - "totalNumberOfHours": 70, - "totalInitialBudget": 8400 - }, - { - "id": 6868546, - "name": "PREVENCIÓN DE ACCIDENTES DE TRÁFICO Y LA ATENCIÓN MULTIDISCIPLINAR A LAS VÍCTIMAS, FAMILIARES Y ENTORNO", - "editionVersion": [{ - "id": 6868547, - "startDate": "2018-12-03T00:00:00", - "endDate": "2018-12-04T00:00:00", - "totalVacancies": 40, - "totalReserved": 0, - "totalNumberOfHours": 16, - "totalInitialBudget": 4906, - "coordinador": "Francisco Canes Domenech", - "state": "Anulada" - }], - "totalVacancies": 40, - "totalReserved": 0, - "totalNumberOfHours": 16, - "totalInitialBudget": 4906 - }, - { - "id": 6868579, - "name": "REUNIÓN TÉCNICA SOBRE FORMACIÓN EN PROCEDIMIENTOS ESTANDARIZADOS PARA EJERCICIOS PRÁCTICOS DE LA ENPC", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6868659, - "name": "SEMANA DE LA AUTOPROTECCIÓN DE ESCOLARES", - "editionVersion": [{ - "id": 6868660, - "startDate": "2018-04-16T00:00:00", - "endDate": "2018-04-21T00:00:00", - "totalVacancies": 1500, - "totalReserved": 999, - "totalNumberOfHours": 35, - "totalInitialBudget": 16300, - "coordinador": "Sergio García Batanero", - "state": "Cerrada" - }], - "totalVacancies": 1500, - "totalReserved": 999, - "totalNumberOfHours": 35, - "totalInitialBudget": 16300 - } - ], - "totalVacancies": 1690, - "totalReserved": 1001, - "totalNumberOfHours": 148, - "totalInitialBudget": 31606 - } - ], - "totalVacancies": 2212, - "totalReserved": 1045, - "totalNumberOfHours": 748, - "totalInitialBudget": 85714 - }, - { - "id": 6868668, - "name": "3 PLANIFICACIÓN DE PROTECCIÓN CIVIL", - "submoduleVersion": [{ - "id": 6868669, - "name": "3.2 Diseño y Elaboración de Planes.", - "trainingActivityVersion": [{ - "id": 6868670, - "name": "DISEÑO E IMPLANTACIÓN DE PLANES DE AUTOPROTECCIÓN EN EDIFICIOS E INSTALACIONES INDUSTRIALES", - "editionVersion": [{ - "id": 6868671, - "startDate": "2018-03-12T00:00:00", - "endDate": "2018-03-23T00:00:00", - "totalVacancies": 25, - "totalReserved": 16, - "totalNumberOfHours": 65, - "totalInitialBudget": 5088, - "coordinador": "María Josefa Granada Ferrero", - "state": "Cerrada" - }], - "totalVacancies": 25, - "totalReserved": 16, - "totalNumberOfHours": 65, - "totalInitialBudget": 5088 - }, - { - "id": 6868765, - "name": "DISEÑO Y PLANIFICACIÓN DE EMERGENCIAS EN EDIFICIOS E INSTALACIONES", - "editionVersion": [{ - "id": 6868766, - "startDate": "2018-06-04T00:00:00", - "endDate": "2018-06-08T00:00:00", - "totalVacancies": 30, - "totalReserved": 2, - "totalNumberOfHours": 25, - "totalInitialBudget": 2050, - "coordinador": "Cristina Mónica Toboso Muelas", - "state": "Cerrada" - }], - "totalVacancies": 30, - "totalReserved": 2, - "totalNumberOfHours": 25, - "totalInitialBudget": 2050 - }, - { - "id": 6868800, - "name": "JORNADA TÉCNICA DE ELABORACIÓN Y ANÁLISIS DE PLANES DE EMERGENCIA Y AUTOPROTECCIÓN. (Nivel I)", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6868801, - "name": "JORNADA TÉCNICA DE NOVEDADES SOBRE PLANIFICACIÓN DE PROTECCIÓN CIVIL ANTE LOS RIESGOS NUCLEAR Y RADIOLÓGICO", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6979961, - "name": "PREVENCIÓN Y PLANIFICACIÓN DE RIESGOS TECNOLÓGICOS", - "editionVersion": [{ - "id": 6979963, - "startDate": "2018-12-31T00:00:00", - "endDate": "2018-12-31T00:00:00", - "totalVacancies": 25, - "totalReserved": 0, - "totalNumberOfHours": 35, - "totalInitialBudget": 4800, - "coordinador": "Valeriano Ortega Miravalles", - "state": "Anulada" - }], - "totalVacancies": 25, - "totalReserved": 0, - "totalNumberOfHours": 35, - "totalInitialBudget": 4800 - }, - { - "id": 6980142, - "name": "PLANES DE AUTOPROTECCIÓN Y EMERGENCIA EN EDIFICIOS PÚBLICOS", - "editionVersion": [{ - "id": 6980144, - "startDate": "2018-12-31T00:00:00", - "endDate": "2018-12-31T00:00:00", - "totalVacancies": 25, - "totalReserved": 0, - "totalNumberOfHours": 20, - "totalInitialBudget": 2000, - "coordinador": " ", - "state": "Anulada" - }], - "totalVacancies": 25, - "totalReserved": 0, - "totalNumberOfHours": 20, - "totalInitialBudget": 2000 - }, - { - "id": 6980375, - "name": "PLANIFICACIÓN DE PROTECCIÓN CIVIL EN RIESGOS NATURALES", - "editionVersion": [{ - "id": 6980377, - "startDate": "2018-06-25T00:00:00", - "endDate": "2018-06-28T00:00:00", - "totalVacancies": 25, - "totalReserved": 0, - "totalNumberOfHours": 25, - "totalInitialBudget": 3000, - "coordinador": "Mercedes Vallejo Bombín", - "state": "Cerrada" - }], - "totalVacancies": 25, - "totalReserved": 0, - "totalNumberOfHours": 25, - "totalInitialBudget": 3000 - } - ], - "totalVacancies": 130, - "totalReserved": 18, - "totalNumberOfHours": 170, - "totalInitialBudget": 16938 - }, - { - "id": 6868802, - "name": "3.3 Gestión e Implantación de Planes.", - "trainingActivityVersion": [{ - "id": 6868803, - "name": "GESTIÓN DEL RIESGO DE INUNDACIONES: IMPLANTACIÓN DE NUEVAS NORMATIVAS", - "editionVersion": [{ - "id": 6868804, - "startDate": "2018-11-26T00:00:00", - "endDate": "2018-11-30T00:00:00", - "totalVacancies": 30, - "totalReserved": 2, - "totalNumberOfHours": 35, - "totalInitialBudget": 3000, - "coordinador": "Estrella Romero Cordón", - "state": "Cerrada" - }], - "totalVacancies": 30, - "totalReserved": 2, - "totalNumberOfHours": 35, - "totalInitialBudget": 3000 - }, - { - "id": 6868851, - "name": "II JORNADA TÉCNICA SOBRE PLANES DE AUTOPROTECCIÓN DE CENTROS ESCOLARES EN EL ÁMBITO TERRITORIAL DE LOS PLANES DE EMERGENCIA NUCLEAR", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6868852, - "name": "JORNADA SOBRE INVESTIGACIÓN DE CAUSAS EN LOS PLANES DE PROTECCIÓN CIVIL DE INCENDIOS FORESTALES. ASPECTOS PENALES Y PROCESALES", - "editionVersion": [{ - "id": 6868853, - "startDate": "2018-05-16T00:00:00", - "endDate": "2018-05-17T00:00:00", - "totalVacancies": 30, - "totalReserved": 0, - "totalNumberOfHours": 10, - "totalInitialBudget": 808, - "coordinador": "Sofía González López", - "state": "Cerrada" - }], - "totalVacancies": 30, - "totalReserved": 0, - "totalNumberOfHours": 10, - "totalInitialBudget": 808 - }, - { - "id": 6868873, - "name": "JORNADA TÉCNICA SOBRE LOS PLANES DE COORDINACIÓN Y APOYO: INSTRUMENTOS PARA LA GESTIÓN DE EMERGENCIAS", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6868874, - "name": "METODOLOGÍAS DE ORGANIZACIÓN Y PLANIFICACIÓN DE EJERCICIOS Y SIMULACROS", - "editionVersion": [{ - "id": 6868875, - "startDate": "2018-04-17T00:00:00", - "endDate": "2018-04-19T00:00:00", - "totalVacancies": 25, - "totalReserved": 4, - "totalNumberOfHours": 24, - "totalInitialBudget": 1200, - "coordinador": "Miguel Tomé de la Vega", - "state": "Cerrada" - }], - "totalVacancies": 25, - "totalReserved": 4, - "totalNumberOfHours": 24, - "totalInitialBudget": 1200 - }, - { - "id": 6979965, - "name": "JORNADA SOBRE IMPLANTACIÓN DE PLANES DE EMRGENCIA EN PRESAS", - "editionVersion": [{ - "id": 6980095, - "startDate": "2018-02-14T00:00:00", - "endDate": "2018-02-14T00:00:00", - "totalVacancies": 40, - "totalReserved": 0, - "totalNumberOfHours": 5, - "totalInitialBudget": 1500, - "coordinador": "Rosa María Torres Saavedra", - "state": "Cerrada" - }, - { - "id": 6980096, - "startDate": "2018-05-09T00:00:00", - "endDate": "2018-05-09T00:00:00", - "totalVacancies": 40, - "totalReserved": 0, - "totalNumberOfHours": 5, - "totalInitialBudget": 1500, - "coordinador": "Rosa María Torres Saavedra", - "state": "Cerrada" - } - ], - "totalVacancies": 80, - "totalReserved": 0, - "totalNumberOfHours": 10, - "totalInitialBudget": 3000 - }, - { - "id": 6980196, - "name": "JORNADA TÉCNICA SOBRE IMPLANTACIÓN Y APLICACION DE LOS PLANES DE EMERGENCIA EXTERIOR DEL SECTOR QUÍMICO", - "editionVersion": [{ - "id": 6980198, - "startDate": "2018-12-04T00:00:00", - "endDate": "2018-12-04T00:00:00", - "totalVacancies": 40, - "totalReserved": 0, - "totalNumberOfHours": 6, - "totalInitialBudget": 5279, - "coordinador": "Valeriano Ortega Miravalles", - "state": "Cerrada" - }], - "totalVacancies": 40, - "totalReserved": 0, - "totalNumberOfHours": 6, - "totalInitialBudget": 5279 - } - ], - "totalVacancies": 205, - "totalReserved": 6, - "totalNumberOfHours": 85, - "totalInitialBudget": 13287 - }, - { - "id": 6868940, - "name": "3.1 Fundamentos de la Planificación", - "trainingActivityVersion": [{ - "id": 6868941, - "name": "CURSO SOBRE PLANES DE EMERGENCIA PARA PERSONAL DE LOS ÓRGANOS DIRECTIVOS DE LA AGE", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6868942, - "name": "PLANIFICACIÓN DE PROTECCIÓN CIVIL ONLINE", - "editionVersion": [{ - "id": 6868943, - "startDate": "2018-09-12T00:00:00", - "endDate": "2018-12-10T00:00:00", - "totalVacancies": 60, - "totalReserved": 12, - "totalNumberOfHours": 110, - "totalInitialBudget": 8000, - "coordinador": "Mercedes Vallejo Bombín", - "state": "Anulada" - }], - "totalVacancies": 60, - "totalReserved": 12, - "totalNumberOfHours": 110, - "totalInitialBudget": 8000 - } - ], - "totalVacancies": 60, - "totalReserved": 12, - "totalNumberOfHours": 110, - "totalInitialBudget": 8000 - } - ], - "totalVacancies": 395, - "totalReserved": 36, - "totalNumberOfHours": 365, - "totalInitialBudget": 38225 - }, - { - "id": 6868945, - "name": "4 OPERACIONES EN EMERGENCIAS DE P.C", - "submoduleVersion": [{ - "id": 6868946, - "name": "4.1 Dirección y Gestión de las Intervenciones.", - "trainingActivityVersion": [{ - "id": 6868947, - "name": "COORDINACIÓN Y GESTIÓN DE EMERGENCIAS", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6869034, - "name": "CURSO DE DIRECCIÓN Y GESTIÓN DE EMERGENCIAS: OPERACIÓN Y CONTROL. (Nivel II).", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6869035, - "name": "CURSO DE METODOLOGÍAS DE GESTION OPERATIVA Y COMANDO", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6869036, - "name": "CURSO DE OPERACIONES DE EXTINCIÓN DE INCENDIOS FORESTALES PARA JEFES DE BIEM", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6869037, - "name": "DIRECCIÓN DE OPERACIONES DE EXTINCIÓN DE INCENDIOS FORESTALES MODULO I", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6869126, - "name": "DIRECCIÓN DE OPERACIONES DE EXTINCIÓN DE INCENDIOS FORESTALES MODULO II", - "editionVersion": [{ - "id": 6972374, - "startDate": "2018-02-05T00:00:00", - "endDate": "2018-02-16T00:00:00", - "totalVacancies": 22, - "totalReserved": 22, - "totalNumberOfHours": 56, - "totalInitialBudget": 9300, - "coordinador": "Julio César Ramos Fernández", - "state": "Cerrada" - }], - "totalVacancies": 22, - "totalReserved": 22, - "totalNumberOfHours": 56, - "totalInitialBudget": 9300 - }, - { - "id": 6869127, - "name": "DIRECCIÓN Y GESTIÓN DE EMERGENCIAS: EVALUACIÓN, COMUNICACIÓN Y COORDINACIÓN", - "editionVersion": [{ - "id": 6869128, - "startDate": "2018-04-02T00:00:00", - "endDate": "2018-04-06T00:00:00", - "totalVacancies": 21, - "totalReserved": 9, - "totalNumberOfHours": 35, - "totalInitialBudget": 5000, - "coordinador": "María Vara Moral", - "state": "Cerrada" - }], - "totalVacancies": 21, - "totalReserved": 9, - "totalNumberOfHours": 35, - "totalInitialBudget": 5000 - }, - { - "id": 6869207, - "name": "GOM II. GESTIÓN OPERATIVA Y MANDO PUESTO DE MANDO AVANZADO, HERAMIENTAS DE GESTIÓN DE UN PMA", - "editionVersion": [{ - "id": 6869208, - "startDate": "2018-11-26T00:00:00", - "endDate": "2018-11-30T00:00:00", - "totalVacancies": 12, - "totalReserved": 0, - "totalNumberOfHours": 30, - "totalInitialBudget": 3300, - "coordinador": "Pablo Calvo Barrios", - "state": "Anulada" - }], - "totalVacancies": 12, - "totalReserved": 0, - "totalNumberOfHours": 30, - "totalInitialBudget": 3300 - }, - { - "id": 6869246, - "name": "GESTIÓN OPERATIVA Y COMANDO MÓDULO III (FORESTAL)", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6869338, - "name": "GESTIÓN OPERATIVA Y MANDO. HERRAMIENTAS DE GESTIÓN DE CRISIS EN UN PUESTO DE MANDO", - "editionVersion": [{ - "id": 6869339, - "startDate": "2018-10-09T00:00:00", - "endDate": "2018-10-11T00:00:00", - "totalVacancies": 18, - "totalReserved": 2, - "totalNumberOfHours": 21, - "totalInitialBudget": 4000, - "coordinador": "Emilio Leo Ferrando", - "state": "Cerrada" - }], - "totalVacancies": 18, - "totalReserved": 2, - "totalNumberOfHours": 21, - "totalInitialBudget": 4000 - }, - { - "id": 6869367, - "name": "INTERMEDIO DE DIRECCIÓN DE EXTINCIÓN DE INCENDIOS FORESTALES", - "editionVersion": [{ - "id": 6869368, - "startDate": "2018-11-12T00:00:00", - "endDate": "2018-11-23T00:00:00", - "totalVacancies": 22, - "totalReserved": 22, - "totalNumberOfHours": 56, - "totalInitialBudget": 9790, - "coordinador": "Paula Raboso Campos", - "state": "Cerrada" - }], - "totalVacancies": 22, - "totalReserved": 22, - "totalNumberOfHours": 56, - "totalInitialBudget": 9790 - }, - { - "id": 6869525, - "name": " JORNADA TÉCNICA SOBRE LA NORMA ISO 22320 SOBRE GESTIÓN DE EMERGENCIAS", - "editionVersion": [{ - "id": 6869526, - "startDate": "2018-02-27T00:00:00", - "endDate": "2018-02-27T00:00:00", - "totalVacancies": 40, - "totalReserved": 20, - "totalNumberOfHours": 4, - "totalInitialBudget": 1500, - "coordinador": "Luis Sáenz de San Pedro Alba", - "state": "Anulada" - }], - "totalVacancies": 40, - "totalReserved": 20, - "totalNumberOfHours": 4, - "totalInitialBudget": 1500 - }, - { - "id": 6869528, - "name": "JORNADA TÉCNICA HISPANO-LUSA SOBRE METODOLOGÍA DE GESTIÓN OPERATIVA EN INCENDIOS FORESTALES. SITUACIONES TRANSFRONTERIZAS", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6869529, - "name": "JORNADA TÉCNICA SOBRE GESTIÓN OPERATIVA DE EMERGENCIAS", - "editionVersion": [{ - "id": 6869530, - "startDate": "2018-12-31T00:00:00", - "endDate": "2018-12-31T00:00:00", - "totalVacancies": 40, - "totalReserved": 40, - "totalNumberOfHours": 7, - "totalInitialBudget": 1500, - "coordinador": "Luis Sáenz de San Pedro Alba", - "state": "Anulada" - }], - "totalVacancies": 40, - "totalReserved": 40, - "totalNumberOfHours": 7, - "totalInitialBudget": 1500 - }, - { - "id": 6869532, - "name": "PLANIFICACIÓN Y GESTIÓN DE EMERGENCIAS SÍSMICAS", - "editionVersion": [{ - "id": 6869533, - "startDate": "2018-04-09T00:00:00", - "endDate": "2018-04-13T00:00:00", - "totalVacancies": 40, - "totalReserved": 0, - "totalNumberOfHours": 35, - "totalInitialBudget": 4000, - "coordinador": "Estrella Romero Cordón", - "state": "Cerrada" - }], - "totalVacancies": 40, - "totalReserved": 0, - "totalNumberOfHours": 35, - "totalInitialBudget": 4000 - }, - { - "id": 6980133, - "name": "GOM 0. CONCEPTOS GENERALES DE GESTIÓN OPERATIVA Y MANDO. ONLINE", - "editionVersion": [{ - "id": 6980135, - "startDate": "2018-12-31T00:00:00", - "endDate": "2018-12-31T00:00:00", - "totalVacancies": 40, - "totalReserved": 0, - "totalNumberOfHours": 40, - "totalInitialBudget": 3000, - "coordinador": "Pablo Calvo Barrios", - "state": "Anulada" - }], - "totalVacancies": 40, - "totalReserved": 0, - "totalNumberOfHours": 40, - "totalInitialBudget": 3000 - }, - { - "id": 6980137, - "name": "GOM I. GESTIÓN OPERATIVA Y MANDO JEFES DE GRUPO", - "editionVersion": [{ - "id": 6980139, - "startDate": "2018-12-31T00:00:00", - "endDate": "2018-12-31T00:00:00", - "totalVacancies": 12, - "totalReserved": 0, - "totalNumberOfHours": 32, - "totalInitialBudget": 5000, - "coordinador": "Pablo Calvo Barrios", - "state": "Anulada" - }, - { - "id": 6980140, - "startDate": "2018-12-31T00:00:00", - "endDate": "2018-12-31T00:00:00", - "totalVacancies": 12, - "totalReserved": 0, - "totalNumberOfHours": 32, - "totalInitialBudget": 5000, - "coordinador": "Pablo Calvo Barrios", - "state": "Anulada" - } - ], - "totalVacancies": 24, - "totalReserved": 0, - "totalNumberOfHours": 64, - "totalInitialBudget": 10000 - } - ], - "totalVacancies": 279, - "totalReserved": 115, - "totalNumberOfHours": 348, - "totalInitialBudget": 51390 - }, - { - "id": 6869591, - "name": "4.2 Rescate y Salvamento.", - "trainingActivityVersion": [{ - "id": 6869592, - "name": "ACTUACIÓN EN EMERGENCIAS PARA SERVICIOS ESPECIALES DE SEGURIDAD", - "editionVersion": [{ - "id": 6869593, - "startDate": "2018-04-06T00:00:00", - "endDate": "2018-04-13T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 32, - "totalInitialBudget": 5900, - "coordinador": "Raúl Mollar Martín", - "state": "Cerrada" - }], - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 32, - "totalInitialBudget": 5900 - }, - { - "id": 6869739, - "name": "COORDINACIÓN DE INTERVINIENTES ANTE UN ACCIDENTE DE TRÁFICO", - "editionVersion": [{ - "id": 6869740, - "startDate": "2018-03-02T00:00:00", - "endDate": "2018-03-03T00:00:00", - "totalVacancies": 25, - "totalReserved": 0, - "totalNumberOfHours": 15, - "totalInitialBudget": 2575, - "coordinador": "Máximo Javier López Miralles", - "state": "Cerrada" - }], - "totalVacancies": 25, - "totalReserved": 0, - "totalNumberOfHours": 15, - "totalInitialBudget": 2575 - }, - { - "id": 6869778, - "name": "CURSO AVANZADO DE EXTINCIÓN DE INCENDIOS, BÚSQUEDA Y RESCATE EN ESPACIOS CONFINADOS PARA CUERPOS DE SEGURIDAD EN SITUACIONES DE EMERGENCIA", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6869779, - "name": "CURSO BÁSICO DE PROTOCOLOS DE ACTUACIÓN EN EMERGENCIAS PARA SERVICIOS ESPECIALES DE SEGURIDAD", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6869780, - "name": "CURSO BASICO DE TECNICAS DE INTERVENCION Y SEGURIDAD EN ESPACIOS CONFINADOS Y EXTINCIÓN BASICA PARA CUERPOS DE SEGURIDAD EN SITUACIONES DE EMERGENCIA", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6869781, - "name": "CURSO DE APOYO EN LA BÚSQUEDA Y RESCATE DE PERSONAS EN EL MEDIO ACUÁTICO PARA VOLUNTARIOS DE PROTECCIÓN CIVIL", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6869782, - "name": "CURSO DE ESTRUCTURAS COLAPSADAS PARA INSTRUCTORES DE GRUPOS DE LA ANGPS-IRO. (Nivel II).", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6869783, - "name": "CURSO DE FORMACIÓN PARA VOLUNTARIOS DE PROTECCIÓN CIVIL. ACCIONES A TENER EN CUENTA ANTE UN ACCIDENTE DE TRÁFICO. (Nivel I)", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6869784, - "name": "CURSO DE GUÍAS CANINOS. ESPECIALISTA EN GRANDES ÁREAS. (Nivel III).", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6869785, - "name": "CURSO DE GUÍAS CANINOS. FIGURANTES - PREPARADORES DE PERROS DE RESCATE", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6869786, - "name": "CURSO DE PROTOCOLOS DE ACTUACIÓN EN EMERGENCIAS PARA SERVICIOS ESPECIALES DE SEGURIDAD", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6869787, - "name": "CURSO DE SALVAMENTO ACUÁTICO EN RÍOS Y PANTANOS PARA VOLUNTARIOS DE PROTECCIÓN CIVIL", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6869788, - "name": "CURSO DE TÉCNICAS DE SEGURIDAD E INTERVENCIÓN EN RESCATE Y SALVAMENTO EN ESTRUCTURAS COLAPSADAS. NIVEL BÁSICO. (Nivel I).", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6869789, - "name": "GUÍAS CANINOS. CAPACITACIÓN EN BÚSQUEDA Y SALVAMENTO CON PERROS DE RESCATE", - "editionVersion": [{ - "id": 6869790, - "startDate": "2018-03-05T00:00:00", - "endDate": "2018-03-10T00:00:00", - "totalVacancies": 20, - "totalReserved": 13, - "totalNumberOfHours": 56, - "totalInitialBudget": 10413, - "coordinador": "Susana Izquierdo Funcia", - "state": "Cerrada" - }], - "totalVacancies": 20, - "totalReserved": 13, - "totalNumberOfHours": 56, - "totalInitialBudget": 10413 - }, - { - "id": 6869873, - "name": "GUÍAS CANINOS. ESPECIALISTA EN DESLIZAMIENTOS DEL TERRENO", - "editionVersion": [{ - "id": 6869874, - "startDate": "2018-05-07T00:00:00", - "endDate": "2018-05-12T00:00:00", - "totalVacancies": 15, - "totalReserved": 10, - "totalNumberOfHours": 56, - "totalInitialBudget": 11614, - "coordinador": "Susana Izquierdo Funcia", - "state": "Cerrada" - }], - "totalVacancies": 15, - "totalReserved": 10, - "totalNumberOfHours": 56, - "totalInitialBudget": 11614 - }, - { - "id": 6869968, - "name": "GUÍAS CANINOS. ESPECIALISTA EN ESTRUCTURAS COLAPSADAS", - "editionVersion": [{ - "id": 6980454, - "startDate": "2018-04-09T00:00:00", - "endDate": "2018-04-14T00:00:00", - "totalVacancies": 15, - "totalReserved": 11, - "totalNumberOfHours": 56, - "totalInitialBudget": 12744, - "coordinador": "Mari Luz López Arbesú", - "state": "Cerrada" - }], - "totalVacancies": 15, - "totalReserved": 11, - "totalNumberOfHours": 56, - "totalInitialBudget": 12744 - }, - { - "id": 6870058, - "name": "GUÍAS CANINOS. TÉCNICAS BÁSICAS DE TRABAJO VERTICAL, DESCENSO Y AUTORRESCATE PARA GUÍAS DE INTERVENCIÓN CON PERROS", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6870134, - "name": "GUÍAS DE PERROS. PRIMEROS AUXILIOS VETERINARIOS AVANZADOS PARA PERROS DE RESCATE", - "editionVersion": [{ - "id": 7006642, - "startDate": "2018-11-30T00:00:00", - "endDate": "2018-12-02T00:00:00", - "totalVacancies": 20, - "totalReserved": 14, - "totalNumberOfHours": 20, - "totalInitialBudget": 6554, - "coordinador": "Mari Luz López Arbesú", - "state": "Anulada" - }], - "totalVacancies": 20, - "totalReserved": 14, - "totalNumberOfHours": 20, - "totalInitialBudget": 6554 - }, - { - "id": 6870257, - "name": "GUÍAS DE PERROS. PRIMEROS AUXILIOS VETERINARIOS BÁSICOS PARA PERROS DE RESCATE", - "editionVersion": [{ - "id": 6980448, - "startDate": "2018-11-24T00:00:00", - "endDate": "2018-12-02T00:00:00", - "totalVacancies": 20, - "totalReserved": 0, - "totalNumberOfHours": 30, - "totalInitialBudget": 7400, - "coordinador": "Mari Luz López Arbesú", - "state": "Anulada" - }, - { - "id": 6870258, - "startDate": "2018-06-09T00:00:00", - "endDate": "2018-06-17T00:00:00", - "totalVacancies": 20, - "totalReserved": 16, - "totalNumberOfHours": 30, - "totalInitialBudget": 7400, - "coordinador": "Mari Luz López Arbesú", - "state": "Cerrada" - } - ], - "totalVacancies": 40, - "totalReserved": 16, - "totalNumberOfHours": 60, - "totalInitialBudget": 14800 - }, - { - "id": 6870330, - "name": "ORIENTACIÓN, MOVILIDAD Y RESCATE EN CONDICIONES DE BAJA O NULA VISIBILIDAD", - "editionVersion": [{ - "id": 6870331, - "startDate": "2018-11-26T00:00:00", - "endDate": "2018-11-30T00:00:00", - "totalVacancies": 20, - "totalReserved": 0, - "totalNumberOfHours": 35, - "totalInitialBudget": 7185, - "coordinador": "Jesús Mirón Nieto", - "state": "Anulada" - }], - "totalVacancies": 20, - "totalReserved": 0, - "totalNumberOfHours": 35, - "totalInitialBudget": 7185 - }, - { - "id": 6870363, - "name": "SALVAMENTO ACUÁTICO PARA VOLUNTARIOS DE PROTECCIÓN CIVIL", - "editionVersion": [{ - "id": 6870364, - "startDate": "2018-04-26T00:00:00", - "endDate": "2018-04-29T00:00:00", - "totalVacancies": 30, - "totalReserved": 0, - "totalNumberOfHours": 30, - "totalInitialBudget": 3320, - "coordinador": "Arturo Fuente Pedrejón", - "state": "Cerrada" - }, - { - "id": 6870400, - "startDate": "2018-05-17T00:00:00", - "endDate": "2018-05-20T00:00:00", - "totalVacancies": 30, - "totalReserved": 0, - "totalNumberOfHours": 30, - "totalInitialBudget": 3320, - "coordinador": "Oliva García Trasancos", - "state": "Cerrada" - }, - { - "id": 6870424, - "startDate": "2018-06-07T00:00:00", - "endDate": "2018-06-10T00:00:00", - "totalVacancies": 30, - "totalReserved": 0, - "totalNumberOfHours": 30, - "totalInitialBudget": 3320, - "coordinador": "Ramón Pérez Barrientos", - "state": "Cerrada" - } - ], - "totalVacancies": 90, - "totalReserved": 0, - "totalNumberOfHours": 90, - "totalInitialBudget": 9960 - }, - { - "id": 6870454, - "name": "TÉCNICAS DE EXTINCIÓN DE INCENDIOS, BÚSQUEDA, ORIENTACIÓN Y RESCATE EN EDIFICIOS SUBTERRANEOS PARA CUERPOS DE SEGURIDAD EN OPERACIONES ESPECIALES. AVANZADO", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6870558, - "name": "VOLADURAS CONTROLADAS PARA RESCATE", - "editionVersion": [{ - "id": 6870559, - "startDate": "2018-10-23T00:00:00", - "endDate": "2018-10-25T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 20, - "totalInitialBudget": 5110, - "coordinador": "Sergio Tuñón Iglesias", - "state": "Cerrada" - }, - { - "id": 6870590, - "startDate": "2018-11-27T00:00:00", - "endDate": "2018-11-29T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 20, - "totalInitialBudget": 5110, - "coordinador": "Sergio Tuñón Iglesias", - "state": "Cerrada" - } - ], - "totalVacancies": 40, - "totalReserved": 40, - "totalNumberOfHours": 40, - "totalInitialBudget": 10220 - }, - { - "id": 6979913, - "name": "TÉCNICAS DE EXTINCIÓN Y SALVAMENTO EN ESPACIOS CONFINADOS EN EDIFICIOS SUBTERRÁNEOS PARA CUERPOS DE SEGURIDAD DE OPERACIONES ESPECIALES EN INFRAESTRUCTURAS CRÍTICAS", - "editionVersion": [{ - "id": 6979916, - "startDate": "2018-02-06T00:00:00", - "endDate": "2018-02-08T00:00:00", - "totalVacancies": 14, - "totalReserved": 14, - "totalNumberOfHours": 24, - "totalInitialBudget": 4940, - "coordinador": "Daniel Arroyo Fernández", - "state": "Cerrada" - }, - { - "id": 6979918, - "startDate": "2018-02-13T00:00:00", - "endDate": "2018-02-15T00:00:00", - "totalVacancies": 14, - "totalReserved": 14, - "totalNumberOfHours": 24, - "totalInitialBudget": 4940, - "coordinador": "Daniel Arroyo Fernández", - "state": "Cerrada" - } - ], - "totalVacancies": 28, - "totalReserved": 28, - "totalNumberOfHours": 48, - "totalInitialBudget": 9880 - } - ], - "totalVacancies": 333, - "totalReserved": 152, - "totalNumberOfHours": 508, - "totalInitialBudget": 101845 - }, - { - "id": 6870600, - "name": "4.3 Intervención de Lucha Contra el Siniestro.", - "trainingActivityVersion": [{ - "id": 6870601, - "name": "*JORNADA TÉCNICA ASELF Nº3 (PROVISIONAL)*", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6870602, - "name": "*JORNADA TÉCNICA ASELF Nº4 (PROVISIONAL)*", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6870603, - "name": "*JORNADA TÉCNICA ASELF Nº5 (PROVISIONAL)*", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6870604, - "name": "CAPACITACIÓN EN EL MANEJO DE EXTINTORES Y BIES", - "editionVersion": [{ - "id": 6870605, - "startDate": "2018-02-08T00:00:00", - "endDate": "2018-02-08T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 6, - "totalInitialBudget": 1472, - "coordinador": "Jesús Mirón Nieto", - "state": "Cerrada" - }, - { - "id": 6870618, - "startDate": "2018-02-13T00:00:00", - "endDate": "2018-02-13T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 6, - "totalInitialBudget": 1472, - "coordinador": "Ignacio Tébar del Río", - "state": "Cerrada" - }, - { - "id": 6870630, - "startDate": "2018-02-15T00:00:00", - "endDate": "2018-02-15T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 6, - "totalInitialBudget": 1472, - "coordinador": "Ignacio Tébar del Río", - "state": "Cerrada" - }, - { - "id": 6870643, - "startDate": "2018-02-20T00:00:00", - "endDate": "2018-02-20T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 6, - "totalInitialBudget": 1472, - "coordinador": "Ignacio Tébar del Río", - "state": "Cerrada" - }, - { - "id": 6870653, - "startDate": "2018-02-22T00:00:00", - "endDate": "2018-02-22T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 6, - "totalInitialBudget": 1472, - "coordinador": "Ignacio Tébar del Río", - "state": "Cerrada" - }, - { - "id": 6870660, - "startDate": "2018-02-27T00:00:00", - "endDate": "2018-02-27T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 6, - "totalInitialBudget": 1472, - "coordinador": "Ignacio Tébar del Río", - "state": "Cerrada" - }, - { - "id": 6870667, - "startDate": "2018-10-16T00:00:00", - "endDate": "2018-10-16T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 6, - "totalInitialBudget": 1472, - "coordinador": "Ignacio Tébar del Río", - "state": "Cerrada" - }, - { - "id": 6870683, - "startDate": "2018-10-30T00:00:00", - "endDate": "2018-10-30T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 6, - "totalInitialBudget": 1472, - "coordinador": "Ignacio Tébar del Río", - "state": "Cerrada" - }, - { - "id": 6870689, - "startDate": "2018-10-09T00:00:00", - "endDate": "2018-10-09T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 6, - "totalInitialBudget": 1472, - "coordinador": "Ignacio Tébar del Río", - "state": "Cerrada" - }, - { - "id": 6870696, - "startDate": "2018-04-21T00:00:00", - "endDate": "2018-04-21T00:00:00", - "totalVacancies": 20, - "totalReserved": 0, - "totalNumberOfHours": 6, - "totalInitialBudget": 1472, - "coordinador": "Ignacio Tébar del Río", - "state": "Cerrada" - }, - { - "id": 6870703, - "startDate": "2018-10-06T00:00:00", - "endDate": "2018-10-06T00:00:00", - "totalVacancies": 20, - "totalReserved": 0, - "totalNumberOfHours": 6, - "totalInitialBudget": 1472, - "coordinador": "Jesús Mirón Nieto", - "state": "Cerrada" - } - ], - "totalVacancies": 220, - "totalReserved": 180, - "totalNumberOfHours": 66, - "totalInitialBudget": 16192 - }, - { - "id": 6870738, - "name": "CAPACITACIÓN EN TRABAJOS EN INCENDIOS FORESTALES PARA VOLUNTARIOS DE PROTECCIÓN CIVIL", - "editionVersion": [{ - "id": 6870739, - "startDate": "2018-04-06T00:00:00", - "endDate": "2018-04-08T00:00:00", - "totalVacancies": 25, - "totalReserved": 0, - "totalNumberOfHours": 20, - "totalInitialBudget": 2020, - "coordinador": "Máximo Javier López Miralles", - "state": "Cerrada" - }, - { - "id": 6870789, - "startDate": "2018-04-13T00:00:00", - "endDate": "2018-04-15T00:00:00", - "totalVacancies": 25, - "totalReserved": 0, - "totalNumberOfHours": 20, - "totalInitialBudget": 2020, - "coordinador": "Máximo Javier López Miralles", - "state": "Cerrada" - } - ], - "totalVacancies": 50, - "totalReserved": 0, - "totalNumberOfHours": 40, - "totalInitialBudget": 4040 - }, - { - "id": 6870837, - "name": "COORDINACIÓN DE INTERVINIENTES EN EMERGENCIAS EN EL TRANSPORTE DE MERCANCÍAS PELIGROSAS", - "editionVersion": [{ - "id": 6870838, - "startDate": "2018-06-26T00:00:00", - "endDate": "2018-06-28T00:00:00", - "totalVacancies": 20, - "totalReserved": 7, - "totalNumberOfHours": 24, - "totalInitialBudget": 5000, - "coordinador": "Yolanda Sanromán Francisco", - "state": "Cerrada" - }], - "totalVacancies": 20, - "totalReserved": 7, - "totalNumberOfHours": 24, - "totalInitialBudget": 5000 - }, - { - "id": 6870901, - "name": "COORDINACIÓN EN LA INTERVENCIÓN Y SEGURIDAD EN SITUACIONES DE EMERGENCIAS PARA PRIMEROS INTERVINIENTES", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6870940, - "name": "CURSO BÁSICO DE EMERGENCIAS NRBQ PARA FUERZAS Y CUERPOS DE SEGURIDAD Y FUERZAS ARMADAS. MÓDULO I", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6870941, - "name": "CURSO BÁSICO DE EMERGENCIAS NRBQ PARA FUERZAS Y CUERPOS DE SEGURIDAD Y FUERZAS ARMADAS. MÓDULO II", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6870942, - "name": "CURSO BÁSICO DE EMERGENCIAS NRBQ PARA FUERZAS Y CUERPOS DE SEGURIDAD. MÓDULO I", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6870943, - "name": "CURSO DE ACTUACIÓN DEL GRUPO DE SEGURIDAD Y ORDEN PÚBLICO EN EMERGENCIAS NUCLEARES", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6870944, - "name": "CURSO DE ACTUALIZACIÓN DEL PLAN DEL GRUPO DE COORDINACIÓN Y ASISTENCIA TÉCNICA", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6870945, - "name": "EMERGENCIAS NUCLEARES (PROTECCIÓN CIVIL, SEGURIDAD NUCLEAR Y PROTECCIÓN RADIOLÓGICA)", - "editionVersion": [{ - "id": 6980108, - "startDate": "2018-10-01T00:00:00", - "endDate": "2018-10-04T00:00:00", - "totalVacancies": 35, - "totalReserved": 0, - "totalNumberOfHours": 32, - "totalInitialBudget": 0, - "coordinador": "María Dolores Ortín Sonet", - "state": "Cerrada" - }], - "totalVacancies": 35, - "totalReserved": 0, - "totalNumberOfHours": 32, - "totalInitialBudget": 0 - }, - { - "id": 6870946, - "name": "CURSO DE COORDINACION ENTRE GRUPOS OPERATIVOS Y SUS PLANES( ELABORACION DE ALGORITMOS/FLUJOS DE ACTUACION) (PENBU)", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6870947, - "name": "CURSO DE FORMACIÓN DE ACTUANTES MUNICIPALES DEL PENVA", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6870948, - "name": "CURSO DE FORMACIÓN DE LOS GRUPOS OPERATIVOS DEL PENCA", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6870949, - "name": "CURSO DE OPERACIONES DE EXTINCIÓN DE INCENDIOS FORESTALES PARA PILOTOS DEL 43 GRUPO", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6870950, - "name": "CURSO DE TÉCNICAS DE ESPECIALIZACIÓN EN INTERVENCIÓN EN EMERGENCIAS CON RIESGO QUÍMICO (NRBQ Nivel II)", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6870951, - "name": "CURSO PARA SECRETARIOS DE AYUNTAMIENTOS Y TÉCNICOS MUNICIPALES DEL PENVA", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6870952, - "name": "EMERGENCIAS RADIOLÓGICAS", - "editionVersion": [{ - "id": 6870953, - "startDate": "2018-05-28T00:00:00", - "endDate": "2018-05-31T00:00:00", - "totalVacancies": 30, - "totalReserved": 4, - "totalNumberOfHours": 26, - "totalInitialBudget": 0, - "coordinador": "Vicent Guardia Almenar", - "state": "Cerrada" - }], - "totalVacancies": 30, - "totalReserved": 4, - "totalNumberOfHours": 26, - "totalInitialBudget": 0 - }, - { - "id": 6870994, - "name": "EMPLEO DE MÁQUINAS EMPUJADORAS EN EXTINCIÓN DE INCENDIOS FORESTALES", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6870995, - "name": "ESPECIALISTAS NRBQ NIVEL 3 PARA LA GUARDIA CIVIL", - "editionVersion": [{ - "id": 6870996, - "startDate": "2018-09-03T00:00:00", - "endDate": "2018-09-28T00:00:00", - "totalVacancies": 15, - "totalReserved": 15, - "totalNumberOfHours": 113, - "totalInitialBudget": 16780, - "coordinador": "Valeriano Ortega Miravalles", - "state": "Cerrada" - }], - "totalVacancies": 15, - "totalReserved": 15, - "totalNumberOfHours": 113, - "totalInitialBudget": 16780 - }, - { - "id": 6871229, - "name": "FORMACIÓN GENERAL PARA ACTUACIÓN EN EMERGENCIAS NUCLEARES ONLINE", - "editionVersion": [{ - "id": 6871230, - "startDate": "2018-04-09T00:00:00", - "endDate": "2018-06-30T00:00:00", - "totalVacancies": 180, - "totalReserved": 90, - "totalNumberOfHours": 60, - "totalInitialBudget": 3600, - "coordinador": "Isabel Vera Navascués", - "state": "Cerrada" - }], - "totalVacancies": 180, - "totalReserved": 90, - "totalNumberOfHours": 60, - "totalInitialBudget": 3600 - }, - { - "id": 6871456, - "name": "FORMACIÓN PARA PRIMEROS INTERVINIENTES EN LOS PLANES DE AUTOPROTECCIÓN", - "editionVersion": [{ - "id": 6871457, - "startDate": "2018-01-30T00:00:00", - "endDate": "2018-01-30T00:00:00", - "totalVacancies": 24, - "totalReserved": 24, - "totalNumberOfHours": 8, - "totalInitialBudget": 1640, - "coordinador": "Jesús Mirón Nieto", - "state": "Cerrada" - }, - { - "id": 6871464, - "startDate": "2018-02-01T00:00:00", - "endDate": "2018-02-01T00:00:00", - "totalVacancies": 24, - "totalReserved": 24, - "totalNumberOfHours": 8, - "totalInitialBudget": 1640, - "coordinador": "Jesús Mirón Nieto", - "state": "Cerrada" - }, - { - "id": 6871471, - "startDate": "2018-02-06T00:00:00", - "endDate": "2018-02-06T00:00:00", - "totalVacancies": 24, - "totalReserved": 24, - "totalNumberOfHours": 8, - "totalInitialBudget": 1640, - "coordinador": "Jesús Mirón Nieto", - "state": "Cerrada" - } - ], - "totalVacancies": 72, - "totalReserved": 72, - "totalNumberOfHours": 24, - "totalInitialBudget": 4920 - }, - { - "id": 6871478, - "name": "FORMACIÓN Y CAPACITACIÓN DE ACTUANTES DEL GRUPO SANITARIO DEL PENBU - PENSAN / PROCEDIMIENTOS / ACTUACIONES EN ECDS", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6871479, - "name": "INTERVENCIÓN OPERATIVA EN ACCIDENTES EN EL TRANSPORTE DE MMPP EN LA REGIÓN DE MURCIA", - "editionVersion": [{ - "id": 6871480, - "startDate": "2018-05-08T00:00:00", - "endDate": "2018-05-10T00:00:00", - "totalVacancies": 30, - "totalReserved": 25, - "totalNumberOfHours": 15, - "totalInitialBudget": 1515, - "coordinador": "Gabriel Lambertos Martínez", - "state": "Cerrada" - }], - "totalVacancies": 30, - "totalReserved": 25, - "totalNumberOfHours": 15, - "totalInitialBudget": 1515 - }, - { - "id": 6871501, - "name": "JORNADA DE ACTUACIÓN EN EMERGENCIAS NUCLEARES DEL GRUPO DE COORDINACIÓN Y ASISTENCIA TÉCNICA (PENCA)", - "editionVersion": [{ - "id": 6871502, - "startDate": "2018-12-31T00:00:00", - "endDate": "2018-12-31T00:00:00", - "totalVacancies": 50, - "totalReserved": 50, - "totalNumberOfHours": 5, - "totalInitialBudget": 378, - "coordinador": "María Milagros Vázquez Basquero", - "state": "Anulada" - }], - "totalVacancies": 50, - "totalReserved": 50, - "totalNumberOfHours": 5, - "totalInitialBudget": 378 - }, - { - "id": 6871513, - "name": "JORNADA DE ACTUACION EN EMERGENCIAS NUCLEARES DEL GRUPO DE SEGURIDAD CIUDADANA Y ORDEN PUBLICO (PENCA)", - "editionVersion": [{ - "id": 6871514, - "startDate": "2018-10-29T00:00:00", - "endDate": "2018-10-30T00:00:00", - "totalVacancies": 50, - "totalReserved": 50, - "totalNumberOfHours": 7, - "totalInitialBudget": 378, - "coordinador": "María Milagros Vázquez Basquero", - "state": "Cerrada" - }], - "totalVacancies": 50, - "totalReserved": 50, - "totalNumberOfHours": 7, - "totalInitialBudget": 378 - }, - { - "id": 6871532, - "name": "JORNADA DE ACTUACIÓN MUNICIPAL EN EMERGENCIA NUCLEAR (PAMEN) PARA MUNICIPIOS ZONA I (PENVA)", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6871543, - "name": "JORNADA DE ACTUACIÓN MUNICIPAL EN EMERGENCIAS NUCLEARES (PENGUA)", - "editionVersion": [{ - "id": 6871544, - "startDate": "2018-03-20T00:00:00", - "endDate": "2018-03-20T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 6, - "totalInitialBudget": 378, - "coordinador": "María Jesús Fuertes Menéndez", - "state": "Cerrada" - }, - { - "id": 6871546, - "startDate": "2018-02-19T00:00:00", - "endDate": "2018-02-19T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 6, - "totalInitialBudget": 378, - "coordinador": "María Jesús Fuertes Menéndez", - "state": "Cerrada" - }, - { - "id": 6871598, - "startDate": "2018-05-15T00:00:00", - "endDate": "2018-05-15T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 6, - "totalInitialBudget": 378, - "coordinador": "María Jesús Fuertes Menéndez", - "state": "Cerrada" - }, - { - "id": 6980008, - "startDate": "2018-03-27T00:00:00", - "endDate": "2018-03-27T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 6, - "totalInitialBudget": 378, - "coordinador": "María Jesús Fuertes Menéndez", - "state": "Cerrada" - }, - { - "id": 7799964, - "startDate": "2018-09-19T00:00:00", - "endDate": "2018-09-19T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 6, - "totalInitialBudget": 378, - "coordinador": "María Jesús Fuertes Menéndez", - "state": "Cerrada" - }, - { - "id": 7799966, - "startDate": "2018-07-03T00:00:00", - "endDate": "2018-07-03T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 6, - "totalInitialBudget": 378, - "coordinador": "María Jesús Fuertes Menéndez", - "state": "Cerrada" - }, - { - "id": 7870079, - "startDate": "2018-06-28T00:00:00", - "endDate": "2018-06-28T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 6, - "totalInitialBudget": 378, - "coordinador": "María Jesús Fuertes Menéndez", - "state": "Cerrada" - }, - { - "id": 8006888, - "startDate": "2018-09-27T00:00:00", - "endDate": "2018-09-27T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 6, - "totalInitialBudget": 378, - "coordinador": "María Jesús Fuertes Menéndez", - "state": "Cerrada" - }, - { - "id": 8007099, - "startDate": "2018-11-28T00:00:00", - "endDate": "2018-11-28T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 6, - "totalInitialBudget": 0, - "coordinador": "María Jesús Fuertes Menéndez", - "state": "Programación" - } - ], - "totalVacancies": 180, - "totalReserved": 180, - "totalNumberOfHours": 54, - "totalInitialBudget": 3024 - }, - { - "id": 6871600, - "name": "JORNADA DE ACTUACIÓN MUNICIPAL EN EMERGENCIAS NUCLEARES PARA LOS MUNICIPIOS SEDE ECD (PENCA)", - "editionVersion": [{ - "id": 6871601, - "startDate": "2018-12-31T00:00:00", - "endDate": "2018-12-31T00:00:00", - "totalVacancies": 50, - "totalReserved": 50, - "totalNumberOfHours": 5, - "totalInitialBudget": 378, - "coordinador": "María Milagros Vázquez Basquero", - "state": "Anulada" - }, - { - "id": 6871603, - "startDate": "2018-12-31T00:00:00", - "endDate": "2018-12-31T00:00:00", - "totalVacancies": 50, - "totalReserved": 50, - "totalNumberOfHours": 5, - "totalInitialBudget": 378, - "coordinador": "María Milagros Vázquez Basquero", - "state": "Anulada" - }, - { - "id": 6871605, - "startDate": "2018-12-31T00:00:00", - "endDate": "2018-12-31T00:00:00", - "totalVacancies": 50, - "totalReserved": 50, - "totalNumberOfHours": 5, - "totalInitialBudget": 378, - "coordinador": "María Milagros Vázquez Basquero", - "state": "Anulada" - } - ], - "totalVacancies": 150, - "totalReserved": 150, - "totalNumberOfHours": 15, - "totalInitialBudget": 1134 - }, - { - "id": 6871607, - "name": "JORNADA DE ACTUACIÓN MUNICIPAL EN EMERGENCIAS NUCLEARES PARA LOS MUNICIPIOS ZONA I (PENCA)", - "editionVersion": [{ - "id": 6871608, - "startDate": "2018-12-31T00:00:00", - "endDate": "2018-12-31T00:00:00", - "totalVacancies": 25, - "totalReserved": 25, - "totalNumberOfHours": 5, - "totalInitialBudget": 378, - "coordinador": "María Milagros Vázquez Basquero", - "state": "Anulada" - }, - { - "id": 6871610, - "startDate": "2018-12-31T00:00:00", - "endDate": "2018-12-31T00:00:00", - "totalVacancies": 25, - "totalReserved": 25, - "totalNumberOfHours": 5, - "totalInitialBudget": 378, - "coordinador": "María Milagros Vázquez Basquero", - "state": "Anulada" - } - ], - "totalVacancies": 50, - "totalReserved": 50, - "totalNumberOfHours": 10, - "totalInitialBudget": 756 - }, - { - "id": 6871612, - "name": "JORNADA DE FORMACIÓN DE ACTUACIÓN EN EMERGENCIAS NUCLEARES, CON ESPECIAL INCIDENCIA EN AUTOPROTECCIÓN Y EN EL USO DE DOSIMETRÍA PARA ACTUANTES DEL GRUPO GPOL (PENBU)", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6871628, - "name": "JORNADA DE FORMACIÓN DE ACTUANTES MUNICIPALES DEL PENBU", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6871629, - "name": "JORNADA DE FORMACIÓN DE ACTUANTES MUNICIPALES DEL PENCA", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6871630, - "name": "JORNADA DE FORMACIÓN DE ACTUANTES MUNICIPALES DEL PENGUA", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6871631, - "name": "JORNADA DE FORMACIÓN DE ACTUANTES MUNICIPALES DEL PENTA. (Nivel II).", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6871632, - "name": "JORNADA DE FORMACIÓN DE ACTUANTES MUNICIPALES DEL PENVA", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6871633, - "name": "JORNADA DE FORMACIÓN DEL GRUPO DE APOYO LOGÍSTICO", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6871634, - "name": "JORNADA DE FORMACIÓN PARA MANDOS DE GRUPOS OPERATIVOS DEL PENTA. (Nivel II).", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6871635, - "name": "JORNADA DE FORMACIÓN SOBRE ACTUACIONES EN EL CECOP DEL PENBU, CECOPI DE LAS CCAA Y GABINETE TELEGRÁFICO (PENBU)", - "editionVersion": [{ - "id": 6871636, - "startDate": "2018-03-27T00:00:00", - "endDate": "2018-03-27T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 5, - "totalInitialBudget": 378, - "coordinador": "Javier Basconcillos Arce", - "state": "Cerrada" - }], - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 5, - "totalInitialBudget": 378 - }, - { - "id": 6871651, - "name": "JORNADA PARA ACTUANTES DEL GRUPO DE COORDINACIÓN Y ASISTENCIA TÉCNICA DEL PENBU. (Nivel III).", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6871652, - "name": "JORNADA PARA ACTUANTES EN CONTROLES DE ACCESO DEL PENBU", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6871653, - "name": "JORNADA PARA AUTORIDADES LOCALES DE LOS AYUNTAMIENTOS ZONA I DEL PENBU", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6871654, - "name": "JORNADA PARA AUTORIDADES LOCALES Y ACTUANTES DEL PAMEN. (Nivel III).", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6871655, - "name": "JORNADA PRÁCTICA DE FORMACIÓN PARA PERSONAL GRUPOS DE SEGURIDAD CIUDADANA Y ORDEN PUBLICO SOBRE PROCEDIMIENTO DE CONTROL DE ACCESOS (PENBU)", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6871656, - "name": "JORNADA PRÁCTICA PARA ACTUANTES DEL PENBU: CECOP, CECOPI Y CONTROLES DE ACCESO. (Nivel II).", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6871657, - "name": "JORNADA SOBRE APLICACIONES DE MEDIDAS DE PROTECCIÓN A LA POBLACIÓN EN EL ÁMBITO DEL PENBU. PROCEDIMIENTOS OPERATIVOS EN LAS ACTUACIONES EN EMERGENCIA (PENBU)", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6871699, - "name": "JORNADA TÉCNICA PARA LA APLICACIÓN DEL CONFINAMIENTO Y ABASTECIMIENTO A LA POBLACIÓN EN LOS NÚCLEOS DE POBLACIÓN ZONA I (PENBU)", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6871720, - "name": "JORNADA TÉCNICA SOBRE PLANES MUNICIPALES DE EMERGENCIA NUCLEAR PARA AUTORIDADES MUNICIPALES DE ZONA I DE LOS PEN", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6871721, - "name": "JORNADA TEÓRICO-PRÁCTICA SOBRE ACTIVACIÓN ECD PARA GRUPO RADIOLÓGICO. (Nivel III).", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6871722, - "name": "JORNADA TEÓRICO-PRÁCTICA SOBRE FORMACIÓN GENERAL EN ACTUACIÓN EN EMERGENCIAS NUCLEARES", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6871723, - "name": "JORNADA TEÓRICO-PRÁCTICA SOBRE FORMACIÓN GENERAL EN ACTUACIÓN EN EMERGENCIAS NUCLEARES (PENBU)", - "editionVersion": [{ - "id": 6871724, - "startDate": "2018-06-20T00:00:00", - "endDate": "2018-06-20T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 5, - "totalInitialBudget": 378, - "coordinador": "Javier Basconcillos Arce", - "state": "Cerrada" - }, - { - "id": 6976685, - "startDate": "2018-12-31T00:00:00", - "endDate": "2018-12-31T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 5, - "totalInitialBudget": 378, - "coordinador": " ", - "state": "Anulada" - } - ], - "totalVacancies": 40, - "totalReserved": 40, - "totalNumberOfHours": 10, - "totalInitialBudget": 756 - }, - { - "id": 6871735, - "name": "JORNADA TEÓRICO-PRÁCTICA SOBRE FORMACIÓN GENERAL EN ACTUACIÓN EN EMERGENCIAS NUCLEARES (PENCA)", - "editionVersion": [{ - "id": 7904932, - "startDate": "2018-06-20T00:00:00", - "endDate": "2018-06-20T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 5, - "totalInitialBudget": 378, - "coordinador": "María Milagros Vázquez Basquero", - "state": "Cerrada" - }, - { - "id": 6871736, - "startDate": "2018-06-05T00:00:00", - "endDate": "2018-06-05T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 5, - "totalInitialBudget": 378, - "coordinador": "María Milagros Vázquez Basquero", - "state": "Cerrada" - } - ], - "totalVacancies": 40, - "totalReserved": 40, - "totalNumberOfHours": 10, - "totalInitialBudget": 756 - }, - { - "id": 6871747, - "name": "JORNADA TEÓRICO-PRÁCTICA SOBRE FORMACIÓN GENERAL EN ACTUACIÓN EN EMERGENCIAS NUCLEARES (PENTA)", - "editionVersion": [{ - "id": 8007658, - "startDate": "2018-10-03T00:00:00", - "endDate": "2018-10-03T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 5, - "totalInitialBudget": 378, - "coordinador": "Fabiola Ugalde Andrés", - "state": "Cerrada" - }, - { - "id": 8007660, - "startDate": "2018-10-05T00:00:00", - "endDate": "2018-10-05T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 5, - "totalInitialBudget": 378, - "coordinador": "Fabiola Ugalde Andrés", - "state": "Cerrada" - }, - { - "id": 7836528, - "startDate": "2018-05-17T00:00:00", - "endDate": "2018-05-17T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 5, - "totalInitialBudget": 378, - "coordinador": "Fernando Piédrola Nadal", - "state": "Cerrada" - } - ], - "totalVacancies": 60, - "totalReserved": 60, - "totalNumberOfHours": 15, - "totalInitialBudget": 1134 - }, - { - "id": 6871750, - "name": "JORNADA TEÓRICO-PRÁCTICA SOBRE FORMACIÓN GENERAL EN ACTUACIÓN EN EMERGENCIAS NUCLEARES (PENGUA)", - "editionVersion": [{ - "id": 6871751, - "startDate": "2018-11-12T00:00:00", - "endDate": "2018-11-12T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 7, - "totalInitialBudget": 378, - "coordinador": "María Jesús Fuertes Menéndez", - "state": "Programación" - }], - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 7, - "totalInitialBudget": 378 - }, - { - "id": 6871788, - "name": "JORNADA TEÓRICO-PRÁCTICA SOBRE FORMACIÓN GENERAL EN ACTUACIÓN EN EMERGENCIAS NUCLEARES (PENVA)", - "editionVersion": [{ - "id": 6871789, - "startDate": "2018-10-17T00:00:00", - "endDate": "2018-10-17T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 5, - "totalInitialBudget": 378, - "coordinador": "María Isabel Montón Abarca", - "state": "Cerrada" - }], - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 5, - "totalInitialBudget": 378 - }, - { - "id": 6871799, - "name": "JORNADAS DE FOMACIÓN SOBRE EL PENBU Y PARA LA APLICACIÓN DE LA EVACUACIÓN DE CENTROS ESCOLARES EN EMERGENCIA NUCLEAR (PENBU)", - "editionVersion": [{ - "id": 6871800, - "startDate": "2018-09-19T00:00:00", - "endDate": "2018-09-19T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 5, - "totalInitialBudget": 378, - "coordinador": "Javier Basconcillos Arce", - "state": "Cerrada" - }], - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 5, - "totalInitialBudget": 378 - }, - { - "id": 6871815, - "name": "JORNDA DE FORMACION PARA PERSONAL GRUPOS DE SEGURIDAD CIUDADANA Y ORDEN PUBLICO SOBRE PROCEDIMIENTO DE CONTROL DE ACCESOS (PENBU)", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6871816, - "name": "OPERACIONES DE AUTOPROTECCIÓN E INTERVENCIÓN FRENTE AL FUEGO EN LOS EDIFICIOS", - "editionVersion": [{ - "id": 6871817, - "startDate": "2018-03-05T00:00:00", - "endDate": "2018-03-09T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 35, - "totalInitialBudget": 6358, - "coordinador": "Jesús Mirón Nieto", - "state": "Cerrada" - }, - { - "id": 6871842, - "startDate": "2018-03-19T00:00:00", - "endDate": "2018-03-23T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 35, - "totalInitialBudget": 6358, - "coordinador": "Ignacio Tébar del Río", - "state": "Cerrada" - }, - { - "id": 6871881, - "startDate": "2018-05-21T00:00:00", - "endDate": "2018-05-25T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 35, - "totalInitialBudget": 6358, - "coordinador": "Jesús Mirón Nieto", - "state": "Cerrada" - }, - { - "id": 6871925, - "startDate": "2018-11-12T00:00:00", - "endDate": "2018-11-16T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 35, - "totalInitialBudget": 6358, - "coordinador": "Ignacio Tébar del Río", - "state": "Cerrada" - } - ], - "totalVacancies": 80, - "totalReserved": 80, - "totalNumberOfHours": 140, - "totalInitialBudget": 25432 - }, - { - "id": 6871980, - "name": "OPERACIONES Y DEFENSA CONTRA INCENDIOS FORESTALES EN LA INTERFAZ URBANO-FORESTAL", - "editionVersion": [{ - "id": 6871981, - "startDate": "2018-04-23T00:00:00", - "endDate": "2018-04-27T00:00:00", - "totalVacancies": 20, - "totalReserved": 0, - "totalNumberOfHours": 30, - "totalInitialBudget": 6500, - "coordinador": "Federico Grillo Delgado", - "state": "Cerrada" - }, - { - "id": 6972372, - "startDate": "2018-11-26T00:00:00", - "endDate": "2018-11-30T00:00:00", - "totalVacancies": 20, - "totalReserved": 0, - "totalNumberOfHours": 30, - "totalInitialBudget": 6500, - "coordinador": "Ferrán Dalmau Rovira", - "state": "Cerrada" - } - ], - "totalVacancies": 40, - "totalReserved": 0, - "totalNumberOfHours": 60, - "totalInitialBudget": 13000 - }, - { - "id": 6872045, - "name": "TALLER SOBRE ACTUALIZACIÓN PARA MIEMBROS DE LAS ORGANIZACIONES ADSCRITAS A LOS PLANES EXTERIORES DE EMERGENCIA NUCLEAR", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6872046, - "name": "TÉCNICAS BÁSICAS DE EXTINCIÓN DE INCENDIOS CON MEDIOS PORTÁTILES", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6872093, - "name": "TÉCNICAS DE ESPECIALIZACIÓN EN INTERVENCIÓN EN EMERGENCIAS CON RIESGO BIOLÓGICO", - "editionVersion": [{ - "id": 6872094, - "startDate": "2018-11-06T00:00:00", - "endDate": "2018-11-08T00:00:00", - "totalVacancies": 24, - "totalReserved": 24, - "totalNumberOfHours": 21, - "totalInitialBudget": 6761, - "coordinador": "Enrique Martínez Pavón", - "state": "Cerrada" - }], - "totalVacancies": 24, - "totalReserved": 24, - "totalNumberOfHours": 21, - "totalInitialBudget": 6761 - }, - { - "id": 6872118, - "name": "TÉCNICAS DE INTERVENCIÓN EN ACCIDENTES CON MERCANCÍAS PELIGROSAS. AVANZADO", - "editionVersion": [{ - "id": 6872119, - "startDate": "2018-06-04T00:00:00", - "endDate": "2018-06-08T00:00:00", - "totalVacancies": 22, - "totalReserved": 1, - "totalNumberOfHours": 35, - "totalInitialBudget": 11600, - "coordinador": "Yolanda Sanromán Francisco", - "state": "Cerrada" - }], - "totalVacancies": 22, - "totalReserved": 1, - "totalNumberOfHours": 35, - "totalInitialBudget": 11600 - }, - { - "id": 6872306, - "name": "TÉCNICAS DE INTERVENCIÓN EN ACCIDENTES CON MERCANCÍAS PELIGROSAS. BÁSICO", - "editionVersion": [{ - "id": 6872307, - "startDate": "2018-05-07T00:00:00", - "endDate": "2018-05-11T00:00:00", - "totalVacancies": 21, - "totalReserved": 3, - "totalNumberOfHours": 35, - "totalInitialBudget": 11200, - "coordinador": "Yolanda Sanromán Francisco", - "state": "Cerrada" - }, - { - "id": 6872375, - "startDate": "2018-10-01T00:00:00", - "endDate": "2018-10-05T00:00:00", - "totalVacancies": 20, - "totalReserved": 0, - "totalNumberOfHours": 35, - "totalInitialBudget": 11200, - "coordinador": "Yolanda Sanromán Francisco", - "state": "Cerrada" - } - ], - "totalVacancies": 41, - "totalReserved": 3, - "totalNumberOfHours": 70, - "totalInitialBudget": 22400 - }, - { - "id": 6872455, - "name": "TÉCNICAS DE SEGURIDAD E INTERVENCIÓN EN RESCATE Y SALVAMENTO EN ESTRUCTURAS COLAPSADAS EN SITUACIONES DE EMERGENCIA PARA EQUIPOS MULTIDISCIPLINARES", - "editionVersion": [{ - "id": 6872456, - "startDate": "2018-02-26T00:00:00", - "endDate": "2018-03-02T00:00:00", - "totalVacancies": 22, - "totalReserved": 11, - "totalNumberOfHours": 40, - "totalInitialBudget": 8950, - "coordinador": "Daniel Arroyo Fernández", - "state": "Cerrada" - }, - { - "id": 6872531, - "startDate": "2018-03-12T00:00:00", - "endDate": "2018-03-16T00:00:00", - "totalVacancies": 22, - "totalReserved": 5, - "totalNumberOfHours": 40, - "totalInitialBudget": 8950, - "coordinador": "Daniel Arroyo Fernández", - "state": "Cerrada" - } - ], - "totalVacancies": 44, - "totalReserved": 16, - "totalNumberOfHours": 80, - "totalInitialBudget": 17900 - }, - { - "id": 6872707, - "name": "TEÓRICO-PRÁCTICO PARA ACTUANTES DEL GRUPO DE SEGURIDAD CIUDADANA Y ORDEN PÚBLICO (PENVA)", - "editionVersion": [{ - "id": 6872708, - "startDate": "2018-12-11T00:00:00", - "endDate": "2018-12-12T00:00:00", - "totalVacancies": 30, - "totalReserved": 30, - "totalNumberOfHours": 10, - "totalInitialBudget": 378, - "coordinador": "María Isabel Montón Abarca", - "state": "Programación" - }, - { - "id": 6872724, - "startDate": "2018-09-25T00:00:00", - "endDate": "2018-09-26T00:00:00", - "totalVacancies": 30, - "totalReserved": 30, - "totalNumberOfHours": 10, - "totalInitialBudget": 378, - "coordinador": "María Isabel Montón Abarca", - "state": "Cerrada" - } - ], - "totalVacancies": 60, - "totalReserved": 60, - "totalNumberOfHours": 20, - "totalInitialBudget": 756 - }, - { - "id": 6872739, - "name": "USO DEL FUEGO PRESCRITO PARA LA PREVENCIÓN Y EXTINCIÓN DE INCENDIOS FORESTALES", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6872740, - "name": "USO DEL FUEGO PRESCRITO PARA LA PREVENCIÓN Y EXTINCIÓN DE INCENDIOS FORESTALES. MÓDULO I", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6872827, - "name": "USO DEL FUEGO PRESCRITO PARA LA PREVENCIÓN Y EXTINCIÓN DE INCENDIOS FORESTALES. MÓDULO II", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6980185, - "name": "JORNADA TÉCNICA SOBRE RESPUESTA INMEDIATA A LAS EMERGENCIAS PRODUCIDAS POR RIESGOS TECNOLÓGICOS. NUEVOS CAMPOS DE ESTUDIO Y DESARROLLO", - "editionVersion": [{ - "id": 6980190, - "startDate": "2018-01-23T00:00:00", - "endDate": "2018-01-23T00:00:00", - "totalVacancies": 80, - "totalReserved": 0, - "totalNumberOfHours": 5, - "totalInitialBudget": 1000, - "coordinador": "Valeriano Ortega Miravalles", - "state": "Cerrada" - }], - "totalVacancies": 80, - "totalReserved": 0, - "totalNumberOfHours": 5, - "totalInitialBudget": 1000 - }, - { - "id": 6980192, - "name": "V WORKSHOP SOBRE RESPUESTA INMEDIATA A LAS EMERGENCIAS PRODUCIDAS POR RIESGOS TECNOLÓGICOS", - "editionVersion": [{ - "id": 6980194, - "startDate": "2018-01-23T00:00:00", - "endDate": "2018-01-25T00:00:00", - "totalVacancies": 50, - "totalReserved": 0, - "totalNumberOfHours": 13, - "totalInitialBudget": 250, - "coordinador": "Valeriano Ortega Miravalles", - "state": "Cerrada" - }], - "totalVacancies": 50, - "totalReserved": 0, - "totalNumberOfHours": 13, - "totalInitialBudget": 250 - }, - { - "id": 8007089, - "name": "FORMACIÓN SOBRE EMERGENCIAS NUCLEARES PARA MUNICIPIOS ZONA I (PENVA)", - "editionVersion": [{ - "id": 8007091, - "startDate": "2018-11-08T00:00:00", - "endDate": "2018-11-12T00:00:00", - "totalVacancies": 30, - "totalReserved": 30, - "totalNumberOfHours": 8, - "totalInitialBudget": 430, - "coordinador": "María Isabel Montón Abarca", - "state": "Cerrada" - }], - "totalVacancies": 30, - "totalReserved": 30, - "totalNumberOfHours": 8, - "totalInitialBudget": 430 - }, - { - "id": 8007094, - "name": "TEÓRICO-PRÁCTICO SOBRE ACTUACIÓN MUNICIPAL EN EMERGENCIA NUCLEAR EN MUNICIPIOS ZONA I (PENVA)", - "editionVersion": [{ - "id": 8007096, - "startDate": "2018-11-20T00:00:00", - "endDate": "2018-11-22T00:00:00", - "totalVacancies": 30, - "totalReserved": 30, - "totalNumberOfHours": 8, - "totalInitialBudget": 430, - "coordinador": "María Isabel Montón Abarca", - "state": "Cerrada" - }], - "totalVacancies": 30, - "totalReserved": 30, - "totalNumberOfHours": 8, - "totalInitialBudget": 430 - }, - { - "id": 8007664, - "name": "JORNADAS DE FORMACIÓN DE ACTUANTES DE LOS PAMEN (PENTA)", - "editionVersion": [{ - "id": 8007666, - "startDate": "2018-10-24T00:00:00", - "endDate": "2018-10-24T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 5, - "totalInitialBudget": 378, - "coordinador": "Fabiola Ugalde Andrés", - "state": "Cerrada" - }, - { - "id": 8007668, - "startDate": "2018-11-29T00:00:00", - "endDate": "2018-11-29T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 5, - "totalInitialBudget": 378, - "coordinador": "Fabiola Ugalde Andrés", - "state": "Anulada" - } - ], - "totalVacancies": 40, - "totalReserved": 40, - "totalNumberOfHours": 10, - "totalInitialBudget": 756 - }, - { - "id": 8007672, - "name": "JORNADA DE FORMACIÓN DE ACTUANTES DE APOYO AL GRUPO DE COORDINACIÓN Y ASISTENCIA TÉCNICA EN EL CECOP (PENTA)", - "editionVersion": [{ - "id": 8007674, - "startDate": "2018-11-27T00:00:00", - "endDate": "2018-11-27T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 5, - "totalInitialBudget": 378, - "coordinador": "Fabiola Ugalde Andrés", - "state": "Anulada" - }], - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 5, - "totalInitialBudget": 378 - } - ], - "totalVacancies": 1913, - "totalReserved": 1397, - "totalNumberOfHours": 1023, - "totalInitialBudget": 162968 - }, - { - "id": 6872884, - "name": "4.4 Apoyo Logístico y de Seguridad.", - "trainingActivityVersion": [{ - "id": 6872885, - "name": "CURSO DE APOYO LOGÍSTICO EN EMERGENCIAS", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6872886, - "name": "CURSO DE EVACUACIÓN, DISPERSIÓN Y ALBERGUE EN CATÁSTROFES", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6872887, - "name": "GESTIÓN Y CONTROL DEL SISTEMA DE APOYO LOGÍSTICO EN EMERGENCIAS", - "editionVersion": [{ - "id": 6872888, - "startDate": "2018-06-04T00:00:00", - "endDate": "2018-06-07T00:00:00", - "totalVacancies": 25, - "totalReserved": 1, - "totalNumberOfHours": 25, - "totalInitialBudget": 3125, - "coordinador": "Francisco García Riesco", - "state": "Anulada" - }], - "totalVacancies": 25, - "totalReserved": 1, - "totalNumberOfHours": 25, - "totalInitialBudget": 3125 - }, - { - "id": 6872942, - "name": "PLANIFICACIÓN LOGÍSTICA EN EMERGENCIAS EN EL TERRITORIO", - "editionVersion": [{ - "id": 6872943, - "startDate": "2018-10-01T00:00:00", - "endDate": "2018-10-04T00:00:00", - "totalVacancies": 25, - "totalReserved": 4, - "totalNumberOfHours": 25, - "totalInitialBudget": 3125, - "coordinador": "Francisco García Riesco", - "state": "Cerrada" - }], - "totalVacancies": 25, - "totalReserved": 4, - "totalNumberOfHours": 25, - "totalInitialBudget": 3125 - }, - { - "id": 6873017, - "name": "SEMINARIO DE ACTUACIÓN POLICIAL ANTE CATÁSTROFES", - "editionVersion": [{ - "id": 6873018, - "startDate": "2018-12-31T00:00:00", - "endDate": "2018-12-31T00:00:00", - "totalVacancies": 650, - "totalReserved": 650, - "totalNumberOfHours": 40, - "totalInitialBudget": 6000, - "coordinador": "Belén García Granjo", - "state": "Anulada" - }], - "totalVacancies": 650, - "totalReserved": 650, - "totalNumberOfHours": 40, - "totalInitialBudget": 6000 - }, - { - "id": 6873326, - "name": "X SEMINARIO DE ACTUACIÓN POLICIAL ANTE CATÁSTROFES.", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6873327, - "name": "XI SEMINARIO DE ACTUACIÓN POLICIAL ANTE CATÁSTROFES.", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6873328, - "name": "XII SEMINARIO DE ACTUACIÓN POLICIAL ANTE CASTÁSTROFES", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 8007102, - "name": "JORNADA FORMATIVA PARA ACTUANTES DEL GRUPO DE APOYO LOGÍSTICO (PENGUA)", - "editionVersion": [{ - "id": 8007104, - "startDate": "2018-10-03T00:00:00", - "endDate": "2018-10-03T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 6, - "totalInitialBudget": 378, - "coordinador": "María Jesús Fuertes Menéndez", - "state": "Cerrada" - }], - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 6, - "totalInitialBudget": 378 - } - ], - "totalVacancies": 720, - "totalReserved": 675, - "totalNumberOfHours": 96, - "totalInitialBudget": 12628 - }, - { - "id": 6873329, - "name": "4.5 Asistencia Sanitaria en Emergencias.", - "trainingActivityVersion": [{ - "id": 6873330, - "name": "ACTUACIÓN SANITARIA EN EMERGENCIAS NUCLEARES ONLINE", - "editionVersion": [{ - "id": 6873331, - "startDate": "2018-10-01T00:00:00", - "endDate": "2018-11-25T00:00:00", - "totalVacancies": 60, - "totalReserved": 30, - "totalNumberOfHours": 40, - "totalInitialBudget": 2250, - "coordinador": "Isabel Vera Navascués", - "state": "Impartición" - }], - "totalVacancies": 60, - "totalReserved": 30, - "totalNumberOfHours": 40, - "totalInitialBudget": 2250 - }, - { - "id": 6873449, - "name": "CURSO DE ASISTENCIA SANITARIA EN CATÁTROFES. TRIAGE. (Nivel I).", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6873450, - "name": "CURSO DE FORMACION DE ACTUANTES DEL GRUPO SANITARIO ECD (PENBU)", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6873451, - "name": "CURSO DE RECICLAJE DE REANIMACIÓN CARDIOPULMONAR Y DESA (Turno de tarde)", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6873452, - "name": "CURSO DE VENDAJES E INMOVILIZACIONES EN CASO DE EMERGENCIA. (Nivel I).", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6873453, - "name": "CURSO SANITARIO PARA VOLUNTARIOS DE PROTECCION CIVIL", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6873454, - "name": "JORNADA TÉCNICA SOBRE CUESTIONES SANITARIAS DE LOS PLANES DE EMERGENCIA NUCLEAR", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6873455, - "name": "JORNADA TEÓRICO-PRÁCTICA SOBRE ACTUACIÓN SANITARIA EN EMERGENCIAS NUCLEARES", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6873456, - "name": "JORNADA TEÓRICO-PRÁCTICA SOBRE ACTUACIÓN SANITARIA EN EMERGENCIAS NUCLEARES (PENBU)", - "editionVersion": [{ - "id": 6873457, - "startDate": "2018-10-17T00:00:00", - "endDate": "2018-10-17T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 5, - "totalInitialBudget": 378, - "coordinador": "Javier Basconcillos Arce", - "state": "Cerrada" - }], - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 5, - "totalInitialBudget": 378 - }, - { - "id": 6873485, - "name": "JORNADA TEÓRICO-PRÁCTICA SOBRE ACTUACIÓN SANITARIA EN EMERGENCIAS NUCLEARES (PENCA)", - "editionVersion": [{ - "id": 6873486, - "startDate": "2018-12-31T00:00:00", - "endDate": "2018-12-31T00:00:00", - "totalVacancies": 25, - "totalReserved": 25, - "totalNumberOfHours": 5, - "totalInitialBudget": 378, - "coordinador": "María Milagros Vázquez Basquero", - "state": "Anulada" - }, - { - "id": 6873495, - "startDate": "2018-12-31T00:00:00", - "endDate": "2018-12-31T00:00:00", - "totalVacancies": 25, - "totalReserved": 25, - "totalNumberOfHours": 5, - "totalInitialBudget": 378, - "coordinador": "María Milagros Vázquez Basquero", - "state": "Anulada" - } - ], - "totalVacancies": 50, - "totalReserved": 50, - "totalNumberOfHours": 10, - "totalInitialBudget": 756 - }, - { - "id": 6873497, - "name": "JORNADA TEÓRICO-PRÁCTICA SOBRE ACTUACIÓN SANITARIA EN EMERGENCIAS NUCLEARES (PENGUA)", - "editionVersion": [{ - "id": 6976015, - "startDate": "2018-11-29T00:00:00", - "endDate": "2018-11-29T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 6, - "totalInitialBudget": 378, - "coordinador": "María Jesús Fuertes Menéndez", - "state": "Impartición" - }], - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 6, - "totalInitialBudget": 378 - }, - { - "id": 6873498, - "name": "JORNADA TEÓRICO-PRÁCTICA SOBRE ACTUACIÓN SANITARIA EN EMERGENCIAS NUCLEARES (PENTA)", - "editionVersion": [{ - "id": 6873499, - "startDate": "2018-10-09T00:00:00", - "endDate": "2018-10-09T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 5, - "totalInitialBudget": 378, - "coordinador": "Fabiola Ugalde Andrés", - "state": "Cerrada" - }], - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 5, - "totalInitialBudget": 378 - }, - { - "id": 6873518, - "name": "JORNADA TEÓRICO-PRÁCTICA SOBRE ACTUACIÓN SANITARIA EN EMERGENCIAS NUCLEARES (PENVA)", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6873521, - "name": "MOVILIZACIONES E INMOVILIZACIONES EN VÍCTIMAS TRAUMÁTICAS PARA PRIMEROS INTERVINIENTES", - "editionVersion": [{ - "id": 6873522, - "startDate": "2018-04-03T00:00:00", - "endDate": "2018-04-03T00:00:00", - "totalVacancies": 20, - "totalReserved": 2, - "totalNumberOfHours": 9, - "totalInitialBudget": 1800, - "coordinador": "Esther Pardo Sánchez", - "state": "Cerrada" - }, - { - "id": 8076747, - "startDate": "2018-11-28T00:00:00", - "endDate": "2018-11-28T00:00:00", - "totalVacancies": 20, - "totalReserved": 0, - "totalNumberOfHours": 8, - "totalInitialBudget": 1800, - "coordinador": "Araceli Ruiz Anca", - "state": "Programación" - } - ], - "totalVacancies": 40, - "totalReserved": 2, - "totalNumberOfHours": 17, - "totalInitialBudget": 3600 - }, - { - "id": 6873582, - "name": "MOVILIZACIONES E INMOVILIZACIONES EN VÍCTIMAS TRAUMÁTICAS PARA PRIMEROS INTERVINIENTES PARA VOLUNTARIOS DE PROTECCIÓN CIVIL", - "editionVersion": [{ - "id": 6873583, - "startDate": "2018-10-06T00:00:00", - "endDate": "2018-10-06T00:00:00", - "totalVacancies": 20, - "totalReserved": 0, - "totalNumberOfHours": 9, - "totalInitialBudget": 1800, - "coordinador": "Esther Pardo Sánchez", - "state": "Anulada" - }], - "totalVacancies": 20, - "totalReserved": 0, - "totalNumberOfHours": 9, - "totalInitialBudget": 1800 - }, - { - "id": 6873613, - "name": "REANIMACIÓN CARDIOPULMONAR Y DESA ", - "editionVersion": [{ - "id": 6873614, - "startDate": "2018-04-02T00:00:00", - "endDate": "2018-04-02T00:00:00", - "totalVacancies": 24, - "totalReserved": 24, - "totalNumberOfHours": 10, - "totalInitialBudget": 2600, - "coordinador": "Esther Pardo Sánchez", - "state": "Cerrada" - }, - { - "id": 6873708, - "startDate": "2018-04-05T00:00:00", - "endDate": "2018-04-05T00:00:00", - "totalVacancies": 24, - "totalReserved": 24, - "totalNumberOfHours": 10, - "totalInitialBudget": 2600, - "coordinador": "Esther Pardo Sánchez", - "state": "Cerrada" - }, - { - "id": 6873748, - "startDate": "2018-05-28T00:00:00", - "endDate": "2018-05-28T00:00:00", - "totalVacancies": 24, - "totalReserved": 24, - "totalNumberOfHours": 10, - "totalInitialBudget": 2600, - "coordinador": "Valeriano Ortega Miravalles", - "state": "Cerrada" - }, - { - "id": 6980367, - "startDate": "2018-11-06T00:00:00", - "endDate": "2018-11-06T00:00:00", - "totalVacancies": 24, - "totalReserved": 0, - "totalNumberOfHours": 10, - "totalInitialBudget": 2600, - "coordinador": "Valeriano Ortega Miravalles", - "state": "Cerrada" - } - ], - "totalVacancies": 96, - "totalReserved": 72, - "totalNumberOfHours": 40, - "totalInitialBudget": 10400 - }, - { - "id": 6873809, - "name": "RECICLAJE DE REANIMACIÓN CARDIOPULMONAR Y DESA (Turno de mañana)", - "editionVersion": [{ - "id": 6873810, - "startDate": "2018-04-04T00:00:00", - "endDate": "2018-04-04T00:00:00", - "totalVacancies": 24, - "totalReserved": 24, - "totalNumberOfHours": 5, - "totalInitialBudget": 1415, - "coordinador": "Esther Pardo Sánchez", - "state": "Cerrada" - }, - { - "id": 6873860, - "startDate": "2018-11-07T00:00:00", - "endDate": "2018-11-07T00:00:00", - "totalVacancies": 24, - "totalReserved": 0, - "totalNumberOfHours": 5, - "totalInitialBudget": 1415, - "coordinador": "Valeriano Ortega Miravalles", - "state": "Cerrada" - } - ], - "totalVacancies": 48, - "totalReserved": 24, - "totalNumberOfHours": 10, - "totalInitialBudget": 2830 - } - ], - "totalVacancies": 374, - "totalReserved": 238, - "totalNumberOfHours": 142, - "totalInitialBudget": 22770 - }, - { - "id": 6873883, - "name": "4.6 Asistencia Psicosocial en Emergencias.", - "trainingActivityVersion": [{ - "id": 6873884, - "name": "APOYO PSICOLÓGICO, AUTOCONTROL EMOCIONAL Y MANEJO DE ESTRÉS EN GRUPOS DE INTERVENCIÓN", - "editionVersion": [{ - "id": 6873885, - "startDate": "2018-05-21T00:00:00", - "endDate": "2018-05-25T00:00:00", - "totalVacancies": 30, - "totalReserved": 11, - "totalNumberOfHours": 30, - "totalInitialBudget": 1900, - "coordinador": "Isabel Vera Navascués", - "state": "Cerrada" - }], - "totalVacancies": 30, - "totalReserved": 11, - "totalNumberOfHours": 30, - "totalInitialBudget": 1900 - }, - { - "id": 6873921, - "name": "EL PSICÓLOGO EN SITUACIONES DE RIESGOS, EMERGENCIAS Y CATÁSTROFES: OBJETIVOS, FUNCIONES Y TAREAS", - "editionVersion": [{ - "id": 6873922, - "startDate": "2018-06-25T00:00:00", - "endDate": "2018-06-29T00:00:00", - "totalVacancies": 25, - "totalReserved": 10, - "totalNumberOfHours": 30, - "totalInitialBudget": 2650, - "coordinador": "Elena Puertas López", - "state": "Cerrada" - }], - "totalVacancies": 25, - "totalReserved": 10, - "totalNumberOfHours": 30, - "totalInitialBudget": 2650 - }, - { - "id": 6873957, - "name": "GESTIÓN DE LA ATENCIÓN A VÍCTIMAS Y FAMILIARES EN EMERGENCIAS MASIVAS POR TRANSPORTE COLECTIVO", - "editionVersion": [{ - "id": 6873958, - "startDate": "2018-03-20T00:00:00", - "endDate": "2018-03-22T00:00:00", - "totalVacancies": 25, - "totalReserved": 25, - "totalNumberOfHours": 21, - "totalInitialBudget": 3000, - "coordinador": "Elena Puertas López", - "state": "Cerrada" - }, - { - "id": 6873986, - "startDate": "2018-10-09T00:00:00", - "endDate": "2018-10-11T00:00:00", - "totalVacancies": 25, - "totalReserved": 25, - "totalNumberOfHours": 21, - "totalInitialBudget": 3000, - "coordinador": "Elena Puertas López", - "state": "Cerrada" - } - ], - "totalVacancies": 50, - "totalReserved": 50, - "totalNumberOfHours": 42, - "totalInitialBudget": 6000 - }, - { - "id": 6874049, - "name": "HABILIDADES PSICOSOCIALES EN LA GESTIÓN DE EMERGENCIAS", - "editionVersion": [{ - "id": 6874050, - "startDate": "2018-11-27T00:00:00", - "endDate": "2018-11-29T00:00:00", - "totalVacancies": 30, - "totalReserved": 12, - "totalNumberOfHours": 18, - "totalInitialBudget": 1600, - "coordinador": "Isabel Vera Navascués", - "state": "Cerrada" - }], - "totalVacancies": 30, - "totalReserved": 12, - "totalNumberOfHours": 18, - "totalInitialBudget": 1600 - }, - { - "id": 6874068, - "name": "JORNADA TÉCNICA SOBRE FORMACIÓN, PLANIFICACIÓN E INTERVENCIÓN DE PSICÓLOGOS EN EMERGENCIAS Y CATÁSTROFES EN ESPAÑA", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - } - ], - "totalVacancies": 135, - "totalReserved": 83, - "totalNumberOfHours": 120, - "totalInitialBudget": 12150 - }, - { - "id": 6874069, - "name": "4.7 Técnicas Adicionales para las Intervenciones.", - "trainingActivityVersion": [{ - "id": 6874070, - "name": "CURSO SOBRE RIESGOS NATURALES Y PC PARA PROFESIONALES DE LA INFORMACIÓN Y DIVULGACIÓN. (Nivel II)", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874071, - "name": "FORMACIÓN A PERSONAS DE CONTACTO DEL SISTEMA DE ASISTENCIA A VÍCTIMAS Y FAMILIARES DE ACCIDENTES AÉREOS. FASE 3. HABILIDADES PSICOSOCIALES PARA LAS PERSONAS DE CONTACTO", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874072, - "name": "FORMACIÓN INICIAL A PERSONAS DE CONTACTO DEL SISTEMA DE ASISTENCIA A VÍCTIMAS Y FAMILIARES DE ACCIDENTES AÉREOS. SEMIPRESENCIAL", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874073, - "name": "FORMACIÓN PRÁCTICA DE DESPLIEGUE, COMUNICACIONES Y MANEJO DE HERRAMIENTAS DE GEOPOSICIONAMIENTO PARA VOLUNTARIOS DE PROTECCIÓN CIVIL", - "editionVersion": [{ - "id": 6874074, - "startDate": "2018-12-17T00:00:00", - "endDate": "2018-12-31T00:00:00", - "totalVacancies": 20, - "totalReserved": 0, - "totalNumberOfHours": 15, - "totalInitialBudget": 0, - "coordinador": "Roberto Martínez-Alegría López", - "state": "Anulada" - }], - "totalVacancies": 20, - "totalReserved": 0, - "totalNumberOfHours": 15, - "totalInitialBudget": 0 - }, - { - "id": 6874093, - "name": "INTERVENCIÓN EN PATRIMONIO CULTURAL EN SITUACIONES DE EMERGENCIA. PLAN NACIONAL DE EMERGENCIAS Y GESTIÓN DE RIESGOS", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874144, - "name": "INTRODUCCIÓN A LA CARTOGRAFÍA Y SITUACIÓN EN EL TERRENO PARA VOLUNTARIOS DE PROTECCIÓN CIVIL", - "editionVersion": [{ - "id": 6874145, - "startDate": "2018-03-09T00:00:00", - "endDate": "2018-03-11T00:00:00", - "totalVacancies": 25, - "totalReserved": 0, - "totalNumberOfHours": 20, - "totalInitialBudget": 2320, - "coordinador": "Arturo Fuente Pedrejón", - "state": "Cerrada" - }, - { - "id": 6974386, - "startDate": "2018-06-01T00:00:00", - "endDate": "2018-06-03T00:00:00", - "totalVacancies": 25, - "totalReserved": 0, - "totalNumberOfHours": 20, - "totalInitialBudget": 2320, - "coordinador": "Arturo Fuente Pedrejón", - "state": "Cerrada" - } - ], - "totalVacancies": 50, - "totalReserved": 0, - "totalNumberOfHours": 40, - "totalInitialBudget": 4640 - }, - { - "id": 6874161, - "name": "JORNADA DE INTERVENCIÓN EN PATRIMONIO CULTURAL EN SITUACIONES DE EMERGENCIA. PLAN NACIONAL DE EMERGENCIAS Y GESTIÓN DE RIESGOS", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874192, - "name": "SEMINARIO SOBRE COORDINACIÓN INSTITUCIONAL EN LA ASISTENCIA A VÍCTIMAS DE ACCIDENTES DE AVIACIÓN CIVIL Y SUS FAMILIARES", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6975910, - "name": "JORNADA DE ACTUANTES DEL PENBU SOBRE AUTOPROTECCIÓN Y MANEJO DE LOS EQUIPAMIENTOS RADIOMÉTRICOS (PENBU)", - "editionVersion": [{ - "id": 6975952, - "startDate": "2018-11-20T00:00:00", - "endDate": "2018-11-20T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 5, - "totalInitialBudget": 378, - "coordinador": "Javier Basconcillos Arce", - "state": "Cerrada" - }], - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 5, - "totalInitialBudget": 378 - } - ], - "totalVacancies": 90, - "totalReserved": 20, - "totalNumberOfHours": 60, - "totalInitialBudget": 5018 - }, - { - "id": 6874254, - "name": "4.8 Técnicas de Información y Comunicación en Emergencias.", - "trainingActivityVersion": [{ - "id": 6874255, - "name": "COMUNICACIÓN EN LA ORGANIZACIÓN DE PROTECCIÓN CIVIL Y EMERGENCIAS", - "editionVersion": [{ - "id": 6874256, - "startDate": "2018-05-12T00:00:00", - "endDate": "2018-05-20T00:00:00", - "totalVacancies": 30, - "totalReserved": 0, - "totalNumberOfHours": 25, - "totalInitialBudget": 3382, - "coordinador": "Angel Ibáñez Peiró", - "state": "Cerrada" - }], - "totalVacancies": 30, - "totalReserved": 0, - "totalNumberOfHours": 25, - "totalInitialBudget": 3382 - }, - { - "id": 6874318, - "name": "COMUNICACIONES DE EMERGENCIAS PARA VOLUNTARIOS DE PROTECCIÓN CIVIL", - "editionVersion": [{ - "id": 6874319, - "startDate": "2018-03-24T00:00:00", - "endDate": "2018-03-25T00:00:00", - "totalVacancies": 30, - "totalReserved": 0, - "totalNumberOfHours": 12, - "totalInitialBudget": 1720, - "coordinador": "Ramón Pérez Barrientos", - "state": "Cerrada" - }, - { - "id": 6874340, - "startDate": "2018-04-14T00:00:00", - "endDate": "2018-04-15T00:00:00", - "totalVacancies": 30, - "totalReserved": 0, - "totalNumberOfHours": 12, - "totalInitialBudget": 1720, - "coordinador": "Juan Manuel Corral Sánchez", - "state": "Cerrada" - } - ], - "totalVacancies": 60, - "totalReserved": 0, - "totalNumberOfHours": 24, - "totalInitialBudget": 3440 - }, - { - "id": 6874360, - "name": "CURSO DE GESTIÓN DE LA INFORMACIÓN EN EMERGENCIAS", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874361, - "name": "JORNADA DEL SERVICIO DE COMUNICACIONES Y AVISOS A LA POBLACIÓN DE LOS PAMEN DEL PENBU", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874362, - "name": "JORNADA PRÁCTICA DE ACTIVACIÓN DE LA REMER PARA LA COBERTURA RADIO EN LA ZONA I DEL PENBU", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874363, - "name": "JORNADA TÉCNICA SOBRE LA INFORMACIÓN A LA POBLACIÓN EN LA GESTIÓN DE RIESGOS Y EMERGENCIAS: APLICACIÓN A LOS PLANES DE EMERGENCIA NUCLEAR", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874364, - "name": "JORNADA TÉCNICA SOBRE MANEJO DE LA APLICACIÓN INFORMÁTICA SIGAME", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874365, - "name": "JORNADA TÉCNICA SOBRE MANEJO DE LA APLICACIÓN SIAGEN PARA AYUDA A LA GESTIÓN DE EMERGENCIAS NUCLEARES", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874366, - "name": "JORNADA TÉCNICA SOBRE REDES DE COMUNICACIONES DE PROTECCIÓN CIVIL", - "editionVersion": [{ - "id": 6874367, - "startDate": "2018-05-01T00:00:00", - "endDate": "2018-05-01T00:00:00", - "totalVacancies": 40, - "totalReserved": 40, - "totalNumberOfHours": 7, - "totalInitialBudget": 1500, - "coordinador": "Fernando Prieto Fernández", - "state": "Anulada" - }], - "totalVacancies": 40, - "totalReserved": 40, - "totalNumberOfHours": 7, - "totalInitialBudget": 1500 - }, - { - "id": 6874369, - "name": "SISTEMAS DE INFORMACIÓN Y TELECOMUNICACIONES EN EMERGENCIAS", - "editionVersion": [{ - "id": 6874370, - "startDate": "2018-04-16T00:00:00", - "endDate": "2018-04-19T00:00:00", - "totalVacancies": 25, - "totalReserved": 11, - "totalNumberOfHours": 29, - "totalInitialBudget": 2800, - "coordinador": "José Pascual Torres", - "state": "Cerrada" - }], - "totalVacancies": 25, - "totalReserved": 11, - "totalNumberOfHours": 29, - "totalInitialBudget": 2800 - }, - { - "id": 6975955, - "name": "JORNADAS TÉCNICAS PARA ACTUANTES DE LOS PAMEN. COMUNICACIONES Y AVISOS EN LA POBLACIÓN EN LOS NUCLEOS DE POBLACIÓN ZONA I (PENBU)", - "editionVersion": [{ - "id": 6975958, - "startDate": "2018-05-08T00:00:00", - "endDate": "2018-05-08T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 5, - "totalInitialBudget": 378, - "coordinador": "Javier Basconcillos Arce", - "state": "Cerrada" - }, - { - "id": 6975960, - "startDate": "2018-05-16T00:00:00", - "endDate": "2018-05-16T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 5, - "totalInitialBudget": 378, - "coordinador": "Javier Basconcillos Arce", - "state": "Cerrada" - }, - { - "id": 6975962, - "startDate": "2018-05-30T00:00:00", - "endDate": "2018-05-30T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 5, - "totalInitialBudget": 378, - "coordinador": "Javier Basconcillos Arce", - "state": "Cerrada" - }, - { - "id": 6975964, - "startDate": "2018-12-31T00:00:00", - "endDate": "2018-12-31T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 5, - "totalInitialBudget": 378, - "coordinador": "Javier Basconcillos Arce", - "state": "Anulada" - }, - { - "id": 6977045, - "startDate": "2018-12-31T00:00:00", - "endDate": "2018-12-31T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 5, - "totalInitialBudget": 378, - "coordinador": " ", - "state": "Anulada" - } - ], - "totalVacancies": 100, - "totalReserved": 100, - "totalNumberOfHours": 25, - "totalInitialBudget": 1890 - }, - { - "id": 6978319, - "name": "JORNADA DE FORMACION GENERAL TEÓRICO-PRÁCTICA DE EN COMUNICACIONES EN EMERGENCIAS NUCLEARES (PENBU)", - "editionVersion": [{ - "id": 6978322, - "startDate": "2018-12-31T00:00:00", - "endDate": "2018-12-31T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 5, - "totalInitialBudget": 378, - "coordinador": " ", - "state": "Anulada" - }], - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 5, - "totalInitialBudget": 378 - }, - { - "id": 6980123, - "name": "INFORMACIÓN A LA POBLACIÓN EN SITUACIONES DE RIESGOS Y EMERGENCIA. CULTURA PREVENTIVA Y RESILIENCIA", - "editionVersion": [{ - "id": 6980125, - "startDate": "2018-04-23T00:00:00", - "endDate": "2018-04-27T00:00:00", - "totalVacancies": 25, - "totalReserved": 0, - "totalNumberOfHours": 30, - "totalInitialBudget": 3000, - "coordinador": "Elena Puertas López", - "state": "Cerrada" - }], - "totalVacancies": 25, - "totalReserved": 0, - "totalNumberOfHours": 30, - "totalInitialBudget": 3000 - }, - { - "id": 6980149, - "name": "JORNADA SOBRE LA RED DE EMERGENCIA REMER EN EL MARCO DE LA LEY 1772015 DEL SNPC", - "editionVersion": [{ - "id": 6980152, - "startDate": "2018-11-29T00:00:00", - "endDate": "2018-11-29T00:00:00", - "totalVacancies": 40, - "totalReserved": 0, - "totalNumberOfHours": 5, - "totalInitialBudget": 1000, - "coordinador": "Jesús Portillo García-Pintos", - "state": "Programación" - }], - "totalVacancies": 40, - "totalReserved": 0, - "totalNumberOfHours": 5, - "totalInitialBudget": 1000 - } - ], - "totalVacancies": 340, - "totalReserved": 171, - "totalNumberOfHours": 150, - "totalInitialBudget": 17390 - } - ], - "totalVacancies": 4184, - "totalReserved": 2851, - "totalNumberOfHours": 2447, - "totalInitialBudget": 386159 - }, - { - "id": 6874422, - "name": "5 REHABILITACIÓN Y RECONSTRUCCION EN CATÁSTROFES", - "submoduleVersion": [{ - "id": 6874423, - "name": "5.1 Evaluación de Daños.", - "trainingActivityVersion": [{ - "id": 6874424, - "name": "CURSO PARA SECRETARIOS DE AYUNTAMIENTOS Y TÉCNICOS MUNICIPALES", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874425, - "name": "INTERVENCIÓN TÉCNICA EN CATÁSTROFES: ESTIMACIÓN Y VALORACIÓN DE DAÑOS", - "editionVersion": [{ - "id": 6874426, - "startDate": "2018-03-12T00:00:00", - "endDate": "2018-03-16T00:00:00", - "totalVacancies": 30, - "totalReserved": 6, - "totalNumberOfHours": 25, - "totalInitialBudget": 2900, - "coordinador": "Sofía González López", - "state": "Cerrada" - }], - "totalVacancies": 30, - "totalReserved": 6, - "totalNumberOfHours": 25, - "totalInitialBudget": 2900 - } - ], - "totalVacancies": 30, - "totalReserved": 6, - "totalNumberOfHours": 25, - "totalInitialBudget": 2900 - }, - { - "id": 6874479, - "name": "5.2 Restablecimento Servicios Básicos.", - "trainingActivityVersion": [{ - "id": 6874480, - "name": "INTERVENCIÓN DEL VOLUNTARIADO DE ARQUITECTURA E INGENIERÍA EN CATÁSTROFES", - "editionVersion": [{ - "id": 6874481, - "startDate": "2018-11-05T00:00:00", - "endDate": "2018-11-09T00:00:00", - "totalVacancies": 40, - "totalReserved": 0, - "totalNumberOfHours": 25, - "totalInitialBudget": 0, - "coordinador": "Magdalena Lorente Martínez", - "state": "Anulada" - }], - "totalVacancies": 40, - "totalReserved": 0, - "totalNumberOfHours": 25, - "totalInitialBudget": 0 - }, - { - "id": 6874500, - "name": "REHABILITACIÓN POST CATÁSTROFES", - "editionVersion": [{ - "id": 6874501, - "startDate": "2018-11-05T00:00:00", - "endDate": "2018-11-08T00:00:00", - "totalVacancies": 25, - "totalReserved": 10, - "totalNumberOfHours": 28, - "totalInitialBudget": 3561, - "coordinador": "José Pascual Torres", - "state": "Cerrada" - }], - "totalVacancies": 25, - "totalReserved": 10, - "totalNumberOfHours": 28, - "totalInitialBudget": 3561 - } - ], - "totalVacancies": 65, - "totalReserved": 10, - "totalNumberOfHours": 53, - "totalInitialBudget": 3561 - }, - { - "id": 6874546, - "name": "5.3 Ayudas y Subvenciones a la Rehabilitación", - "trainingActivityVersion": [{ - "id": 6874547, - "name": "JORNADAS FORMATIVAS PARA RESPONSABLES TÉCNICOS MUNICIPALES EN LA ELABORACIÓN DE PROYECTOS DESTINADOS A SUBVENCIONES Y AYUDAS (PENBU)", - "editionVersion": [{ - "id": 6874548, - "startDate": "2018-12-31T00:00:00", - "endDate": "2018-12-31T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 5, - "totalInitialBudget": 378, - "coordinador": "Javier Basconcillos Arce", - "state": "Anulada" - }], - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 5, - "totalInitialBudget": 378 - }], - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 5, - "totalInitialBudget": 378 - } - ], - "totalVacancies": 115, - "totalReserved": 36, - "totalNumberOfHours": 83, - "totalInitialBudget": 6839 - }, - { - "id": 6874572, - "name": "6 INTERNACIONAL", - "submoduleVersion": [{ - "id": 6874573, - "name": "6.1 Iberoamérica.", - "trainingActivityVersion": [{ - "id": 6874574, - "name": "ACTIVIDAD VIRTUAL “RED DE EXPERTOS EN GESTIÓN DE RIESGOS DE DESASTRES”", - "editionVersion": [{ - "id": 6874575, - "startDate": "2018-10-01T00:00:00", - "endDate": "2018-12-31T00:00:00", - "totalVacancies": 50, - "totalReserved": 50, - "totalNumberOfHours": 150, - "totalInitialBudget": 0, - "coordinador": "Angela Potenciano de las Heras", - "state": "Programación" - }], - "totalVacancies": 50, - "totalReserved": 50, - "totalNumberOfHours": 150, - "totalInitialBudget": 0 - }, - { - "id": 6874577, - "name": "CIUDADES EN RIESGO FRENTE A CIUDADES RESILIENTES EN EL HORIZONTE DEL CAMBIO CLIMÁTICO", - "editionVersion": [{ - "id": 6874578, - "startDate": "2018-05-28T00:00:00", - "endDate": "2018-06-01T00:00:00", - "totalVacancies": 25, - "totalReserved": 25, - "totalNumberOfHours": 35, - "totalInitialBudget": 8400, - "coordinador": "Angela Potenciano de las Heras", - "state": "Anulada" - }], - "totalVacancies": 25, - "totalReserved": 25, - "totalNumberOfHours": 35, - "totalInitialBudget": 8400 - }, - { - "id": 6874641, - "name": "CURSO DE COORDINACIÓN INTERNACIONAL ANTE DESASTRES (Nivel III).", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874642, - "name": "CURSO DE DIRECCIÓN Y GESTIÓN DE EMERGENCIAS: EVALUACIÓN, COMUNICACIÓN Y COORDINACIÓN. (Nivel III).", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874643, - "name": "CURSO DE EVALUACIÓN Y COORDINACIÓN DE AYUDA INTERNACIONAL ", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874644, - "name": "CURSO DE FORMACIÓN BÁSICA Y DE ESPECIALIZACIÓN DE GUÍAS CANINOS PARA SALVAMENTO EN ESTRUCTURAS COLAPSADAS. (Nivel III).", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874645, - "name": "CURSO DE GESTIÓN DE RIESGOS ASOCIADOS A GRANDES CONCENTRACIONES HUMANAS", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874646, - "name": "CURSO DE PLANIFICACIÓN DE RECURSOS Y SERVICIOS BÁSICOS EN EMERGENCIAS LOCALES. PLANES DE CONTINGENCIA Y Y PLANES DE INTEGRACIÓN DE EMERGENCIAS", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874647, - "name": "CURSO DE PROGRAMAS PARA EL DESARROLLO DE UNA CULTURA PREVENTIVA EN PROTECCIÓN CIVIL", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874648, - "name": "CURSO RIESGO Y TERRITORIO: GESTIÓN DEL RIESGO DE DESASTRES EN LAS POLÍTICAS PÚBLICAS DE PLANIFICACIÓN TERRITORIAL Y ORDENACIÓN URBANA", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874649, - "name": "GESTIÓN OPERATIVA EN CATÁSTROFES", - "editionVersion": [{ - "id": 6874650, - "startDate": "2018-11-12T00:00:00", - "endDate": "2018-11-23T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 95, - "totalInitialBudget": 15300, - "coordinador": "Julio César Ramos Fernández", - "state": "Programación" - }], - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 95, - "totalInitialBudget": 15300 - }, - { - "id": 6874652, - "name": "GESTIÓN Y PLANIFICACIÓN DE EMERGENCIAS EN ENTORNOS URBANOS. ONLINE", - "editionVersion": [{ - "id": 6874653, - "startDate": "2018-10-22T00:00:00", - "endDate": "2018-12-16T00:00:00", - "totalVacancies": 50, - "totalReserved": 50, - "totalNumberOfHours": 110, - "totalInitialBudget": 0, - "coordinador": "Angela Potenciano de las Heras", - "state": "Programación" - }], - "totalVacancies": 50, - "totalReserved": 50, - "totalNumberOfHours": 110, - "totalInitialBudget": 0 - }, - { - "id": 6874655, - "name": "HERRAMIENTAS PARA EL ANÁLISIS DE LOS RIESGOS NATURALES EN PROTECCIÓN CIVIL", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874656, - "name": "LA FORMACIÓN COMO OBJETIVO PRIORITARIO EN LA POLÍTICAS PÚBLICAS DE PROTECCIÓN CIVIL", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874657, - "name": "LA GESTIÓN INTEGRAL DE LOS RIESGOS NATURALES Y TECNOLÓGICOS", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874658, - "name": "LA PREVENCIÓN DEL RIESGO DE DESASTRES EN LA ORDENACIÓN TERRITORIAL Y EL DESARROLLO URBANO", - "editionVersion": [{ - "id": 6874659, - "startDate": "2018-05-21T00:00:00", - "endDate": "2018-05-25T00:00:00", - "totalVacancies": 25, - "totalReserved": 25, - "totalNumberOfHours": 35, - "totalInitialBudget": 8500, - "coordinador": "María Vara Moral", - "state": "Anulada" - }], - "totalVacancies": 25, - "totalReserved": 25, - "totalNumberOfHours": 35, - "totalInitialBudget": 8500 - }, - { - "id": 6874666, - "name": "LA REHABILITACIÓN POST CATÁSTROFE. EL CAMINO HACIA LA PREVENCIÓN. EVALUACIÓN DE DAÑOS Y GESTIÓN ECONÓMICA DE LAS AYUDAS", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874667, - "name": "ANÁLISIS DE DESASTRES NATURALES Y MEDIDAS PARA SU MITIGACIÓN", - "editionVersion": [{ - "id": 6874668, - "startDate": "2018-11-19T00:00:00", - "endDate": "2018-11-23T00:00:00", - "totalVacancies": 25, - "totalReserved": 25, - "totalNumberOfHours": 35, - "totalInitialBudget": 8500, - "coordinador": "Mercedes Vallejo Bombín", - "state": "Anulada" - }], - "totalVacancies": 25, - "totalReserved": 25, - "totalNumberOfHours": 35, - "totalInitialBudget": 8500 - }, - { - "id": 6874700, - "name": "PREVENCIÓN Y PLANIFICACIÓN DE RIESGOS NATURALES Y TECNOLÓGICOS", - "editionVersion": [{ - "id": 6874701, - "startDate": "2018-11-12T00:00:00", - "endDate": "2018-11-23T00:00:00", - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 65, - "totalInitialBudget": 15300, - "coordinador": "Mercedes Vallejo Bombín", - "state": "Programación" - }], - "totalVacancies": 20, - "totalReserved": 20, - "totalNumberOfHours": 65, - "totalInitialBudget": 15300 - }, - { - "id": 6874753, - "name": "SEMINARIO DE CONCLUSIONES DE LA RED DE EXPERTOS PROGRAMA DE GESTION INTEGRAL DEL RIESGO PARA LA REDUCCIÓN DE DESASTRES", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874754, - "name": "SEMINARIO SOBRE LA ACCIÓN SOCIAL EN GESTIÓN DEL RIESGO DE DESASTRE: CULTURA PREVENTIVA Y RESILIENCIA", - "editionVersion": [{ - "id": 6874755, - "startDate": "2018-09-17T00:00:00", - "endDate": "2018-09-30T00:00:00", - "totalVacancies": 25, - "totalReserved": 25, - "totalNumberOfHours": 35, - "totalInitialBudget": 0, - "coordinador": "Angela Potenciano de las Heras", - "state": "Programación" - }], - "totalVacancies": 25, - "totalReserved": 25, - "totalNumberOfHours": 35, - "totalInitialBudget": 0 - }, - { - "id": 6980157, - "name": "GESTIÓN DEL RIESGO EN GRANDES CONCENTRACIONES HUMANAS", - "editionVersion": [{ - "id": 6980159, - "startDate": "2018-10-22T00:00:00", - "endDate": "2018-10-26T00:00:00", - "totalVacancies": 25, - "totalReserved": 25, - "totalNumberOfHours": 35, - "totalInitialBudget": 9500, - "coordinador": "Fernando Talavera Esteso", - "state": "Anulada" - }], - "totalVacancies": 25, - "totalReserved": 25, - "totalNumberOfHours": 35, - "totalInitialBudget": 9500 - }, - { - "id": 6980162, - "name": "COORDINACIÓN DE EMERGENCIAS DESDE CENTROS NACIONALES DE OPERACIONES", - "editionVersion": [{ - "id": 6980165, - "startDate": "2018-07-31T00:00:00", - "endDate": "2018-07-31T00:00:00", - "totalVacancies": 25, - "totalReserved": 25, - "totalNumberOfHours": 35, - "totalInitialBudget": 9200, - "coordinador": "Francisco José Ruiz Boada", - "state": "Anulada" - }], - "totalVacancies": 25, - "totalReserved": 25, - "totalNumberOfHours": 35, - "totalInitialBudget": 9200 - }, - { - "id": 8216482, - "name": "LIDERAZGO APLICADO A LA DIRECCIÓN Y GESTIÓN DE EMERGENCIAS", - "editionVersion": [{ - "id": 8216485, - "startDate": "2018-10-29T00:00:00", - "endDate": "2018-10-31T00:00:00", - "totalVacancies": 9, - "totalReserved": 9, - "totalNumberOfHours": 21, - "totalInitialBudget": 3500, - "coordinador": "Francisco Javier Frutos Gonzalez", - "state": "Cerrada" - }], - "totalVacancies": 9, - "totalReserved": 9, - "totalNumberOfHours": 21, - "totalInitialBudget": 3500 - } - ], - "totalVacancies": 299, - "totalReserved": 299, - "totalNumberOfHours": 651, - "totalInitialBudget": 78200 - }, - { - "id": 6874757, - "name": "6.2 Unión Europea.", - "trainingActivityVersion": [{ - "id": 6874758, - "name": "\"JORNADA / SEMINARIO Nº 1\"", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874759, - "name": "\"JORNADA / SEMINARIO Nº 2\"", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874760, - "name": "5º ENCUENTRO DEL FORO EUROPEO PARA LA REDUCCIÓN DEL RIESGO DE DESASTRES", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874761, - "name": "EXERCÍCIO COMMAND POST EXERCISE (CPX) - PUESTO DE COMANDO", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874762, - "name": "EXERCÍCIO TABLE-TOP (NÍVEL CODIS/CADIS - DIRETOR DE OPERAÇÕES)", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874763, - "name": "FASE DE ENTRENAMIENTO DEL PROYECTO ERICHA", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874766, - "name": "FASE DE ENTRENAMIENTO Y DISEMINACIÓN DEL PROYECTO SAFETY", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874769, - "name": "JORNADA INTERNACIONAL", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874770, - "name": "JORNADA TÉCNICA SOBRE RESILIENCIA EN LAS ADMINISTRACIONES PÚBLICAS ESPAÑOLAS", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874771, - "name": "JORNADAS DE PRESENTACIÓN DEL PROYECTO IGNIS (Initiative for Global maNagement of bIg fires through Simulation)", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874774, - "name": "RISK MAPPING WORKSHOP. EUROMED PPRD SOUTH PROGRAMME II.", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874775, - "name": "SESIÓN INFORMATIVA SOBRE PROGRAMA DE TRABAJO P.C. UE", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874776, - "name": "TALLER HISPANO-LUSO DE LUCHA CONTRA INCENDIOS FORESTALES: HERAMIENTAS DE GESTIÓN OPERATIVA Y SIMULACIÓN", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6874785, - "name": "WORKSHOP: OPERACIONES DE EXTINCIÓN DE INCENDIOS FORESTALES EN LAS REGIONES FRONTERIZAS (PORTUGAL / ESPAÑA)", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }, - { - "id": 6980168, - "name": "SEMINARIO FRANCO-ESPAÑOL SOBRE RIESGOS TECNOLÓGICOS", - "editionVersion": [{ - "id": 6980171, - "startDate": "2018-04-17T00:00:00", - "endDate": "2018-04-18T00:00:00", - "totalVacancies": 12, - "totalReserved": 12, - "totalNumberOfHours": 12, - "totalInitialBudget": 5000, - "coordinador": "Pablo Calvo Barrios", - "state": "Cerrada" - }], - "totalVacancies": 12, - "totalReserved": 12, - "totalNumberOfHours": 12, - "totalInitialBudget": 5000 - }, - { - "id": 6980177, - "name": "JORNADA DE COORDINACIÓN EN INCENDIOS FORESTALES TRANSFRONTERIZOS PORTUGAL - ESPAÑA", - "editionVersion": [{ - "id": 6980182, - "startDate": "2018-11-05T00:00:00", - "endDate": "2018-11-09T00:00:00", - "totalVacancies": 10, - "totalReserved": 10, - "totalNumberOfHours": 5, - "totalInitialBudget": 3000, - "coordinador": "Angela Potenciano de las Heras", - "state": "Cerrada" - }], - "totalVacancies": 10, - "totalReserved": 10, - "totalNumberOfHours": 5, - "totalInitialBudget": 3000 - } - ], - "totalVacancies": 22, - "totalReserved": 22, - "totalNumberOfHours": 17, - "totalInitialBudget": 8000 - }, - { - "id": 6874786, - "name": "6.6 África.", - "trainingActivityVersion": [{ - "id": 6874787, - "name": "CURSO DE FORMACIÓN DE INSTRUCTORES PARA BOMBEROS DE SENEGAL. (Nivel III).", - "editionVersion": [], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0 - }], - "totalVacancies": 0, - "totalReserved": 0, - "totalNumberOfHours": 0, - "totalInitialBudget": 0 - } - ], - "totalVacancies": 321, - "totalReserved": 321, - "totalNumberOfHours": 668, - "totalInitialBudget": 86200 - }, - { - "id": 8585225, - "name": "7 Prueba alberto", - "submoduleVersion": [{ - "id": 8585227, - "name": "Prueba Alberto Modulo", - "trainingActivityVersion": [{ - "id": 8585229, - "name": "Prueba Alberto Submodulo", - "editionVersion": [{ - "id": 8585231, - "startDate": "2018-09-20T00:00:00", - "endDate": "2018-09-21T00:00:00", - "totalVacancies": 34, - "totalReserved": 0, - "totalNumberOfHours": 21, - "totalInitialBudget": 1000, - "coordinador": "José Pascual Torres", - "state": "Cerrada" - }], - "totalVacancies": 34, - "totalReserved": 0, - "totalNumberOfHours": 21, - "totalInitialBudget": 1000 - }], - "totalVacancies": 34, - "totalReserved": 0, - "totalNumberOfHours": 21, - "totalInitialBudget": 1000 - }], - "totalVacancies": 34, - "totalReserved": 0, - "totalNumberOfHours": 21, - "totalInitialBudget": 1000 - } - ], - "totalVacancies": 8250, - "totalReserved": 4755, - "totalNumberOfHours": 4672, - "totalInitialBudget": 662557 - } -} diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..89d06f7 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,11968 @@ +{ + "name": "vue-tree-view-table", + "version": "0.1.82", + "lockfileVersion": 1, + "requires": true, + "dependencies": { + "@babel/code-frame": { + "version": "7.5.5", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.5.5.tgz", + "integrity": "sha512-27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7JjpFw==", + "dev": true, + "requires": { + "@babel/highlight": "^7.0.0" + } + }, + "@babel/generator": { + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.6.2.tgz", + "integrity": "sha512-j8iHaIW4gGPnViaIHI7e9t/Hl8qLjERI6DcV9kEpAIDJsAOrcnXqRS7t+QbhL76pwbtqP+QCQLL0z1CyVmtjjQ==", + "dev": true, + "requires": { + "@babel/types": "^7.6.0", + "jsesc": "^2.5.1", + "lodash": "^4.17.13", + "source-map": "^0.5.0" + }, + "dependencies": { + "jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "dev": true + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true + } + } + }, + "@babel/helper-function-name": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.1.0.tgz", + "integrity": "sha512-A95XEoCpb3TO+KZzJ4S/5uW5fNe26DjBGqf1o9ucyLyCmi1dXq/B3c8iaWTfBk3VvetUxl16e8tIrd5teOCfGw==", + "dev": true, + "requires": { + "@babel/helper-get-function-arity": "^7.0.0", + "@babel/template": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "@babel/helper-get-function-arity": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0.tgz", + "integrity": "sha512-r2DbJeg4svYvt3HOS74U4eWKsUAMRH01Z1ds1zx8KNTPtpTL5JAsdFv8BNyOpVqdFhHkkRDIg5B4AsxmkjAlmQ==", + "dev": true, + "requires": { + "@babel/types": "^7.0.0" + } + }, + "@babel/helper-plugin-utils": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.0.0.tgz", + "integrity": "sha512-CYAOUCARwExnEixLdB6sDm2dIJ/YgEAKDM1MOeMeZu9Ld/bDgVo8aiWrXwcY7OBh+1Ea2uUcVRcxKk0GJvW7QA==", + "dev": true + }, + "@babel/helper-split-export-declaration": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.4.4.tgz", + "integrity": "sha512-Ro/XkzLf3JFITkW6b+hNxzZ1n5OQ80NvIUdmHspih1XAhtN3vPTuUFT4eQnela+2MaZ5ulH+iyP513KJrxbN7Q==", + "dev": true, + "requires": { + "@babel/types": "^7.4.4" + } + }, + "@babel/highlight": { + "version": "7.5.0", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.5.0.tgz", + "integrity": "sha512-7dV4eu9gBxoM0dAnj/BCFDW9LFU0zvTrkq0ugM7pnHEgguOEeOz1so2ZghEdzviYzQEED0r4EAgpsBChKy1TRQ==", + "dev": true, + "requires": { + "chalk": "^2.0.0", + "esutils": "^2.0.2", + "js-tokens": "^4.0.0" + }, + "dependencies": { + "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 + } + } + }, + "@babel/parser": { + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.6.2.tgz", + "integrity": "sha512-mdFqWrSPCmikBoaBYMuBulzTIKuXVPtEISFbRRVNwMWpCms/hmE2kRq0bblUHaNRKrjRlmVbx1sDHmjmRgD2Xg==", + "dev": true + }, + "@babel/template": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.6.0.tgz", + "integrity": "sha512-5AEH2EXD8euCk446b7edmgFdub/qfH1SN6Nii3+fyXP807QRx9Q73A2N5hNwRRslC2H9sNzaFhsPubkS4L8oNQ==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.0.0", + "@babel/parser": "^7.6.0", + "@babel/types": "^7.6.0" + } + }, + "@babel/traverse": { + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.6.2.tgz", + "integrity": "sha512-8fRE76xNwNttVEF2TwxJDGBLWthUkHWSldmfuBzVRmEDWOtu4XdINTgN7TDWzuLg4bbeIMLvfMFD9we5YcWkRQ==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.5.5", + "@babel/generator": "^7.6.2", + "@babel/helper-function-name": "^7.1.0", + "@babel/helper-split-export-declaration": "^7.4.4", + "@babel/parser": "^7.6.2", + "@babel/types": "^7.6.0", + "debug": "^4.1.0", + "globals": "^11.1.0", + "lodash": "^4.17.13" + }, + "dependencies": { + "debug": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", + "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + }, + "globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true + }, + "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 + } + } + }, + "@babel/types": { + "version": "7.6.1", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.6.1.tgz", + "integrity": "sha512-X7gdiuaCmA0uRjCmRtYJNAVCc/q+5xSgsfKJHqMN4iNLILX39677fJE1O40arPMh0TTtS9ItH67yre6c7k6t0g==", + "dev": true, + "requires": { + "esutils": "^2.0.2", + "lodash": "^4.17.13", + "to-fast-properties": "^2.0.0" + }, + "dependencies": { + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=", + "dev": true + } + } + }, + "@sindresorhus/is": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz", + "integrity": "sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==", + "dev": true + }, + "@szmarczak/http-timer": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz", + "integrity": "sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==", + "dev": true, + "requires": { + "defer-to-connect": "^1.0.1" + } + }, + "@types/q": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.2.tgz", + "integrity": "sha512-ce5d3q03Ex0sy4R14722Rmt6MT07Ua+k4FwDfdcToYJcMKNtRVQvJ6JCAPdAmAnbRb6CsX6aYb9m96NGod9uTw==", + "dev": true + }, + "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.7", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz", + "integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==", + "dev": true, + "requires": { + "mime-types": "~2.1.24", + "negotiator": "0.6.2" + } + }, + "acorn": { + "version": "5.7.3", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-5.7.3.tgz", + "integrity": "sha512-T/zvzYRfbVojPWahDsE5evJdHb3oJoQfFbsrKM7w5Zcs++Tr257tia3BmMP8XYVjp1S9RZXQMh7gao96BlqZOw==", + "dev": true + }, + "acorn-dynamic-import": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/acorn-dynamic-import/-/acorn-dynamic-import-2.0.2.tgz", + "integrity": "sha1-x1K9IQvvZ5UBtsbLf8hPj0cVjMQ=", + "dev": true, + "requires": { + "acorn": "^4.0.3" + }, + "dependencies": { + "acorn": { + "version": "4.0.13", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-4.0.13.tgz", + "integrity": "sha1-EFSVrlNh1pe9GVyCUZLhrX8lN4c=", + "dev": true + } + } + }, + "acorn-jsx": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-3.0.1.tgz", + "integrity": "sha1-r9+UiPsezvyDSPb7IvRk4ypYs2s=", + "dev": true, + "requires": { + "acorn": "^3.0.4" + }, + "dependencies": { + "acorn": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz", + "integrity": "sha1-ReN/s56No/JbruP/U2niu18iAXo=", + "dev": true + } + } + }, + "acorn-walk": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-6.2.0.tgz", + "integrity": "sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA==", + "dev": true + }, + "ajv": { + "version": "4.11.8", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-4.11.8.tgz", + "integrity": "sha1-gv+wKynmYq5TvcIK8VlHcGc5xTY=", + "dev": true, + "requires": { + "co": "^4.6.0", + "json-stable-stringify": "^1.0.1" + } + }, + "ajv-keywords": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-1.5.1.tgz", + "integrity": "sha1-MU3QpLM2j609/NxU7eYXG4htrzw=", + "dev": true + }, + "align-text": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz", + "integrity": "sha1-DNkKVhCT810KmSVsIrcGlDP60Rc=", + "dev": true, + "requires": { + "kind-of": "^3.0.2", + "longest": "^1.0.1", + "repeat-string": "^1.5.2" + } + }, + "alphanum-sort": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz", + "integrity": "sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM=", + "dev": true + }, + "ansi-align": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.0.tgz", + "integrity": "sha512-ZpClVKqXN3RGBmKibdfWzqCY4lnjEuoNzU5T0oEFpfd/z5qJHVarukridD4juLO2FXMiwUQxr9WqQtaYa8XRYw==", + "dev": true, + "requires": { + "string-width": "^3.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "dev": true + }, + "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": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dev": true, + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + } + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "requires": { + "ansi-regex": "^4.1.0" + } + } + } + }, + "ansi-escapes": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-1.4.0.tgz", + "integrity": "sha1-06ioOzGapneTZisT52HHkRQiMG4=", + "dev": true + }, + "ansi-html": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/ansi-html/-/ansi-html-0.0.7.tgz", + "integrity": "sha1-gTWEAhliqenm/QOflA0S9WynhZ4=", + "dev": true + }, + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "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": { + "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 + }, + "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 + }, + "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" + } + } + } + }, + "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" + } + }, + "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=", + "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" + } + } + } + }, + "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=", + "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" + } + } + } + }, + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + } + }, + "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 + } + } + }, + "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" + } + } + } + }, + "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" + } + } + } + }, + "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" + } + }, + "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" + } + } + } + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", + "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==", + "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" + } + } + } + }, + "argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "requires": { + "sprintf-js": "~1.0.2" + } + }, + "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": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-find/-/array-find-1.0.0.tgz", + "integrity": "sha1-bI4obRHtdoMn+OYuzuhzU8o+eLg=", + "dev": true + }, + "array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=", + "dev": true + }, + "asap": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", + "integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=", + "dev": true, + "optional": true + }, + "asn1": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz", + "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==", + "dev": true, + "requires": { + "safer-buffer": "~2.1.0" + } + }, + "asn1.js": { + "version": "4.10.1", + "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-4.10.1.tgz", + "integrity": "sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==", + "dev": true, + "requires": { + "bn.js": "^4.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0" + } + }, + "assert": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz", + "integrity": "sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==", + "dev": true, + "requires": { + "object-assign": "^4.1.1", + "util": "0.10.3" + }, + "dependencies": { + "inherits": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", + "integrity": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=", + "dev": true + }, + "util": { + "version": "0.10.3", + "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz", + "integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=", + "dev": true, + "requires": { + "inherits": "2.0.1" + } + } + } + }, + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", + "dev": true + }, + "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.3", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.3.tgz", + "integrity": "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==", + "dev": true, + "requires": { + "lodash": "^4.17.14" + } + }, + "async-each": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz", + "integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==", + "dev": true + }, + "async-limiter": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", + "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==", + "dev": true + }, + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=", + "dev": true + }, + "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 + }, + "autoprefixer": { + "version": "7.1.4", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-7.1.4.tgz", + "integrity": "sha512-MB1XybOJqu1uAwpfSilAa1wSURNc4W310CFKvMj1fNaJBFxr1PGgz72vZaPr9ryKGqs2vYZ6jDyJ0aiGELjsoA==", + "dev": true, + "requires": { + "browserslist": "^2.4.0", + "caniuse-lite": "^1.0.30000726", + "normalize-range": "^0.1.2", + "num2fraction": "^1.2.2", + "postcss": "^6.0.11", + "postcss-value-parser": "^3.2.3" + } + }, + "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=", + "dev": true + }, + "aws4": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.8.0.tgz", + "integrity": "sha512-ReZxvNHIOv88FlT7rxcXIIC0fPt4KZqZbOlivyWtXLt8ESx84zd3kMC6iK5jVeS2qt+g7ftS7ye4fi06X5rtRQ==", + "dev": true + }, + "babel-code-frame": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz", + "integrity": "sha1-Y/1D99weO7fONZR9uP42mj9Yx0s=", + "dev": true, + "requires": { + "chalk": "^1.1.3", + "esutils": "^2.0.2", + "js-tokens": "^3.0.2" + }, + "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 + }, + "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" + } + }, + "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 + } + } + }, + "babel-core": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-core/-/babel-core-6.26.0.tgz", + "integrity": "sha1-rzL3izGm/O8RnIew/Y2XU/A6C7g=", + "dev": true, + "requires": { + "babel-code-frame": "^6.26.0", + "babel-generator": "^6.26.0", + "babel-helpers": "^6.24.1", + "babel-messages": "^6.23.0", + "babel-register": "^6.26.0", + "babel-runtime": "^6.26.0", + "babel-template": "^6.26.0", + "babel-traverse": "^6.26.0", + "babel-types": "^6.26.0", + "babylon": "^6.18.0", + "convert-source-map": "^1.5.0", + "debug": "^2.6.8", + "json5": "^0.5.1", + "lodash": "^4.17.4", + "minimatch": "^3.0.4", + "path-is-absolute": "^1.0.1", + "private": "^0.1.7", + "slash": "^1.0.0", + "source-map": "^0.5.6" + }, + "dependencies": { + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true + } + } + }, + "babel-eslint": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/babel-eslint/-/babel-eslint-7.2.3.tgz", + "integrity": "sha1-sv4tgBJkcPXBlELcdXJTqJdxCCc=", + "dev": true, + "requires": { + "babel-code-frame": "^6.22.0", + "babel-traverse": "^6.23.1", + "babel-types": "^6.23.0", + "babylon": "^6.17.0" + } + }, + "babel-generator": { + "version": "6.26.1", + "resolved": "https://registry.npmjs.org/babel-generator/-/babel-generator-6.26.1.tgz", + "integrity": "sha512-HyfwY6ApZj7BYTcJURpM5tznulaBvyio7/0d4zFOeMPUmfxkCjHocCuoLa2SAGzBI8AREcH3eP3758F672DppA==", + "dev": true, + "requires": { + "babel-messages": "^6.23.0", + "babel-runtime": "^6.26.0", + "babel-types": "^6.26.0", + "detect-indent": "^4.0.0", + "jsesc": "^1.3.0", + "lodash": "^4.17.4", + "source-map": "^0.5.7", + "trim-right": "^1.0.1" + }, + "dependencies": { + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true + } + } + }, + "babel-helper-bindify-decorators": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-helper-bindify-decorators/-/babel-helper-bindify-decorators-6.24.1.tgz", + "integrity": "sha1-FMGeXxQte0fxmlJDHlKxzLxAozA=", + "dev": true, + "requires": { + "babel-runtime": "^6.22.0", + "babel-traverse": "^6.24.1", + "babel-types": "^6.24.1" + } + }, + "babel-helper-builder-binary-assignment-operator-visitor": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz", + "integrity": "sha1-zORReto1b0IgvK6KAsKzRvmlZmQ=", + "dev": true, + "requires": { + "babel-helper-explode-assignable-expression": "^6.24.1", + "babel-runtime": "^6.22.0", + "babel-types": "^6.24.1" + } + }, + "babel-helper-call-delegate": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz", + "integrity": "sha1-7Oaqzdx25Bw0YfiL/Fdb0Nqi340=", + "dev": true, + "requires": { + "babel-helper-hoist-variables": "^6.24.1", + "babel-runtime": "^6.22.0", + "babel-traverse": "^6.24.1", + "babel-types": "^6.24.1" + } + }, + "babel-helper-define-map": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz", + "integrity": "sha1-pfVtq0GiX5fstJjH66ypgZ+Vvl8=", + "dev": true, + "requires": { + "babel-helper-function-name": "^6.24.1", + "babel-runtime": "^6.26.0", + "babel-types": "^6.26.0", + "lodash": "^4.17.4" + } + }, + "babel-helper-explode-assignable-expression": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz", + "integrity": "sha1-8luCz33BBDPFX3BZLVdGQArCLKo=", + "dev": true, + "requires": { + "babel-runtime": "^6.22.0", + "babel-traverse": "^6.24.1", + "babel-types": "^6.24.1" + } + }, + "babel-helper-explode-class": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-helper-explode-class/-/babel-helper-explode-class-6.24.1.tgz", + "integrity": "sha1-fcKjkQ3uAHBW4eMdZAztPVTqqes=", + "dev": true, + "requires": { + "babel-helper-bindify-decorators": "^6.24.1", + "babel-runtime": "^6.22.0", + "babel-traverse": "^6.24.1", + "babel-types": "^6.24.1" + } + }, + "babel-helper-function-name": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz", + "integrity": "sha1-00dbjAPtmCQqJbSDUasYOZ01gKk=", + "dev": true, + "requires": { + "babel-helper-get-function-arity": "^6.24.1", + "babel-runtime": "^6.22.0", + "babel-template": "^6.24.1", + "babel-traverse": "^6.24.1", + "babel-types": "^6.24.1" + } + }, + "babel-helper-get-function-arity": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz", + "integrity": "sha1-j3eCqpNAfEHTqlCQj4mwMbG2hT0=", + "dev": true, + "requires": { + "babel-runtime": "^6.22.0", + "babel-types": "^6.24.1" + } + }, + "babel-helper-hoist-variables": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz", + "integrity": "sha1-HssnaJydJVE+rbyZFKc/VAi+enY=", + "dev": true, + "requires": { + "babel-runtime": "^6.22.0", + "babel-types": "^6.24.1" + } + }, + "babel-helper-optimise-call-expression": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz", + "integrity": "sha1-96E0J7qfc/j0+pk8VKl4gtEkQlc=", + "dev": true, + "requires": { + "babel-runtime": "^6.22.0", + "babel-types": "^6.24.1" + } + }, + "babel-helper-regex": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz", + "integrity": "sha1-MlxZ+QL4LyS3T6zu0DY5VPZJXnI=", + "dev": true, + "requires": { + "babel-runtime": "^6.26.0", + "babel-types": "^6.26.0", + "lodash": "^4.17.4" + } + }, + "babel-helper-remap-async-to-generator": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz", + "integrity": "sha1-XsWBgnrXI/7N04HxySg5BnbkVRs=", + "dev": true, + "requires": { + "babel-helper-function-name": "^6.24.1", + "babel-runtime": "^6.22.0", + "babel-template": "^6.24.1", + "babel-traverse": "^6.24.1", + "babel-types": "^6.24.1" + } + }, + "babel-helper-replace-supers": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz", + "integrity": "sha1-v22/5Dk40XNpohPKiov3S2qQqxo=", + "dev": true, + "requires": { + "babel-helper-optimise-call-expression": "^6.24.1", + "babel-messages": "^6.23.0", + "babel-runtime": "^6.22.0", + "babel-template": "^6.24.1", + "babel-traverse": "^6.24.1", + "babel-types": "^6.24.1" + } + }, + "babel-helper-vue-jsx-merge-props": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/babel-helper-vue-jsx-merge-props/-/babel-helper-vue-jsx-merge-props-2.0.2.tgz", + "integrity": "sha1-rOscNzWIJ54nVeoc/TXCI5T9M/g=", + "dev": true + }, + "babel-helpers": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-helpers/-/babel-helpers-6.24.1.tgz", + "integrity": "sha1-NHHenK7DiOXIUOWX5Yom3fN2ArI=", + "dev": true, + "requires": { + "babel-runtime": "^6.22.0", + "babel-template": "^6.24.1" + } + }, + "babel-loader": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-7.1.2.tgz", + "integrity": "sha512-jRwlFbINAeyDStqK6Dd5YuY0k5YuzQUvlz2ZamuXrXmxav3pNqe9vfJ402+2G+OmlJSXxCOpB6Uz0INM7RQe2A==", + "dev": true, + "requires": { + "find-cache-dir": "^1.0.0", + "loader-utils": "^1.0.2", + "mkdirp": "^0.5.1" + } + }, + "babel-messages": { + "version": "6.23.0", + "resolved": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.23.0.tgz", + "integrity": "sha1-8830cDhYA1sqKVHG7F7fbGLyYw4=", + "dev": true, + "requires": { + "babel-runtime": "^6.22.0" + } + }, + "babel-plugin-check-es2015-constants": { + "version": "6.22.0", + "resolved": "https://registry.npmjs.org/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz", + "integrity": "sha1-NRV7EBQm/S/9PaP3XH0ekYNbv4o=", + "dev": true, + "requires": { + "babel-runtime": "^6.22.0" + } + }, + "babel-plugin-istanbul": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-5.2.0.tgz", + "integrity": "sha512-5LphC0USA8t4i1zCtjbbNb6jJj/9+X6P37Qfirc/70EQ34xKlMW+a1RHGwxGI+SwWpNwZ27HqvzAobeqaXwiZw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "find-up": "^3.0.0", + "istanbul-lib-instrument": "^3.3.0", + "test-exclude": "^5.2.3" + }, + "dependencies": { + "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" + } + }, + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "p-limit": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.2.1.tgz", + "integrity": "sha512-85Tk+90UCVWvbDavCLKPOLC9vvY8OwEX/RtKF+/1OADJMVlFfEHOiMTPVyxg7mk/dKa+ipdHm0OUkTvCpMTuwg==", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, + "requires": { + "p-limit": "^2.0.0" + } + }, + "p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true + } + } + }, + "babel-plugin-syntax-async-functions": { + "version": "6.13.0", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz", + "integrity": "sha1-ytnK0RkbWtY0vzCuCHI5HgZHvpU=", + "dev": true + }, + "babel-plugin-syntax-async-generators": { + "version": "6.13.0", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-async-generators/-/babel-plugin-syntax-async-generators-6.13.0.tgz", + "integrity": "sha1-a8lj67FuzLrmuStZbrfzXDQqi5o=", + "dev": true + }, + "babel-plugin-syntax-class-constructor-call": { + "version": "6.18.0", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-class-constructor-call/-/babel-plugin-syntax-class-constructor-call-6.18.0.tgz", + "integrity": "sha1-nLnTn+Q8hgC+yBRkVt3L1OGnZBY=", + "dev": true + }, + "babel-plugin-syntax-class-properties": { + "version": "6.13.0", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz", + "integrity": "sha1-1+sjt5oxf4VDlixQW4J8fWysJ94=", + "dev": true + }, + "babel-plugin-syntax-decorators": { + "version": "6.13.0", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-decorators/-/babel-plugin-syntax-decorators-6.13.0.tgz", + "integrity": "sha1-MSVjtNvePMgGzuPkFszurd0RrAs=", + "dev": true + }, + "babel-plugin-syntax-do-expressions": { + "version": "6.13.0", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-do-expressions/-/babel-plugin-syntax-do-expressions-6.13.0.tgz", + "integrity": "sha1-V0d1YTmqJtOQ0JQQsDdEugfkeW0=", + "dev": true + }, + "babel-plugin-syntax-dynamic-import": { + "version": "6.18.0", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-dynamic-import/-/babel-plugin-syntax-dynamic-import-6.18.0.tgz", + "integrity": "sha1-jWomIpyDdFqZgqRBBRVyyqF5sdo=", + "dev": true + }, + "babel-plugin-syntax-exponentiation-operator": { + "version": "6.13.0", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz", + "integrity": "sha1-nufoM3KQ2pUoggGmpX9BcDF4MN4=", + "dev": true + }, + "babel-plugin-syntax-export-extensions": { + "version": "6.13.0", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-export-extensions/-/babel-plugin-syntax-export-extensions-6.13.0.tgz", + "integrity": "sha1-cKFITw+QiaToStRLrDU8lbmxJyE=", + "dev": true + }, + "babel-plugin-syntax-function-bind": { + "version": "6.13.0", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-function-bind/-/babel-plugin-syntax-function-bind-6.13.0.tgz", + "integrity": "sha1-SMSV8Xe98xqYHnMvVa3AvdJgH0Y=", + "dev": true + }, + "babel-plugin-syntax-jsx": { + "version": "6.18.0", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz", + "integrity": "sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY=", + "dev": true + }, + "babel-plugin-syntax-object-rest-spread": { + "version": "6.13.0", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz", + "integrity": "sha1-/WU28rzhODb/o6VFjEkDpZe7O/U=", + "dev": true + }, + "babel-plugin-syntax-trailing-function-commas": { + "version": "6.22.0", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz", + "integrity": "sha1-ugNgk3+NBuQBgKQ/4NVhb/9TLPM=", + "dev": true + }, + "babel-plugin-transform-async-generator-functions": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-async-generator-functions/-/babel-plugin-transform-async-generator-functions-6.24.1.tgz", + "integrity": "sha1-8FiQAUX9PpkHpt3yjaWfIVJYpds=", + "dev": true, + "requires": { + "babel-helper-remap-async-to-generator": "^6.24.1", + "babel-plugin-syntax-async-generators": "^6.5.0", + "babel-runtime": "^6.22.0" + } + }, + "babel-plugin-transform-async-to-generator": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz", + "integrity": "sha1-ZTbjeK/2yx1VF6wOQOs+n8jQh2E=", + "dev": true, + "requires": { + "babel-helper-remap-async-to-generator": "^6.24.1", + "babel-plugin-syntax-async-functions": "^6.8.0", + "babel-runtime": "^6.22.0" + } + }, + "babel-plugin-transform-class-constructor-call": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-class-constructor-call/-/babel-plugin-transform-class-constructor-call-6.24.1.tgz", + "integrity": "sha1-gNwoVQWsBn3LjWxl4vbxGrd2Xvk=", + "dev": true, + "requires": { + "babel-plugin-syntax-class-constructor-call": "^6.18.0", + "babel-runtime": "^6.22.0", + "babel-template": "^6.24.1" + } + }, + "babel-plugin-transform-class-properties": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.24.1.tgz", + "integrity": "sha1-anl2PqYdM9NvN7YRqp3vgagbRqw=", + "dev": true, + "requires": { + "babel-helper-function-name": "^6.24.1", + "babel-plugin-syntax-class-properties": "^6.8.0", + "babel-runtime": "^6.22.0", + "babel-template": "^6.24.1" + } + }, + "babel-plugin-transform-decorators": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-decorators/-/babel-plugin-transform-decorators-6.24.1.tgz", + "integrity": "sha1-eIAT2PjGtSIr33s0Q5Df13Vp4k0=", + "dev": true, + "requires": { + "babel-helper-explode-class": "^6.24.1", + "babel-plugin-syntax-decorators": "^6.13.0", + "babel-runtime": "^6.22.0", + "babel-template": "^6.24.1", + "babel-types": "^6.24.1" + } + }, + "babel-plugin-transform-do-expressions": { + "version": "6.22.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-do-expressions/-/babel-plugin-transform-do-expressions-6.22.0.tgz", + "integrity": "sha1-KMyvkoEtlJws0SgfaQyP3EaK6bs=", + "dev": true, + "requires": { + "babel-plugin-syntax-do-expressions": "^6.8.0", + "babel-runtime": "^6.22.0" + } + }, + "babel-plugin-transform-es2015-arrow-functions": { + "version": "6.22.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz", + "integrity": "sha1-RSaSy3EdX3ncf4XkQM5BufJE0iE=", + "dev": true, + "requires": { + "babel-runtime": "^6.22.0" + } + }, + "babel-plugin-transform-es2015-block-scoped-functions": { + "version": "6.22.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz", + "integrity": "sha1-u8UbSflk1wy42OC5ToICRs46YUE=", + "dev": true, + "requires": { + "babel-runtime": "^6.22.0" + } + }, + "babel-plugin-transform-es2015-block-scoping": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz", + "integrity": "sha1-1w9SmcEwjQXBL0Y4E7CgnnOxiV8=", + "dev": true, + "requires": { + "babel-runtime": "^6.26.0", + "babel-template": "^6.26.0", + "babel-traverse": "^6.26.0", + "babel-types": "^6.26.0", + "lodash": "^4.17.4" + } + }, + "babel-plugin-transform-es2015-classes": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz", + "integrity": "sha1-WkxYpQyclGHlZLSyo7+ryXolhNs=", + "dev": true, + "requires": { + "babel-helper-define-map": "^6.24.1", + "babel-helper-function-name": "^6.24.1", + "babel-helper-optimise-call-expression": "^6.24.1", + "babel-helper-replace-supers": "^6.24.1", + "babel-messages": "^6.23.0", + "babel-runtime": "^6.22.0", + "babel-template": "^6.24.1", + "babel-traverse": "^6.24.1", + "babel-types": "^6.24.1" + } + }, + "babel-plugin-transform-es2015-computed-properties": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz", + "integrity": "sha1-b+Ko0WiV1WNPTNmZttNICjCBWbM=", + "dev": true, + "requires": { + "babel-runtime": "^6.22.0", + "babel-template": "^6.24.1" + } + }, + "babel-plugin-transform-es2015-destructuring": { + "version": "6.23.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz", + "integrity": "sha1-mXux8auWf2gtKwh2/jWNYOdlxW0=", + "dev": true, + "requires": { + "babel-runtime": "^6.22.0" + } + }, + "babel-plugin-transform-es2015-duplicate-keys": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz", + "integrity": "sha1-c+s9MQypaePvnskcU3QabxV2Qj4=", + "dev": true, + "requires": { + "babel-runtime": "^6.22.0", + "babel-types": "^6.24.1" + } + }, + "babel-plugin-transform-es2015-for-of": { + "version": "6.23.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz", + "integrity": "sha1-9HyVsrYT3x0+zC/bdXNiPHUkhpE=", + "dev": true, + "requires": { + "babel-runtime": "^6.22.0" + } + }, + "babel-plugin-transform-es2015-function-name": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz", + "integrity": "sha1-g0yJhTvDaxrw86TF26qU/Y6sqos=", + "dev": true, + "requires": { + "babel-helper-function-name": "^6.24.1", + "babel-runtime": "^6.22.0", + "babel-types": "^6.24.1" + } + }, + "babel-plugin-transform-es2015-literals": { + "version": "6.22.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz", + "integrity": "sha1-T1SgLWzWbPkVKAAZox0xklN3yi4=", + "dev": true, + "requires": { + "babel-runtime": "^6.22.0" + } + }, + "babel-plugin-transform-es2015-modules-amd": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz", + "integrity": "sha1-Oz5UAXI5hC1tGcMBHEvS8AoA0VQ=", + "dev": true, + "requires": { + "babel-plugin-transform-es2015-modules-commonjs": "^6.24.1", + "babel-runtime": "^6.22.0", + "babel-template": "^6.24.1" + } + }, + "babel-plugin-transform-es2015-modules-commonjs": { + "version": "6.26.2", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.2.tgz", + "integrity": "sha512-CV9ROOHEdrjcwhIaJNBGMBCodN+1cfkwtM1SbUHmvyy35KGT7fohbpOxkE2uLz1o6odKK2Ck/tz47z+VqQfi9Q==", + "dev": true, + "requires": { + "babel-plugin-transform-strict-mode": "^6.24.1", + "babel-runtime": "^6.26.0", + "babel-template": "^6.26.0", + "babel-types": "^6.26.0" + } + }, + "babel-plugin-transform-es2015-modules-systemjs": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz", + "integrity": "sha1-/4mhQrkRmpBhlfXxBuzzBdlAfSM=", + "dev": true, + "requires": { + "babel-helper-hoist-variables": "^6.24.1", + "babel-runtime": "^6.22.0", + "babel-template": "^6.24.1" + } + }, + "babel-plugin-transform-es2015-modules-umd": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz", + "integrity": "sha1-rJl+YoXNGO1hdq22B9YCNErThGg=", + "dev": true, + "requires": { + "babel-plugin-transform-es2015-modules-amd": "^6.24.1", + "babel-runtime": "^6.22.0", + "babel-template": "^6.24.1" + } + }, + "babel-plugin-transform-es2015-object-super": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz", + "integrity": "sha1-JM72muIcuDp/hgPa0CH1cusnj40=", + "dev": true, + "requires": { + "babel-helper-replace-supers": "^6.24.1", + "babel-runtime": "^6.22.0" + } + }, + "babel-plugin-transform-es2015-parameters": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz", + "integrity": "sha1-V6w1GrScrxSpfNE7CfZv3wpiXys=", + "dev": true, + "requires": { + "babel-helper-call-delegate": "^6.24.1", + "babel-helper-get-function-arity": "^6.24.1", + "babel-runtime": "^6.22.0", + "babel-template": "^6.24.1", + "babel-traverse": "^6.24.1", + "babel-types": "^6.24.1" + } + }, + "babel-plugin-transform-es2015-shorthand-properties": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz", + "integrity": "sha1-JPh11nIch2YbvZmkYi5R8U3jiqA=", + "dev": true, + "requires": { + "babel-runtime": "^6.22.0", + "babel-types": "^6.24.1" + } + }, + "babel-plugin-transform-es2015-spread": { + "version": "6.22.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz", + "integrity": "sha1-1taKmfia7cRTbIGlQujdnxdG+NE=", + "dev": true, + "requires": { + "babel-runtime": "^6.22.0" + } + }, + "babel-plugin-transform-es2015-sticky-regex": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz", + "integrity": "sha1-AMHNsaynERLN8M9hJsLta0V8zbw=", + "dev": true, + "requires": { + "babel-helper-regex": "^6.24.1", + "babel-runtime": "^6.22.0", + "babel-types": "^6.24.1" + } + }, + "babel-plugin-transform-es2015-template-literals": { + "version": "6.22.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz", + "integrity": "sha1-qEs0UPfp+PH2g51taH2oS7EjbY0=", + "dev": true, + "requires": { + "babel-runtime": "^6.22.0" + } + }, + "babel-plugin-transform-es2015-typeof-symbol": { + "version": "6.23.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz", + "integrity": "sha1-3sCfHN3/lLUqxz1QXITfWdzOs3I=", + "dev": true, + "requires": { + "babel-runtime": "^6.22.0" + } + }, + "babel-plugin-transform-es2015-unicode-regex": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz", + "integrity": "sha1-04sS9C6nMj9yk4fxinxa4frrNek=", + "dev": true, + "requires": { + "babel-helper-regex": "^6.24.1", + "babel-runtime": "^6.22.0", + "regexpu-core": "^2.0.0" + } + }, + "babel-plugin-transform-exponentiation-operator": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz", + "integrity": "sha1-KrDJx/MJj6SJB3cruBP+QejeOg4=", + "dev": true, + "requires": { + "babel-helper-builder-binary-assignment-operator-visitor": "^6.24.1", + "babel-plugin-syntax-exponentiation-operator": "^6.8.0", + "babel-runtime": "^6.22.0" + } + }, + "babel-plugin-transform-export-extensions": { + "version": "6.22.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-export-extensions/-/babel-plugin-transform-export-extensions-6.22.0.tgz", + "integrity": "sha1-U3OLR+deghhYnuqUbLvTkQm75lM=", + "dev": true, + "requires": { + "babel-plugin-syntax-export-extensions": "^6.8.0", + "babel-runtime": "^6.22.0" + } + }, + "babel-plugin-transform-function-bind": { + "version": "6.22.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-function-bind/-/babel-plugin-transform-function-bind-6.22.0.tgz", + "integrity": "sha1-xvuOlqwpajELjPjqQBRiQH3fapc=", + "dev": true, + "requires": { + "babel-plugin-syntax-function-bind": "^6.8.0", + "babel-runtime": "^6.22.0" + } + }, + "babel-plugin-transform-object-rest-spread": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz", + "integrity": "sha1-DzZpLVD+9rfi1LOsFHgTepY7ewY=", + "dev": true, + "requires": { + "babel-plugin-syntax-object-rest-spread": "^6.8.0", + "babel-runtime": "^6.26.0" + } + }, + "babel-plugin-transform-regenerator": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz", + "integrity": "sha1-4HA2lvveJ/Cj78rPi03KL3s6jy8=", + "dev": true, + "requires": { + "regenerator-transform": "^0.10.0" + } + }, + "babel-plugin-transform-runtime": { + "version": "6.23.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-runtime/-/babel-plugin-transform-runtime-6.23.0.tgz", + "integrity": "sha1-iEkNRGUC6puOfvsP4J7E2ZR5se4=", + "dev": true, + "requires": { + "babel-runtime": "^6.22.0" + } + }, + "babel-plugin-transform-strict-mode": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz", + "integrity": "sha1-1fr3qleKZbvlkc9e2uBKDGcCB1g=", + "dev": true, + "requires": { + "babel-runtime": "^6.22.0", + "babel-types": "^6.24.1" + } + }, + "babel-plugin-transform-vue-jsx": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-vue-jsx/-/babel-plugin-transform-vue-jsx-3.5.0.tgz", + "integrity": "sha512-5vCg8K7aiiLwrFJ45ZF/b4cIiFpGAoYL5uNZpbgiZFptBc5LkueBCQXTVexrd1IFlpTV7XndqFjtWjcJ54JGUQ==", + "dev": true, + "requires": { + "esutils": "^2.0.2" + } + }, + "babel-preset-env": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/babel-preset-env/-/babel-preset-env-1.6.0.tgz", + "integrity": "sha512-OVgtQRuOZKckrILgMA5rvctvFZPv72Gua9Rt006AiPoB0DJKGN07UmaQA+qRrYgK71MVct8fFhT0EyNWYorVew==", + "dev": true, + "requires": { + "babel-plugin-check-es2015-constants": "^6.22.0", + "babel-plugin-syntax-trailing-function-commas": "^6.22.0", + "babel-plugin-transform-async-to-generator": "^6.22.0", + "babel-plugin-transform-es2015-arrow-functions": "^6.22.0", + "babel-plugin-transform-es2015-block-scoped-functions": "^6.22.0", + "babel-plugin-transform-es2015-block-scoping": "^6.23.0", + "babel-plugin-transform-es2015-classes": "^6.23.0", + "babel-plugin-transform-es2015-computed-properties": "^6.22.0", + "babel-plugin-transform-es2015-destructuring": "^6.23.0", + "babel-plugin-transform-es2015-duplicate-keys": "^6.22.0", + "babel-plugin-transform-es2015-for-of": "^6.23.0", + "babel-plugin-transform-es2015-function-name": "^6.22.0", + "babel-plugin-transform-es2015-literals": "^6.22.0", + "babel-plugin-transform-es2015-modules-amd": "^6.22.0", + "babel-plugin-transform-es2015-modules-commonjs": "^6.23.0", + "babel-plugin-transform-es2015-modules-systemjs": "^6.23.0", + "babel-plugin-transform-es2015-modules-umd": "^6.23.0", + "babel-plugin-transform-es2015-object-super": "^6.22.0", + "babel-plugin-transform-es2015-parameters": "^6.23.0", + "babel-plugin-transform-es2015-shorthand-properties": "^6.22.0", + "babel-plugin-transform-es2015-spread": "^6.22.0", + "babel-plugin-transform-es2015-sticky-regex": "^6.22.0", + "babel-plugin-transform-es2015-template-literals": "^6.22.0", + "babel-plugin-transform-es2015-typeof-symbol": "^6.23.0", + "babel-plugin-transform-es2015-unicode-regex": "^6.22.0", + "babel-plugin-transform-exponentiation-operator": "^6.22.0", + "babel-plugin-transform-regenerator": "^6.22.0", + "browserslist": "^2.1.2", + "invariant": "^2.2.2", + "semver": "^5.3.0" + } + }, + "babel-preset-stage-0": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-preset-stage-0/-/babel-preset-stage-0-6.24.1.tgz", + "integrity": "sha1-VkLRUEL5E4TX5a+LyIsduVsDnmo=", + "dev": true, + "requires": { + "babel-plugin-transform-do-expressions": "^6.22.0", + "babel-plugin-transform-function-bind": "^6.22.0", + "babel-preset-stage-1": "^6.24.1" + } + }, + "babel-preset-stage-1": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-preset-stage-1/-/babel-preset-stage-1-6.24.1.tgz", + "integrity": "sha1-dpLNfc1oSZB+auSgqFWJz7niv7A=", + "dev": true, + "requires": { + "babel-plugin-transform-class-constructor-call": "^6.24.1", + "babel-plugin-transform-export-extensions": "^6.22.0", + "babel-preset-stage-2": "^6.24.1" + } + }, + "babel-preset-stage-2": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-preset-stage-2/-/babel-preset-stage-2-6.24.1.tgz", + "integrity": "sha1-2eKWD7PXEYfw5k7sYrwHdnIZvcE=", + "dev": true, + "requires": { + "babel-plugin-syntax-dynamic-import": "^6.18.0", + "babel-plugin-transform-class-properties": "^6.24.1", + "babel-plugin-transform-decorators": "^6.24.1", + "babel-preset-stage-3": "^6.24.1" + } + }, + "babel-preset-stage-3": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-preset-stage-3/-/babel-preset-stage-3-6.24.1.tgz", + "integrity": "sha1-g2raCp56f6N8sTj7kyb4eTSkg5U=", + "dev": true, + "requires": { + "babel-plugin-syntax-trailing-function-commas": "^6.22.0", + "babel-plugin-transform-async-generator-functions": "^6.24.1", + "babel-plugin-transform-async-to-generator": "^6.24.1", + "babel-plugin-transform-exponentiation-operator": "^6.24.1", + "babel-plugin-transform-object-rest-spread": "^6.22.0" + } + }, + "babel-register": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-register/-/babel-register-6.26.0.tgz", + "integrity": "sha1-btAhFz4vy0htestFxgCahW9kcHE=", + "dev": true, + "requires": { + "babel-core": "^6.26.0", + "babel-runtime": "^6.26.0", + "core-js": "^2.5.0", + "home-or-tmp": "^2.0.0", + "lodash": "^4.17.4", + "mkdirp": "^0.5.1", + "source-map-support": "^0.4.15" + } + }, + "babel-runtime": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz", + "integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=", + "dev": true, + "requires": { + "core-js": "^2.4.0", + "regenerator-runtime": "^0.11.0" + } + }, + "babel-template": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-template/-/babel-template-6.26.0.tgz", + "integrity": "sha1-3gPi0WOWsGn0bdn/+FIfsaDjXgI=", + "dev": true, + "requires": { + "babel-runtime": "^6.26.0", + "babel-traverse": "^6.26.0", + "babel-types": "^6.26.0", + "babylon": "^6.18.0", + "lodash": "^4.17.4" + } + }, + "babel-traverse": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.26.0.tgz", + "integrity": "sha1-RqnL1+3MYsjlwGTi0tjQ9ANXZu4=", + "dev": true, + "requires": { + "babel-code-frame": "^6.26.0", + "babel-messages": "^6.23.0", + "babel-runtime": "^6.26.0", + "babel-types": "^6.26.0", + "babylon": "^6.18.0", + "debug": "^2.6.8", + "globals": "^9.18.0", + "invariant": "^2.2.2", + "lodash": "^4.17.4" + } + }, + "babel-types": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-types/-/babel-types-6.26.0.tgz", + "integrity": "sha1-o7Bz+Uq0nrb6Vc1lInozQ4BjJJc=", + "dev": true, + "requires": { + "babel-runtime": "^6.26.0", + "esutils": "^2.0.2", + "lodash": "^4.17.4", + "to-fast-properties": "^1.0.3" + } + }, + "babylon": { + "version": "6.18.0", + "resolved": "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz", + "integrity": "sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==", + "dev": true + }, + "balanced-match": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", + "dev": true + }, + "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" + } + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", + "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==", + "dev": true + } + } + }, + "base64-js": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.3.1.tgz", + "integrity": "sha512-mLQ4i2QO1ytvGWFWmcngKO//JXAQueZvwEKtjgQFM4jIK0kU+ytMfplL8j+n5mspOfjHwoAg+9yhb7BwAHm36g==", + "dev": true + }, + "basic-auth": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/basic-auth/-/basic-auth-2.0.1.tgz", + "integrity": "sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==", + "dev": true, + "requires": { + "safe-buffer": "5.1.2" + } + }, + "bcrypt-pbkdf": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", + "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", + "dev": true, + "requires": { + "tweetnacl": "^0.14.3" + } + }, + "bfj": { + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/bfj/-/bfj-6.1.2.tgz", + "integrity": "sha512-BmBJa4Lip6BPRINSZ0BPEIfB1wUY/9rwbwvIHQA1KjX9om29B6id0wnWXq7m3bn5JrUVjeOTnVuhPT1FiHwPGw==", + "dev": true, + "requires": { + "bluebird": "^3.5.5", + "check-types": "^8.0.3", + "hoopy": "^0.1.4", + "tryer": "^1.0.1" + } + }, + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "dev": true + }, + "binary-extensions": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", + "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", + "dev": true + }, + "bluebird": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.0.tgz", + "integrity": "sha512-aBQ1FxIa7kSWCcmKHlcHFlT2jt6J/l4FzC7KcPELkOJOsPOb/bccdhmIrKDfXhwFrmc7vDoDrrepFvGqjyXGJg==", + "dev": true + }, + "bn.js": { + "version": "4.11.8", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.8.tgz", + "integrity": "sha512-ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA==", + "dev": true + }, + "body-parser": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz", + "integrity": "sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==", + "dev": true, + "requires": { + "bytes": "3.1.0", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "~1.1.2", + "http-errors": "1.7.2", + "iconv-lite": "0.4.24", + "on-finished": "~2.3.0", + "qs": "6.7.0", + "raw-body": "2.4.0", + "type-is": "~1.6.17" + } + }, + "boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=", + "dev": true + }, + "boxen": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/boxen/-/boxen-3.2.0.tgz", + "integrity": "sha512-cU4J/+NodM3IHdSL2yN8bqYqnmlBTidDR4RC7nJs61ZmtGz8VZzM3HLQX0zY5mrSmPtR3xWwsq2jOUQqFZN8+A==", + "dev": true, + "requires": { + "ansi-align": "^3.0.0", + "camelcase": "^5.3.1", + "chalk": "^2.4.2", + "cli-boxes": "^2.2.0", + "string-width": "^3.0.0", + "term-size": "^1.2.0", + "type-fest": "^0.3.0", + "widest-line": "^2.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "dev": true + }, + "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": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dev": true, + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + } + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "requires": { + "ansi-regex": "^4.1.0" + } + } + } + }, + "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, + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "brorand": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", + "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=", + "dev": true + }, + "browserify-aes": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", + "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", + "dev": true, + "requires": { + "buffer-xor": "^1.0.3", + "cipher-base": "^1.0.0", + "create-hash": "^1.1.0", + "evp_bytestokey": "^1.0.3", + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "browserify-cipher": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", + "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", + "dev": true, + "requires": { + "browserify-aes": "^1.0.4", + "browserify-des": "^1.0.0", + "evp_bytestokey": "^1.0.0" + } + }, + "browserify-des": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", + "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", + "dev": true, + "requires": { + "cipher-base": "^1.0.1", + "des.js": "^1.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "browserify-rsa": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.0.1.tgz", + "integrity": "sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ=", + "dev": true, + "requires": { + "bn.js": "^4.1.0", + "randombytes": "^2.0.1" + } + }, + "browserify-sign": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.0.4.tgz", + "integrity": "sha1-qk62jl17ZYuqa/alfmMMvXqT0pg=", + "dev": true, + "requires": { + "bn.js": "^4.1.1", + "browserify-rsa": "^4.0.0", + "create-hash": "^1.1.0", + "create-hmac": "^1.1.2", + "elliptic": "^6.0.0", + "inherits": "^2.0.1", + "parse-asn1": "^5.0.0" + } + }, + "browserify-zlib": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.1.4.tgz", + "integrity": "sha1-uzX4pRn2AOD6a4SFJByXnQFB+y0=", + "dev": true, + "requires": { + "pako": "~0.2.0" + } + }, + "browserslist": { + "version": "2.11.3", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-2.11.3.tgz", + "integrity": "sha512-yWu5cXT7Av6mVwzWc8lMsJMHWn4xyjSuGYi4IozbVTLUOEYPSagUB8kiMDUHA1fS3zjr8nkxkn9jdvug4BBRmA==", + "dev": true, + "requires": { + "caniuse-lite": "^1.0.30000792", + "electron-to-chromium": "^1.3.30" + } + }, + "buffer": { + "version": "4.9.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.1.tgz", + "integrity": "sha1-bRu2AbB6TvztlwlBMgkwJ8lbwpg=", + "dev": true, + "requires": { + "base64-js": "^1.0.2", + "ieee754": "^1.1.4", + "isarray": "^1.0.0" + } + }, + "buffer-from": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz", + "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==", + "dev": true + }, + "buffer-xor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", + "integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=", + "dev": true + }, + "builtin-modules": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz", + "integrity": "sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8=", + "dev": true + }, + "builtin-status-codes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", + "integrity": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=", + "dev": true + }, + "bytes": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", + "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==", + "dev": true + }, + "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" + }, + "dependencies": { + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", + "dev": true + } + } + }, + "cacheable-request": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-6.1.0.tgz", + "integrity": "sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==", + "dev": true, + "requires": { + "clone-response": "^1.0.2", + "get-stream": "^5.1.0", + "http-cache-semantics": "^4.0.0", + "keyv": "^3.0.0", + "lowercase-keys": "^2.0.0", + "normalize-url": "^4.1.0", + "responselike": "^1.0.2" + }, + "dependencies": { + "get-stream": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.1.0.tgz", + "integrity": "sha512-EXr1FOzrzTfGeL0gQdeFEvOMm2mzMOglyiOXSTpPC+iAjAKftbr3jpCMWynogwYnM+eSj9sHGc6wjIcDvYiygw==", + "dev": true, + "requires": { + "pump": "^3.0.0" + } + }, + "lowercase-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", + "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==", + "dev": true + }, + "normalize-url": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.0.tgz", + "integrity": "sha512-2s47yzUxdexf1OhyRi4Em83iQk0aPvwTddtFz4hnSSw9dCEsLEGf6SwIO8ss/19S9iBb5sJaOuTvTGDeZI00BQ==", + "dev": true + } + } + }, + "caller-callsite": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz", + "integrity": "sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ=", + "dev": true, + "requires": { + "callsites": "^2.0.0" + }, + "dependencies": { + "callsites": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz", + "integrity": "sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=", + "dev": true + } + } + }, + "caller-path": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-0.1.0.tgz", + "integrity": "sha1-lAhe9jWB7NPaqSREqP6U6CV3dR8=", + "dev": true, + "requires": { + "callsites": "^0.2.0" + } + }, + "callsites": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-0.2.0.tgz", + "integrity": "sha1-r6uWJikQp/M8GaV3WCXGnzTjUMo=", + "dev": true + }, + "camel-case": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-3.0.0.tgz", + "integrity": "sha1-yjw2iKTpzzpM2nd9xNy8cTJJz3M=", + "dev": true, + "requires": { + "no-case": "^2.2.0", + "upper-case": "^1.1.1" + } + }, + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true + }, + "caniuse-api": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", + "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", + "dev": true, + "requires": { + "browserslist": "^4.0.0", + "caniuse-lite": "^1.0.0", + "lodash.memoize": "^4.1.2", + "lodash.uniq": "^4.5.0" + }, + "dependencies": { + "browserslist": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.7.0.tgz", + "integrity": "sha512-9rGNDtnj+HaahxiVV38Gn8n8Lr8REKsel68v1sPFfIGEK6uSXTY3h9acgiT1dZVtOOUtifo/Dn8daDQ5dUgVsA==", + "dev": true, + "requires": { + "caniuse-lite": "^1.0.30000989", + "electron-to-chromium": "^1.3.247", + "node-releases": "^1.1.29" + } + } + } + }, + "caniuse-lite": { + "version": "1.0.30000999", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000999.tgz", + "integrity": "sha512-1CUyKyecPeksKwXZvYw0tEoaMCo/RwBlXmEtN5vVnabvO0KPd9RQLcaAuR9/1F+KDMv6esmOFWlsXuzDk+8rxg==", + "dev": true + }, + "caseless": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=", + "dev": true + }, + "center-align": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz", + "integrity": "sha1-qg0yYptu6XIgBBHL1EYckHvCt60=", + "dev": true, + "requires": { + "align-text": "^0.1.3", + "lazy-cache": "^1.0.3" + } + }, + "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" + } + }, + "check-types": { + "version": "8.0.3", + "resolved": "https://registry.npmjs.org/check-types/-/check-types-8.0.3.tgz", + "integrity": "sha512-YpeKZngUmG65rLudJ4taU7VLkOCTMhNl/u4ctNC56LQS/zJTyNH0Lrtwm1tfTsbLlwvlfsA2d1c8vCf/Kh2KwQ==", + "dev": true + }, + "chokidar": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", + "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", + "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.1" + }, + "dependencies": { + "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 + }, + "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" + } + }, + "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" + } + }, + "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" + } + }, + "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" + } + } + } + }, + "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-glob": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", + "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", + "dev": true, + "requires": { + "is-extglob": "^2.1.1" + } + }, + "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" + } + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", + "dev": true + }, + "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 + } + } + }, + "ci-info": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", + "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==", + "dev": true + }, + "cipher-base": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", + "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "circular-json": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/circular-json/-/circular-json-0.3.3.tgz", + "integrity": "sha512-UZK3NBx2Mca+b5LsG7bY183pHWt5Y1xts4P3Pz7ENTwGVnJOUWbRb3ocjvX7hx9tq/yTAdclXm9sZ38gNuem4A==", + "dev": true + }, + "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==", + "dev": true, + "requires": { + "arr-union": "^3.1.0", + "define-property": "^0.2.5", + "isobject": "^3.0.0", + "static-extend": "^0.1.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" + } + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", + "dev": true + } + } + }, + "clean-css": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.2.1.tgz", + "integrity": "sha512-4ZxI6dy4lrY6FHzfiy1aEOXgu4LIsW2MhwG0VBKdcoGoH/XLFgaHSdLTGr4O8Be6A8r3MOphEiI8Gc1n0ecf3g==", + "dev": true, + "requires": { + "source-map": "~0.6.0" + } + }, + "cli-boxes": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-2.2.0.tgz", + "integrity": "sha512-gpaBrMAizVEANOpfZp/EEUixTXDyGt7DFzdK5hU+UbWt/J0lB0w20ncZj59Z9a93xHb9u12zF5BS6i9RKbtg4w==", + "dev": true + }, + "cli-cursor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-1.0.2.tgz", + "integrity": "sha1-ZNo/fValRBLll5S9Ytw1KV6PKYc=", + "dev": true, + "requires": { + "restore-cursor": "^1.0.1" + } + }, + "cli-spinners": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-1.3.1.tgz", + "integrity": "sha512-1QL4544moEsDVH9T/l6Cemov/37iv1RtoKf7NJ04A60+4MREXNfx/QvavbH6QoGdsD4N4Mwy49cmaINR/o2mdg==", + "dev": true + }, + "cli-width": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-2.2.0.tgz", + "integrity": "sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk=", + "dev": true + }, + "cliui": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", + "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", + "dev": true, + "requires": { + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "dev": true + }, + "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": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dev": true, + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + } + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "requires": { + "ansi-regex": "^4.1.0" + } + } + } + }, + "clone-response": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz", + "integrity": "sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=", + "dev": true, + "requires": { + "mimic-response": "^1.0.0" + } + }, + "co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=", + "dev": true + }, + "coa": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/coa/-/coa-2.0.2.tgz", + "integrity": "sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==", + "dev": true, + "requires": { + "@types/q": "^1.5.1", + "chalk": "^2.4.1", + "q": "^1.1.2" + } + }, + "coalescy": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/coalescy/-/coalescy-1.0.0.tgz", + "integrity": "sha1-SwZYRrg2NhrabEtKSr9LwcrDG/E=", + "dev": true + }, + "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=", + "dev": true + }, + "collection-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", + "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=", + "dev": true, + "requires": { + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" + } + }, + "color": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/color/-/color-3.1.2.tgz", + "integrity": "sha512-vXTJhHebByxZn3lDvDJYw4lR5+uB3vuoHsuYA5AKuxRVn5wzzIfQKGLBmgdVRHKTJYeK5rvJcHnrd0Li49CFpg==", + "dev": true, + "requires": { + "color-convert": "^1.9.1", + "color-string": "^1.5.2" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "color-string": { + "version": "1.5.3", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.5.3.tgz", + "integrity": "sha512-dC2C5qeWoYkxki5UAXapdjqO672AM4vZuPGRQfO8b5HKuKGBbKWpITyDYN7TOFKvRW7kOgAn3746clDBMDJyQw==", + "dev": true, + "requires": { + "color-name": "^1.0.0", + "simple-swizzle": "^0.2.2" + } + }, + "combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dev": true, + "requires": { + "delayed-stream": "~1.0.0" + } + }, + "commander": { + "version": "2.17.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.17.1.tgz", + "integrity": "sha512-wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg==", + "dev": true + }, + "commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=", + "dev": true + }, + "component-emitter": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", + "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==", + "dev": true + }, + "compressible": { + "version": "2.0.17", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.17.tgz", + "integrity": "sha512-BGHeLCK1GV7j1bSmQQAi26X+GgWcTjLr/0tzSvMCl3LH1w1IJ4PFSPoV5316b30cneTziC+B1a+3OjoSUcQYmw==", + "dev": true, + "requires": { + "mime-db": ">= 1.40.0 < 2" + } + }, + "compression": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", + "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "dev": true, + "requires": { + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.16", + "debug": "2.6.9", + "on-headers": "~1.0.2", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" + }, + "dependencies": { + "bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=", + "dev": true + } + } + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true + }, + "concat-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "dev": true, + "requires": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + } + }, + "config-chain": { + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.12.tgz", + "integrity": "sha512-a1eOIcu8+7lUInge4Rpf/n4Krkf3Dd9lqhljRzII1/Zno/kRtUWnznPO3jOKBmTEktkt3fkxisUcivoj0ebzoA==", + "dev": true, + "requires": { + "ini": "^1.3.4", + "proto-list": "~1.2.1" + } + }, + "configstore": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/configstore/-/configstore-4.0.0.tgz", + "integrity": "sha512-CmquAXFBocrzaSM8mtGPMM/HiWmyIpr4CcJl/rgY2uCObZ/S7cKU0silxslqJejl+t/T9HS8E0PUNQD81JGUEQ==", + "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" + } + }, + "connect-history-api-fallback": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.3.0.tgz", + "integrity": "sha1-5R0X+PDvDbkKZP20feMFFVbp8Wk=", + "dev": true + }, + "connect-pause": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/connect-pause/-/connect-pause-0.1.1.tgz", + "integrity": "sha1-smmyu4Ldsaw9tQmcD7WCq6mfs3o=", + "dev": true + }, + "console-browserify": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.1.0.tgz", + "integrity": "sha1-8CQcRXMKn8YyOyBtvzjtx0HQuxA=", + "dev": true, + "requires": { + "date-now": "^0.1.4" + } + }, + "consolidate": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/consolidate/-/consolidate-0.14.5.tgz", + "integrity": "sha1-WiUEe8dvcwcmZ8jLUsmJiI9JTGM=", + "dev": true, + "requires": { + "bluebird": "^3.1.1" + } + }, + "constants-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", + "integrity": "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=", + "dev": true + }, + "contains-path": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/contains-path/-/contains-path-0.1.0.tgz", + "integrity": "sha1-/ozxhP9mcLa67wGp1IYaXL7EEgo=", + "dev": true + }, + "content-disposition": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz", + "integrity": "sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==", + "dev": true, + "requires": { + "safe-buffer": "5.1.2" + } + }, + "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==", + "dev": true + }, + "convert-source-map": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.6.0.tgz", + "integrity": "sha512-eFu7XigvxdZ1ETfbgPBohgyQ/Z++C0eEhTor0qRwBw9unw+L0/6V8wkSuGgzdThkiS5lSpdptOQPD8Ak40a+7A==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.1" + } + }, + "cookie": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz", + "integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==", + "dev": true + }, + "cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=", + "dev": true + }, + "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-js": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.9.tgz", + "integrity": "sha512-HOpZf6eXmnl7la+cUdMnLvUxKNqLUzJvgIziQ0DiF3JwSImNphIqdGqzj6hIKyX04MmV0poclQ7+wjWvxQyR2A==", + "dev": true + }, + "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=", + "dev": true + }, + "cors": { + "version": "2.8.5", + "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", + "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", + "dev": true, + "requires": { + "object-assign": "^4", + "vary": "^1" + } + }, + "cosmiconfig": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-2.2.2.tgz", + "integrity": "sha512-GiNXLwAFPYHy25XmTPpafYvn3CLAkJ8FLsscq78MQd1Kh0OU6Yzhn4eV2MVF4G9WEQZoWEGltatdR+ntGPMl5A==", + "dev": true, + "requires": { + "is-directory": "^0.3.1", + "js-yaml": "^3.4.3", + "minimist": "^1.2.0", + "object-assign": "^4.1.0", + "os-homedir": "^1.0.1", + "parse-json": "^2.2.0", + "require-from-string": "^1.1.0" + }, + "dependencies": { + "minimist": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", + "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", + "dev": true + } + } + }, + "create-ecdh": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.3.tgz", + "integrity": "sha512-GbEHQPMOswGpKXM9kCWVrremUcBmjteUaQ01T9rkKCPDXfUHX0IoP9LpHYo2NPFampa4e+/pFDc3jQdxrxQLaw==", + "dev": true, + "requires": { + "bn.js": "^4.1.0", + "elliptic": "^6.0.0" + } + }, + "create-hash": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", + "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", + "dev": true, + "requires": { + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" + } + }, + "create-hmac": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", + "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", + "dev": true, + "requires": { + "cipher-base": "^1.0.3", + "create-hash": "^1.1.0", + "inherits": "^2.0.1", + "ripemd160": "^2.0.0", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + } + }, + "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" + } + }, + "crypto-browserify": { + "version": "3.12.0", + "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz", + "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==", + "dev": true, + "requires": { + "browserify-cipher": "^1.0.0", + "browserify-sign": "^4.0.0", + "create-ecdh": "^4.0.0", + "create-hash": "^1.1.0", + "create-hmac": "^1.1.0", + "diffie-hellman": "^5.0.0", + "inherits": "^2.0.1", + "pbkdf2": "^3.0.3", + "public-encrypt": "^4.0.0", + "randombytes": "^2.0.0", + "randomfill": "^1.0.3" + } + }, + "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 + }, + "css-color-names": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz", + "integrity": "sha1-gIrcLnnPhHOAabZGyyDsJ762KeA=", + "dev": true + }, + "css-declaration-sorter": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-4.0.1.tgz", + "integrity": "sha512-BcxQSKTSEEQUftYpBVnsH4SF05NTuBokb19/sBt6asXGKZ/6VP7PLG1CBCkFDYOnhXhPh0jMhO6xZ71oYHXHBA==", + "dev": true, + "requires": { + "postcss": "^7.0.1", + "timsort": "^0.3.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.18.tgz", + "integrity": "sha512-/7g1QXXgegpF+9GJj4iN7ChGF40sYuGYJ8WZu8DZWnmhQ/G36hfdk3q9LBJmoK+lZ+yzZ5KYpOoxq7LF1BxE8g==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "css-loader": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-3.2.0.tgz", + "integrity": "sha512-QTF3Ud5H7DaZotgdcJjGMvyDj5F3Pn1j/sC6VBEOVp94cbwqyIBdcs/quzj4MC1BKQSrTpQznegH/5giYbhnCQ==", + "dev": true, + "requires": { + "camelcase": "^5.3.1", + "cssesc": "^3.0.0", + "icss-utils": "^4.1.1", + "loader-utils": "^1.2.3", + "normalize-path": "^3.0.0", + "postcss": "^7.0.17", + "postcss-modules-extract-imports": "^2.0.0", + "postcss-modules-local-by-default": "^3.0.2", + "postcss-modules-scope": "^2.1.0", + "postcss-modules-values": "^3.0.0", + "postcss-value-parser": "^4.0.0", + "schema-utils": "^2.0.0" + }, + "dependencies": { + "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 + }, + "postcss": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.18.tgz", + "integrity": "sha512-/7g1QXXgegpF+9GJj4iN7ChGF40sYuGYJ8WZu8DZWnmhQ/G36hfdk3q9LBJmoK+lZ+yzZ5KYpOoxq7LF1BxE8g==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "postcss-value-parser": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.0.2.tgz", + "integrity": "sha512-LmeoohTpp/K4UiyQCwuGWlONxXamGzCMtFxLq4W1nZVGIQLYvMCJx3yAF9qyyuFpflABI9yVdtJAqbihOsCsJQ==", + "dev": true + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "css-select": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz", + "integrity": "sha1-KzoRBTnFNV8c2NMUYj6HCxIeyFg=", + "dev": true, + "requires": { + "boolbase": "~1.0.0", + "css-what": "2.1", + "domutils": "1.5.1", + "nth-check": "~1.0.1" + }, + "dependencies": { + "domutils": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz", + "integrity": "sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8=", + "dev": true, + "requires": { + "dom-serializer": "0", + "domelementtype": "1" + } + } + } + }, + "css-select-base-adapter": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz", + "integrity": "sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==", + "dev": true + }, + "css-tree": { + "version": "1.0.0-alpha.33", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.33.tgz", + "integrity": "sha512-SPt57bh5nQnpsTBsx/IXbO14sRc9xXu5MtMAVuo0BaQQmyf0NupNPPSoMaqiAF5tDFafYsTkfeH4Q/HCKXkg4w==", + "dev": true, + "requires": { + "mdn-data": "2.0.4", + "source-map": "^0.5.3" + }, + "dependencies": { + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true + } + } + }, + "css-unit-converter": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/css-unit-converter/-/css-unit-converter-1.1.1.tgz", + "integrity": "sha1-2bkoGtz9jO2TW9urqDeGiX9k6ZY=", + "dev": true + }, + "css-what": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-2.1.3.tgz", + "integrity": "sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg==", + "dev": true + }, + "cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "dev": true + }, + "cssnano": { + "version": "4.1.10", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-4.1.10.tgz", + "integrity": "sha512-5wny+F6H4/8RgNlaqab4ktc3e0/blKutmq8yNlBFXA//nSFFAqAngjNVRzUvCgYROULmZZUoosL/KSoZo5aUaQ==", + "dev": true, + "requires": { + "cosmiconfig": "^5.0.0", + "cssnano-preset-default": "^4.0.7", + "is-resolvable": "^1.0.0", + "postcss": "^7.0.0" + }, + "dependencies": { + "cosmiconfig": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz", + "integrity": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==", + "dev": true, + "requires": { + "import-fresh": "^2.0.0", + "is-directory": "^0.3.1", + "js-yaml": "^3.13.1", + "parse-json": "^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" + } + }, + "postcss": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.18.tgz", + "integrity": "sha512-/7g1QXXgegpF+9GJj4iN7ChGF40sYuGYJ8WZu8DZWnmhQ/G36hfdk3q9LBJmoK+lZ+yzZ5KYpOoxq7LF1BxE8g==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "cssnano-preset-default": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-4.0.7.tgz", + "integrity": "sha512-x0YHHx2h6p0fCl1zY9L9roD7rnlltugGu7zXSKQx6k2rYw0Hi3IqxcoAGF7u9Q5w1nt7vK0ulxV8Lo+EvllGsA==", + "dev": true, + "requires": { + "css-declaration-sorter": "^4.0.1", + "cssnano-util-raw-cache": "^4.0.1", + "postcss": "^7.0.0", + "postcss-calc": "^7.0.1", + "postcss-colormin": "^4.0.3", + "postcss-convert-values": "^4.0.1", + "postcss-discard-comments": "^4.0.2", + "postcss-discard-duplicates": "^4.0.2", + "postcss-discard-empty": "^4.0.1", + "postcss-discard-overridden": "^4.0.1", + "postcss-merge-longhand": "^4.0.11", + "postcss-merge-rules": "^4.0.3", + "postcss-minify-font-values": "^4.0.2", + "postcss-minify-gradients": "^4.0.2", + "postcss-minify-params": "^4.0.2", + "postcss-minify-selectors": "^4.0.2", + "postcss-normalize-charset": "^4.0.1", + "postcss-normalize-display-values": "^4.0.2", + "postcss-normalize-positions": "^4.0.2", + "postcss-normalize-repeat-style": "^4.0.2", + "postcss-normalize-string": "^4.0.2", + "postcss-normalize-timing-functions": "^4.0.2", + "postcss-normalize-unicode": "^4.0.1", + "postcss-normalize-url": "^4.0.1", + "postcss-normalize-whitespace": "^4.0.2", + "postcss-ordered-values": "^4.1.2", + "postcss-reduce-initial": "^4.0.3", + "postcss-reduce-transforms": "^4.0.2", + "postcss-svgo": "^4.0.2", + "postcss-unique-selectors": "^4.0.1" + }, + "dependencies": { + "postcss": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.18.tgz", + "integrity": "sha512-/7g1QXXgegpF+9GJj4iN7ChGF40sYuGYJ8WZu8DZWnmhQ/G36hfdk3q9LBJmoK+lZ+yzZ5KYpOoxq7LF1BxE8g==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "cssnano-util-get-arguments": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cssnano-util-get-arguments/-/cssnano-util-get-arguments-4.0.0.tgz", + "integrity": "sha1-7ToIKZ8h11dBsg87gfGU7UnMFQ8=", + "dev": true + }, + "cssnano-util-get-match": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cssnano-util-get-match/-/cssnano-util-get-match-4.0.0.tgz", + "integrity": "sha1-wOTKB/U4a7F+xeUiULT1lhNlFW0=", + "dev": true + }, + "cssnano-util-raw-cache": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/cssnano-util-raw-cache/-/cssnano-util-raw-cache-4.0.1.tgz", + "integrity": "sha512-qLuYtWK2b2Dy55I8ZX3ky1Z16WYsx544Q0UWViebptpwn/xDBmog2TLg4f+DBMg1rJ6JDWtn96WHbOKDWt1WQA==", + "dev": true, + "requires": { + "postcss": "^7.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.18.tgz", + "integrity": "sha512-/7g1QXXgegpF+9GJj4iN7ChGF40sYuGYJ8WZu8DZWnmhQ/G36hfdk3q9LBJmoK+lZ+yzZ5KYpOoxq7LF1BxE8g==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "cssnano-util-same-parent": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/cssnano-util-same-parent/-/cssnano-util-same-parent-4.0.1.tgz", + "integrity": "sha512-WcKx5OY+KoSIAxBW6UBBRay1U6vkYheCdjyVNDm85zt5K9mHoGOfsOsqIszfAqrQQFIIKgjh2+FDgIj/zsl21Q==", + "dev": true + }, + "csso": { + "version": "3.5.1", + "resolved": "https://registry.npmjs.org/csso/-/csso-3.5.1.tgz", + "integrity": "sha512-vrqULLffYU1Q2tLdJvaCYbONStnfkfimRxXNaGjxMldI0C7JPBC4rB1RyjhfdZ4m1frm8pM9uRPKH3d2knZ8gg==", + "dev": true, + "requires": { + "css-tree": "1.0.0-alpha.29" + }, + "dependencies": { + "css-tree": { + "version": "1.0.0-alpha.29", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.29.tgz", + "integrity": "sha512-sRNb1XydwkW9IOci6iB2xmy8IGCj6r/fr+JWitvJ2JxQRPzN3T4AGGVWCMlVmVwM1gtgALJRmGIlWv5ppnGGkg==", + "dev": true, + "requires": { + "mdn-data": "~1.1.0", + "source-map": "^0.5.3" + } + }, + "mdn-data": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-1.1.4.tgz", + "integrity": "sha512-FSYbp3lyKjyj3E7fMl6rYvUdX0FBXaluGqlFoYESWQlyUTq8R+wp0rkFxoYFqZlHCvsUXGjyJmLQSnXToYhOSA==", + "dev": true + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true + } + } + }, + "d": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/d/-/d-1.0.1.tgz", + "integrity": "sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==", + "dev": true, + "requires": { + "es5-ext": "^0.10.50", + "type": "^1.0.1" + } + }, + "dashdash": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", + "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", + "dev": true, + "requires": { + "assert-plus": "^1.0.0" + } + }, + "date-now": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/date-now/-/date-now-0.1.4.tgz", + "integrity": "sha1-6vQ5/U1ISK105cx9vvIAZyueNFs=", + "dev": true + }, + "de-indent": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/de-indent/-/de-indent-1.0.2.tgz", + "integrity": "sha1-sgOOhG3DO6pXlhKNCAS0VbjB4h0=", + "dev": true + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "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 + }, + "decompress-response": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", + "integrity": "sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=", + "dev": true, + "requires": { + "mimic-response": "^1.0.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 + }, + "deep-is": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz", + "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=", + "dev": true + }, + "defer-to-connect": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-1.0.2.tgz", + "integrity": "sha512-k09hcQcTDY+cwgiwa6PYKLm3jlagNzQ+RSvhjzESOGOx+MNOuXkxTfEvPrO1IOQ81tArCFYQgi631clB70RpQw==", + "dev": true + }, + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", + "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", + "dev": true, + "requires": { + "object-keys": "^1.0.12" + } + }, + "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" + } + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", + "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==", + "dev": true + } + } + }, + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=", + "dev": true + }, + "depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=", + "dev": true + }, + "des.js": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.0.tgz", + "integrity": "sha1-wHTS4qpqipoH29YfmhXCzYPsjsw=", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0" + } + }, + "destroy": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", + "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=", + "dev": true + }, + "detect-indent": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-4.0.0.tgz", + "integrity": "sha1-920GQ1LN9Docts5hnE7jqUdd4gg=", + "dev": true, + "requires": { + "repeating": "^2.0.0" + } + }, + "diffie-hellman": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", + "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", + "dev": true, + "requires": { + "bn.js": "^4.1.0", + "miller-rabin": "^4.0.0", + "randombytes": "^2.0.0" + } + }, + "doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dev": true, + "requires": { + "esutils": "^2.0.2" + } + }, + "dom-converter": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz", + "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==", + "dev": true, + "requires": { + "utila": "~0.4" + } + }, + "dom-serializer": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.1.tgz", + "integrity": "sha512-sK3ujri04WyjwQXVoK4PU3y8ula1stq10GJZpqHIUgoGZdsGzAGu65BnU3d08aTVSvO7mGPZUc0wTEDL+qGE0Q==", + "dev": true, + "requires": { + "domelementtype": "^2.0.1", + "entities": "^2.0.0" + }, + "dependencies": { + "domelementtype": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.0.1.tgz", + "integrity": "sha512-5HOHUDsYZWV8FGWN0Njbr/Rn7f/eWSQi1v7+HsUVwXgn8nWWlL64zKDkS0n8ZmQ3mlWOMuXOnR+7Nx/5tMO5AQ==", + "dev": true + }, + "entities": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.0.0.tgz", + "integrity": "sha512-D9f7V0JSRwIxlRI2mjMqufDrRDnx8p+eEOz7aUM9SuvF8gsBzra0/6tbjl1m8eQHrZlYj6PxqE00hZ1SAIKPLw==", + "dev": true + } + } + }, + "dom-walk": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/dom-walk/-/dom-walk-0.1.1.tgz", + "integrity": "sha1-ZyIm3HTI95mtNTB9+TaroRrNYBg=" + }, + "domain-browser": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz", + "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==", + "dev": true + }, + "domelementtype": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", + "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==", + "dev": true + }, + "domhandler": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz", + "integrity": "sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==", + "dev": true, + "requires": { + "domelementtype": "1" + } + }, + "domutils": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", + "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", + "dev": true, + "requires": { + "dom-serializer": "0", + "domelementtype": "1" + } + }, + "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" + } + }, + "duplexer": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.1.tgz", + "integrity": "sha1-rOb/gIwc5mtX0ev5eXessCM0z8E=", + "dev": true + }, + "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=", + "dev": true, + "requires": { + "jsbn": "~0.1.0", + "safer-buffer": "^2.1.0" + } + }, + "editorconfig": { + "version": "0.15.3", + "resolved": "https://registry.npmjs.org/editorconfig/-/editorconfig-0.15.3.tgz", + "integrity": "sha512-M9wIMFx96vq0R4F+gRpY3o2exzb8hEj/n9S8unZtHSvYjibBp/iMufSzvmOcV/laG0ZtuTVGtiJggPOSW2r93g==", + "dev": true, + "requires": { + "commander": "^2.19.0", + "lru-cache": "^4.1.5", + "semver": "^5.6.0", + "sigmund": "^1.0.1" + }, + "dependencies": { + "commander": { + "version": "2.20.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.1.tgz", + "integrity": "sha512-cCuLsMhJeWQ/ZpsFTbE765kvVfoeSddc4nU3up4fV+fDBcfUXnbITJ+JzhkdjzOqhURjZgujxaioam4RM9yGUg==", + "dev": true + } + } + }, + "ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=", + "dev": true + }, + "ejs": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/ejs/-/ejs-2.7.1.tgz", + "integrity": "sha512-kS/gEPzZs3Y1rRsbGX4UOSjtP/CeJP0CxSNZHYxGfVM/VgLcv0ZqM7C45YyTj2DI2g7+P9Dd24C+IMIg6D0nYQ==", + "dev": true + }, + "electron-to-chromium": { + "version": "1.3.277", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.277.tgz", + "integrity": "sha512-Czmsrgng89DOgJlIknnw9bn5431QdtnUwGp5YYiPwU1DbZQUxCLF+rc1ZC09VNAdalOPcvH6AE8BaA0H5HjI/w==", + "dev": true + }, + "elliptic": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.1.tgz", + "integrity": "sha512-xvJINNLbTeWQjrl6X+7eQCrIy/YPv5XCpKW6kB5mKvtnGILoLDcySuwomfdzt0BMdLNVnuRNTuzKNHj0bva1Cg==", + "dev": true, + "requires": { + "bn.js": "^4.4.0", + "brorand": "^1.0.1", + "hash.js": "^1.0.0", + "hmac-drbg": "^1.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.0" + } + }, + "emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", + "dev": true + }, + "emojis-list": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz", + "integrity": "sha1-TapNnbAPmBmIDHn6RXrlsJof04k=", + "dev": true + }, + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=", + "dev": true + }, + "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==", + "dev": true, + "requires": { + "once": "^1.4.0" + } + }, + "enhanced-resolve": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-0.9.1.tgz", + "integrity": "sha1-TW5omzcl+GCQknzMhs2fFjW4ni4=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "memory-fs": "^0.2.0", + "tapable": "^0.1.8" + } + }, + "entities": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz", + "integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==", + "dev": true + }, + "errno": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.7.tgz", + "integrity": "sha512-MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg==", + "dev": true, + "requires": { + "prr": "~1.0.1" + } + }, + "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": { + "is-arrayish": "^0.2.1" + } + }, + "error-stack-parser": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.0.4.tgz", + "integrity": "sha512-fZ0KkoxSjLFmhW5lHbUT3tLwy3nX1qEzMYo8koY1vrsAco53CMT1djnBSeC/wUjTEZRhZl9iRw7PaMaxfJ4wzQ==", + "dev": true, + "requires": { + "stackframe": "^1.1.0" + } + }, + "errorhandler": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/errorhandler/-/errorhandler-1.5.1.tgz", + "integrity": "sha512-rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A==", + "dev": true, + "requires": { + "accepts": "~1.3.7", + "escape-html": "~1.0.3" + } + }, + "es-abstract": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.15.0.tgz", + "integrity": "sha512-bhkEqWJ2t2lMeaJDuk7okMkJWI/yqgH/EoGwpcvv0XW9RWQsRspI4wt6xuyuvMvvQE3gg/D9HXppgk21w78GyQ==", + "dev": true, + "requires": { + "es-to-primitive": "^1.2.0", + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.0", + "is-callable": "^1.1.4", + "is-regex": "^1.0.4", + "object-inspect": "^1.6.0", + "object-keys": "^1.1.1", + "string.prototype.trimleft": "^2.1.0", + "string.prototype.trimright": "^2.1.0" + } + }, + "es-to-primitive": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.0.tgz", + "integrity": "sha512-qZryBOJjV//LaxLTV6UC//WewneB3LcXOL9NP++ozKVXsIIIpm/2c13UDiD9Jp2eThsecw9m3jPqDwTyobcdbg==", + "dev": true, + "requires": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + } + }, + "es5-ext": { + "version": "0.10.51", + "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.51.tgz", + "integrity": "sha512-oRpWzM2WcLHVKpnrcyB7OW8j/s67Ba04JCm0WnNv3RiABSvs7mrQlutB8DBv793gKcp0XENR8Il8WxGTlZ73gQ==", + "dev": true, + "requires": { + "es6-iterator": "~2.0.3", + "es6-symbol": "~3.1.1", + "next-tick": "^1.0.0" + } + }, + "es6-iterator": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz", + "integrity": "sha1-p96IkUGgWpSwhUQDstCg+/qY87c=", + "dev": true, + "requires": { + "d": "1", + "es5-ext": "^0.10.35", + "es6-symbol": "^3.1.1" + } + }, + "es6-map": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/es6-map/-/es6-map-0.1.5.tgz", + "integrity": "sha1-kTbgUD3MBqMBaQ8LsU/042TpSfA=", + "dev": true, + "requires": { + "d": "1", + "es5-ext": "~0.10.14", + "es6-iterator": "~2.0.1", + "es6-set": "~0.1.5", + "es6-symbol": "~3.1.1", + "event-emitter": "~0.3.5" + } + }, + "es6-set": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/es6-set/-/es6-set-0.1.5.tgz", + "integrity": "sha1-0rPsXU2ADO2BjbU40ol02wpzzLE=", + "dev": true, + "requires": { + "d": "1", + "es5-ext": "~0.10.14", + "es6-iterator": "~2.0.1", + "es6-symbol": "3.1.1", + "event-emitter": "~0.3.5" + }, + "dependencies": { + "es6-symbol": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.1.tgz", + "integrity": "sha1-vwDvT9q2uhtG7Le2KbTH7VcVzHc=", + "dev": true, + "requires": { + "d": "1", + "es5-ext": "~0.10.14" + } + } + } + }, + "es6-symbol": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.2.tgz", + "integrity": "sha512-/ZypxQsArlv+KHpGvng52/Iz8by3EQPxhmbuz8yFG89N/caTFBSbcXONDw0aMjy827gQg26XAjP4uXFvnfINmQ==", + "dev": true, + "requires": { + "d": "^1.0.1", + "es5-ext": "^0.10.51" + } + }, + "es6-weak-map": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es6-weak-map/-/es6-weak-map-2.0.3.tgz", + "integrity": "sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==", + "dev": true, + "requires": { + "d": "1", + "es5-ext": "^0.10.46", + "es6-iterator": "^2.0.3", + "es6-symbol": "^3.1.1" + } + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=", + "dev": true + }, + "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 + }, + "escope": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/escope/-/escope-3.6.0.tgz", + "integrity": "sha1-4Bl16BJ4GhY6ba392AOY3GTIicM=", + "dev": true, + "requires": { + "es6-map": "^0.1.3", + "es6-weak-map": "^2.0.1", + "esrecurse": "^4.1.0", + "estraverse": "^4.1.1" + } + }, + "eslint": { + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-3.19.0.tgz", + "integrity": "sha1-yPxiAcf0DdCJQbh8CFdnOGpnmsw=", + "dev": true, + "requires": { + "babel-code-frame": "^6.16.0", + "chalk": "^1.1.3", + "concat-stream": "^1.5.2", + "debug": "^2.1.1", + "doctrine": "^2.0.0", + "escope": "^3.6.0", + "espree": "^3.4.0", + "esquery": "^1.0.0", + "estraverse": "^4.2.0", + "esutils": "^2.0.2", + "file-entry-cache": "^2.0.0", + "glob": "^7.0.3", + "globals": "^9.14.0", + "ignore": "^3.2.0", + "imurmurhash": "^0.1.4", + "inquirer": "^0.12.0", + "is-my-json-valid": "^2.10.0", + "is-resolvable": "^1.0.0", + "js-yaml": "^3.5.1", + "json-stable-stringify": "^1.0.0", + "levn": "^0.3.0", + "lodash": "^4.0.0", + "mkdirp": "^0.5.0", + "natural-compare": "^1.4.0", + "optionator": "^0.8.2", + "path-is-inside": "^1.0.1", + "pluralize": "^1.2.1", + "progress": "^1.1.8", + "require-uncached": "^1.0.2", + "shelljs": "^0.7.5", + "strip-bom": "^3.0.0", + "strip-json-comments": "~2.0.1", + "table": "^3.7.8", + "text-table": "~0.2.0", + "user-home": "^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 + }, + "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" + } + }, + "strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=", + "dev": true + }, + "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 + } + } + }, + "eslint-config-airbnb-base": { + "version": "11.3.2", + "resolved": "https://registry.npmjs.org/eslint-config-airbnb-base/-/eslint-config-airbnb-base-11.3.2.tgz", + "integrity": "sha512-/fhjt/VqzBA2SRsx7ErDtv6Ayf+XLw9LIOqmpBuHFCVwyJo2EtzGWMB9fYRFBoWWQLxmNmCpenNiH0RxyeS41w==", + "dev": true, + "requires": { + "eslint-restricted-globals": "^0.1.1" + } + }, + "eslint-friendly-formatter": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/eslint-friendly-formatter/-/eslint-friendly-formatter-3.0.0.tgz", + "integrity": "sha1-J4h0Q1psRuwdlPoLH/SU4w7wQpA=", + "dev": true, + "requires": { + "chalk": "^1.0.0", + "coalescy": "1.0.0", + "extend": "^3.0.0", + "minimist": "^1.2.0", + "text-table": "^0.2.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 + }, + "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" + } + }, + "minimist": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", + "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", + "dev": true + }, + "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 + } + } + }, + "eslint-import-resolver-node": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.2.tgz", + "integrity": "sha512-sfmTqJfPSizWu4aymbPr4Iidp5yKm8yDkHp+Ir3YiTHiiDfxh69mOUsmiqW6RZ9zRXFaF64GtYmN7e+8GHBv6Q==", + "dev": true, + "requires": { + "debug": "^2.6.9", + "resolve": "^1.5.0" + } + }, + "eslint-import-resolver-webpack": { + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-webpack/-/eslint-import-resolver-webpack-0.8.3.tgz", + "integrity": "sha512-xLSNz4KbWvb8KrkDqWSmgmztq8uXq7R/rviOw1DYrh3Luxc8vpMnwO4hOt9Eot45VBiyjt1PxidrvJbZIWlItA==", + "dev": true, + "requires": { + "array-find": "^1.0.0", + "debug": "^2.6.8", + "enhanced-resolve": "~0.9.0", + "find-root": "^0.1.1", + "has": "^1.0.1", + "interpret": "^1.0.0", + "is-absolute": "^0.2.3", + "lodash.get": "^3.7.0", + "node-libs-browser": "^1.0.0", + "resolve": "^1.2.0", + "semver": "^5.3.0" + } + }, + "eslint-loader": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/eslint-loader/-/eslint-loader-1.9.0.tgz", + "integrity": "sha512-40aN976qSNPyb9ejTqjEthZITpls1SVKtwguahmH1dzGCwQU/vySE+xX33VZmD8csU0ahVNCtFlsPgKqRBiqgg==", + "dev": true, + "requires": { + "loader-fs-cache": "^1.0.0", + "loader-utils": "^1.0.2", + "object-assign": "^4.0.1", + "object-hash": "^1.1.4", + "rimraf": "^2.6.1" + } + }, + "eslint-module-utils": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.4.1.tgz", + "integrity": "sha512-H6DOj+ejw7Tesdgbfs4jeS4YMFrT8uI8xwd1gtQqXssaR0EQ26L+2O/w6wkYFy2MymON0fTwHmXBvvfLNZVZEw==", + "dev": true, + "requires": { + "debug": "^2.6.8", + "pkg-dir": "^2.0.0" + } + }, + "eslint-plugin-html": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-html/-/eslint-plugin-html-3.2.1.tgz", + "integrity": "sha512-zxcArJx7QTqE0Stm5BMpk1cuYwOxLecqKMqEYabRcvqImDrjcRdQVdXT5RtqFHdH1aVD2akzHe+/Q5Wou6Jvaw==", + "dev": true, + "requires": { + "htmlparser2": "^3.8.2", + "semver": "^5.4.1" + } + }, + "eslint-plugin-import": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.7.0.tgz", + "integrity": "sha512-HGYmpU9f/zJaQiKNQOVfHUh2oLWW3STBrCgH0sHTX1xtsxYlH1zjLh8FlQGEIdZSdTbUMaV36WaZ6ImXkenGxQ==", + "dev": true, + "requires": { + "builtin-modules": "^1.1.1", + "contains-path": "^0.1.0", + "debug": "^2.6.8", + "doctrine": "1.5.0", + "eslint-import-resolver-node": "^0.3.1", + "eslint-module-utils": "^2.1.1", + "has": "^1.0.1", + "lodash.cond": "^4.3.0", + "minimatch": "^3.0.3", + "read-pkg-up": "^2.0.0" + }, + "dependencies": { + "doctrine": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-1.5.0.tgz", + "integrity": "sha1-N53Ocw9hZvds76TmcHoVmwLFpvo=", + "dev": true, + "requires": { + "esutils": "^2.0.2", + "isarray": "^1.0.0" + } + }, + "load-json-file": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-2.0.0.tgz", + "integrity": "sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "parse-json": "^2.2.0", + "pify": "^2.0.0", + "strip-bom": "^3.0.0" + } + }, + "path-type": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-2.0.0.tgz", + "integrity": "sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM=", + "dev": true, + "requires": { + "pify": "^2.0.0" + } + }, + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", + "dev": true + }, + "read-pkg": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-2.0.0.tgz", + "integrity": "sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg=", + "dev": true, + "requires": { + "load-json-file": "^2.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^2.0.0" + } + }, + "read-pkg-up": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-2.0.0.tgz", + "integrity": "sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4=", + "dev": true, + "requires": { + "find-up": "^2.0.0", + "read-pkg": "^2.0.0" + } + }, + "strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=", + "dev": true + } + } + }, + "eslint-restricted-globals": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/eslint-restricted-globals/-/eslint-restricted-globals-0.1.1.tgz", + "integrity": "sha1-NfDVy8ZMLj7WLpO0saevBbp+1Nc=", + "dev": true + }, + "espree": { + "version": "3.5.4", + "resolved": "https://registry.npmjs.org/espree/-/espree-3.5.4.tgz", + "integrity": "sha512-yAcIQxtmMiB/jL32dzEp2enBeidsB7xWPLNiw3IIkpVds1P+h7qF9YwJq1yUNzp2OKXgAprs4F61ih66UsoD1A==", + "dev": true, + "requires": { + "acorn": "^5.5.0", + "acorn-jsx": "^3.0.0" + } + }, + "esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true + }, + "esquery": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.0.1.tgz", + "integrity": "sha512-SmiyZ5zIWH9VM+SRUReLS5Q8a7GxtRdxEBVZpm98rJM7Sb+A9DVCndXfkeFUd3byderg+EbDkfnevfCwynWaNA==", + "dev": true, + "requires": { + "estraverse": "^4.0.0" + } + }, + "esrecurse": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.1.tgz", + "integrity": "sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ==", + "dev": true, + "requires": { + "estraverse": "^4.1.0" + } + }, + "estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true + }, + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true + }, + "etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=", + "dev": true + }, + "event-emitter": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/event-emitter/-/event-emitter-0.3.5.tgz", + "integrity": "sha1-34xp7vFkeSPHFXuc6DhAYQsCzDk=", + "dev": true, + "requires": { + "d": "1", + "es5-ext": "~0.10.14" + } + }, + "events": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/events/-/events-1.1.1.tgz", + "integrity": "sha1-nr23Y1rQmccNzEwqH1AEKI6L2SQ=", + "dev": true + }, + "eventsource-polyfill": { + "version": "0.9.6", + "resolved": "https://registry.npmjs.org/eventsource-polyfill/-/eventsource-polyfill-0.9.6.tgz", + "integrity": "sha1-EODRh/ERsWfyj9q5GIQ859gY8Tw=", + "dev": true + }, + "evp_bytestokey": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", + "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", + "dev": true, + "requires": { + "md5.js": "^1.3.4", + "safe-buffer": "^5.1.1" + } + }, + "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" + } + }, + "exit-hook": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/exit-hook/-/exit-hook-1.1.1.tgz", + "integrity": "sha1-8FyiM7SMBdVP/wd2XfhQfpXAL/g=", + "dev": true + }, + "express": { + "version": "4.17.1", + "resolved": "https://registry.npmjs.org/express/-/express-4.17.1.tgz", + "integrity": "sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==", + "dev": true, + "requires": { + "accepts": "~1.3.7", + "array-flatten": "1.1.1", + "body-parser": "1.19.0", + "content-disposition": "0.5.3", + "content-type": "~1.0.4", + "cookie": "0.4.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "~1.1.2", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "~1.1.2", + "fresh": "0.5.2", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.5", + "qs": "6.7.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.1.2", + "send": "0.17.1", + "serve-static": "1.14.1", + "setprototypeof": "1.1.1", + "statuses": "~1.5.0", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + } + }, + "express-urlrewrite": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/express-urlrewrite/-/express-urlrewrite-1.2.0.tgz", + "integrity": "sha1-jmZ7d2H/HH/9sO+gXWQDU4fII+s=", + "dev": true, + "requires": { + "debug": "*", + "path-to-regexp": "^1.0.3" + }, + "dependencies": { + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", + "dev": true + }, + "path-to-regexp": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.7.0.tgz", + "integrity": "sha1-Wf3g9DW62suhA6hOnTvGTpa5k30=", + "dev": true, + "requires": { + "isarray": "0.0.1" + } + } + } + }, + "extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", + "dev": true + }, + "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" + } + } + } + }, + "extsprintf": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", + "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=", + "dev": true + }, + "fast-deep-equal": { + "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=", + "dev": true + }, + "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=", + "dev": true + }, + "fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=", + "dev": true + }, + "figures": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-1.7.0.tgz", + "integrity": "sha1-y+Hjr/zxzUS4DK3+0o3Hk6lwHS4=", + "dev": true, + "requires": { + "escape-string-regexp": "^1.0.5", + "object-assign": "^4.1.0" + } + }, + "file-entry-cache": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-2.0.0.tgz", + "integrity": "sha1-w5KZDD5oR4PYOLjISkXYoEhFg2E=", + "dev": true, + "requires": { + "flat-cache": "^1.2.1", + "object-assign": "^4.0.1" + } + }, + "filesize": { + "version": "3.6.1", + "resolved": "https://registry.npmjs.org/filesize/-/filesize-3.6.1.tgz", + "integrity": "sha512-7KjR1vv6qnicaPMi1iiTcI85CyYwRO/PSFCu6SvqL8jN2Wjt/NIYQTFtFs7fSDCYOstUkEWIQGFUg5YZQfjlcg==", + "dev": true + }, + "finalhandler": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", + "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", + "dev": true, + "requires": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "statuses": "~1.5.0", + "unpipe": "~1.0.0" + } + }, + "find-cache-dir": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-1.0.0.tgz", + "integrity": "sha1-kojj6ePMN0hxfTnq3hfPcfww7m8=", + "dev": true, + "requires": { + "commondir": "^1.0.1", + "make-dir": "^1.0.0", + "pkg-dir": "^2.0.0" + } + }, + "find-root": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/find-root/-/find-root-0.1.2.tgz", + "integrity": "sha1-mNImfP8ZFsyvJ0OzoO6oHXnX3NE=", + "dev": true + }, + "find-up": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", + "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", + "dev": true, + "requires": { + "locate-path": "^2.0.0" + } + }, + "flat-cache": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-1.3.4.tgz", + "integrity": "sha512-VwyB3Lkgacfik2vhqR4uv2rvebqmDvFu4jlN/C1RzWoJEo8I7z4Q404oiqYCkq41mni8EzQnm95emU9seckwtg==", + "dev": true, + "requires": { + "circular-json": "^0.3.1", + "graceful-fs": "^4.1.2", + "rimraf": "~2.6.2", + "write": "^0.2.1" + } + }, + "flatten": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/flatten/-/flatten-1.0.2.tgz", + "integrity": "sha1-2uRqnXj74lKSJYzB54CkHZXAN4I=", + "dev": true + }, + "for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=", + "dev": true + }, + "forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", + "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=", + "dev": 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==", + "dev": true, + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + } + }, + "forwarded": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz", + "integrity": "sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ=", + "dev": true + }, + "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" + } + }, + "fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=", + "dev": true + }, + "friendly-errors-webpack-plugin": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/friendly-errors-webpack-plugin/-/friendly-errors-webpack-plugin-1.6.1.tgz", + "integrity": "sha1-4yeBxHIvVGoGqbXXp8+ihSA3XXA=", + "dev": true, + "requires": { + "chalk": "^1.1.3", + "error-stack-parser": "^2.0.0", + "string-length": "^1.0.1" + }, + "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 + }, + "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" + } + }, + "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 + } + } + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "dev": true + }, + "fsevents": { + "version": "1.2.9", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.9.tgz", + "integrity": "sha512-oeyj2H3EjjonWcFjD5NvZNE9Rqe4UW+nQBU2HNeKw0koVLEFIhtyETyAakeAM3de7Z/SW5kcA+fZUait9EApnw==", + "dev": true, + "optional": true, + "requires": { + "nan": "^2.12.1", + "node-pre-gyp": "^0.12.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, + "optional": true + }, + "concat-map": { + "version": "0.0.1", + "bundled": true, + "dev": true + }, + "console-control-strings": { + "version": "1.1.0", + "bundled": true, + "dev": true, + "optional": true + }, + "core-util-is": { + "version": "1.0.2", + "bundled": true, + "dev": true, + "optional": true + }, + "debug": { + "version": "4.1.1", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "ms": "^2.1.1" + } + }, + "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, + "optional": true + }, + "ini": { + "version": "1.3.5", + "bundled": true, + "dev": true, + "optional": true + }, + "is-fullwidth-code-point": { + "version": "1.0.0", + "bundled": true, + "dev": true, + "optional": 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.1.1", + "bundled": true, + "dev": true, + "optional": true + }, + "needle": { + "version": "2.3.0", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "debug": "^4.1.0", + "iconv-lite": "^0.4.4", + "sax": "^1.2.4" + } + }, + "node-pre-gyp": { + "version": "0.12.0", + "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.6", + "bundled": true, + "dev": true, + "optional": true + }, + "npm-packlist": { + "version": "1.4.1", + "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, + "optional": true + }, + "object-assign": { + "version": "4.1.1", + "bundled": true, + "dev": true, + "optional": true + }, + "once": { + "version": "1.4.0", + "bundled": true, + "dev": true, + "optional": 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.7.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, + "optional": 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 + } + } + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true + }, + "generate-function": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/generate-function/-/generate-function-2.3.1.tgz", + "integrity": "sha512-eeB5GfMNeevm/GRYq20ShmsaGcmI81kIX2K9XQx5miC8KdHaC6Jm0qQ8ZNeGOi7wYB8OsdxKs+Y2oVuTFuVwKQ==", + "dev": true, + "requires": { + "is-property": "^1.0.2" + } + }, + "generate-object-property": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/generate-object-property/-/generate-object-property-1.2.0.tgz", + "integrity": "sha1-nA4cQDCM6AT0eDYYuTf6iPmdUNA=", + "dev": true, + "requires": { + "is-property": "^1.0.0" + } + }, + "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 + }, + "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=", + "dev": true, + "requires": { + "assert-plus": "^1.0.0" + } + }, + "glob": { + "version": "7.1.4", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz", + "integrity": "sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==", + "dev": 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" + } + }, + "global": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/global/-/global-4.4.0.tgz", + "integrity": "sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==", + "requires": { + "min-document": "^2.19.0", + "process": "^0.11.10" + } + }, + "global-dirs": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-0.1.1.tgz", + "integrity": "sha1-sxnA3UYH81PzvpzKTHL8FIxJ9EU=", + "dev": true, + "requires": { + "ini": "^1.3.4" + } + }, + "globals": { + "version": "9.18.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-9.18.0.tgz", + "integrity": "sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ==", + "dev": true + }, + "got": { + "version": "9.6.0", + "resolved": "https://registry.npmjs.org/got/-/got-9.6.0.tgz", + "integrity": "sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==", + "dev": true, + "requires": { + "@sindresorhus/is": "^0.14.0", + "@szmarczak/http-timer": "^1.1.2", + "cacheable-request": "^6.0.0", + "decompress-response": "^3.3.0", + "duplexer3": "^0.1.4", + "get-stream": "^4.1.0", + "lowercase-keys": "^1.0.1", + "mimic-response": "^1.0.1", + "p-cancelable": "^1.0.0", + "to-readable-stream": "^1.0.0", + "url-parse-lax": "^3.0.0" + }, + "dependencies": { + "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" + } + } + } + }, + "graceful-fs": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.2.tgz", + "integrity": "sha512-IItsdsea19BoLC7ELy13q1iJFNmd7ofZH5+X/pJr90/nRoPEX0DJo1dHDbgtYWOhJhcCgMDTOw84RZ72q6lB+Q==", + "dev": true + }, + "gzip-size": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-5.1.1.tgz", + "integrity": "sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA==", + "dev": true, + "requires": { + "duplexer": "^0.1.1", + "pify": "^4.0.1" + }, + "dependencies": { + "pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "dev": true + } + } + }, + "har-schema": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", + "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=", + "dev": true + }, + "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==", + "dev": true, + "requires": { + "ajv": "^6.5.5", + "har-schema": "^2.0.0" + }, + "dependencies": { + "ajv": { + "version": "6.10.2", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.10.2.tgz", + "integrity": "sha512-TXtUUEYHuaTEbLZWIKUr5pmBuhDLy+8KYtPYdcV8qC+pOZL+NKqYwvWSRrVXHn+ZmRRAu8vJTAznH7Oag6RVRw==", + "dev": true, + "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" + } + } + } + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dev": true, + "requires": { + "function-bind": "^1.1.1" + } + }, + "has-ansi": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", + "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", + "dev": true, + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "has-symbols": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.0.tgz", + "integrity": "sha1-uhqPGvKg/DllD1yFA2dwQSIGO0Q=", + "dev": true + }, + "has-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", + "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=", + "dev": true, + "requires": { + "get-value": "^2.0.6", + "has-values": "^1.0.0", + "isobject": "^3.0.0" + }, + "dependencies": { + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", + "dev": true + } + } + }, + "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": { + "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" + } + } + } + }, + "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" + } + } + } + }, + "has-yarn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/has-yarn/-/has-yarn-2.1.0.tgz", + "integrity": "sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw==", + "dev": true + }, + "hash-base": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.0.4.tgz", + "integrity": "sha1-X8hoaEfs1zSZQDMZprCj8/auSRg=", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "hash-sum": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/hash-sum/-/hash-sum-1.0.2.tgz", + "integrity": "sha1-M7QHd3VMZDJXPBIMw4CLvRDUfwQ=", + "dev": true + }, + "hash.js": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", + "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "minimalistic-assert": "^1.0.1" + } + }, + "he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "dev": true + }, + "hex-color-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/hex-color-regex/-/hex-color-regex-1.1.0.tgz", + "integrity": "sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==", + "dev": true + }, + "hmac-drbg": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", + "integrity": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=", + "dev": true, + "requires": { + "hash.js": "^1.0.3", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.1" + } + }, + "home-or-tmp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/home-or-tmp/-/home-or-tmp-2.0.0.tgz", + "integrity": "sha1-42w/LSyufXRqhX440Y1fMqeILbg=", + "dev": true, + "requires": { + "os-homedir": "^1.0.0", + "os-tmpdir": "^1.0.1" + } + }, + "hoopy": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/hoopy/-/hoopy-0.1.4.tgz", + "integrity": "sha512-HRcs+2mr52W0K+x8RzcLzuPPmVIKMSv97RGHy0Ea9y/mpcaK+xTrjICA04KAHi4GRzxliNqNJEFYWHghy3rSfQ==", + "dev": true + }, + "hosted-git-info": { + "version": "2.8.4", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.4.tgz", + "integrity": "sha512-pzXIvANXEFrc5oFFXRMkbLPQ2rXRoDERwDLyrcUxGhaZhgP54BBSl9Oheh7Vv0T090cszWBxPjkQQ5Sq1PbBRQ==", + "dev": true + }, + "hsl-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/hsl-regex/-/hsl-regex-1.0.0.tgz", + "integrity": "sha1-1JMwx4ntgZ4nakwNJy3/owsY/m4=", + "dev": true + }, + "hsla-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/hsla-regex/-/hsla-regex-1.0.0.tgz", + "integrity": "sha1-wc56MWjIxmFAM6S194d/OyJfnDg=", + "dev": true + }, + "html-comment-regex": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/html-comment-regex/-/html-comment-regex-1.1.2.tgz", + "integrity": "sha512-P+M65QY2JQ5Y0G9KKdlDpo0zK+/OHptU5AaBwUfAIDJZk1MYf32Frm84EcOytfJE0t5JvkAnKlmjsXDnWzCJmQ==", + "dev": true + }, + "html-entities": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-1.2.1.tgz", + "integrity": "sha1-DfKTUfByEWNRXfueVUPl9u7VFi8=", + "dev": true + }, + "html-minifier": { + "version": "3.5.21", + "resolved": "https://registry.npmjs.org/html-minifier/-/html-minifier-3.5.21.tgz", + "integrity": "sha512-LKUKwuJDhxNa3uf/LPR/KVjm/l3rBqtYeCOAekvG8F1vItxMUpueGd94i/asDDr8/1u7InxzFA5EeGjhhG5mMA==", + "dev": true, + "requires": { + "camel-case": "3.0.x", + "clean-css": "4.2.x", + "commander": "2.17.x", + "he": "1.2.x", + "param-case": "2.1.x", + "relateurl": "0.2.x", + "uglify-js": "3.4.x" + } + }, + "html-webpack-plugin": { + "version": "2.30.1", + "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-2.30.1.tgz", + "integrity": "sha1-f5xCG36pHsRg9WUn1430hO51N9U=", + "dev": true, + "requires": { + "bluebird": "^3.4.7", + "html-minifier": "^3.2.3", + "loader-utils": "^0.2.16", + "lodash": "^4.17.3", + "pretty-error": "^2.0.2", + "toposort": "^1.0.0" + }, + "dependencies": { + "big.js": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-3.2.0.tgz", + "integrity": "sha512-+hN/Zh2D08Mx65pZ/4g5bsmNiZUuChDiQfTUQ7qJr4/kuopCr88xZsAXv6mBoZEsUI4OuGHlX59qE94K2mMW8Q==", + "dev": true + }, + "loader-utils": { + "version": "0.2.17", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-0.2.17.tgz", + "integrity": "sha1-+G5jdNQyBabmxg6RlvF8Apm/s0g=", + "dev": true, + "requires": { + "big.js": "^3.1.3", + "emojis-list": "^2.0.0", + "json5": "^0.5.0", + "object-assign": "^4.0.1" + } + } + } + }, + "htmlparser2": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz", + "integrity": "sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==", + "dev": true, + "requires": { + "domelementtype": "^1.3.1", + "domhandler": "^2.3.0", + "domutils": "^1.5.1", + "entities": "^1.1.1", + "inherits": "^2.0.1", + "readable-stream": "^3.1.1" + }, + "dependencies": { + "readable-stream": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.4.0.tgz", + "integrity": "sha512-jItXPLmrSR8jmTRmRWJXCnGJsfy85mB3Wd/uINMXA65yrnFo0cPClFIUWzo2najVNSl+mx7/4W8ttlLWJe99pQ==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + } + } + }, + "http-cache-semantics": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.0.3.tgz", + "integrity": "sha512-TcIMG3qeVLgDr1TEd2XvHaTnMPwYQUQMIBLy+5pLSDKYFc7UIqj39w8EGzZkaxoLv/l2K8HaI0t5AVA+YYgUew==", + "dev": true + }, + "http-errors": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz", + "integrity": "sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==", + "dev": true, + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.1", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.0" + }, + "dependencies": { + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + } + } + }, + "http-signature": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", + "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", + "dev": true, + "requires": { + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" + } + }, + "https-browserify": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-0.0.1.tgz", + "integrity": "sha1-P5E2XKvmC3ftDruiS0VOPgnZWoI=", + "dev": true + }, + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dev": true, + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + }, + "icss-utils": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-4.1.1.tgz", + "integrity": "sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==", + "dev": true, + "requires": { + "postcss": "^7.0.14" + }, + "dependencies": { + "postcss": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.18.tgz", + "integrity": "sha512-/7g1QXXgegpF+9GJj4iN7ChGF40sYuGYJ8WZu8DZWnmhQ/G36hfdk3q9LBJmoK+lZ+yzZ5KYpOoxq7LF1BxE8g==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "ieee754": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.13.tgz", + "integrity": "sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg==", + "dev": true + }, + "ignore": { + "version": "3.3.10", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-3.3.10.tgz", + "integrity": "sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug==", + "dev": true + }, + "image-size": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz", + "integrity": "sha1-Cd/Uq50g4p6xw+gLiZA3jfnjy5w=", + "dev": true, + "optional": true + }, + "import-fresh": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz", + "integrity": "sha1-2BNVwVYS04bGH53dOSLUMEgipUY=", + "dev": true, + "requires": { + "caller-path": "^2.0.0", + "resolve-from": "^3.0.0" + }, + "dependencies": { + "caller-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz", + "integrity": "sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ=", + "dev": true, + "requires": { + "caller-callsite": "^2.0.0" + } + }, + "resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=", + "dev": true + } + } + }, + "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": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", + "dev": true + }, + "indexes-of": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz", + "integrity": "sha1-8w9xbI4r00bHtn0985FVZqfAVgc=", + "dev": true + }, + "indexof": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/indexof/-/indexof-0.0.1.tgz", + "integrity": "sha1-gtwzbSMrkGIXnQWrMpOmYFn9Q10=", + "dev": true + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dev": true, + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "ini": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz", + "integrity": "sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==", + "dev": true + }, + "inquirer": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-0.12.0.tgz", + "integrity": "sha1-HvK/1jUE3wvHV4X/+MLEHfEvB34=", + "dev": true, + "requires": { + "ansi-escapes": "^1.1.0", + "ansi-regex": "^2.0.0", + "chalk": "^1.0.0", + "cli-cursor": "^1.0.1", + "cli-width": "^2.0.0", + "figures": "^1.3.5", + "lodash": "^4.3.0", + "readline2": "^1.0.1", + "run-async": "^0.1.0", + "rx-lite": "^3.1.2", + "string-width": "^1.0.1", + "strip-ansi": "^3.0.0", + "through": "^2.3.6" + }, + "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 + }, + "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" + } + }, + "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 + } + } + }, + "interpret": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.2.0.tgz", + "integrity": "sha512-mT34yGKMNceBQUoVn7iCDKDntA7SC6gycMAWzGx1z/CMCTV7b2AAtXlo3nRyHZ1FelRkQbQjprHSYGwzLtkVbw==", + "dev": true + }, + "invariant": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", + "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", + "dev": true, + "requires": { + "loose-envify": "^1.0.0" + } + }, + "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.9.0", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.0.tgz", + "integrity": "sha512-M4Sjn6N/+O6/IXSJseKqHoFc+5FdGJ22sXqnjTpdZweHK64MzEPAyQZyEU3R/KRv2GLoa7nNtg/C2Ev6m7z+eA==", + "dev": true + }, + "is-absolute": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/is-absolute/-/is-absolute-0.2.6.tgz", + "integrity": "sha1-IN5p89uULvLYe5wto28XIjWxtes=", + "dev": true, + "requires": { + "is-relative": "^0.2.1", + "is-windows": "^0.2.0" + } + }, + "is-absolute-url": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-2.1.0.tgz", + "integrity": "sha1-UFMN+4T8yap9vnhS6Do3uTufKqY=", + "dev": true + }, + "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=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + } + }, + "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-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" + } + }, + "is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "dev": true + }, + "is-callable": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.1.4.tgz", + "integrity": "sha512-r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA==", + "dev": true + }, + "is-ci": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", + "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", + "dev": true, + "requires": { + "ci-info": "^2.0.0" + } + }, + "is-color-stop": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-color-stop/-/is-color-stop-1.1.0.tgz", + "integrity": "sha1-z/9HGu5N1cnhWFmPvhKWe1za00U=", + "dev": true, + "requires": { + "css-color-names": "^0.0.4", + "hex-color-regex": "^1.1.0", + "hsl-regex": "^1.0.0", + "hsla-regex": "^1.0.0", + "rgb-regex": "^1.0.1", + "rgba-regex": "^1.0.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=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + } + }, + "is-date-object": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.1.tgz", + "integrity": "sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY=", + "dev": true + }, + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "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 + } + } + }, + "is-directory": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz", + "integrity": "sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE=", + "dev": true + }, + "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-finite": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz", + "integrity": "sha1-zGZ3aVYCvlUO8R6LSqYwU0K20Ko=", + "dev": true, + "requires": { + "number-is-nan": "^1.0.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" + } + }, + "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-my-ip-valid": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-my-ip-valid/-/is-my-ip-valid-1.0.0.tgz", + "integrity": "sha512-gmh/eWXROncUzRnIa1Ubrt5b8ep/MGSnfAUI3aRp+sqTCs1tv1Isl8d8F6JmkN3dXKc3ehZMrtiPN9eL03NuaQ==", + "dev": true + }, + "is-my-json-valid": { + "version": "2.20.0", + "resolved": "https://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.20.0.tgz", + "integrity": "sha512-XTHBZSIIxNsIsZXg7XB5l8z/OBFosl1Wao4tXLpeC7eKU4Vm/kdop2azkPqULwnfGQjmeDIyey9g7afMMtdWAA==", + "dev": true, + "requires": { + "generate-function": "^2.0.0", + "generate-object-property": "^1.1.0", + "is-my-ip-valid": "^1.0.0", + "jsonpointer": "^4.0.0", + "xtend": "^4.0.0" + } + }, + "is-npm": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-npm/-/is-npm-3.0.0.tgz", + "integrity": "sha512-wsigDr1Kkschp2opC4G3yA6r9EgVA6NjRpWzIi9axXqeIaAATPRJc4uLujXe3Nd9uO8KoDyA4MD6aZSeXTADhA==", + "dev": true + }, + "is-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz", + "integrity": "sha1-PkcprB9f3gJc19g6iW2rn09n2w8=", + "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=", + "dev": true, + "requires": { + "path-is-inside": "^1.0.1" + } + }, + "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==", + "dev": true, + "requires": { + "isobject": "^3.0.1" + }, + "dependencies": { + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", + "dev": true + } + } + }, + "is-promise": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.1.0.tgz", + "integrity": "sha1-eaKp7OfwlugPNtKy87wWwf9L8/o=", + "dev": true + }, + "is-property": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz", + "integrity": "sha1-V/4cTkhHTt1lsJkR8msc1Ald2oQ=", + "dev": true + }, + "is-regex": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.0.4.tgz", + "integrity": "sha1-VRdIm1RwkbCTDglWVM7SXul+lJE=", + "dev": true, + "requires": { + "has": "^1.0.1" + } + }, + "is-relative": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-relative/-/is-relative-0.2.1.tgz", + "integrity": "sha1-0n9MfVFtF1+2ENuEu+7yPDvJeqU=", + "dev": true, + "requires": { + "is-unc-path": "^0.1.1" + } + }, + "is-resolvable": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.1.0.tgz", + "integrity": "sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==", + "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-svg": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-svg/-/is-svg-3.0.0.tgz", + "integrity": "sha512-gi4iHK53LR2ujhLVVj+37Ykh9GLqYHX6JOVXbLAucaG/Cqw9xwdFOjDM2qeifLs1sF1npXXFvDu0r5HNgCMrzQ==", + "dev": true, + "requires": { + "html-comment-regex": "^1.1.0" + } + }, + "is-symbol": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.2.tgz", + "integrity": "sha512-HS8bZ9ox60yCJLH9snBpIwv9pYUAkcuLhSA1oero1UB5y9aiQpRA8y2ex945AOtCZL1lJDeIk3G5LthswI46Lw==", + "dev": true, + "requires": { + "has-symbols": "^1.0.0" + } + }, + "is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=", + "dev": true + }, + "is-unc-path": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/is-unc-path/-/is-unc-path-0.1.2.tgz", + "integrity": "sha1-arBTpyVzwQJQ/0FqOBTDUXivObk=", + "dev": true, + "requires": { + "unc-path-regex": "^0.1.0" + } + }, + "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": "0.2.0", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-0.2.0.tgz", + "integrity": "sha1-3hqm1j6indJIc3tp8f+LgALSEIw=", + "dev": true + }, + "is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", + "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=", + "dev": true + }, + "is-yarn-global": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/is-yarn-global/-/is-yarn-global-0.3.0.tgz", + "integrity": "sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw==", + "dev": true + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", + "dev": true + }, + "isstream": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=", + "dev": true + }, + "istanbul-lib-coverage": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.5.tgz", + "integrity": "sha512-8aXznuEPCJvGnMSRft4udDRDtb1V3pkQkMMI5LI+6HuQz5oQ4J2UFn1H82raA3qJtyOLkkwVqICBQkjnGtn5mA==", + "dev": true + }, + "istanbul-lib-instrument": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-3.3.0.tgz", + "integrity": "sha512-5nnIN4vo5xQZHdXno/YDXJ0G+I3dAm4XgzfSVTPLQpj/zAV2dV6Juy0yaf10/zrJOJeHoN3fraFe+XRq2bFVZA==", + "dev": true, + "requires": { + "@babel/generator": "^7.4.0", + "@babel/parser": "^7.4.3", + "@babel/template": "^7.4.0", + "@babel/traverse": "^7.4.3", + "@babel/types": "^7.4.0", + "istanbul-lib-coverage": "^2.0.5", + "semver": "^6.0.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "jju": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/jju/-/jju-1.4.0.tgz", + "integrity": "sha1-o6vicYryQaKykE+EpiWXDzia4yo=", + "dev": true + }, + "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 + }, + "js-beautify": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/js-beautify/-/js-beautify-1.10.2.tgz", + "integrity": "sha512-ZtBYyNUYJIsBWERnQP0rPN9KjkrDfJcMjuVGcvXOUJrD1zmOGwhRwQ4msG+HJ+Ni/FA7+sRQEMYVzdTQDvnzvQ==", + "dev": true, + "requires": { + "config-chain": "^1.1.12", + "editorconfig": "^0.15.3", + "glob": "^7.1.3", + "mkdirp": "~0.5.1", + "nopt": "~4.0.1" + } + }, + "js-tokens": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz", + "integrity": "sha1-mGbfOVECEw449/mWvOtlRDIJwls=", + "dev": true + }, + "js-yaml": { + "version": "3.13.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz", + "integrity": "sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==", + "dev": true, + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + } + }, + "jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", + "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=", + "dev": true + }, + "jsesc": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-1.3.0.tgz", + "integrity": "sha1-RsP+yMGJKxKwgz25vHYiF226s0s=", + "dev": true + }, + "json-buffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz", + "integrity": "sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg=", + "dev": true + }, + "json-loader": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/json-loader/-/json-loader-0.5.7.tgz", + "integrity": "sha512-QLPs8Dj7lnf3e3QYS1zkCo+4ZwqOiF9d/nZnYozTISxXWCfNs9yuky5rJw4/W34s7POaNlbZmQGaB5NiXCbP4w==", + "dev": true + }, + "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==", + "dev": true + }, + "json-parse-helpfulerror": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/json-parse-helpfulerror/-/json-parse-helpfulerror-1.0.3.tgz", + "integrity": "sha1-E/FM4C7tTpgSl7ZOueO5MuLdE9w=", + "dev": true, + "requires": { + "jju": "^1.1.0" + } + }, + "json-schema": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", + "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=", + "dev": true + }, + "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==", + "dev": true + }, + "json-server": { + "version": "0.15.0", + "resolved": "https://registry.npmjs.org/json-server/-/json-server-0.15.0.tgz", + "integrity": "sha512-mo9CuRVoEzJ82g/IaxU0ljSKgPpRoj6rYiJoDIUK7VEqplOca2Saq6eTwmRULRgPiRe4hHC0aYB9tNKJUAQGgQ==", + "dev": true, + "requires": { + "body-parser": "^1.19.0", + "chalk": "^2.4.2", + "compression": "^1.7.4", + "connect-pause": "^0.1.1", + "cors": "^2.8.5", + "errorhandler": "^1.5.1", + "express": "^4.17.0", + "express-urlrewrite": "^1.2.0", + "json-parse-helpfulerror": "^1.0.3", + "lodash": "^4.17.11", + "lodash-id": "^0.14.0", + "lowdb": "^1.0.0", + "method-override": "^3.0.0", + "morgan": "^1.9.1", + "nanoid": "^2.0.2", + "object-assign": "^4.1.1", + "please-upgrade-node": "^3.1.1", + "pluralize": "^7.0.0", + "request": "^2.88.0", + "server-destroy": "^1.0.1", + "update-notifier": "^3.0.0", + "yargs": "^13.2.4" + }, + "dependencies": { + "pluralize": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-7.0.0.tgz", + "integrity": "sha512-ARhBOdzS3e41FbkW/XWrTEtukqqLoK5+Z/4UeDaLuSW+39JPeFgs4gCGqsrJHVZX0fUrx//4OF0K1CUGwlIFow==", + "dev": true + } + } + }, + "json-stable-stringify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz", + "integrity": "sha1-mnWdOcXy/1A/1TAGRu1EX4jE+a8=", + "dev": true, + "requires": { + "jsonify": "~0.0.0" + } + }, + "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=", + "dev": true + }, + "json5": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz", + "integrity": "sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE=", + "dev": true + }, + "jsonify": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz", + "integrity": "sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM=", + "dev": true + }, + "jsonpointer": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-4.0.1.tgz", + "integrity": "sha1-T9kss04OnbPInIYi7PUfm5eMbLk=", + "dev": true + }, + "jsprim": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", + "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", + "dev": true, + "requires": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.2.3", + "verror": "1.10.0" + } + }, + "keyv": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-3.1.0.tgz", + "integrity": "sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==", + "dev": true, + "requires": { + "json-buffer": "3.0.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" + } + }, + "latest-version": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/latest-version/-/latest-version-5.1.0.tgz", + "integrity": "sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA==", + "dev": true, + "requires": { + "package-json": "^6.3.0" + } + }, + "lazy-cache": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.4.tgz", + "integrity": "sha1-odePw6UEdMuAhF07O24dpJpEbo4=", + "dev": true + }, + "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" + } + }, + "less": { + "version": "2.7.2", + "resolved": "https://registry.npmjs.org/less/-/less-2.7.2.tgz", + "integrity": "sha1-No1sxz4fsDmBGDKAkYdDxdz5s98=", + "dev": true, + "requires": { + "errno": "^0.1.1", + "graceful-fs": "^4.1.2", + "image-size": "~0.5.0", + "mime": "^1.2.11", + "mkdirp": "^0.5.0", + "promise": "^7.1.1", + "request": "^2.72.0", + "source-map": "^0.5.3" + }, + "dependencies": { + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true, + "optional": true + } + } + }, + "less-loader": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/less-loader/-/less-loader-4.0.5.tgz", + "integrity": "sha1-rhVadAbKxqzSk9eFWH/P8PR4xN0=", + "dev": true, + "requires": { + "clone": "^2.1.1", + "loader-utils": "^1.1.0", + "pify": "^2.3.0" + }, + "dependencies": { + "clone": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", + "integrity": "sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=", + "dev": true + }, + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", + "dev": true + } + } + }, + "levn": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", + "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", + "dev": true, + "requires": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + } + }, + "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" + }, + "dependencies": { + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", + "dev": true + } + } + }, + "loader-fs-cache": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/loader-fs-cache/-/loader-fs-cache-1.0.2.tgz", + "integrity": "sha512-70IzT/0/L+M20jUlEqZhZyArTU6VKLRTYRDAYN26g4jfzpJqjipLL3/hgYpySqI9PwsVRHHFja0LfEmsx9X2Cw==", + "dev": true, + "requires": { + "find-cache-dir": "^0.1.1", + "mkdirp": "0.5.1" + }, + "dependencies": { + "find-cache-dir": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-0.1.1.tgz", + "integrity": "sha1-yN765XyKUqinhPnjHFfHQumToLk=", + "dev": true, + "requires": { + "commondir": "^1.0.1", + "mkdirp": "^0.5.1", + "pkg-dir": "^1.0.0" + } + }, + "find-up": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", + "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", + "dev": true, + "requires": { + "path-exists": "^2.0.0", + "pinkie-promise": "^2.0.0" + } + }, + "path-exists": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", + "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", + "dev": true, + "requires": { + "pinkie-promise": "^2.0.0" + } + }, + "pkg-dir": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-1.0.0.tgz", + "integrity": "sha1-ektQio1bstYp1EcFb/TpyTFM89Q=", + "dev": true, + "requires": { + "find-up": "^1.0.0" + } + } + } + }, + "loader-runner": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-2.4.0.tgz", + "integrity": "sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==", + "dev": true + }, + "loader-utils": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz", + "integrity": "sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^2.0.0", + "json5": "^1.0.1" + }, + "dependencies": { + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "dev": true, + "requires": { + "minimist": "^1.2.0" + } + }, + "minimist": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", + "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", + "dev": true + } + } + }, + "locate-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", + "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", + "dev": true, + "requires": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + } + }, + "lodash": { + "version": "4.17.15", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz", + "integrity": "sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==", + "dev": true + }, + "lodash-id": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/lodash-id/-/lodash-id-0.14.0.tgz", + "integrity": "sha1-uvSJNOVDobXWNG+MhGmLGoyAOJY=", + "dev": true + }, + "lodash._baseget": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/lodash._baseget/-/lodash._baseget-3.7.2.tgz", + "integrity": "sha1-G2rh1frPPCVTI1ChPBGXy4u2dPQ=", + "dev": true + }, + "lodash._topath": { + "version": "3.8.1", + "resolved": "https://registry.npmjs.org/lodash._topath/-/lodash._topath-3.8.1.tgz", + "integrity": "sha1-PsXiYGAU9MuX91X+aRTt2L/ADqw=", + "dev": true, + "requires": { + "lodash.isarray": "^3.0.0" + } + }, + "lodash.cond": { + "version": "4.5.2", + "resolved": "https://registry.npmjs.org/lodash.cond/-/lodash.cond-4.5.2.tgz", + "integrity": "sha1-9HGh2khr5g9quVXRcRVSPdHSVdU=", + "dev": true + }, + "lodash.get": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/lodash.get/-/lodash.get-3.7.0.tgz", + "integrity": "sha1-POaK4skWg7KBzFOUEoMDy/deaR8=", + "dev": true, + "requires": { + "lodash._baseget": "^3.0.0", + "lodash._topath": "^3.0.0" + } + }, + "lodash.isarray": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-3.0.4.tgz", + "integrity": "sha1-eeTriMNqgSKvhvhEqpvNhRtfu1U=", + "dev": true + }, + "lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=", + "dev": true + }, + "lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", + "integrity": "sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=", + "dev": true + }, + "log-symbols": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-1.0.2.tgz", + "integrity": "sha1-N2/3tY6jCGoPCfrMdGF+ylAeGhg=", + "dev": true, + "requires": { + "chalk": "^1.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 + }, + "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" + } + }, + "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 + } + } + }, + "longest": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz", + "integrity": "sha1-MKCy2jj3N3DoKUoNIuZiXtd9AJc=", + "dev": true + }, + "loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "dev": true, + "requires": { + "js-tokens": "^3.0.0 || ^4.0.0" + } + }, + "lowdb": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/lowdb/-/lowdb-1.0.0.tgz", + "integrity": "sha512-2+x8esE/Wb9SQ1F9IHaYWfsC9FIecLOPrK4g17FGEayjUWH172H6nwicRovGvSE2CPZouc2MCIqCI7h9d+GftQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.3", + "is-promise": "^2.1.0", + "lodash": "4", + "pify": "^3.0.0", + "steno": "^0.4.1" + } + }, + "lower-case": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-1.1.4.tgz", + "integrity": "sha1-miyr0bno4K6ZOkv31YdcOcQujqw=", + "dev": true + }, + "lowercase-keys": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", + "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==", + "dev": true + }, + "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==", + "dev": true, + "requires": { + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" + } + }, + "make-dir": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", + "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", + "dev": true, + "requires": { + "pify": "^3.0.0" + } + }, + "map-cache": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", + "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=", + "dev": true + }, + "map-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", + "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=", + "dev": true, + "requires": { + "object-visit": "^1.0.0" + } + }, + "md5.js": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", + "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", + "dev": true, + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "mdn-data": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz", + "integrity": "sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==", + "dev": true + }, + "media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=", + "dev": true + }, + "memory-fs": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.2.0.tgz", + "integrity": "sha1-8rslNovBIeORwlIN6Slpyu4KApA=", + "dev": true + }, + "merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=", + "dev": true + }, + "method-override": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/method-override/-/method-override-3.0.0.tgz", + "integrity": "sha512-IJ2NNN/mSl9w3kzWB92rcdHpz+HjkxhDJWNDBqSlas+zQdP8wBiJzITPg08M/k2uVvMow7Sk41atndNtt/PHSA==", + "dev": true, + "requires": { + "debug": "3.1.0", + "methods": "~1.1.2", + "parseurl": "~1.3.2", + "vary": "~1.1.2" + }, + "dependencies": { + "debug": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", + "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + } + } + }, + "methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=", + "dev": true + }, + "miller-rabin": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", + "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", + "dev": true, + "requires": { + "bn.js": "^4.0.0", + "brorand": "^1.0.1" + } + }, + "mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "dev": true + }, + "mime-db": { + "version": "1.40.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.40.0.tgz", + "integrity": "sha512-jYdeOMPy9vnxEqFRRo6ZvTZ8d9oPb+k18PKoYNYUe2stVEBPPwsln/qWzdbmaIvnhZ9v2P+CuecK+fpUfsV2mA==", + "dev": true + }, + "mime-types": { + "version": "2.1.24", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.24.tgz", + "integrity": "sha512-WaFHS3MCl5fapm3oLxU4eYDw77IQM2ACcxQ9RIxfaC3ooc6PFuBMGZZsYpvoXS5D5QTWPieo1jjLdAm3TBP3cQ==", + "dev": true, + "requires": { + "mime-db": "1.40.0" + } + }, + "mimic-fn": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz", + "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==", + "dev": true + }, + "mimic-response": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", + "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", + "dev": true + }, + "min-document": { + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/min-document/-/min-document-2.19.0.tgz", + "integrity": "sha1-e9KC4/WELtKVu3SM3Z8f+iyCRoU=", + "requires": { + "dom-walk": "^0.1.0" + } + }, + "minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", + "dev": true + }, + "minimalistic-crypto-utils": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", + "integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=", + "dev": true + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "minimist": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", + "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=", + "dev": true + }, + "mixin-deep": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", + "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", + "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" + } + } + } + }, + "mkdirp": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", + "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", + "dev": true, + "requires": { + "minimist": "0.0.8" + } + }, + "morgan": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/morgan/-/morgan-1.9.1.tgz", + "integrity": "sha512-HQStPIV4y3afTiCYVxirakhlCfGkI161c76kKFca7Fk1JusM//Qeo1ej2XaMniiNeaZklMVrh3vTtIzpzwbpmA==", + "dev": true, + "requires": { + "basic-auth": "~2.0.0", + "debug": "2.6.9", + "depd": "~1.1.2", + "on-finished": "~2.3.0", + "on-headers": "~1.0.1" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "mute-stream": { + "version": "0.0.5", + "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.5.tgz", + "integrity": "sha1-j7+rsKmKJT0xhDMfno3rc3L6xsA=", + "dev": true + }, + "nan": { + "version": "2.14.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.14.0.tgz", + "integrity": "sha512-INOFj37C7k3AfaNTtX8RhsTw7qRy7eLET14cROi9+5HAVbbHuIWUHEauBv5qT4Av2tWasiTY1Jw6puUNqRJXQg==", + "dev": true, + "optional": true + }, + "nanoid": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-2.1.2.tgz", + "integrity": "sha512-q0iKJHcLc9rZg/qtJ/ioG5s6/5357bqvkYCpqXJxpcyfK7L5us8+uJllZosqPWou7l6E1lY2Qqoq5ce+AMbFuQ==", + "dev": true + }, + "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" + }, + "dependencies": { + "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 + }, + "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 + }, + "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 + }, + "kind-of": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", + "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==", + "dev": true + } + } + }, + "natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=", + "dev": true + }, + "negotiator": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz", + "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==", + "dev": true + }, + "neo-async": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.1.tgz", + "integrity": "sha512-iyam8fBuCUpWeKPGpaNMetEocMt364qkCsfL9JuhjXX6dRnguRVOfk2GZaDpPjcOKiiXCPINZC1GczQ7iTq3Zw==", + "dev": true + }, + "next-tick": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.0.0.tgz", + "integrity": "sha1-yobR/ogoFpsBICCOPchCS524NCw=", + "dev": true + }, + "no-case": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-2.3.2.tgz", + "integrity": "sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==", + "dev": true, + "requires": { + "lower-case": "^1.1.1" + } + }, + "node-libs-browser": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-1.1.1.tgz", + "integrity": "sha1-KjgkOr7dff/NB6l8mspWaJdab+o=", + "dev": true, + "requires": { + "assert": "^1.1.1", + "browserify-zlib": "^0.1.4", + "buffer": "^4.3.0", + "console-browserify": "^1.1.0", + "constants-browserify": "^1.0.0", + "crypto-browserify": "^3.11.0", + "domain-browser": "^1.1.1", + "events": "^1.0.0", + "https-browserify": "0.0.1", + "os-browserify": "^0.2.0", + "path-browserify": "0.0.0", + "process": "^0.11.0", + "punycode": "^1.2.4", + "querystring-es3": "^0.2.0", + "readable-stream": "^2.0.5", + "stream-browserify": "^2.0.1", + "stream-http": "^2.3.1", + "string_decoder": "^0.10.25", + "timers-browserify": "^1.4.2", + "tty-browserify": "0.0.0", + "url": "^0.11.0", + "util": "^0.10.3", + "vm-browserify": "0.0.4" + }, + "dependencies": { + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", + "dev": true + } + } + }, + "node-releases": { + "version": "1.1.34", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.34.tgz", + "integrity": "sha512-fNn12JTEfniTuCqo0r9jXgl44+KxRH/huV7zM/KAGOKxDKrHr6EbT7SSs4B+DNxyBE2mks28AD+Jw6PkfY5uwA==", + "dev": true, + "requires": { + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "nopt": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-4.0.1.tgz", + "integrity": "sha1-0NRoWv1UFRk8jHUFYC0NF81kR00=", + "dev": true, + "requires": { + "abbrev": "1", + "osenv": "^0.1.4" + } + }, + "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": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "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" + } + }, + "normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=", + "dev": true + }, + "normalize-url": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-3.3.0.tgz", + "integrity": "sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg==", + "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" + } + }, + "nth-check": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", + "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==", + "dev": true, + "requires": { + "boolbase": "~1.0.0" + } + }, + "num2fraction": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz", + "integrity": "sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=", + "dev": true + }, + "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==", + "dev": true + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", + "dev": true + }, + "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" + } + } + } + }, + "object-hash": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-1.3.1.tgz", + "integrity": "sha512-OSuu/pU4ENM9kmREg0BdNrUDIl1heYa4mBZacJc+vVWz4GtAwu7jO8s4AIt2aGRUTqxykpWzI3Oqnsm13tTMDA==", + "dev": true + }, + "object-inspect": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.6.0.tgz", + "integrity": "sha512-GJzfBZ6DgDAmnuaM3104jR4s1Myxr3Y3zfIyN4z3UdqN69oSRacNK8UhnobDdC+7J2AHCjGwxQubNJfE70SXXQ==", + "dev": true + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true + }, + "object-visit": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", + "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=", + "dev": true, + "requires": { + "isobject": "^3.0.0" + }, + "dependencies": { + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", + "dev": true + } + } + }, + "object.getownpropertydescriptors": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz", + "integrity": "sha1-h1jIRvW0B62rDyNuCYbxSwUcqhY=", + "dev": true, + "requires": { + "define-properties": "^1.1.2", + "es-abstract": "^1.5.1" + } + }, + "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" + }, + "dependencies": { + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", + "dev": true + } + } + }, + "object.values": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.0.tgz", + "integrity": "sha512-8mf0nKLAoFX6VlNVdhGj31SVYpaNFtUnuoOXWyFEstsWRgU837AK+JYM0iAxwkSzGRbwn8cbFmgbyxj1j4VbXg==", + "dev": true, + "requires": { + "define-properties": "^1.1.3", + "es-abstract": "^1.12.0", + "function-bind": "^1.1.1", + "has": "^1.0.3" + } + }, + "on-finished": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", + "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", + "dev": true, + "requires": { + "ee-first": "1.1.1" + } + }, + "on-headers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + "dev": true + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, + "requires": { + "wrappy": "1" + } + }, + "onetime": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-1.1.0.tgz", + "integrity": "sha1-ofeDj4MUxRbwXs78vEzP4EtO14k=", + "dev": true + }, + "opener": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/opener/-/opener-1.5.1.tgz", + "integrity": "sha512-goYSy5c2UXE4Ra1xixabeVh1guIX/ZV/YokJksb6q2lubWu6UbvPQ20p542/sFIll1nl8JnCyK9oBaOcCWXwvA==", + "dev": true + }, + "opn": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/opn/-/opn-5.1.0.tgz", + "integrity": "sha512-iPNl7SyM8L30Rm1sjGdLLheyHVw5YXVfi3SKWJzBI7efxRwHojfRFjwE/OLM6qp9xJYMgab8WicTU1cPoY+Hpg==", + "dev": true, + "requires": { + "is-wsl": "^1.1.0" + } + }, + "optionator": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.2.tgz", + "integrity": "sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q=", + "dev": true, + "requires": { + "deep-is": "~0.1.3", + "fast-levenshtein": "~2.0.4", + "levn": "~0.3.0", + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2", + "wordwrap": "~1.0.0" + } + }, + "ora": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/ora/-/ora-1.3.0.tgz", + "integrity": "sha1-gAeN0rkqk0r2ajrXKluRBpTt5Ro=", + "dev": true, + "requires": { + "chalk": "^1.1.1", + "cli-cursor": "^2.1.0", + "cli-spinners": "^1.0.0", + "log-symbols": "^1.0.2" + }, + "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 + }, + "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" + } + }, + "cli-cursor": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz", + "integrity": "sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=", + "dev": true, + "requires": { + "restore-cursor": "^2.0.0" + } + }, + "onetime": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz", + "integrity": "sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=", + "dev": true, + "requires": { + "mimic-fn": "^1.0.0" + } + }, + "restore-cursor": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz", + "integrity": "sha1-n37ih/gv0ybU/RYpI9YhKe7g368=", + "dev": true, + "requires": { + "onetime": "^2.0.0", + "signal-exit": "^3.0.2" + } + }, + "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 + } + } + }, + "os-browserify": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.2.1.tgz", + "integrity": "sha1-Y/xMzuXS13Y9Jrv4YBB45sLgBE8=", + "dev": true + }, + "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" + } + }, + "p-cancelable": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-1.1.0.tgz", + "integrity": "sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==", + "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-limit": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", + "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", + "dev": true, + "requires": { + "p-try": "^1.0.0" + } + }, + "p-locate": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", + "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", + "dev": true, + "requires": { + "p-limit": "^1.1.0" + } + }, + "p-try": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", + "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=", + "dev": true + }, + "package-json": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/package-json/-/package-json-6.5.0.tgz", + "integrity": "sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==", + "dev": true, + "requires": { + "got": "^9.6.0", + "registry-auth-token": "^4.0.0", + "registry-url": "^5.0.0", + "semver": "^6.2.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "pako": { + "version": "0.2.9", + "resolved": "https://registry.npmjs.org/pako/-/pako-0.2.9.tgz", + "integrity": "sha1-8/dSL073gjSNqBYbrZ7P1Rv4OnU=", + "dev": true + }, + "param-case": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-2.1.1.tgz", + "integrity": "sha1-35T9jPZTHs915r75oIWPvHK+Ikc=", + "dev": true, + "requires": { + "no-case": "^2.2.0" + } + }, + "parse-asn1": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.5.tgz", + "integrity": "sha512-jkMYn1dcJqF6d5CpU689bq7w/b5ALS9ROVSpQDPrZsqqesUJii9qutvoT5ltGedNXMO2e16YUWIghG9KxaViTQ==", + "dev": true, + "requires": { + "asn1.js": "^4.0.0", + "browserify-aes": "^1.0.0", + "create-hash": "^1.1.0", + "evp_bytestokey": "^1.0.0", + "pbkdf2": "^3.0.3", + "safe-buffer": "^5.1.1" + } + }, + "parse-json": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", + "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=", + "dev": true, + "requires": { + "error-ex": "^1.2.0" + } + }, + "parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "dev": true + }, + "pascalcase": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", + "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=", + "dev": true + }, + "path-browserify": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.0.tgz", + "integrity": "sha1-oLhwcpquIUAFt9UDLsLLuw+0RRo=", + "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 + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "dev": true + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "dev": true + }, + "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=", + "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 + }, + "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 + }, + "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=", + "dev": true + }, + "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" + }, + "dependencies": { + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", + "dev": true + } + } + }, + "pbkdf2": { + "version": "3.0.17", + "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.0.17.tgz", + "integrity": "sha512-U/il5MsrZp7mGg3mSQfn742na2T+1/vHDCG5/iTI3X9MKUuYUZVLQhyRsg06mCgDBTd57TxzgZt7P+fYfjRLtA==", + "dev": true, + "requires": { + "create-hash": "^1.1.2", + "create-hmac": "^1.1.4", + "ripemd160": "^2.0.1", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + } + }, + "performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=", + "dev": true + }, + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "dev": true + }, + "pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=", + "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=", + "dev": true, + "requires": { + "pinkie": "^2.0.0" + } + }, + "pkg-dir": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-2.0.0.tgz", + "integrity": "sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=", + "dev": true, + "requires": { + "find-up": "^2.1.0" + } + }, + "please-upgrade-node": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/please-upgrade-node/-/please-upgrade-node-3.2.0.tgz", + "integrity": "sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg==", + "dev": true, + "requires": { + "semver-compare": "^1.0.0" + } + }, + "pluralize": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-1.2.1.tgz", + "integrity": "sha1-0aIUg/0iu0HlihL6NCGCMUCJfEU=", + "dev": true + }, + "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 + }, + "postcss": { + "version": "6.0.23", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz", + "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==", + "dev": true, + "requires": { + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.4.0" + } + }, + "postcss-calc": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-7.0.1.tgz", + "integrity": "sha512-oXqx0m6tb4N3JGdmeMSc/i91KppbYsFZKdH0xMOqK8V1rJlzrKlTdokz8ozUXLVejydRN6u2IddxpcijRj2FqQ==", + "dev": true, + "requires": { + "css-unit-converter": "^1.1.1", + "postcss": "^7.0.5", + "postcss-selector-parser": "^5.0.0-rc.4", + "postcss-value-parser": "^3.3.1" + }, + "dependencies": { + "cssesc": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz", + "integrity": "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==", + "dev": true + }, + "postcss": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.18.tgz", + "integrity": "sha512-/7g1QXXgegpF+9GJj4iN7ChGF40sYuGYJ8WZu8DZWnmhQ/G36hfdk3q9LBJmoK+lZ+yzZ5KYpOoxq7LF1BxE8g==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "postcss-selector-parser": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz", + "integrity": "sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==", + "dev": true, + "requires": { + "cssesc": "^2.0.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-colormin": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-4.0.3.tgz", + "integrity": "sha512-WyQFAdDZpExQh32j0U0feWisZ0dmOtPl44qYmJKkq9xFWY3p+4qnRzCHeNrkeRhwPHz9bQ3mo0/yVkaply0MNw==", + "dev": true, + "requires": { + "browserslist": "^4.0.0", + "color": "^3.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "browserslist": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.7.0.tgz", + "integrity": "sha512-9rGNDtnj+HaahxiVV38Gn8n8Lr8REKsel68v1sPFfIGEK6uSXTY3h9acgiT1dZVtOOUtifo/Dn8daDQ5dUgVsA==", + "dev": true, + "requires": { + "caniuse-lite": "^1.0.30000989", + "electron-to-chromium": "^1.3.247", + "node-releases": "^1.1.29" + } + }, + "postcss": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.18.tgz", + "integrity": "sha512-/7g1QXXgegpF+9GJj4iN7ChGF40sYuGYJ8WZu8DZWnmhQ/G36hfdk3q9LBJmoK+lZ+yzZ5KYpOoxq7LF1BxE8g==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-convert-values": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-4.0.1.tgz", + "integrity": "sha512-Kisdo1y77KUC0Jmn0OXU/COOJbzM8cImvw1ZFsBgBgMgb1iL23Zs/LXRe3r+EZqM3vGYKdQ2YJVQ5VkJI+zEJQ==", + "dev": true, + "requires": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.18.tgz", + "integrity": "sha512-/7g1QXXgegpF+9GJj4iN7ChGF40sYuGYJ8WZu8DZWnmhQ/G36hfdk3q9LBJmoK+lZ+yzZ5KYpOoxq7LF1BxE8g==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-discard-comments": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-4.0.2.tgz", + "integrity": "sha512-RJutN259iuRf3IW7GZyLM5Sw4GLTOH8FmsXBnv8Ab/Tc2k4SR4qbV4DNbyyY4+Sjo362SyDmW2DQ7lBSChrpkg==", + "dev": true, + "requires": { + "postcss": "^7.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.18.tgz", + "integrity": "sha512-/7g1QXXgegpF+9GJj4iN7ChGF40sYuGYJ8WZu8DZWnmhQ/G36hfdk3q9LBJmoK+lZ+yzZ5KYpOoxq7LF1BxE8g==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-discard-duplicates": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-4.0.2.tgz", + "integrity": "sha512-ZNQfR1gPNAiXZhgENFfEglF93pciw0WxMkJeVmw8eF+JZBbMD7jp6C67GqJAXVZP2BWbOztKfbsdmMp/k8c6oQ==", + "dev": true, + "requires": { + "postcss": "^7.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.18.tgz", + "integrity": "sha512-/7g1QXXgegpF+9GJj4iN7ChGF40sYuGYJ8WZu8DZWnmhQ/G36hfdk3q9LBJmoK+lZ+yzZ5KYpOoxq7LF1BxE8g==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-discard-empty": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-4.0.1.tgz", + "integrity": "sha512-B9miTzbznhDjTfjvipfHoqbWKwd0Mj+/fL5s1QOz06wufguil+Xheo4XpOnc4NqKYBCNqqEzgPv2aPBIJLox0w==", + "dev": true, + "requires": { + "postcss": "^7.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.18.tgz", + "integrity": "sha512-/7g1QXXgegpF+9GJj4iN7ChGF40sYuGYJ8WZu8DZWnmhQ/G36hfdk3q9LBJmoK+lZ+yzZ5KYpOoxq7LF1BxE8g==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-discard-overridden": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-4.0.1.tgz", + "integrity": "sha512-IYY2bEDD7g1XM1IDEsUT4//iEYCxAmP5oDSFMVU/JVvT7gh+l4fmjciLqGgwjdWpQIdb0Che2VX00QObS5+cTg==", + "dev": true, + "requires": { + "postcss": "^7.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.18.tgz", + "integrity": "sha512-/7g1QXXgegpF+9GJj4iN7ChGF40sYuGYJ8WZu8DZWnmhQ/G36hfdk3q9LBJmoK+lZ+yzZ5KYpOoxq7LF1BxE8g==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-load-config": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-1.2.0.tgz", + "integrity": "sha1-U56a/J3chiASHr+djDZz4M5Q0oo=", + "dev": true, + "requires": { + "cosmiconfig": "^2.1.0", + "object-assign": "^4.1.0", + "postcss-load-options": "^1.2.0", + "postcss-load-plugins": "^2.3.0" + } + }, + "postcss-load-options": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/postcss-load-options/-/postcss-load-options-1.2.0.tgz", + "integrity": "sha1-sJixVZ3awt8EvAuzdfmaXP4rbYw=", + "dev": true, + "requires": { + "cosmiconfig": "^2.1.0", + "object-assign": "^4.1.0" + } + }, + "postcss-load-plugins": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/postcss-load-plugins/-/postcss-load-plugins-2.3.0.tgz", + "integrity": "sha1-dFdoEWWZrKLwCfrUJrABdQSdjZI=", + "dev": true, + "requires": { + "cosmiconfig": "^2.1.1", + "object-assign": "^4.1.0" + } + }, + "postcss-merge-longhand": { + "version": "4.0.11", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-4.0.11.tgz", + "integrity": "sha512-alx/zmoeXvJjp7L4mxEMjh8lxVlDFX1gqWHzaaQewwMZiVhLo42TEClKaeHbRf6J7j82ZOdTJ808RtN0ZOZwvw==", + "dev": true, + "requires": { + "css-color-names": "0.0.4", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "stylehacks": "^4.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.18.tgz", + "integrity": "sha512-/7g1QXXgegpF+9GJj4iN7ChGF40sYuGYJ8WZu8DZWnmhQ/G36hfdk3q9LBJmoK+lZ+yzZ5KYpOoxq7LF1BxE8g==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-merge-rules": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-4.0.3.tgz", + "integrity": "sha512-U7e3r1SbvYzO0Jr3UT/zKBVgYYyhAz0aitvGIYOYK5CPmkNih+WDSsS5tvPrJ8YMQYlEMvsZIiqmn7HdFUaeEQ==", + "dev": true, + "requires": { + "browserslist": "^4.0.0", + "caniuse-api": "^3.0.0", + "cssnano-util-same-parent": "^4.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0", + "vendors": "^1.0.0" + }, + "dependencies": { + "browserslist": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.7.0.tgz", + "integrity": "sha512-9rGNDtnj+HaahxiVV38Gn8n8Lr8REKsel68v1sPFfIGEK6uSXTY3h9acgiT1dZVtOOUtifo/Dn8daDQ5dUgVsA==", + "dev": true, + "requires": { + "caniuse-lite": "^1.0.30000989", + "electron-to-chromium": "^1.3.247", + "node-releases": "^1.1.29" + } + }, + "postcss": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.18.tgz", + "integrity": "sha512-/7g1QXXgegpF+9GJj4iN7ChGF40sYuGYJ8WZu8DZWnmhQ/G36hfdk3q9LBJmoK+lZ+yzZ5KYpOoxq7LF1BxE8g==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "postcss-selector-parser": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.1.tgz", + "integrity": "sha1-T4dfSvsMllc9XPTXQBGu4lCn6GU=", + "dev": true, + "requires": { + "dot-prop": "^4.1.1", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-minify-font-values": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-4.0.2.tgz", + "integrity": "sha512-j85oO6OnRU9zPf04+PZv1LYIYOprWm6IA6zkXkrJXyRveDEuQggG6tvoy8ir8ZwjLxLuGfNkCZEQG7zan+Hbtg==", + "dev": true, + "requires": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.18.tgz", + "integrity": "sha512-/7g1QXXgegpF+9GJj4iN7ChGF40sYuGYJ8WZu8DZWnmhQ/G36hfdk3q9LBJmoK+lZ+yzZ5KYpOoxq7LF1BxE8g==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-minify-gradients": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-4.0.2.tgz", + "integrity": "sha512-qKPfwlONdcf/AndP1U8SJ/uzIJtowHlMaSioKzebAXSG4iJthlWC9iSWznQcX4f66gIWX44RSA841HTHj3wK+Q==", + "dev": true, + "requires": { + "cssnano-util-get-arguments": "^4.0.0", + "is-color-stop": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.18.tgz", + "integrity": "sha512-/7g1QXXgegpF+9GJj4iN7ChGF40sYuGYJ8WZu8DZWnmhQ/G36hfdk3q9LBJmoK+lZ+yzZ5KYpOoxq7LF1BxE8g==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-minify-params": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-4.0.2.tgz", + "integrity": "sha512-G7eWyzEx0xL4/wiBBJxJOz48zAKV2WG3iZOqVhPet/9geefm/Px5uo1fzlHu+DOjT+m0Mmiz3jkQzVHe6wxAWg==", + "dev": true, + "requires": { + "alphanum-sort": "^1.0.0", + "browserslist": "^4.0.0", + "cssnano-util-get-arguments": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "uniqs": "^2.0.0" + }, + "dependencies": { + "browserslist": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.7.0.tgz", + "integrity": "sha512-9rGNDtnj+HaahxiVV38Gn8n8Lr8REKsel68v1sPFfIGEK6uSXTY3h9acgiT1dZVtOOUtifo/Dn8daDQ5dUgVsA==", + "dev": true, + "requires": { + "caniuse-lite": "^1.0.30000989", + "electron-to-chromium": "^1.3.247", + "node-releases": "^1.1.29" + } + }, + "postcss": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.18.tgz", + "integrity": "sha512-/7g1QXXgegpF+9GJj4iN7ChGF40sYuGYJ8WZu8DZWnmhQ/G36hfdk3q9LBJmoK+lZ+yzZ5KYpOoxq7LF1BxE8g==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-minify-selectors": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-4.0.2.tgz", + "integrity": "sha512-D5S1iViljXBj9kflQo4YutWnJmwm8VvIsU1GeXJGiG9j8CIg9zs4voPMdQDUmIxetUOh60VilsNzCiAFTOqu3g==", + "dev": true, + "requires": { + "alphanum-sort": "^1.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.18.tgz", + "integrity": "sha512-/7g1QXXgegpF+9GJj4iN7ChGF40sYuGYJ8WZu8DZWnmhQ/G36hfdk3q9LBJmoK+lZ+yzZ5KYpOoxq7LF1BxE8g==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "postcss-selector-parser": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.1.tgz", + "integrity": "sha1-T4dfSvsMllc9XPTXQBGu4lCn6GU=", + "dev": true, + "requires": { + "dot-prop": "^4.1.1", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-modules-extract-imports": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz", + "integrity": "sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==", + "dev": true, + "requires": { + "postcss": "^7.0.5" + }, + "dependencies": { + "postcss": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.18.tgz", + "integrity": "sha512-/7g1QXXgegpF+9GJj4iN7ChGF40sYuGYJ8WZu8DZWnmhQ/G36hfdk3q9LBJmoK+lZ+yzZ5KYpOoxq7LF1BxE8g==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-modules-local-by-default": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.2.tgz", + "integrity": "sha512-jM/V8eqM4oJ/22j0gx4jrp63GSvDH6v86OqyTHHUvk4/k1vceipZsaymiZ5PvocqZOl5SFHiFJqjs3la0wnfIQ==", + "dev": true, + "requires": { + "icss-utils": "^4.1.1", + "postcss": "^7.0.16", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.18.tgz", + "integrity": "sha512-/7g1QXXgegpF+9GJj4iN7ChGF40sYuGYJ8WZu8DZWnmhQ/G36hfdk3q9LBJmoK+lZ+yzZ5KYpOoxq7LF1BxE8g==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "postcss-selector-parser": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.2.tgz", + "integrity": "sha512-36P2QR59jDTOAiIkqEprfJDsoNrvwFei3eCqKd1Y0tUsBimsq39BLp7RD+JWny3WgB1zGhJX8XVePwm9k4wdBg==", + "dev": true, + "requires": { + "cssesc": "^3.0.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + } + }, + "postcss-value-parser": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.0.2.tgz", + "integrity": "sha512-LmeoohTpp/K4UiyQCwuGWlONxXamGzCMtFxLq4W1nZVGIQLYvMCJx3yAF9qyyuFpflABI9yVdtJAqbihOsCsJQ==", + "dev": true + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-modules-scope": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-2.1.0.tgz", + "integrity": "sha512-91Rjps0JnmtUB0cujlc8KIKCsJXWjzuxGeT/+Q2i2HXKZ7nBUeF9YQTZZTNvHVoNYj1AthsjnGLtqDUE0Op79A==", + "dev": true, + "requires": { + "postcss": "^7.0.6", + "postcss-selector-parser": "^6.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.18.tgz", + "integrity": "sha512-/7g1QXXgegpF+9GJj4iN7ChGF40sYuGYJ8WZu8DZWnmhQ/G36hfdk3q9LBJmoK+lZ+yzZ5KYpOoxq7LF1BxE8g==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "postcss-selector-parser": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.2.tgz", + "integrity": "sha512-36P2QR59jDTOAiIkqEprfJDsoNrvwFei3eCqKd1Y0tUsBimsq39BLp7RD+JWny3WgB1zGhJX8XVePwm9k4wdBg==", + "dev": true, + "requires": { + "cssesc": "^3.0.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-modules-values": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-3.0.0.tgz", + "integrity": "sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==", + "dev": true, + "requires": { + "icss-utils": "^4.0.0", + "postcss": "^7.0.6" + }, + "dependencies": { + "postcss": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.18.tgz", + "integrity": "sha512-/7g1QXXgegpF+9GJj4iN7ChGF40sYuGYJ8WZu8DZWnmhQ/G36hfdk3q9LBJmoK+lZ+yzZ5KYpOoxq7LF1BxE8g==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-normalize-charset": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-4.0.1.tgz", + "integrity": "sha512-gMXCrrlWh6G27U0hF3vNvR3w8I1s2wOBILvA87iNXaPvSNo5uZAMYsZG7XjCUf1eVxuPfyL4TJ7++SGZLc9A3g==", + "dev": true, + "requires": { + "postcss": "^7.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.18.tgz", + "integrity": "sha512-/7g1QXXgegpF+9GJj4iN7ChGF40sYuGYJ8WZu8DZWnmhQ/G36hfdk3q9LBJmoK+lZ+yzZ5KYpOoxq7LF1BxE8g==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-normalize-display-values": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.2.tgz", + "integrity": "sha512-3F2jcsaMW7+VtRMAqf/3m4cPFhPD3EFRgNs18u+k3lTJJlVe7d0YPO+bnwqo2xg8YiRpDXJI2u8A0wqJxMsQuQ==", + "dev": true, + "requires": { + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.18.tgz", + "integrity": "sha512-/7g1QXXgegpF+9GJj4iN7ChGF40sYuGYJ8WZu8DZWnmhQ/G36hfdk3q9LBJmoK+lZ+yzZ5KYpOoxq7LF1BxE8g==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-normalize-positions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-4.0.2.tgz", + "integrity": "sha512-Dlf3/9AxpxE+NF1fJxYDeggi5WwV35MXGFnnoccP/9qDtFrTArZ0D0R+iKcg5WsUd8nUYMIl8yXDCtcrT8JrdA==", + "dev": true, + "requires": { + "cssnano-util-get-arguments": "^4.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.18.tgz", + "integrity": "sha512-/7g1QXXgegpF+9GJj4iN7ChGF40sYuGYJ8WZu8DZWnmhQ/G36hfdk3q9LBJmoK+lZ+yzZ5KYpOoxq7LF1BxE8g==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-normalize-repeat-style": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-4.0.2.tgz", + "integrity": "sha512-qvigdYYMpSuoFs3Is/f5nHdRLJN/ITA7huIoCyqqENJe9PvPmLhNLMu7QTjPdtnVf6OcYYO5SHonx4+fbJE1+Q==", + "dev": true, + "requires": { + "cssnano-util-get-arguments": "^4.0.0", + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.18.tgz", + "integrity": "sha512-/7g1QXXgegpF+9GJj4iN7ChGF40sYuGYJ8WZu8DZWnmhQ/G36hfdk3q9LBJmoK+lZ+yzZ5KYpOoxq7LF1BxE8g==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-normalize-string": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-4.0.2.tgz", + "integrity": "sha512-RrERod97Dnwqq49WNz8qo66ps0swYZDSb6rM57kN2J+aoyEAJfZ6bMx0sx/F9TIEX0xthPGCmeyiam/jXif0eA==", + "dev": true, + "requires": { + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.18.tgz", + "integrity": "sha512-/7g1QXXgegpF+9GJj4iN7ChGF40sYuGYJ8WZu8DZWnmhQ/G36hfdk3q9LBJmoK+lZ+yzZ5KYpOoxq7LF1BxE8g==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-normalize-timing-functions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-4.0.2.tgz", + "integrity": "sha512-acwJY95edP762e++00Ehq9L4sZCEcOPyaHwoaFOhIwWCDfik6YvqsYNxckee65JHLKzuNSSmAdxwD2Cud1Z54A==", + "dev": true, + "requires": { + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.18.tgz", + "integrity": "sha512-/7g1QXXgegpF+9GJj4iN7ChGF40sYuGYJ8WZu8DZWnmhQ/G36hfdk3q9LBJmoK+lZ+yzZ5KYpOoxq7LF1BxE8g==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-normalize-unicode": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-4.0.1.tgz", + "integrity": "sha512-od18Uq2wCYn+vZ/qCOeutvHjB5jm57ToxRaMeNuf0nWVHaP9Hua56QyMF6fs/4FSUnVIw0CBPsU0K4LnBPwYwg==", + "dev": true, + "requires": { + "browserslist": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "browserslist": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.7.0.tgz", + "integrity": "sha512-9rGNDtnj+HaahxiVV38Gn8n8Lr8REKsel68v1sPFfIGEK6uSXTY3h9acgiT1dZVtOOUtifo/Dn8daDQ5dUgVsA==", + "dev": true, + "requires": { + "caniuse-lite": "^1.0.30000989", + "electron-to-chromium": "^1.3.247", + "node-releases": "^1.1.29" + } + }, + "postcss": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.18.tgz", + "integrity": "sha512-/7g1QXXgegpF+9GJj4iN7ChGF40sYuGYJ8WZu8DZWnmhQ/G36hfdk3q9LBJmoK+lZ+yzZ5KYpOoxq7LF1BxE8g==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-normalize-url": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-4.0.1.tgz", + "integrity": "sha512-p5oVaF4+IHwu7VpMan/SSpmpYxcJMtkGppYf0VbdH5B6hN8YNmVyJLuY9FmLQTzY3fag5ESUUHDqM+heid0UVA==", + "dev": true, + "requires": { + "is-absolute-url": "^2.0.0", + "normalize-url": "^3.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.18.tgz", + "integrity": "sha512-/7g1QXXgegpF+9GJj4iN7ChGF40sYuGYJ8WZu8DZWnmhQ/G36hfdk3q9LBJmoK+lZ+yzZ5KYpOoxq7LF1BxE8g==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-normalize-whitespace": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-4.0.2.tgz", + "integrity": "sha512-tO8QIgrsI3p95r8fyqKV+ufKlSHh9hMJqACqbv2XknufqEDhDvbguXGBBqxw9nsQoXWf0qOqppziKJKHMD4GtA==", + "dev": true, + "requires": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.18.tgz", + "integrity": "sha512-/7g1QXXgegpF+9GJj4iN7ChGF40sYuGYJ8WZu8DZWnmhQ/G36hfdk3q9LBJmoK+lZ+yzZ5KYpOoxq7LF1BxE8g==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-ordered-values": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-4.1.2.tgz", + "integrity": "sha512-2fCObh5UanxvSxeXrtLtlwVThBvHn6MQcu4ksNT2tsaV2Fg76R2CV98W7wNSlX+5/pFwEyaDwKLLoEV7uRybAw==", + "dev": true, + "requires": { + "cssnano-util-get-arguments": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.18.tgz", + "integrity": "sha512-/7g1QXXgegpF+9GJj4iN7ChGF40sYuGYJ8WZu8DZWnmhQ/G36hfdk3q9LBJmoK+lZ+yzZ5KYpOoxq7LF1BxE8g==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-reduce-initial": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-4.0.3.tgz", + "integrity": "sha512-gKWmR5aUulSjbzOfD9AlJiHCGH6AEVLaM0AV+aSioxUDd16qXP1PCh8d1/BGVvpdWn8k/HiK7n6TjeoXN1F7DA==", + "dev": true, + "requires": { + "browserslist": "^4.0.0", + "caniuse-api": "^3.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0" + }, + "dependencies": { + "browserslist": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.7.0.tgz", + "integrity": "sha512-9rGNDtnj+HaahxiVV38Gn8n8Lr8REKsel68v1sPFfIGEK6uSXTY3h9acgiT1dZVtOOUtifo/Dn8daDQ5dUgVsA==", + "dev": true, + "requires": { + "caniuse-lite": "^1.0.30000989", + "electron-to-chromium": "^1.3.247", + "node-releases": "^1.1.29" + } + }, + "postcss": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.18.tgz", + "integrity": "sha512-/7g1QXXgegpF+9GJj4iN7ChGF40sYuGYJ8WZu8DZWnmhQ/G36hfdk3q9LBJmoK+lZ+yzZ5KYpOoxq7LF1BxE8g==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-reduce-transforms": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-4.0.2.tgz", + "integrity": "sha512-EEVig1Q2QJ4ELpJXMZR8Vt5DQx8/mo+dGWSR7vWXqcob2gQLyQGsionYcGKATXvQzMPn6DSN1vTN7yFximdIAg==", + "dev": true, + "requires": { + "cssnano-util-get-match": "^4.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.18.tgz", + "integrity": "sha512-/7g1QXXgegpF+9GJj4iN7ChGF40sYuGYJ8WZu8DZWnmhQ/G36hfdk3q9LBJmoK+lZ+yzZ5KYpOoxq7LF1BxE8g==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-selector-parser": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-2.2.3.tgz", + "integrity": "sha1-+UN3iGBsPJrO4W/+jYsWKX8nu5A=", + "dev": true, + "requires": { + "flatten": "^1.0.2", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + } + }, + "postcss-svgo": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-4.0.2.tgz", + "integrity": "sha512-C6wyjo3VwFm0QgBy+Fu7gCYOkCmgmClghO+pjcxvrcBKtiKt0uCF+hvbMO1fyv5BMImRK90SMb+dwUnfbGd+jw==", + "dev": true, + "requires": { + "is-svg": "^3.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "svgo": "^1.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.18.tgz", + "integrity": "sha512-/7g1QXXgegpF+9GJj4iN7ChGF40sYuGYJ8WZu8DZWnmhQ/G36hfdk3q9LBJmoK+lZ+yzZ5KYpOoxq7LF1BxE8g==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-unique-selectors": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-4.0.1.tgz", + "integrity": "sha512-+JanVaryLo9QwZjKrmJgkI4Fn8SBgRO6WXQBJi7KiAVPlmxikB5Jzc4EvXMT2H0/m0RjrVVm9rGNhZddm/8Spg==", + "dev": true, + "requires": { + "alphanum-sort": "^1.0.0", + "postcss": "^7.0.0", + "uniqs": "^2.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.18.tgz", + "integrity": "sha512-/7g1QXXgegpF+9GJj4iN7ChGF40sYuGYJ8WZu8DZWnmhQ/G36hfdk3q9LBJmoK+lZ+yzZ5KYpOoxq7LF1BxE8g==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + }, + "prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", + "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=", + "dev": true + }, + "pretty-error": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-2.1.1.tgz", + "integrity": "sha1-X0+HyPkeWuPzuoerTPXgOxoX8aM=", + "dev": true, + "requires": { + "renderkid": "^2.0.1", + "utila": "~0.4" + } + }, + "private": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/private/-/private-0.1.8.tgz", + "integrity": "sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==", + "dev": true + }, + "process": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=" + }, + "process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "dev": true + }, + "progress": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/progress/-/progress-1.1.8.tgz", + "integrity": "sha1-4mDHj2Fhzdmw5WzD4Khd4Xx6V74=", + "dev": true + }, + "promise": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz", + "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==", + "dev": true, + "optional": true, + "requires": { + "asap": "~2.0.3" + } + }, + "proto-list": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz", + "integrity": "sha1-IS1b/hMYMGpCD2QCuOJv85ZHqEk=", + "dev": true + }, + "proxy-addr": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.5.tgz", + "integrity": "sha512-t/7RxHXPH6cJtP0pRG6smSr9QJidhB+3kXu0KgXnbGYMgzEnUxRQ4/LDdfOwZEMyIh3/xHb8PX3t+lfL9z+YVQ==", + "dev": true, + "requires": { + "forwarded": "~0.1.2", + "ipaddr.js": "1.9.0" + } + }, + "prr": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", + "integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=", + "dev": true + }, + "pseudomap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", + "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=", + "dev": true + }, + "psl": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.4.0.tgz", + "integrity": "sha512-HZzqCGPecFLyoRj5HLfuDSKYTJkAfB5thKBIkRHtGjWwY7p1dAyveIbXIq4tO0KYfDF2tHqPUgY9SDnGm00uFw==", + "dev": true + }, + "public-encrypt": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", + "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", + "dev": true, + "requires": { + "bn.js": "^4.1.0", + "browserify-rsa": "^4.0.0", + "create-hash": "^1.1.0", + "parse-asn1": "^5.0.0", + "randombytes": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "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" + } + }, + "punycode": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=", + "dev": true + }, + "q": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", + "integrity": "sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=", + "dev": true + }, + "qs": { + "version": "6.7.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz", + "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==", + "dev": true + }, + "querystring": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", + "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=", + "dev": true + }, + "querystring-es3": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", + "integrity": "sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=", + "dev": true + }, + "randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dev": true, + "requires": { + "safe-buffer": "^5.1.0" + } + }, + "randomfill": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz", + "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", + "dev": true, + "requires": { + "randombytes": "^2.0.5", + "safe-buffer": "^5.1.0" + } + }, + "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==", + "dev": true + }, + "raw-body": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz", + "integrity": "sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==", + "dev": true, + "requires": { + "bytes": "3.1.0", + "http-errors": "1.7.2", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + } + }, + "rc": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", + "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", + "dev": 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", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", + "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", + "dev": true + } + } + }, + "read-pkg": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", + "integrity": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=", + "dev": true, + "requires": { + "load-json-file": "^1.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^1.0.0" + } + }, + "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=", + "dev": true, + "requires": { + "find-up": "^1.0.0", + "read-pkg": "^1.0.0" + }, + "dependencies": { + "find-up": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", + "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", + "dev": true, + "requires": { + "path-exists": "^2.0.0", + "pinkie-promise": "^2.0.0" + } + }, + "path-exists": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", + "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", + "dev": true, + "requires": { + "pinkie-promise": "^2.0.0" + } + } + } + }, + "readable-stream": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", + "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", + "dev": 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" + } + }, + "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" + }, + "dependencies": { + "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 + }, + "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 + }, + "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" + } + } + } + }, + "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" + } + }, + "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=", + "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" + } + } + } + }, + "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=", + "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" + } + } + } + }, + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + } + }, + "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 + } + } + }, + "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" + } + } + } + }, + "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" + } + } + } + }, + "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" + } + }, + "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" + } + } + } + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", + "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==", + "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" + } + } + } + }, + "readline2": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/readline2/-/readline2-1.0.1.tgz", + "integrity": "sha1-QQWWCP/BVHV7cV2ZidGZ/783LjU=", + "dev": true, + "requires": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "mute-stream": "0.0.5" + } + }, + "rechoir": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", + "integrity": "sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=", + "dev": true, + "requires": { + "resolve": "^1.1.6" + } + }, + "regenerate": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.0.tgz", + "integrity": "sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg==", + "dev": true + }, + "regenerator-runtime": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz", + "integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==", + "dev": true + }, + "regenerator-transform": { + "version": "0.10.1", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.10.1.tgz", + "integrity": "sha512-PJepbvDbuK1xgIgnau7Y90cwaAmO/LCLMI2mPvaXq2heGMR3aWW5/BQvYrhJ8jgmQjXewXvBjzfqKcVOmhjZ6Q==", + "dev": true, + "requires": { + "babel-runtime": "^6.18.0", + "babel-types": "^6.19.0", + "private": "^0.1.6" + } + }, + "regex-not": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", + "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", + "dev": true, + "requires": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + } + }, + "regexpu-core": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-2.0.0.tgz", + "integrity": "sha1-SdA4g3uNz4v6W5pCE5k45uoq4kA=", + "dev": true, + "requires": { + "regenerate": "^1.2.1", + "regjsgen": "^0.2.0", + "regjsparser": "^0.1.4" + } + }, + "registry-auth-token": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-4.0.0.tgz", + "integrity": "sha512-lpQkHxd9UL6tb3k/aHAVfnVtn+Bcs9ob5InuFLLEDqSqeq+AljB8GZW9xY0x7F+xYwEcjKe07nyoxzEYz6yvkw==", + "dev": true, + "requires": { + "rc": "^1.2.8", + "safe-buffer": "^5.0.1" + } + }, + "registry-url": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/registry-url/-/registry-url-5.1.0.tgz", + "integrity": "sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==", + "dev": true, + "requires": { + "rc": "^1.2.8" + } + }, + "regjsgen": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.2.0.tgz", + "integrity": "sha1-bAFq3qxVT3WCP+N6wFuS1aTtsfc=", + "dev": true + }, + "regjsparser": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.1.5.tgz", + "integrity": "sha1-fuj4Tcb6eS0/0K4ijSS9lJ6tIFw=", + "dev": true, + "requires": { + "jsesc": "~0.5.0" + }, + "dependencies": { + "jsesc": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=", + "dev": true + } + } + }, + "relateurl": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", + "integrity": "sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=", + "dev": true + }, + "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=", + "dev": true + }, + "renderkid": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-2.0.3.tgz", + "integrity": "sha512-z8CLQp7EZBPCwCnncgf9C4XAi3WR0dv+uWu/PjIyhhAb5d6IJ/QZqlHFprHeKT+59//V6BNUsLbvN8+2LarxGA==", + "dev": true, + "requires": { + "css-select": "^1.1.0", + "dom-converter": "^0.2", + "htmlparser2": "^3.3.0", + "strip-ansi": "^3.0.0", + "utila": "^0.4.0" + } + }, + "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==", + "dev": true, + "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==", + "dev": true + } + } + }, + "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-from-string": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-1.2.1.tgz", + "integrity": "sha1-UpyczvJzgK3+yaL5ZbZJu+5jZBg=", + "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 + }, + "require-uncached": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/require-uncached/-/require-uncached-1.0.3.tgz", + "integrity": "sha1-Tg1W1slmL9MeQwEcS5WqSZVUIdM=", + "dev": true, + "requires": { + "caller-path": "^0.1.0", + "resolve-from": "^1.0.0" + } + }, + "resolve": { + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.12.0.tgz", + "integrity": "sha512-B/dOmuoAik5bKcD6s6nXDCjzUKnaDvdkRyAk6rsmsKLipWj4797iothd7jmmUhWTfinVMU+wc56rYKsit2Qy4w==", + "dev": true, + "requires": { + "path-parse": "^1.0.6" + } + }, + "resolve-from": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-1.0.1.tgz", + "integrity": "sha1-Jsv+k10a7uq7Kbw/5a6wHpPUQiY=", + "dev": true + }, + "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 + }, + "responselike": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz", + "integrity": "sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec=", + "dev": true, + "requires": { + "lowercase-keys": "^1.0.0" + } + }, + "restore-cursor": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-1.0.1.tgz", + "integrity": "sha1-NGYfRohjJ/7SmRR5FSJS35LapUE=", + "dev": true, + "requires": { + "exit-hook": "^1.0.0", + "onetime": "^1.0.0" + } + }, + "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 + }, + "rgb-regex": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/rgb-regex/-/rgb-regex-1.0.1.tgz", + "integrity": "sha1-wODWiC3w4jviVKR16O3UGRX+rrE=", + "dev": true + }, + "rgba-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/rgba-regex/-/rgba-regex-1.0.0.tgz", + "integrity": "sha1-QzdOLiyglosO8VI0YLfXMP8i7rM=", + "dev": true + }, + "right-align": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/right-align/-/right-align-0.1.3.tgz", + "integrity": "sha1-YTObci/mo1FWiSENJOFMlhSGE+8=", + "dev": true, + "requires": { + "align-text": "^0.1.1" + } + }, + "rimraf": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", + "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + }, + "ripemd160": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", + "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", + "dev": true, + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1" + } + }, + "run-async": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/run-async/-/run-async-0.1.0.tgz", + "integrity": "sha1-yK1KXhEGYeQCp9IbUw4AnyX444k=", + "dev": true, + "requires": { + "once": "^1.3.0" + } + }, + "rx-lite": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/rx-lite/-/rx-lite-3.1.2.tgz", + "integrity": "sha1-Gc5QLKVyZl87ZHsQk5+X/RYV8QI=", + "dev": true + }, + "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==", + "dev": true + }, + "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": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true + }, + "sax": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", + "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==", + "dev": true + }, + "schema-utils": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.4.1.tgz", + "integrity": "sha512-RqYLpkPZX5Oc3fw/kHHHyP56fg5Y+XBpIpV8nCg0znIALfq3OH+Ea9Hfeac9BAMwG5IICltiZ0vxFvJQONfA5w==", + "dev": true, + "requires": { + "ajv": "^6.10.2", + "ajv-keywords": "^3.4.1" + }, + "dependencies": { + "ajv": { + "version": "6.10.2", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.10.2.tgz", + "integrity": "sha512-TXtUUEYHuaTEbLZWIKUr5pmBuhDLy+8KYtPYdcV8qC+pOZL+NKqYwvWSRrVXHn+ZmRRAu8vJTAznH7Oag6RVRw==", + "dev": true, + "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" + } + }, + "ajv-keywords": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.4.1.tgz", + "integrity": "sha512-RO1ibKvd27e6FEShVFfPALuHI3WjSVNeK5FIsmme/LYRNxjKuNj+Dt7bucLa6NdSv3JcVTyMlm9kGR84z1XpaQ==", + "dev": true + } + } + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + }, + "semver-compare": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/semver-compare/-/semver-compare-1.0.0.tgz", + "integrity": "sha1-De4hahyUGrN+nvsXiPavxf9VN/w=", + "dev": true + }, + "semver-diff": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/semver-diff/-/semver-diff-2.1.0.tgz", + "integrity": "sha1-S7uEN8jTfksM8aaP1ybsbWRdbTY=", + "dev": true, + "requires": { + "semver": "^5.0.3" + } + }, + "send": { + "version": "0.17.1", + "resolved": "https://registry.npmjs.org/send/-/send-0.17.1.tgz", + "integrity": "sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==", + "dev": true, + "requires": { + "debug": "2.6.9", + "depd": "~1.1.2", + "destroy": "~1.0.4", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "~1.7.2", + "mime": "1.6.0", + "ms": "2.1.1", + "on-finished": "~2.3.0", + "range-parser": "~1.2.1", + "statuses": "~1.5.0" + }, + "dependencies": { + "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 + } + } + }, + "serve-static": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz", + "integrity": "sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==", + "dev": true, + "requires": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.17.1" + } + }, + "server-destroy": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/server-destroy/-/server-destroy-1.0.1.tgz", + "integrity": "sha1-8Tv5KOQrnD55OD5hzDmYtdFObN0=", + "dev": true + }, + "set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", + "dev": true + }, + "set-value": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", + "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", + "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" + } + } + } + }, + "setimmediate": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", + "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=", + "dev": true + }, + "setprototypeof": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz", + "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==", + "dev": true + }, + "sha.js": { + "version": "2.4.11", + "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", + "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "dev": true, + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "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 + }, + "shelljs": { + "version": "0.7.8", + "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.7.8.tgz", + "integrity": "sha1-3svPh0sNHl+3LhSxZKloMEjprLM=", + "dev": true, + "requires": { + "glob": "^7.0.0", + "interpret": "^1.0.0", + "rechoir": "^0.6.2" + } + }, + "sigmund": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/sigmund/-/sigmund-1.0.1.tgz", + "integrity": "sha1-P/IfGYytIXX587eBhT/ZTQ0ZtZA=", + "dev": true + }, + "signal-exit": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz", + "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=", + "dev": true + }, + "simple-swizzle": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", + "integrity": "sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=", + "dev": true, + "requires": { + "is-arrayish": "^0.3.1" + }, + "dependencies": { + "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==", + "dev": true + } + } + }, + "slash": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz", + "integrity": "sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU=", + "dev": true + }, + "slice-ansi": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-0.0.4.tgz", + "integrity": "sha1-7b+JA/ZvfOL46v1s7tZeJkyDGzU=", + "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" + } + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true + } + } + }, + "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" + } + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", + "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==", + "dev": true + } + } + }, + "snapdragon-util": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", + "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", + "dev": true, + "requires": { + "kind-of": "^3.2.0" + } + }, + "source-list-map": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", + "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==", + "dev": true + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "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" + } + }, + "source-map-support": { + "version": "0.4.18", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.4.18.tgz", + "integrity": "sha512-try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA==", + "dev": true, + "requires": { + "source-map": "^0.5.6" + }, + "dependencies": { + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true + } + } + }, + "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 + }, + "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": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "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": { + "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": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "spdx-license-ids": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz", + "integrity": "sha512-J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q==", + "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" + } + }, + "sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", + "dev": true + }, + "sshpk": { + "version": "1.16.1", + "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz", + "integrity": "sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==", + "dev": true, + "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" + } + }, + "stable": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", + "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==", + "dev": true + }, + "stackframe": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.1.0.tgz", + "integrity": "sha512-Vx6W1Yvy+AM1R/ckVwcHQHV147pTPBKWCRLrXMuPrFVfvBUc3os7PR1QLIWCMhPpRg5eX9ojzbQIMLGBwyLjqg==", + "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=", + "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" + } + } + } + }, + "statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=", + "dev": true + }, + "steno": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/steno/-/steno-0.4.4.tgz", + "integrity": "sha1-BxEFvfwobmYVwEA8J+nXtdy4Vcs=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.3" + } + }, + "stream-browserify": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz", + "integrity": "sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==", + "dev": true, + "requires": { + "inherits": "~2.0.1", + "readable-stream": "^2.0.2" + } + }, + "stream-http": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz", + "integrity": "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==", + "dev": true, + "requires": { + "builtin-status-codes": "^3.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.3.6", + "to-arraybuffer": "^1.0.0", + "xtend": "^4.0.0" + } + }, + "string-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-1.0.1.tgz", + "integrity": "sha1-VpcPscOFWOnnC3KL894mmsRa36w=", + "dev": true, + "requires": { + "strip-ansi": "^3.0.0" + } + }, + "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" + } + }, + "string.prototype.trimleft": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/string.prototype.trimleft/-/string.prototype.trimleft-2.1.0.tgz", + "integrity": "sha512-FJ6b7EgdKxxbDxc79cOlok6Afd++TTs5szo+zJTUyow3ycrRfJVE2pq3vcN53XexvKZu/DJMDfeI/qMiZTrjTw==", + "dev": true, + "requires": { + "define-properties": "^1.1.3", + "function-bind": "^1.1.1" + } + }, + "string.prototype.trimright": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/string.prototype.trimright/-/string.prototype.trimright-2.1.0.tgz", + "integrity": "sha512-fXZTSV55dNBwv16uw+hh5jkghxSnc5oHq+5K/gXgizHwAvMetdAJlHqqoFC1FSDVPYWLkAKl2cxpUT41sV7nSg==", + "dev": true, + "requires": { + "define-properties": "^1.1.3", + "function-bind": "^1.1.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + } + }, + "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" + } + }, + "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" + } + }, + "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-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 + }, + "stylehacks": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-4.0.3.tgz", + "integrity": "sha512-7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g==", + "dev": true, + "requires": { + "browserslist": "^4.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0" + }, + "dependencies": { + "browserslist": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.7.0.tgz", + "integrity": "sha512-9rGNDtnj+HaahxiVV38Gn8n8Lr8REKsel68v1sPFfIGEK6uSXTY3h9acgiT1dZVtOOUtifo/Dn8daDQ5dUgVsA==", + "dev": true, + "requires": { + "caniuse-lite": "^1.0.30000989", + "electron-to-chromium": "^1.3.247", + "node-releases": "^1.1.29" + } + }, + "postcss": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.18.tgz", + "integrity": "sha512-/7g1QXXgegpF+9GJj4iN7ChGF40sYuGYJ8WZu8DZWnmhQ/G36hfdk3q9LBJmoK+lZ+yzZ5KYpOoxq7LF1BxE8g==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "postcss-selector-parser": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.1.tgz", + "integrity": "sha1-T4dfSvsMllc9XPTXQBGu4lCn6GU=", + "dev": true, + "requires": { + "dot-prop": "^4.1.1", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^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" + } + }, + "svgo": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-1.3.0.tgz", + "integrity": "sha512-MLfUA6O+qauLDbym+mMZgtXCGRfIxyQoeH6IKVcFslyODEe/ElJNwr0FohQ3xG4C6HK6bk3KYPPXwHVJk3V5NQ==", + "dev": true, + "requires": { + "chalk": "^2.4.1", + "coa": "^2.0.2", + "css-select": "^2.0.0", + "css-select-base-adapter": "^0.1.1", + "css-tree": "1.0.0-alpha.33", + "csso": "^3.5.1", + "js-yaml": "^3.13.1", + "mkdirp": "~0.5.1", + "object.values": "^1.1.0", + "sax": "~1.2.4", + "stable": "^0.1.8", + "unquote": "~1.1.1", + "util.promisify": "~1.0.0" + }, + "dependencies": { + "css-select": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-2.0.2.tgz", + "integrity": "sha512-dSpYaDVoWaELjvZ3mS6IKZM/y2PMPa/XYoEfYNZePL4U/XgyxZNroHEHReDx/d+VgXh9VbCTtFqLkFbmeqeaRQ==", + "dev": true, + "requires": { + "boolbase": "^1.0.0", + "css-what": "^2.1.2", + "domutils": "^1.7.0", + "nth-check": "^1.0.2" + } + } + } + }, + "table": { + "version": "3.8.3", + "resolved": "https://registry.npmjs.org/table/-/table-3.8.3.tgz", + "integrity": "sha1-K7xULw/amGGnVdOUf+/Ys/UThV8=", + "dev": true, + "requires": { + "ajv": "^4.7.0", + "ajv-keywords": "^1.0.0", + "chalk": "^1.1.1", + "lodash": "^4.0.0", + "slice-ansi": "0.0.4", + "string-width": "^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 + }, + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", + "dev": true + }, + "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" + } + }, + "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" + }, + "dependencies": { + "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": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", + "dev": true + } + } + }, + "tapable": { + "version": "0.1.10", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-0.1.10.tgz", + "integrity": "sha1-KcNXB8K3DlDQdIK10gLo7URtr9Q=", + "dev": true + }, + "term-size": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/term-size/-/term-size-1.2.0.tgz", + "integrity": "sha1-RYuDiH8oj8Vtb/+/rSYuJmOO+mk=", + "dev": true, + "requires": { + "execa": "^0.7.0" + } + }, + "test-exclude": { + "version": "5.2.3", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-5.2.3.tgz", + "integrity": "sha512-M+oxtseCFO3EDtAaGH7iiej3CBkzXqFMbzqYAACdzKui4eZA+pq3tZEwChvOdNfa7xxy8BfbmgJSIr43cC/+2g==", + "dev": true, + "requires": { + "glob": "^7.1.3", + "minimatch": "^3.0.4", + "read-pkg-up": "^4.0.0", + "require-main-filename": "^2.0.0" + }, + "dependencies": { + "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" + } + }, + "load-json-file": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", + "integrity": "sha1-L19Fq5HjMhYjT9U62rZo607AmTs=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "parse-json": "^4.0.0", + "pify": "^3.0.0", + "strip-bom": "^3.0.0" + } + }, + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "p-limit": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.2.1.tgz", + "integrity": "sha512-85Tk+90UCVWvbDavCLKPOLC9vvY8OwEX/RtKF+/1OADJMVlFfEHOiMTPVyxg7mk/dKa+ipdHm0OUkTvCpMTuwg==", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, + "requires": { + "p-limit": "^2.0.0" + } + }, + "p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true + }, + "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" + } + }, + "path-type": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", + "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", + "dev": true, + "requires": { + "pify": "^3.0.0" + } + }, + "read-pkg": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", + "integrity": "sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=", + "dev": true, + "requires": { + "load-json-file": "^4.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^3.0.0" + } + }, + "read-pkg-up": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-4.0.0.tgz", + "integrity": "sha512-6etQSH7nJGsK0RbG/2TeDzZFa8shjQ1um+SwQQ5cwKy0dhSXdOncEhb1CPpvQG4h7FyOV6EB6YlV0yJvZQNAkA==", + "dev": true, + "requires": { + "find-up": "^3.0.0", + "read-pkg": "^3.0.0" + } + }, + "require-main-filename": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", + "dev": true + }, + "strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=", + "dev": true + } + } + }, + "text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=", + "dev": true + }, + "through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=", + "dev": true + }, + "time-stamp": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/time-stamp/-/time-stamp-2.2.0.tgz", + "integrity": "sha512-zxke8goJQpBeEgD82CXABeMh0LSJcj7CXEd0OHOg45HgcofF7pxNwZm9+RknpxpDhwN4gFpySkApKfFYfRQnUA==", + "dev": true + }, + "timers-browserify": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-1.4.2.tgz", + "integrity": "sha1-ycWLV1voQHN1y14kYtrO50NZ9B0=", + "dev": true, + "requires": { + "process": "~0.11.0" + } + }, + "timsort": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/timsort/-/timsort-0.3.0.tgz", + "integrity": "sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q=", + "dev": true + }, + "to-arraybuffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz", + "integrity": "sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=", + "dev": true + }, + "to-fast-properties": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-1.0.3.tgz", + "integrity": "sha1-uDVx+k2MJbguIxsG46MFXeTKGkc=", + "dev": true + }, + "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=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + } + }, + "to-readable-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/to-readable-stream/-/to-readable-stream-1.0.0.tgz", + "integrity": "sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==", + "dev": true + }, + "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" + } + }, + "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" + }, + "dependencies": { + "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" + } + } + } + }, + "toidentifier": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz", + "integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==", + "dev": true + }, + "toposort": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/toposort/-/toposort-1.0.7.tgz", + "integrity": "sha1-LmhELZ9k7HILjMieZEOsbKqVACk=", + "dev": true + }, + "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==", + "dev": true, + "requires": { + "psl": "^1.1.24", + "punycode": "^1.4.1" + } + }, + "trim-right": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz", + "integrity": "sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM=", + "dev": true + }, + "tryer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/tryer/-/tryer-1.0.1.tgz", + "integrity": "sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA==", + "dev": true + }, + "tty-browserify": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz", + "integrity": "sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=", + "dev": true + }, + "tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", + "dev": true, + "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=", + "dev": true + }, + "type": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/type/-/type-1.2.0.tgz", + "integrity": "sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==", + "dev": true + }, + "type-check": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", + "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", + "dev": true, + "requires": { + "prelude-ls": "~1.1.2" + } + }, + "type-fest": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.3.1.tgz", + "integrity": "sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ==", + "dev": true + }, + "type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "dev": true, + "requires": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + } + }, + "typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=", + "dev": true + }, + "uglify-js": { + "version": "3.4.10", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.4.10.tgz", + "integrity": "sha512-Y2VsbPVs0FIshJztycsO2SfPk7/KAF/T72qzv9u5EpQ4kB2hQoHlhNQTsNyy6ul7lQtqJN/AoWeS23OzEiEFxw==", + "dev": true, + "requires": { + "commander": "~2.19.0", + "source-map": "~0.6.1" + }, + "dependencies": { + "commander": { + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.19.0.tgz", + "integrity": "sha512-6tvAOO+D6OENvRAh524Dh9jcfKTYDQAqvqezbCW82xj5X0pSrcpxtvRKHLG0yBY6SD7PSDrJaj+0AiOcKVd1Xg==", + "dev": true + } + } + }, + "uglify-to-browserify": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz", + "integrity": "sha1-bgkk1r2mta/jSeOabWMoUKD4grc=", + "dev": true, + "optional": true + }, + "unc-path-regex": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz", + "integrity": "sha1-5z3T17DXxe2G+6xrCufYxqadUPo=", + "dev": true + }, + "union-value": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", + "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", + "dev": true, + "requires": { + "arr-union": "^3.1.0", + "get-value": "^2.0.6", + "is-extendable": "^0.1.1", + "set-value": "^2.0.1" + } + }, + "uniq": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz", + "integrity": "sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=", + "dev": true + }, + "uniqs": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/uniqs/-/uniqs-2.0.0.tgz", + "integrity": "sha1-/+3ks2slKQaW5uFl1KWe25mOawI=", + "dev": true + }, + "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=", + "dev": true + }, + "unquote": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz", + "integrity": "sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ=", + "dev": true + }, + "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 + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", + "dev": true + } + } + }, + "upath": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", + "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", + "dev": true + }, + "update-notifier": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/update-notifier/-/update-notifier-3.0.1.tgz", + "integrity": "sha512-grrmrB6Zb8DUiyDIaeRTBCkgISYUgETNe7NglEbVsrLWXeESnlCSP50WfRSj/GmzMPl6Uchj24S/p80nP/ZQrQ==", + "dev": true, + "requires": { + "boxen": "^3.0.0", + "chalk": "^2.0.1", + "configstore": "^4.0.0", + "has-yarn": "^2.1.0", + "import-lazy": "^2.1.0", + "is-ci": "^2.0.0", + "is-installed-globally": "^0.1.0", + "is-npm": "^3.0.0", + "is-yarn-global": "^0.3.0", + "latest-version": "^5.0.0", + "semver-diff": "^2.0.0", + "xdg-basedir": "^3.0.0" + } + }, + "upper-case": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-1.1.3.tgz", + "integrity": "sha1-9rRQHC7EzdJrp4vnIilh3ndiFZg=", + "dev": true + }, + "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==", + "dev": true, + "requires": { + "punycode": "^2.1.0" + }, + "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==", + "dev": true + } + } + }, + "urix": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", + "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=", + "dev": true + }, + "url": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", + "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=", + "dev": true, + "requires": { + "punycode": "1.3.2", + "querystring": "0.2.0" + }, + "dependencies": { + "punycode": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", + "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=", + "dev": true + } + } + }, + "url-loader": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/url-loader/-/url-loader-2.2.0.tgz", + "integrity": "sha512-G8nk3np8ZAnwhHXas1JxJEwJyQdqFXAKJehfgZ/XrC48volFBRtO+FIKtF2u0Ma3bw+4vnDVjHPAQYlF9p2vsw==", + "dev": true, + "requires": { + "loader-utils": "^1.2.3", + "mime": "^2.4.4", + "schema-utils": "^2.4.1" + }, + "dependencies": { + "mime": { + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/mime/-/mime-2.4.4.tgz", + "integrity": "sha512-LRxmNwziLPT828z+4YkNzloCFC2YM4wrB99k+AV5ZbEyfGNWfG8SO1FUXLmLDBSo89NrJZ4DIWeLjy1CHGhMGA==", + "dev": true + } + } + }, + "url-parse-lax": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz", + "integrity": "sha1-FrXK/Afb42dsGxmZF3gj1lA6yww=", + "dev": true, + "requires": { + "prepend-http": "^2.0.0" + }, + "dependencies": { + "prepend-http": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz", + "integrity": "sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=", + "dev": true + } + } + }, + "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 + }, + "user-home": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/user-home/-/user-home-2.0.0.tgz", + "integrity": "sha1-nHC/2Babwdy/SGBODwS4tJzenp8=", + "dev": true, + "requires": { + "os-homedir": "^1.0.0" + } + }, + "util": { + "version": "0.10.4", + "resolved": "https://registry.npmjs.org/util/-/util-0.10.4.tgz", + "integrity": "sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==", + "dev": true, + "requires": { + "inherits": "2.0.3" + }, + "dependencies": { + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + } + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true + }, + "util.promisify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.0.tgz", + "integrity": "sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==", + "dev": true, + "requires": { + "define-properties": "^1.1.2", + "object.getownpropertydescriptors": "^2.0.3" + } + }, + "utila": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz", + "integrity": "sha1-ihagXURWV6Oupe7MWxKk+lN5dyw=", + "dev": true + }, + "utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=", + "dev": true + }, + "uuid": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.3.3.tgz", + "integrity": "sha512-pW0No1RGHgzlpHJO1nsVrHKpOEIxkGg1xB+v0ZmdNH5OAeAwzAVrCnI2/6Mtx+Uys6iaylxa+D3g4j63IKKjSQ==", + "dev": true + }, + "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": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=", + "dev": true + }, + "vendors": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/vendors/-/vendors-1.0.3.tgz", + "integrity": "sha512-fOi47nsJP5Wqefa43kyWSg80qF+Q3XA6MUkgi7Hp1HQaKDQW4cQrK2D0P7mmbFtsV1N89am55Yru/nyEwRubcw==", + "dev": true + }, + "verror": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", + "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", + "dev": true, + "requires": { + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" + } + }, + "vm-browserify": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-0.0.4.tgz", + "integrity": "sha1-XX6kW7755Kb/ZflUOOCofDV9WnM=", + "dev": true, + "requires": { + "indexof": "0.0.1" + } + }, + "vue": { + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/vue/-/vue-2.4.3.tgz", + "integrity": "sha512-k6zkIBR0KsE0DLUDGdRLooX/4iRUbc3T2FyrJs4YhVySbjGwS3k5c2HRCHyXo6lg1aeAF9rg3uiJDRz0J7nbDA==" + }, + "vue-hot-reload-api": { + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/vue-hot-reload-api/-/vue-hot-reload-api-2.3.4.tgz", + "integrity": "sha512-BXq3jwIagosjgNVae6tkHzzIk6a8MHFtzAdwhnV5VlvPTFxDCvIttgSiHWjdGoTJvXtmRu5HacExfdarRcFhog==", + "dev": true + }, + "vue-loader": { + "version": "12.2.2", + "resolved": "https://registry.npmjs.org/vue-loader/-/vue-loader-12.2.2.tgz", + "integrity": "sha512-DD+sYaWQ1esYL/tEwJpoEGE/PFUu32fp7iOuMf4Sra3dgxqr4haTOkVam2VY0/5D4LG8eAcB94ruXKeQW2/ikw==", + "dev": true, + "requires": { + "consolidate": "^0.14.0", + "hash-sum": "^1.0.2", + "js-beautify": "^1.6.3", + "loader-utils": "^1.1.0", + "lru-cache": "^4.0.1", + "postcss": "^5.0.21", + "postcss-load-config": "^1.1.0", + "postcss-selector-parser": "^2.0.0", + "resolve": "^1.3.3", + "source-map": "^0.5.6", + "vue-hot-reload-api": "^2.1.0", + "vue-style-loader": "^3.0.0", + "vue-template-es2015-compiler": "^1.2.2" + }, + "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 + }, + "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": { + "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 + } + } + }, + "has-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", + "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=", + "dev": true + }, + "postcss": { + "version": "5.2.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", + "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "dev": true, + "requires": { + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" + } + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true + }, + "supports-color": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", + "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "dev": true, + "requires": { + "has-flag": "^1.0.0" + } + } + } + }, + "vue-style-loader": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/vue-style-loader/-/vue-style-loader-3.0.2.tgz", + "integrity": "sha512-0orDMSD7JwiC0KlpP+jpoErpEQVP4Ah6tUSMKuV+E3cVpmZd54vsIMBzBkKJHwIwAvLvWkj4wJHppycskggg2A==", + "dev": true, + "requires": { + "hash-sum": "^1.0.2", + "loader-utils": "^1.0.2" + } + }, + "vue-template-compiler": { + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/vue-template-compiler/-/vue-template-compiler-2.4.3.tgz", + "integrity": "sha512-rtHVKIFjd3Ynb+9FSoA64m2h2SPTEVKk6PywkqbugpM0nxT3ykLFyhbLTdSX1qV5wI9h5DAR4ib4RubEFfyiBQ==", + "dev": true, + "requires": { + "de-indent": "^1.0.2", + "he": "^1.1.0" + } + }, + "vue-template-es2015-compiler": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/vue-template-es2015-compiler/-/vue-template-es2015-compiler-1.9.1.tgz", + "integrity": "sha512-4gDntzrifFnCEvyoO8PqyJDmguXgVPxKiIxrBKjIowvL9l+N66196+72XVYR8BBf1Uv1Fgt3bGevJ+sEmxfZzw==", + "dev": true + }, + "watchpack": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-1.6.0.tgz", + "integrity": "sha512-i6dHe3EyLjMmDlU1/bGQpEw25XSjkJULPuAVKCbNRefQVq48yXKUpwg538F7AZTf9kyr57zj++pQFltUa5H7yA==", + "dev": true, + "requires": { + "chokidar": "^2.0.2", + "graceful-fs": "^4.1.2", + "neo-async": "^2.5.0" + } + }, + "webpack": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-2.7.0.tgz", + "integrity": "sha512-MjAA0ZqO1ba7ZQJRnoCdbM56mmFpipOPUv/vQpwwfSI42p5PVDdoiuK2AL2FwFUVgT859Jr43bFZXRg/LNsqvg==", + "dev": true, + "requires": { + "acorn": "^5.0.0", + "acorn-dynamic-import": "^2.0.0", + "ajv": "^4.7.0", + "ajv-keywords": "^1.1.1", + "async": "^2.1.2", + "enhanced-resolve": "^3.3.0", + "interpret": "^1.0.0", + "json-loader": "^0.5.4", + "json5": "^0.5.1", + "loader-runner": "^2.3.0", + "loader-utils": "^0.2.16", + "memory-fs": "~0.4.1", + "mkdirp": "~0.5.0", + "node-libs-browser": "^2.0.0", + "source-map": "^0.5.3", + "supports-color": "^3.1.0", + "tapable": "~0.2.5", + "uglify-js": "^2.8.27", + "watchpack": "^1.3.1", + "webpack-sources": "^1.0.1", + "yargs": "^6.0.0" + }, + "dependencies": { + "big.js": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-3.2.0.tgz", + "integrity": "sha512-+hN/Zh2D08Mx65pZ/4g5bsmNiZUuChDiQfTUQ7qJr4/kuopCr88xZsAXv6mBoZEsUI4OuGHlX59qE94K2mMW8Q==", + "dev": true + }, + "browserify-zlib": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz", + "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", + "dev": true, + "requires": { + "pako": "~1.0.5" + } + }, + "camelcase": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz", + "integrity": "sha1-m7UwTS4LVmmLLHWLCKPqqdqlijk=", + "dev": true + }, + "cliui": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz", + "integrity": "sha1-S0dXYP+AJkx2LDoXGQMukcf+oNE=", + "dev": true, + "requires": { + "center-align": "^0.1.1", + "right-align": "^0.1.1", + "wordwrap": "0.0.2" + } + }, + "enhanced-resolve": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-3.4.1.tgz", + "integrity": "sha1-BCHjOf1xQZs9oT0Smzl5BAIwR24=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "memory-fs": "^0.4.0", + "object-assign": "^4.0.1", + "tapable": "^0.2.7" + } + }, + "events": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.0.0.tgz", + "integrity": "sha512-Dc381HFWJzEOhQ+d8pkNon++bk9h6cdAoAj4iE6Q4y6xgTzySWXlKn05/TVNpjnfRqi/X0EpJEJohPjNI3zpVA==", + "dev": true + }, + "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 + }, + "has-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", + "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=", + "dev": true + }, + "https-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", + "integrity": "sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=", + "dev": true + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "loader-utils": { + "version": "0.2.17", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-0.2.17.tgz", + "integrity": "sha1-+G5jdNQyBabmxg6RlvF8Apm/s0g=", + "dev": true, + "requires": { + "big.js": "^3.1.3", + "emojis-list": "^2.0.0", + "json5": "^0.5.0", + "object-assign": "^4.0.1" + } + }, + "memory-fs": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz", + "integrity": "sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=", + "dev": true, + "requires": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + } + }, + "node-libs-browser": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.1.tgz", + "integrity": "sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==", + "dev": true, + "requires": { + "assert": "^1.1.1", + "browserify-zlib": "^0.2.0", + "buffer": "^4.3.0", + "console-browserify": "^1.1.0", + "constants-browserify": "^1.0.0", + "crypto-browserify": "^3.11.0", + "domain-browser": "^1.1.1", + "events": "^3.0.0", + "https-browserify": "^1.0.0", + "os-browserify": "^0.3.0", + "path-browserify": "0.0.1", + "process": "^0.11.10", + "punycode": "^1.2.4", + "querystring-es3": "^0.2.0", + "readable-stream": "^2.3.3", + "stream-browserify": "^2.0.1", + "stream-http": "^2.7.2", + "string_decoder": "^1.0.0", + "timers-browserify": "^2.0.4", + "tty-browserify": "0.0.0", + "url": "^0.11.0", + "util": "^0.11.0", + "vm-browserify": "^1.0.1" + } + }, + "os-browserify": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", + "integrity": "sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=", + "dev": true + }, + "pako": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.10.tgz", + "integrity": "sha512-0DTvPVU3ed8+HNXOu5Bs+o//Mbdj9VNQMUOe9oKCwh8l0GNwpTDMKCWbRjgtD291AWnkAgkqA/LOnQS8AmS1tw==", + "dev": true + }, + "path-browserify": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz", + "integrity": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==", + "dev": true + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true + }, + "supports-color": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", + "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "dev": true, + "requires": { + "has-flag": "^1.0.0" + } + }, + "tapable": { + "version": "0.2.9", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-0.2.9.tgz", + "integrity": "sha512-2wsvQ+4GwBvLPLWsNfLCDYGsW6xb7aeC6utq2Qh0PFwgEy7K7dsma9Jsmb2zSQj7GvYAyUGSntLtsv++GmgL1A==", + "dev": true + }, + "timers-browserify": { + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.11.tgz", + "integrity": "sha512-60aV6sgJ5YEbzUdn9c8kYGIqOubPoUdqQCul3SBAsRCZ40s6Y5cMcrW4dt3/k/EsbLVJNl9n6Vz3fTc+k2GeKQ==", + "dev": true, + "requires": { + "setimmediate": "^1.0.4" + } + }, + "uglify-js": { + "version": "2.8.29", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-2.8.29.tgz", + "integrity": "sha1-KcVzMUgFe7Th913zW3qcty5qWd0=", + "dev": true, + "requires": { + "source-map": "~0.5.1", + "uglify-to-browserify": "~1.0.0", + "yargs": "~3.10.0" + }, + "dependencies": { + "yargs": { + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-3.10.0.tgz", + "integrity": "sha1-9+572FfdfB0tOMDnTvvWgdFDH9E=", + "dev": true, + "requires": { + "camelcase": "^1.0.2", + "cliui": "^2.1.0", + "decamelize": "^1.0.0", + "window-size": "0.1.0" + } + } + } + }, + "util": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/util/-/util-0.11.1.tgz", + "integrity": "sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==", + "dev": true, + "requires": { + "inherits": "2.0.3" + } + }, + "vm-browserify": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.0.tgz", + "integrity": "sha512-iq+S7vZJE60yejDYM0ek6zg308+UZsdtPExWP9VZoCFCz1zkJoXFnAX7aZfd/ZwrkidzdUZL0C/ryW+JwAiIGw==", + "dev": true + }, + "which-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz", + "integrity": "sha1-u6Y8qGGUiZT/MHc2CJ47lgJsKk8=", + "dev": true + }, + "wordwrap": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz", + "integrity": "sha1-t5Zpu0LstAn4PVg8rVLKF+qhZD8=", + "dev": true + }, + "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" + } + }, + "y18n": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-3.2.1.tgz", + "integrity": "sha1-bRX7qITAhnnA136I53WegR4H+kE=", + "dev": true + }, + "yargs": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-6.6.0.tgz", + "integrity": "sha1-eC7CHvQDNF+DCoCMo9UTr1YGUgg=", + "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": "^4.2.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 + }, + "cliui": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", + "integrity": "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=", + "dev": true, + "requires": { + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1", + "wrap-ansi": "^2.0.0" + } + } + } + }, + "yargs-parser": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-4.2.1.tgz", + "integrity": "sha1-KczqwNxPA8bIe0qfIX3RjJ90hxw=", + "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 + } + } + } + } + }, + "webpack-bundle-analyzer": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/webpack-bundle-analyzer/-/webpack-bundle-analyzer-3.5.2.tgz", + "integrity": "sha512-g9spCNe25QYUVqHRDkwG414GTok2m7pTTP0wr6l0J50Z3YLS04+BGodTqqoVBL7QfU/U/9p/oiI5XFOyfZ7S/A==", + "dev": true, + "requires": { + "acorn": "^6.0.7", + "acorn-walk": "^6.1.1", + "bfj": "^6.1.1", + "chalk": "^2.4.1", + "commander": "^2.18.0", + "ejs": "^2.6.1", + "express": "^4.16.3", + "filesize": "^3.6.1", + "gzip-size": "^5.0.0", + "lodash": "^4.17.15", + "mkdirp": "^0.5.1", + "opener": "^1.5.1", + "ws": "^6.0.0" + }, + "dependencies": { + "acorn": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.3.0.tgz", + "integrity": "sha512-/czfa8BwS88b9gWQVhc8eknunSA2DoJpJyTQkhheIf5E48u1N0R4q/YxxsAeqRrmK9TQ/uYfgLDfZo91UlANIA==", + "dev": true + }, + "commander": { + "version": "2.20.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.1.tgz", + "integrity": "sha512-cCuLsMhJeWQ/ZpsFTbE765kvVfoeSddc4nU3up4fV+fDBcfUXnbITJ+JzhkdjzOqhURjZgujxaioam4RM9yGUg==", + "dev": true + } + } + }, + "webpack-dev-middleware": { + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-1.12.0.tgz", + "integrity": "sha1-007++y7dp+HTtdvgcolRMhllFwk=", + "dev": true, + "requires": { + "memory-fs": "~0.4.1", + "mime": "^1.3.4", + "path-is-absolute": "^1.0.0", + "range-parser": "^1.0.3", + "time-stamp": "^2.0.0" + }, + "dependencies": { + "memory-fs": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz", + "integrity": "sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=", + "dev": true, + "requires": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + } + } + } + }, + "webpack-hot-middleware": { + "version": "2.19.1", + "resolved": "https://registry.npmjs.org/webpack-hot-middleware/-/webpack-hot-middleware-2.19.1.tgz", + "integrity": "sha512-2x60xmz7XBCNN/Drol+7i85E/5RrNrf+ivOPCgrxhP1F3q3WxpVjjvj8n8fOS1bS9oTRKEDfBYVAtkxqsG7LwQ==", + "dev": true, + "requires": { + "ansi-html": "0.0.7", + "html-entities": "^1.2.0", + "querystring": "^0.2.0", + "strip-ansi": "^3.0.0" + } + }, + "webpack-merge": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-4.1.0.tgz", + "integrity": "sha1-atciI7PguDflMeRZfBmfkJNhUR4=", + "dev": true, + "requires": { + "lodash": "^4.17.4" + } + }, + "webpack-sources": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz", + "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==", + "dev": true, + "requires": { + "source-list-map": "^2.0.0", + "source-map": "~0.6.1" + } + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + }, + "which-module": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", + "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=", + "dev": true + }, + "widest-line": { + "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" + }, + "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" + } + } + } + }, + "window-size": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/window-size/-/window-size-0.1.0.tgz", + "integrity": "sha1-VDjNLqk7IC76Ohn+iIeu58lPnJ0=", + "dev": true + }, + "wordwrap": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", + "integrity": "sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=", + "dev": true + }, + "wrap-ansi": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", + "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.0", + "string-width": "^3.0.0", + "strip-ansi": "^5.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "dev": true + }, + "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": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dev": true, + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + } + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "requires": { + "ansi-regex": "^4.1.0" + } + } + } + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + }, + "write": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/write/-/write-0.2.1.tgz", + "integrity": "sha1-X8A4KOJkzqP+kUVUdvejxWbLB1c=", + "dev": true, + "requires": { + "mkdirp": "^0.5.1" + } + }, + "write-file-atomic": { + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.3.tgz", + "integrity": "sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.11", + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.2" + } + }, + "ws": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.1.tgz", + "integrity": "sha512-GIyAXC2cB7LjvpgMt9EKS2ldqr0MTrORaleiOno6TweZ6r3TKtoFQWay/2PceJ3RuBasOHzXNn5Lrw1X0bEjqA==", + "dev": true, + "requires": { + "async-limiter": "~1.0.0" + } + }, + "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": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "dev": true + }, + "y18n": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz", + "integrity": "sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==", + "dev": true + }, + "yallist": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", + "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=", + "dev": true + }, + "yargs": { + "version": "13.3.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.0.tgz", + "integrity": "sha512-2eehun/8ALW8TLoIl7MVaRUrg+yCnenu8B4kBlRxj3GJGDKU1Og7sMXPNm1BYyM1DOJmTZ4YeN/Nwxv+8XJsUA==", + "dev": true, + "requires": { + "cliui": "^5.0.0", + "find-up": "^3.0.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^3.0.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^13.1.1" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "dev": true + }, + "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" + } + }, + "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 + }, + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "p-limit": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.2.1.tgz", + "integrity": "sha512-85Tk+90UCVWvbDavCLKPOLC9vvY8OwEX/RtKF+/1OADJMVlFfEHOiMTPVyxg7mk/dKa+ipdHm0OUkTvCpMTuwg==", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, + "requires": { + "p-limit": "^2.0.0" + } + }, + "p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true + }, + "require-main-filename": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", + "dev": true + }, + "string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dev": true, + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + } + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "requires": { + "ansi-regex": "^4.1.0" + } + } + } + }, + "yargs-parser": { + "version": "13.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.1.tgz", + "integrity": "sha512-oVAVsHz6uFrg3XQheFII8ESO2ssAf9luWuAd6Wexsu4F3OtIW0o8IribPXYrD4WC24LWtPrJlGy87y5udK+dxQ==", + "dev": true, + "requires": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + } + } + } +} diff --git a/package.json b/package.json index 453c0c7..0e2fd36 100644 --- a/package.json +++ b/package.json @@ -22,7 +22,6 @@ }, "dependencies": { "global": "^4.4.0", - "popper.js": "^1.15.0", "vue": "^2.4.3" }, "devDependencies": { @@ -31,7 +30,7 @@ "babel-eslint": "^7.1.1", "babel-helper-vue-jsx-merge-props": "^2.0.2", "babel-loader": "^7.1.1", - "babel-plugin-istanbul": "^4.1.1", + "babel-plugin-istanbul": "^5.2.0", "babel-plugin-syntax-jsx": "^6.18.0", "babel-plugin-transform-runtime": "^6.22.0", "babel-plugin-transform-vue-jsx": "^3.5.0", @@ -39,8 +38,8 @@ "babel-preset-stage-0": "^6.24.1", "babel-register": "^6.22.0", "connect-history-api-fallback": "^1.3.0", - "css-loader": "^0.28.0", - "cssnano": "^3.10.0", + "css-loader": "^3.2.0", + "cssnano": "^4.1.10", "eslint": "^3.19.0", "eslint-config-airbnb-base": "^11.1.3", "eslint-friendly-formatter": "^3.0.0", @@ -56,12 +55,12 @@ "less-loader": "^4.0.5", "opn": "^5.1.0", "ora": "^1.3.0", - "url-loader": "^0.5.9", + "url-loader": "^2.2.0", "vue-loader": "^12.1.0", "vue-style-loader": "^3.0.1", "vue-template-compiler": "^2.3.3", "webpack": "^2.6.1", - "webpack-bundle-analyzer": "^2.2.1", + "webpack-bundle-analyzer": "^3.5.2", "webpack-dev-middleware": "^1.10.0", "webpack-hot-middleware": "^2.18.0", "webpack-merge": "^4.1.0" From aa6a02f223f5d1131e527ae14c708137371a05dd Mon Sep 17 00:00:00 2001 From: Julio Guerrero Date: Tue, 8 Oct 2019 09:05:02 +0200 Subject: [PATCH 17/17] correcciones y actualizacion de version --- build/utils.js | 1 - example/Switch/Switch.less | 73 ----------------------- example/Switch/Switch.vue | 53 ----------------- package.json | 2 +- src/Checkbox/Checkbox.less | 119 ------------------------------------- src/Checkbox/Checkbox.vue | 59 ------------------ src/Table/TableBody.js | 31 +--------- src/Table/TableHeader.js | 101 +++++++++++++++++-------------- 8 files changed, 60 insertions(+), 379 deletions(-) delete mode 100644 example/Switch/Switch.less delete mode 100644 example/Switch/Switch.vue delete mode 100644 src/Checkbox/Checkbox.less delete mode 100644 src/Checkbox/Checkbox.vue diff --git a/build/utils.js b/build/utils.js index ceb990d..c9113f1 100644 --- a/build/utils.js +++ b/build/utils.js @@ -7,7 +7,6 @@ exports.cssLoaders = function (options) { var cssLoader = { loader: 'css-loader', options: { - minimize: process.env.NODE_ENV === 'production', sourceMap: options.sourceMap } } diff --git a/example/Switch/Switch.less b/example/Switch/Switch.less deleted file mode 100644 index 565fc52..0000000 --- a/example/Switch/Switch.less +++ /dev/null @@ -1,73 +0,0 @@ -// text -@prefixCls: zk-switch; -// color -@border: #dddee1; -@hoverBorder: #bcbcbc; -@blue: #2d8cf0; - -.@{prefixCls} { - display: inline-block; - width: 60px; - height: 24px; - line-height: 22px; - border-radius: 24px; - vertical-align: middle; - border: 1px solid #ccc; - background-color: #ccc; - position: relative; - cursor: pointer; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - transition: all .2s ease-in-out; - &::after { - content: ""; - width: 20px; - height: 20px; - border-radius: 20px; - background-color: #fff; - position: absolute; - left: 1px; - top: 1px; - cursor: pointer; - transition: left .2s ease-in-out,width .2s ease-in-out; - } - &:active::after { - width: 32px; - } -} - -.@{prefixCls}__inner { - color: #fff; - font-size: 12px; - position: absolute; - left: 25px; -} - -.@{prefixCls}--checked { - border-color: #2d8cf0; - background-color: #2d8cf0; - &::after { - left: 37px; - } - &:active::after { - left: 25px; - } - .@{prefixCls}__inner { - left: 8px; - } -} - -.@{prefixCls}--disabled { - cursor: not-allowed; - background: #f3f3f3; - border-color: #f3f3f3; - &::after { - background: #ccc; - cursor: not-allowed; - } - .@{prefixCls}__inner { - color: #ccc; - } -} diff --git a/example/Switch/Switch.vue b/example/Switch/Switch.vue deleted file mode 100644 index 15cc6ce..0000000 --- a/example/Switch/Switch.vue +++ /dev/null @@ -1,53 +0,0 @@ - - - - - diff --git a/package.json b/package.json index 0e2fd36..d334711 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "vue-tree-view-table", - "version": "0.1.82", + "version": "0.1.84", "description": "A table (with tree-grid) component for Vue.js 2.0. (Its style extends vue-table-with-tree-grid)", "keywords": [ "vue", diff --git a/src/Checkbox/Checkbox.less b/src/Checkbox/Checkbox.less deleted file mode 100644 index f8ab0d4..0000000 --- a/src/Checkbox/Checkbox.less +++ /dev/null @@ -1,119 +0,0 @@ -// text -@prefixCls: zk-checkbox; -// color -@border: #dddee1; -@hoverBorder: #bcbcbc; -@blue: #2d8cf0; - -.@{prefixCls}-wrapper { - display: inline-block; - position: relative; - vertical-align: middle; - white-space: nowrap; -} - -.@{prefixCls} { - display: inline-block; - position: relative; - line-height: 1; - white-space: nowrap; - vertical-align: middle; - cursor: pointer; - outline: none; - &:hover { - .@{prefixCls}__inner { - border-color: @hoverBorder; - } - } -} - -.@{prefixCls}__inner { - display: inline-block; - width: 14px; - height: 14px; - position: relative; - top: 0; - left: 0; - border: 1px solid @border; - border-radius: 2px; - background-color: #ffffff; - transition: border-color .2s ease-in-out,background-color .2s ease-in-out; - &::after { - content: ""; - display: table; - width: 4px; - height: 8px; - position: absolute; - top: 1px; - left: 4px; - border: 2px solid #fff; - border-top: 0; - border-left: 0; - transform: rotate(45deg) scale(0); - transition: all .2s ease-in-out; - } -} - -.@{prefixCls}--indeterminate { - .@{prefixCls}__inner { - background-color: @blue; - border-color: @blue; - &::after { - content: ""; - width: 8px; - height: 1px; - transform: scale(1); - position: absolute; - left: 2px; - top: 5px; - } - } - &:hover { - .@{prefixCls}__inner { - border-color: @blue; - } - } -} - -.@{prefixCls}--checked { - .@{prefixCls}__inner { - border-color: @blue; - background-color: @blue; - &::after { - content: ""; - display: table; - width: 4px; - height: 8px; - position: absolute; - top: 1px; - left: 4px; - border: 2px solid #ffffff; - border-top: 0; - border-left: 0; - transform: rotate(45deg) scale(1); - transition: all .2s ease-in-out; - } - } - &:hover { - .@{prefixCls}__inner { - border-color: @blue; - } - } -} - -.@{prefixCls}--disabled { - cursor: not-allowed; - .@{prefixCls}__inner { - background-color: #f3f3f3; - border-color: @border; - &::after { - animation-name: none; - border-color: #ccc; - } - } - &:hover { - .@{prefixCls}__inner { - border-color: @border; - } - } -} diff --git a/src/Checkbox/Checkbox.vue b/src/Checkbox/Checkbox.vue deleted file mode 100644 index 80e2fa2..0000000 --- a/src/Checkbox/Checkbox.vue +++ /dev/null @@ -1,59 +0,0 @@ - - - - - diff --git a/src/Table/TableBody.js b/src/Table/TableBody.js index 318a5a1..66fe896 100644 --- a/src/Table/TableBody.js +++ b/src/Table/TableBody.js @@ -1,4 +1,3 @@ -import Checkbox from "../Checkbox/Checkbox"; // eslint-disable-line import { mixins } from './utils'; /* eslint-disable no-underscore-dangle */ @@ -57,42 +56,16 @@ export default { } return childrenIndex; }, + // eslint-disable-next-line no-unused-vars handleEvent($event, type, data, others) { const certainType = this.validateType( type, - ['cell', 'row', 'checkbox', 'icon'], + ['cell', 'row', 'icon'], 'handleEvent', ); const eventType = $event ? $event.type : ''; const { row, rowIndex, column, columnIndex } = data; const latestData = this.table.bodyData; - // Checkbox - if (certainType.checkbox) { - const { isChecked } = others; - this.toggleStatus('Checked', row, rowIndex, isChecked); - if (row._childrenLen > 0) { - const childrenIndex = this.getChildrenIndex( - row._level, - rowIndex, - false, - ); - for (let i = 0; i < childrenIndex.length; i++) { - this.toggleStatus( - 'Checked', - latestData[childrenIndex[i]], - childrenIndex[i], - isChecked, - ); - } - } - return this.table.$emit( - 'checkbox-click', - latestData[rowIndex], - column, - columnIndex, - $event, - ); - } // Tree's icon if (certainType.icon) { $event.stopPropagation(); diff --git a/src/Table/TableHeader.js b/src/Table/TableHeader.js index e4ba0a4..3cec119 100644 --- a/src/Table/TableHeader.js +++ b/src/Table/TableHeader.js @@ -1,5 +1,6 @@ -import Checkbox from "../Checkbox/Checkbox"; // eslint-disable-line -import { mixins } from './utils'; +import { + mixins, +} from './utils'; /* eslint-disable no-underscore-dangle */ export default { @@ -23,7 +24,10 @@ export default { }, render() { // className - function getClassName(type, { headerAlign, prop }) { + function getClassName(type, { + headerAlign, + prop, + }) { const certainType = this.validateType( type, ['cell', 'inner'], @@ -49,52 +53,61 @@ export default { } // 根据type渲染单元格Label + // eslint-disable-next-line no-unused-vars function renderLabel(column, columnIndex) { - if (this.isSelectionCell(this.table, columnIndex)) { - const allCheck = this.table.bodyData.every(row => row._isChecked); - const indeterminate = - !allCheck && this.table.bodyData.some(row => row._isChecked); - return ( - this.toggleAllChecked(checked)} - /> - ); - } return column.label ? column.label : ''; } // Template - return ( - - - {' '} - {this.table.tableColumns.map(column => ( - - ))}{' '} - - - - {' '} - {this.table.tableColumns.map((column, columnIndex) => ( - - ))}{' '} - - -
-
- {' '} - {renderLabel.call(this, column, columnIndex)} -
-
+ return (< + table cellspacing = "0" + cellpadding = "0" + border = "0" + class = { + `${this.prefixCls}__header` + } > + < + colgroup > { + ' ' + } { + this.table.tableColumns.map(column => (< + col width = { + column.computedWidth || column.minWidth || column.width + } + /> + )) + } { + ' ' + } < + /colgroup> < + thead > + < + tr class = { + `${this.prefixCls}__header-row` + } > { + ' ' + } { + this.table.tableColumns.map((column, columnIndex) => (< + th class = { + getClassName.call(this, 'cell', column) + } > + < + div class = { + getClassName.call(this, 'inner', column) + } > { + ' ' + } { + renderLabel.call(this, column, columnIndex) + } < + /div> < + /th> + )) + } { + ' ' + } < + /tr> < + /thead> < + /table> ); }, };