diff --git a/.gitignore b/.gitignore index e734a5e1..349b90bb 100644 --- a/.gitignore +++ b/.gitignore @@ -43,5 +43,4 @@ jspm_packages # MacOS files .DS_Store -# Output -dist/ \ No newline at end of file +package-lock.json diff --git a/dist/CountryPicker.d.ts b/dist/CountryPicker.d.ts new file mode 100644 index 00000000..a16d6a2c --- /dev/null +++ b/dist/CountryPicker.d.ts @@ -0,0 +1,13 @@ +import { Component } from 'react'; +import { ReactNativeCountryPickerProps, ReactNativeCountryPickerState } from './typings'; +export default class CountryPicker extends Component { + private picker; + constructor(props: any); + selectCountry(selectedCountry: any): void; + onPressCancel: () => void; + onPressSubmit: () => void; + onValueChange: (selectedCountry: any) => void; + show(): void; + renderItem(country: any, index: any): JSX.Element; + render(): JSX.Element; +} diff --git a/dist/CountryPicker.js b/dist/CountryPicker.js new file mode 100644 index 00000000..26ec5e7f --- /dev/null +++ b/dist/CountryPicker.js @@ -0,0 +1,105 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); + __setModuleDefault(result, mod); + return result; +}; +var __importDefault = (this && this.__importDefault) || function (mod) { + return (mod && mod.__esModule) ? mod : { "default": mod }; +}; +Object.defineProperty(exports, "__esModule", { value: true }); +const react_1 = __importStar(require("react")); // eslint-disable-line import/no-extraneous-dependencies, no-use-before-define +const react_native_1 = require("react-native"); +const picker_1 = require("@react-native-picker/picker"); +const country_1 = __importDefault(require("./country")); +const styles_1 = __importDefault(require("./styles")); +const PickerItem = picker_1.Picker.Item; +class CountryPicker extends react_1.Component { + constructor(props) { + super(props); + this.onPressCancel = () => { + if (this.props.onPressCancel) { + this.props.onPressCancel(); + } + this.setState({ + modalVisible: false, + }); + }; + this.onPressSubmit = () => { + if (this.props.onPressConfirm) { + this.props.onPressConfirm(); + } + if (this.props.onSubmit) { + this.props.onSubmit(this.state.selectedCountry); + } + this.setState({ + modalVisible: false, + }); + }; + this.onValueChange = (selectedCountry) => { + this.setState({ + selectedCountry, + }); + }; + this.state = { + buttonColor: this.props.buttonColor || '#007AFF', + modalVisible: false, + selectedCountry: this.props.selectedCountry || country_1.default.getAll()[0], + }; + } + selectCountry(selectedCountry) { + this.setState({ + selectedCountry, + }); + } + show() { + this.setState({ + modalVisible: true, + }); + } + // eslint-disable-next-line class-methods-use-this + renderItem(country, index) { + return react_1.default.createElement(PickerItem, { key: country.iso2, value: country.iso2, label: country.name }); + } + render() { + const { buttonColor } = this.state; + const itemStyle = this.props.itemStyle || {}; + return (react_1.default.createElement(react_native_1.Modal, { animationType: "slide", transparent: true, visible: this.state.modalVisible, onRequestClose: () => { + console.log('Country picker has been closed.'); + } }, + react_1.default.createElement(react_native_1.View, { style: styles_1.default.basicContainer }, + react_1.default.createElement(react_native_1.View, { style: [ + styles_1.default.modalContainer, + { backgroundColor: this.props.pickerBackgroundColor || 'white' }, + ] }, + react_1.default.createElement(react_native_1.View, { style: styles_1.default.buttonView }, + react_1.default.createElement(react_native_1.TouchableOpacity, { onPress: this.onPressCancel }, + react_1.default.createElement(react_native_1.Text, { style: [{ color: buttonColor }, this.props.cancelTextStyle] }, this.props.cancelText || 'Cancel')), + react_1.default.createElement(react_native_1.TouchableOpacity, { onPress: this.onPressSubmit }, + react_1.default.createElement(react_native_1.Text, { style: [{ color: buttonColor }, this.props.confirmTextStyle] }, this.props.confirmText || 'Confirm'))), + react_1.default.createElement(react_native_1.View, { style: styles_1.default.mainBox }, + react_1.default.createElement(picker_1.Picker, { ref: (ref) => { + this.picker = ref; + }, style: styles_1.default.bottomPicker, selectedValue: this.state.selectedCountry, onValueChange: (country) => this.onValueChange(country), itemStyle: itemStyle, mode: "dialog" }, country_1.default.getAll().map((country, index) => this.renderItem(country, index)))))))); + } +} +exports.default = CountryPicker; +//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiQ291bnRyeVBpY2tlci5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uL3NyYy9Db3VudHJ5UGlja2VyLnRzeCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBQUEsK0NBQXlDLENBQUMsOEVBQThFO0FBQ3hILCtDQUVzQjtBQUN0Qix3REFBcUQ7QUFFckQsd0RBQWdDO0FBQ2hDLHNEQUE4QjtBQUc5QixNQUFNLFVBQVUsR0FBRyxlQUFNLENBQUMsSUFBSSxDQUFDO0FBRS9CLE1BQXFCLGFBQWMsU0FBUSxpQkFBdUU7SUFHOUcsWUFBWSxLQUFLO1FBQ2IsS0FBSyxDQUFDLEtBQUssQ0FBQyxDQUFDO1FBZWpCLGtCQUFhLEdBQUcsR0FBRyxFQUFFO1lBQ2pCLElBQUksSUFBSSxDQUFDLEtBQUssQ0FBQyxhQUFhLEVBQUU7Z0JBQzFCLElBQUksQ0FBQyxLQUFLLENBQUMsYUFBYSxFQUFFLENBQUM7YUFDOUI7WUFFRCxJQUFJLENBQUMsUUFBUSxDQUFDO2dCQUNWLFlBQVksRUFBRSxLQUFLO2FBQ3RCLENBQUMsQ0FBQztRQUNQLENBQUMsQ0FBQTtRQUVELGtCQUFhLEdBQUcsR0FBRyxFQUFFO1lBQ2pCLElBQUksSUFBSSxDQUFDLEtBQUssQ0FBQyxjQUFjLEVBQUU7Z0JBQzNCLElBQUksQ0FBQyxLQUFLLENBQUMsY0FBYyxFQUFFLENBQUM7YUFDL0I7WUFFRCxJQUFJLElBQUksQ0FBQyxLQUFLLENBQUMsUUFBUSxFQUFFO2dCQUNyQixJQUFJLENBQUMsS0FBSyxDQUFDLFFBQVEsQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLGVBQWUsQ0FBQyxDQUFDO2FBQ25EO1lBRUQsSUFBSSxDQUFDLFFBQVEsQ0FBQztnQkFDVixZQUFZLEVBQUUsS0FBSzthQUN0QixDQUFDLENBQUM7UUFDUCxDQUFDLENBQUE7UUFFRCxrQkFBYSxHQUFHLENBQUMsZUFBZSxFQUFFLEVBQUU7WUFDaEMsSUFBSSxDQUFDLFFBQVEsQ0FBQztnQkFDVixlQUFlO2FBQ2xCLENBQUMsQ0FBQztRQUNQLENBQUMsQ0FBQTtRQXpDRyxJQUFJLENBQUMsS0FBSyxHQUFHO1lBQ1QsV0FBVyxFQUFFLElBQUksQ0FBQyxLQUFLLENBQUMsV0FBVyxJQUFJLFNBQVM7WUFDaEQsWUFBWSxFQUFFLEtBQUs7WUFDbkIsZUFBZSxFQUFFLElBQUksQ0FBQyxLQUFLLENBQUMsZUFBZSxJQUFJLGlCQUFPLENBQUMsTUFBTSxFQUFFLENBQUMsQ0FBQyxDQUFDO1NBQ3JFLENBQUM7SUFDTixDQUFDO0lBRUQsYUFBYSxDQUFDLGVBQWU7UUFDekIsSUFBSSxDQUFDLFFBQVEsQ0FBQztZQUNWLGVBQWU7U0FDbEIsQ0FBQyxDQUFDO0lBQ1AsQ0FBQztJQWdDRCxJQUFJO1FBQ0EsSUFBSSxDQUFDLFFBQVEsQ0FBQztZQUNWLFlBQVksRUFBRSxJQUFJO1NBQ3JCLENBQUMsQ0FBQztJQUNQLENBQUM7SUFFRCxrREFBa0Q7SUFDbEQsVUFBVSxDQUFDLE9BQU8sRUFBRSxLQUFLO1FBQ3JCLE9BQU8sOEJBQUMsVUFBVSxJQUFDLEdBQUcsRUFBRSxPQUFPLENBQUMsSUFBSSxFQUFFLEtBQUssRUFBRSxPQUFPLENBQUMsSUFBSSxFQUFFLEtBQUssRUFBRSxPQUFPLENBQUMsSUFBSSxHQUFJLENBQUM7SUFDdkYsQ0FBQztJQUVELE1BQU07UUFDRixNQUFNLEVBQUUsV0FBVyxFQUFFLEdBQUcsSUFBSSxDQUFDLEtBQUssQ0FBQztRQUNuQyxNQUFNLFNBQVMsR0FBRyxJQUFJLENBQUMsS0FBSyxDQUFDLFNBQVMsSUFBSSxFQUFFLENBQUM7UUFDN0MsT0FBTyxDQUNILDhCQUFDLG9CQUFLLElBQ0YsYUFBYSxFQUFDLE9BQU8sRUFDckIsV0FBVyxRQUNYLE9BQU8sRUFBRSxJQUFJLENBQUMsS0FBSyxDQUFDLFlBQVksRUFDaEMsY0FBYyxFQUFFLEdBQUcsRUFBRTtnQkFDakIsT0FBTyxDQUFDLEdBQUcsQ0FBQyxpQ0FBaUMsQ0FBQyxDQUFDO1lBQ25ELENBQUM7WUFFRCw4QkFBQyxtQkFBSSxJQUFDLEtBQUssRUFBRSxnQkFBTSxDQUFDLGNBQWM7Z0JBQzlCLDhCQUFDLG1CQUFJLElBQ0QsS0FBSyxFQUFFO3dCQUNILGdCQUFNLENBQUMsY0FBYzt3QkFDckIsRUFBRSxlQUFlLEVBQUUsSUFBSSxDQUFDLEtBQUssQ0FBQyxxQkFBcUIsSUFBSSxPQUFPLEVBQUU7cUJBQ25FO29CQUVELDhCQUFDLG1CQUFJLElBQUMsS0FBSyxFQUFFLGdCQUFNLENBQUMsVUFBVTt3QkFDMUIsOEJBQUMsK0JBQWdCLElBQUMsT0FBTyxFQUFFLElBQUksQ0FBQyxhQUFhOzRCQUN6Qyw4QkFBQyxtQkFBSSxJQUFDLEtBQUssRUFBRSxDQUFDLEVBQUUsS0FBSyxFQUFFLFdBQVcsRUFBRSxFQUFFLElBQUksQ0FBQyxLQUFLLENBQUMsZUFBZSxDQUFDLElBQzVELElBQUksQ0FBQyxLQUFLLENBQUMsVUFBVSxJQUFJLFFBQVEsQ0FDL0IsQ0FDUTt3QkFFbkIsOEJBQUMsK0JBQWdCLElBQUMsT0FBTyxFQUFFLElBQUksQ0FBQyxhQUFhOzRCQUN6Qyw4QkFBQyxtQkFBSSxJQUFDLEtBQUssRUFBRSxDQUFDLEVBQUUsS0FBSyxFQUFFLFdBQVcsRUFBRSxFQUFFLElBQUksQ0FBQyxLQUFLLENBQUMsZ0JBQWdCLENBQUMsSUFDN0QsSUFBSSxDQUFDLEtBQUssQ0FBQyxXQUFXLElBQUksU0FBUyxDQUNqQyxDQUNRLENBQ2hCO29CQUVQLDhCQUFDLG1CQUFJLElBQUMsS0FBSyxFQUFFLGdCQUFNLENBQUMsT0FBTzt3QkFDdkIsOEJBQUMsZUFBTSxJQUNILEdBQUcsRUFBRSxDQUFDLEdBQUcsRUFBRSxFQUFFO2dDQUNULElBQUksQ0FBQyxNQUFNLEdBQUcsR0FBRyxDQUFDOzRCQUN0QixDQUFDLEVBQ0QsS0FBSyxFQUFFLGdCQUFNLENBQUMsWUFBWSxFQUMxQixhQUFhLEVBQUUsSUFBSSxDQUFDLEtBQUssQ0FBQyxlQUFlLEVBQ3pDLGFBQWEsRUFBRSxDQUFDLE9BQU8sRUFBRSxFQUFFLENBQUMsSUFBSSxDQUFDLGFBQWEsQ0FBQyxPQUFPLENBQUMsRUFDdkQsU0FBUyxFQUFFLFNBQVMsRUFDcEIsSUFBSSxFQUFDLFFBQVEsSUFFWixpQkFBTyxDQUFDLE1BQU0sRUFBRSxDQUFDLEdBQUcsQ0FBQyxDQUFDLE9BQU8sRUFBRSxLQUFLLEVBQUUsRUFBRSxDQUFDLElBQUksQ0FBQyxVQUFVLENBQUMsT0FBTyxFQUFFLEtBQUssQ0FBQyxDQUFDLENBQ3JFLENBQ04sQ0FDSixDQUNKLENBQ0gsQ0FDWCxDQUFDO0lBQ04sQ0FBQztDQUNKO0FBaEhELGdDQWdIQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCBSZWFjdCwgeyBDb21wb25lbnQgfSBmcm9tICdyZWFjdCc7IC8vIGVzbGludC1kaXNhYmxlLWxpbmUgaW1wb3J0L25vLWV4dHJhbmVvdXMtZGVwZW5kZW5jaWVzLCBuby11c2UtYmVmb3JlLWRlZmluZVxuaW1wb3J0IHtcbiAgICBUZXh0LCBUb3VjaGFibGVPcGFjaXR5LCBWaWV3LCBNb2RhbCxcbn0gZnJvbSAncmVhY3QtbmF0aXZlJztcbmltcG9ydCB7IFBpY2tlciB9IGZyb20gJ0ByZWFjdC1uYXRpdmUtcGlja2VyL3BpY2tlcic7XG5cbmltcG9ydCBDb3VudHJ5IGZyb20gJy4vY291bnRyeSc7XG5pbXBvcnQgc3R5bGVzIGZyb20gJy4vc3R5bGVzJztcbmltcG9ydCB7IFJlYWN0TmF0aXZlQ291bnRyeVBpY2tlclByb3BzLCBSZWFjdE5hdGl2ZUNvdW50cnlQaWNrZXJTdGF0ZSB9IGZyb20gJy4vdHlwaW5ncyc7XG5cbmNvbnN0IFBpY2tlckl0ZW0gPSBQaWNrZXIuSXRlbTtcblxuZXhwb3J0IGRlZmF1bHQgY2xhc3MgQ291bnRyeVBpY2tlciBleHRlbmRzIENvbXBvbmVudDxSZWFjdE5hdGl2ZUNvdW50cnlQaWNrZXJQcm9wcywgUmVhY3ROYXRpdmVDb3VudHJ5UGlja2VyU3RhdGU+IHtcbiAgICBwcml2YXRlIHBpY2tlcjogYW55O1xuXG4gICAgY29uc3RydWN0b3IocHJvcHMpIHtcbiAgICAgICAgc3VwZXIocHJvcHMpO1xuXG4gICAgICAgIHRoaXMuc3RhdGUgPSB7XG4gICAgICAgICAgICBidXR0b25Db2xvcjogdGhpcy5wcm9wcy5idXR0b25Db2xvciB8fCAnIzAwN0FGRicsXG4gICAgICAgICAgICBtb2RhbFZpc2libGU6IGZhbHNlLFxuICAgICAgICAgICAgc2VsZWN0ZWRDb3VudHJ5OiB0aGlzLnByb3BzLnNlbGVjdGVkQ291bnRyeSB8fCBDb3VudHJ5LmdldEFsbCgpWzBdLFxuICAgICAgICB9O1xuICAgIH1cblxuICAgIHNlbGVjdENvdW50cnkoc2VsZWN0ZWRDb3VudHJ5KSB7XG4gICAgICAgIHRoaXMuc2V0U3RhdGUoe1xuICAgICAgICAgICAgc2VsZWN0ZWRDb3VudHJ5LFxuICAgICAgICB9KTtcbiAgICB9XG5cbiAgICBvblByZXNzQ2FuY2VsID0gKCkgPT4ge1xuICAgICAgICBpZiAodGhpcy5wcm9wcy5vblByZXNzQ2FuY2VsKSB7XG4gICAgICAgICAgICB0aGlzLnByb3BzLm9uUHJlc3NDYW5jZWwoKTtcbiAgICAgICAgfVxuXG4gICAgICAgIHRoaXMuc2V0U3RhdGUoe1xuICAgICAgICAgICAgbW9kYWxWaXNpYmxlOiBmYWxzZSxcbiAgICAgICAgfSk7XG4gICAgfVxuXG4gICAgb25QcmVzc1N1Ym1pdCA9ICgpID0+IHtcbiAgICAgICAgaWYgKHRoaXMucHJvcHMub25QcmVzc0NvbmZpcm0pIHtcbiAgICAgICAgICAgIHRoaXMucHJvcHMub25QcmVzc0NvbmZpcm0oKTtcbiAgICAgICAgfVxuXG4gICAgICAgIGlmICh0aGlzLnByb3BzLm9uU3VibWl0KSB7XG4gICAgICAgICAgICB0aGlzLnByb3BzLm9uU3VibWl0KHRoaXMuc3RhdGUuc2VsZWN0ZWRDb3VudHJ5KTtcbiAgICAgICAgfVxuXG4gICAgICAgIHRoaXMuc2V0U3RhdGUoe1xuICAgICAgICAgICAgbW9kYWxWaXNpYmxlOiBmYWxzZSxcbiAgICAgICAgfSk7XG4gICAgfVxuXG4gICAgb25WYWx1ZUNoYW5nZSA9IChzZWxlY3RlZENvdW50cnkpID0+IHtcbiAgICAgICAgdGhpcy5zZXRTdGF0ZSh7XG4gICAgICAgICAgICBzZWxlY3RlZENvdW50cnksXG4gICAgICAgIH0pO1xuICAgIH1cblxuICAgIHNob3coKSB7XG4gICAgICAgIHRoaXMuc2V0U3RhdGUoe1xuICAgICAgICAgICAgbW9kYWxWaXNpYmxlOiB0cnVlLFxuICAgICAgICB9KTtcbiAgICB9XG5cbiAgICAvLyBlc2xpbnQtZGlzYWJsZS1uZXh0LWxpbmUgY2xhc3MtbWV0aG9kcy11c2UtdGhpc1xuICAgIHJlbmRlckl0ZW0oY291bnRyeSwgaW5kZXgpIHtcbiAgICAgICAgcmV0dXJuIDxQaWNrZXJJdGVtIGtleT17Y291bnRyeS5pc28yfSB2YWx1ZT17Y291bnRyeS5pc28yfSBsYWJlbD17Y291bnRyeS5uYW1lfSAvPjtcbiAgICB9XG5cbiAgICByZW5kZXIoKSB7XG4gICAgICAgIGNvbnN0IHsgYnV0dG9uQ29sb3IgfSA9IHRoaXMuc3RhdGU7XG4gICAgICAgIGNvbnN0IGl0ZW1TdHlsZSA9IHRoaXMucHJvcHMuaXRlbVN0eWxlIHx8IHt9O1xuICAgICAgICByZXR1cm4gKFxuICAgICAgICAgICAgPE1vZGFsXG4gICAgICAgICAgICAgICAgYW5pbWF0aW9uVHlwZT1cInNsaWRlXCJcbiAgICAgICAgICAgICAgICB0cmFuc3BhcmVudFxuICAgICAgICAgICAgICAgIHZpc2libGU9e3RoaXMuc3RhdGUubW9kYWxWaXNpYmxlfVxuICAgICAgICAgICAgICAgIG9uUmVxdWVzdENsb3NlPXsoKSA9PiB7XG4gICAgICAgICAgICAgICAgICAgIGNvbnNvbGUubG9nKCdDb3VudHJ5IHBpY2tlciBoYXMgYmVlbiBjbG9zZWQuJyk7XG4gICAgICAgICAgICAgICAgfX1cbiAgICAgICAgICAgID5cbiAgICAgICAgICAgICAgICA8VmlldyBzdHlsZT17c3R5bGVzLmJhc2ljQ29udGFpbmVyfT5cbiAgICAgICAgICAgICAgICAgICAgPFZpZXdcbiAgICAgICAgICAgICAgICAgICAgICAgIHN0eWxlPXtbXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgc3R5bGVzLm1vZGFsQ29udGFpbmVyLFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIHsgYmFja2dyb3VuZENvbG9yOiB0aGlzLnByb3BzLnBpY2tlckJhY2tncm91bmRDb2xvciB8fCAnd2hpdGUnIH0sXG4gICAgICAgICAgICAgICAgICAgICAgICBdfVxuICAgICAgICAgICAgICAgICAgICA+XG4gICAgICAgICAgICAgICAgICAgICAgICA8VmlldyBzdHlsZT17c3R5bGVzLmJ1dHRvblZpZXd9PlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxUb3VjaGFibGVPcGFjaXR5IG9uUHJlc3M9e3RoaXMub25QcmVzc0NhbmNlbH0+XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxUZXh0IHN0eWxlPXtbeyBjb2xvcjogYnV0dG9uQ29sb3IgfSwgdGhpcy5wcm9wcy5jYW5jZWxUZXh0U3R5bGVdfT5cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIHt0aGlzLnByb3BzLmNhbmNlbFRleHQgfHwgJ0NhbmNlbCd9XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvVGV4dD5cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L1RvdWNoYWJsZU9wYWNpdHk+XG5cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8VG91Y2hhYmxlT3BhY2l0eSBvblByZXNzPXt0aGlzLm9uUHJlc3NTdWJtaXR9PlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8VGV4dCBzdHlsZT17W3sgY29sb3I6IGJ1dHRvbkNvbG9yIH0sIHRoaXMucHJvcHMuY29uZmlybVRleHRTdHlsZV19PlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAge3RoaXMucHJvcHMuY29uZmlybVRleHQgfHwgJ0NvbmZpcm0nfVxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L1RleHQ+XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9Ub3VjaGFibGVPcGFjaXR5PlxuICAgICAgICAgICAgICAgICAgICAgICAgPC9WaWV3PlxuXG4gICAgICAgICAgICAgICAgICAgICAgICA8VmlldyBzdHlsZT17c3R5bGVzLm1haW5Cb3h9PlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxQaWNrZXJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgcmVmPXsocmVmKSA9PiB7XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB0aGlzLnBpY2tlciA9IHJlZjtcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfX1cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgc3R5bGU9e3N0eWxlcy5ib3R0b21QaWNrZXJ9XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIHNlbGVjdGVkVmFsdWU9e3RoaXMuc3RhdGUuc2VsZWN0ZWRDb3VudHJ5fVxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBvblZhbHVlQ2hhbmdlPXsoY291bnRyeSkgPT4gdGhpcy5vblZhbHVlQ2hhbmdlKGNvdW50cnkpfVxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBpdGVtU3R5bGU9e2l0ZW1TdHlsZX1cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgbW9kZT1cImRpYWxvZ1wiXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB7Q291bnRyeS5nZXRBbGwoKS5tYXAoKGNvdW50cnksIGluZGV4KSA9PiB0aGlzLnJlbmRlckl0ZW0oY291bnRyeSwgaW5kZXgpKX1cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L1BpY2tlcj5cbiAgICAgICAgICAgICAgICAgICAgICAgIDwvVmlldz5cbiAgICAgICAgICAgICAgICAgICAgPC9WaWV3PlxuICAgICAgICAgICAgICAgIDwvVmlldz5cbiAgICAgICAgICAgIDwvTW9kYWw+XG4gICAgICAgICk7XG4gICAgfVxufVxuIl19 \ No newline at end of file diff --git a/dist/PhoneInput.d.ts b/dist/PhoneInput.d.ts new file mode 100644 index 00000000..836a5002 --- /dev/null +++ b/dist/PhoneInput.d.ts @@ -0,0 +1,30 @@ +import React from 'react'; +import { TextInput } from 'react-native'; +import { ReactNativePhoneInputProps } from './typings'; +export default class PhoneInput extends React.Component, any> { + static setCustomCountriesData(json: any): void; + private picker; + private inputPhone; + constructor(props: any); + componentDidUpdate(): void; + onChangePhoneNumber: (number: any) => void; + onPressFlag: () => void; + getPickerData(): any; + getCountryCode(): any; + getAllCountries(): any; + getFlag: (iso2: any) => any; + getDialCode(): string; + getValue(text?: any): any; + getNumberType(): any; + getISOCode: () => any; + selectCountry: (iso2: any) => void; + setValue: (number: any) => void; + isValidNumber(): any; + format(text: any, iso2?: any): any; + updateValue(number: any, actionAfterSetState?: any): void; + possiblyEliminateZeroAfterCountryCode(number: any): any; + getAccessibilityLabel(): string; + focus(): void; + blur(): void; + render(): JSX.Element; +} diff --git a/dist/PhoneInput.js b/dist/PhoneInput.js new file mode 100644 index 00000000..9d9180ec --- /dev/null +++ b/dist/PhoneInput.js @@ -0,0 +1,197 @@ +"use strict"; +var __importDefault = (this && this.__importDefault) || function (mod) { + return (mod && mod.__esModule) ? mod : { "default": mod }; +}; +Object.defineProperty(exports, "__esModule", { value: true }); +const react_1 = __importDefault(require("react")); // eslint-disable-line import/no-extraneous-dependencies, no-use-before-define +const react_native_1 = require("react-native"); +const country_1 = __importDefault(require("./country")); +const flags_1 = __importDefault(require("./resources/flags")); +const PhoneNumber_1 = __importDefault(require("./PhoneNumber")); +const styles_1 = __importDefault(require("./styles")); +const CountryPicker_1 = __importDefault(require("./CountryPicker")); +class PhoneInput extends react_1.default.Component { + static setCustomCountriesData(json) { + country_1.default.setCustomCountriesData(json); + } + constructor(props) { + super(props); + this.onChangePhoneNumber = (number) => { + const actionAfterSetState = this.props.onChangePhoneNumber + ? (displayValue, iso2) => { + var _a, _b; + (_b = (_a = this.props).onChangePhoneNumber) === null || _b === void 0 ? void 0 : _b.call(_a, displayValue, iso2); + } + : null; + this.updateValue(number, actionAfterSetState); + }; + this.onPressFlag = () => { + if (this.props.onPressFlag) { + this.props.onPressFlag(); + } + else { + if (this.state.iso2) + this.picker.selectCountry(this.state.iso2); + this.picker.show(); + } + }; + // eslint-disable-next-line class-methods-use-this + this.getFlag = (iso2) => flags_1.default.get(iso2); + this.getISOCode = () => this.state.iso2; + this.selectCountry = (iso2) => { + if (this.state.iso2 !== iso2) { + const countryData = PhoneNumber_1.default.getCountryDataByCode(iso2); + if (countryData) { + this.setState({ + iso2, + displayValue: this.format(`+${countryData.dialCode}`), + value: `+${countryData.dialCode}` + }, () => { + if (this.props.onSelectCountry) + this.props.onSelectCountry(iso2); + }); + } + } + }; + this.setValue = (number) => { + if (this.state.value !== number) { + this.updateValue(number); + } + }; + let { initialCountry, initialValue } = this.props; + const { countriesList, disabled } = this.props; + if (countriesList) { + country_1.default.setCustomCountriesData(countriesList); + } + let displayValue = ''; + if (initialValue) { + if (initialValue[0] !== '+') { + initialValue = `+${initialValue}`; + } + initialCountry = PhoneNumber_1.default.getCountryCodeOfNumber(initialValue); + displayValue = this.format(initialValue, initialCountry); + } + else { + const countryData = PhoneNumber_1.default.getCountryDataByCode(initialCountry); + initialValue = countryData ? `+${countryData.dialCode}` : ''; + displayValue = initialValue; + } + this.state = { + disabled, + iso2: initialCountry, + displayValue, + value: initialValue, + }; + } + componentDidUpdate() { + const { disabled } = this.props; + if (disabled !== this.state.disabled) { + this.setState({ disabled }); // eslint-disable-line react/no-did-update-set-state + } + } + // eslint-disable-next-line class-methods-use-this + getPickerData() { + return PhoneNumber_1.default.getAllCountries().map((country, index) => ({ + key: index, + image: flags_1.default.get(country.iso2), + label: country.name, + dialCode: `+${country.dialCode}`, + iso2: country.iso2 + })); + } + getCountryCode() { + const countryData = PhoneNumber_1.default.getCountryDataByCode(this.state.iso2); + return countryData ? countryData.dialCode : null; + } + // eslint-disable-next-line class-methods-use-this + getAllCountries() { + return PhoneNumber_1.default.getAllCountries(); + } + getDialCode() { + return PhoneNumber_1.default.getDialCode(this.state.value); + } + getValue(text) { + return text ? text.replace(/[^0-9]/g, '') : this.state.value; + } + getNumberType() { + return PhoneNumber_1.default.getNumberType(this.state.value, this.state.iso2); + } + isValidNumber() { + if (this.state.value.length < 4) + return false; + return PhoneNumber_1.default.isValidNumber(this.state.value, this.state.iso2); + } + format(text, iso2) { + return this.props.autoFormat + ? PhoneNumber_1.default.format(text, iso2 || this.state.iso2) + : text; + } + updateValue(number, actionAfterSetState = null) { + let modifiedNumber = this.getValue(number); + const { allowZeroAfterCountryCode } = this.props; + if (modifiedNumber[0] !== '+' && number.length) { + modifiedNumber = `+${modifiedNumber}`; + } + modifiedNumber = allowZeroAfterCountryCode + ? modifiedNumber + : this.possiblyEliminateZeroAfterCountryCode(modifiedNumber); + const iso2 = PhoneNumber_1.default.getCountryCodeOfNumber(modifiedNumber); + let countryDialCode; + if (iso2) { + const countryData = PhoneNumber_1.default.getCountryDataByCode(iso2); + countryDialCode = countryData.dialCode; + } + let displayValue; + if (modifiedNumber === `+${countryDialCode}`) { + displayValue = modifiedNumber; + } + else { + displayValue = this.format(modifiedNumber); + } + this.setState({ + iso2, + displayValue, + value: modifiedNumber, + }, () => { + if (actionAfterSetState) { + actionAfterSetState(displayValue, iso2); + } + }); + } + // eslint-disable-next-line class-methods-use-this + possiblyEliminateZeroAfterCountryCode(number) { + const dialCode = PhoneNumber_1.default.getDialCode(number); + return number.startsWith(`${dialCode}0`) + ? dialCode + number.substr(dialCode.length + 1) + : number; + } + getAccessibilityLabel() { + return this.props.accessibilityLabel || 'Telephone input'; + } + focus() { + this.inputPhone.focus(); + } + blur() { + this.inputPhone.blur(); + } + render() { + const { iso2, displayValue, disabled } = this.state; + const country = this.getAllCountries().find((c) => c.iso2 === iso2); + const TextComponent = this.props.textComponent || react_native_1.TextInput; + return (react_1.default.createElement(react_native_1.View, { style: [styles_1.default.container, this.props.style] }, + react_1.default.createElement(react_native_1.TouchableOpacity, { onPress: this.onPressFlag, disabled: disabled, accessibilityRole: "imagebutton", accessibilityLabel: country ? country.name : iso2 }, this.props.renderFlag ? (react_1.default.createElement(react_1.default.Fragment, null, this.props.renderFlag({ + imageSource: flags_1.default.get(iso2), + }))) : (react_1.default.createElement(react_native_1.Image, { accessibilityIgnoresInvertColors: true, source: flags_1.default.get(iso2), style: [styles_1.default.flag, this.props.flagStyle] }))), + react_1.default.createElement(react_native_1.View, { style: { flex: 1, marginLeft: this.props.offset || 10 } }, + react_1.default.createElement(TextComponent, Object.assign({ ref: (ref) => { + this.inputPhone = ref; + }, accessibilityLabel: this.getAccessibilityLabel(), editable: !disabled, autoCorrect: false, style: [styles_1.default.text, this.props.textStyle], onChangeText: (text) => { + this.onChangePhoneNumber(text); + }, keyboardType: "phone-pad", underlineColorAndroid: "rgba(0,0,0,0)", value: displayValue }, this.props.textProps))), + react_1.default.createElement(CountryPicker_1.default, { ref: (ref) => { + this.picker = ref; + }, selectedCountry: iso2, onSubmit: this.selectCountry, buttonColor: this.props.pickerButtonColor, cancelText: this.props.cancelText, cancelTextStyle: this.props.cancelTextStyle, confirmText: this.props.confirmText, confirmTextStyle: this.props.confirmTextStyle, pickerBackgroundColor: this.props.pickerBackgroundColor, itemStyle: this.props.pickerItemStyle, onPressCancel: this.props.onPressCancel, onPressConfirm: this.props.onPressConfirm }))); + } +} +exports.default = PhoneInput; +//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiUGhvbmVJbnB1dC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uL3NyYy9QaG9uZUlucHV0LnRzeCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7OztBQUFBLGtEQUEwQixDQUFDLDhFQUE4RTtBQUN6RywrQ0FFc0I7QUFDdEIsd0RBQWdDO0FBQ2hDLDhEQUFzQztBQUN0QyxnRUFBd0M7QUFDeEMsc0RBQThCO0FBQzlCLG9FQUE0QztBQUc1QyxNQUFxQixVQUNqQixTQUFRLGVBQUssQ0FBQyxTQUE2RDtJQUMzRSxNQUFNLENBQUMsc0JBQXNCLENBQUMsSUFBSTtRQUM5QixpQkFBTyxDQUFDLHNCQUFzQixDQUFDLElBQUksQ0FBQyxDQUFDO0lBQ3pDLENBQUM7SUFNRCxZQUFZLEtBQUs7UUFDYixLQUFLLENBQUMsS0FBSyxDQUFDLENBQUM7UUE0Q2pCLHdCQUFtQixHQUFHLENBQUMsTUFBTSxFQUFFLEVBQUU7WUFDN0IsTUFBTSxtQkFBbUIsR0FBRyxJQUFJLENBQUMsS0FBSyxDQUFDLG1CQUFtQjtnQkFDdEQsQ0FBQyxDQUFDLENBQUMsWUFBb0IsRUFBRSxJQUFZLEVBQUUsRUFBRTs7b0JBQ3JDLE1BQUEsTUFBQSxJQUFJLENBQUMsS0FBSyxFQUFDLG1CQUFtQixtREFBRyxZQUFZLEVBQUUsSUFBSSxDQUFDLENBQUM7Z0JBQ3pELENBQUM7Z0JBQ0QsQ0FBQyxDQUFDLElBQUksQ0FBQztZQUNYLElBQUksQ0FBQyxXQUFXLENBQUMsTUFBTSxFQUFFLG1CQUFtQixDQUFDLENBQUM7UUFDbEQsQ0FBQyxDQUFBO1FBRUQsZ0JBQVcsR0FBRyxHQUFHLEVBQUU7WUFDZixJQUFJLElBQUksQ0FBQyxLQUFLLENBQUMsV0FBVyxFQUFFO2dCQUN4QixJQUFJLENBQUMsS0FBSyxDQUFDLFdBQVcsRUFBRSxDQUFDO2FBQzVCO2lCQUFNO2dCQUNILElBQUksSUFBSSxDQUFDLEtBQUssQ0FBQyxJQUFJO29CQUFFLElBQUksQ0FBQyxNQUFNLENBQUMsYUFBYSxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsSUFBSSxDQUFDLENBQUM7Z0JBQ2hFLElBQUksQ0FBQyxNQUFNLENBQUMsSUFBSSxFQUFFLENBQUM7YUFDdEI7UUFDTCxDQUFDLENBQUE7UUF1QkQsa0RBQWtEO1FBQ2xELFlBQU8sR0FBRyxDQUFDLElBQUksRUFBRSxFQUFFLENBQUMsZUFBSyxDQUFDLEdBQUcsQ0FBQyxJQUFJLENBQUMsQ0FBQztRQWlCcEMsZUFBVSxHQUFHLEdBQUcsRUFBRSxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsSUFBSSxDQUFDO1FBRW5DLGtCQUFhLEdBQUcsQ0FBQyxJQUFJLEVBQUUsRUFBRTtZQUNyQixJQUFJLElBQUksQ0FBQyxLQUFLLENBQUMsSUFBSSxLQUFLLElBQUksRUFBRTtnQkFDMUIsTUFBTSxXQUFXLEdBQUcscUJBQVcsQ0FBQyxvQkFBb0IsQ0FBQyxJQUFJLENBQUMsQ0FBQztnQkFDM0QsSUFBSSxXQUFXLEVBQUU7b0JBQ2IsSUFBSSxDQUFDLFFBQVEsQ0FDVDt3QkFDSSxJQUFJO3dCQUNKLFlBQVksRUFBRSxJQUFJLENBQUMsTUFBTSxDQUFDLElBQUksV0FBVyxDQUFDLFFBQVEsRUFBRSxDQUFDO3dCQUNyRCxLQUFLLEVBQUUsSUFBSSxXQUFXLENBQUMsUUFBUSxFQUFFO3FCQUNwQyxFQUNELEdBQUcsRUFBRTt3QkFDRCxJQUFJLElBQUksQ0FBQyxLQUFLLENBQUMsZUFBZTs0QkFBRSxJQUFJLENBQUMsS0FBSyxDQUFDLGVBQWUsQ0FBQyxJQUFJLENBQUMsQ0FBQztvQkFDckUsQ0FBQyxDQUNKLENBQUM7aUJBQ0w7YUFDSjtRQUNMLENBQUMsQ0FBQTtRQUVELGFBQVEsR0FBRyxDQUFDLE1BQU0sRUFBRSxFQUFFO1lBQ2xCLElBQUksSUFBSSxDQUFDLEtBQUssQ0FBQyxLQUFLLEtBQUssTUFBTSxFQUFFO2dCQUM3QixJQUFJLENBQUMsV0FBVyxDQUFDLE1BQU0sQ0FBQyxDQUFDO2FBQzVCO1FBQ0wsQ0FBQyxDQUFBO1FBM0hHLElBQUksRUFDQSxjQUFjLEVBQUUsWUFBWSxFQUMvQixHQUFHLElBQUksQ0FBQyxLQUFLLENBQUM7UUFFZixNQUFNLEVBQ0YsYUFBYSxFQUFFLFFBQVEsRUFDMUIsR0FBRyxJQUFJLENBQUMsS0FBSyxDQUFDO1FBRWYsSUFBSSxhQUFhLEVBQUU7WUFDZixpQkFBTyxDQUFDLHNCQUFzQixDQUFDLGFBQWEsQ0FBQyxDQUFDO1NBQ2pEO1FBRUQsSUFBSSxZQUFZLEdBQUcsRUFBRSxDQUFDO1FBRXRCLElBQUksWUFBWSxFQUFFO1lBQ2QsSUFBSSxZQUFZLENBQUMsQ0FBQyxDQUFDLEtBQUssR0FBRyxFQUFFO2dCQUN6QixZQUFZLEdBQUcsSUFBSSxZQUFZLEVBQUUsQ0FBQzthQUNyQztZQUVELGNBQWMsR0FBRyxxQkFBVyxDQUFDLHNCQUFzQixDQUFDLFlBQVksQ0FBQyxDQUFDO1lBQ2xFLFlBQVksR0FBRyxJQUFJLENBQUMsTUFBTSxDQUFDLFlBQVksRUFBRSxjQUFjLENBQUMsQ0FBQztTQUM1RDthQUFNO1lBQ0gsTUFBTSxXQUFXLEdBQUcscUJBQVcsQ0FBQyxvQkFBb0IsQ0FBQyxjQUFjLENBQUMsQ0FBQztZQUNyRSxZQUFZLEdBQUcsV0FBVyxDQUFDLENBQUMsQ0FBQyxJQUFJLFdBQVcsQ0FBQyxRQUFRLEVBQUUsQ0FBQyxDQUFDLENBQUMsRUFBRSxDQUFDO1lBQzdELFlBQVksR0FBRyxZQUFZLENBQUM7U0FDL0I7UUFFRCxJQUFJLENBQUMsS0FBSyxHQUFHO1lBQ1QsUUFBUTtZQUNSLElBQUksRUFBRSxjQUFjO1lBQ3BCLFlBQVk7WUFDWixLQUFLLEVBQUUsWUFBWTtTQUN0QixDQUFDO0lBQ04sQ0FBQztJQUVELGtCQUFrQjtRQUNkLE1BQU0sRUFBRSxRQUFRLEVBQUUsR0FBRyxJQUFJLENBQUMsS0FBSyxDQUFDO1FBQ2hDLElBQUksUUFBUSxLQUFLLElBQUksQ0FBQyxLQUFLLENBQUMsUUFBUSxFQUFFO1lBQ2xDLElBQUksQ0FBQyxRQUFRLENBQUMsRUFBRSxRQUFRLEVBQUUsQ0FBQyxDQUFDLENBQUMsb0RBQW9EO1NBQ3BGO0lBQ0wsQ0FBQztJQW9CRCxrREFBa0Q7SUFDbEQsYUFBYTtRQUNULE9BQU8scUJBQVcsQ0FBQyxlQUFlLEVBQUUsQ0FBQyxHQUFHLENBQUMsQ0FBQyxPQUFPLEVBQUUsS0FBSyxFQUFFLEVBQUUsQ0FBQyxDQUFDO1lBQzFELEdBQUcsRUFBRSxLQUFLO1lBQ1YsS0FBSyxFQUFFLGVBQUssQ0FBQyxHQUFHLENBQUMsT0FBTyxDQUFDLElBQUksQ0FBQztZQUM5QixLQUFLLEVBQUUsT0FBTyxDQUFDLElBQUk7WUFDbkIsUUFBUSxFQUFFLElBQUksT0FBTyxDQUFDLFFBQVEsRUFBRTtZQUNoQyxJQUFJLEVBQUUsT0FBTyxDQUFDLElBQUk7U0FDckIsQ0FBQyxDQUFDLENBQUM7SUFDUixDQUFDO0lBRUQsY0FBYztRQUNWLE1BQU0sV0FBVyxHQUFHLHFCQUFXLENBQUMsb0JBQW9CLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxJQUFJLENBQUMsQ0FBQztRQUN0RSxPQUFPLFdBQVcsQ0FBQyxDQUFDLENBQUMsV0FBVyxDQUFDLFFBQVEsQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDO0lBQ3JELENBQUM7SUFFRCxrREFBa0Q7SUFDbEQsZUFBZTtRQUNYLE9BQU8scUJBQVcsQ0FBQyxlQUFlLEVBQUUsQ0FBQztJQUN6QyxDQUFDO0lBS0QsV0FBVztRQUNQLE9BQU8scUJBQVcsQ0FBQyxXQUFXLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxLQUFLLENBQUMsQ0FBQztJQUNyRCxDQUFDO0lBRUQsUUFBUSxDQUFDLElBQUs7UUFDVixPQUFPLElBQUksQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLE9BQU8sQ0FBQyxTQUFTLEVBQUUsRUFBRSxDQUFDLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsS0FBSyxDQUFDO0lBQ2pFLENBQUM7SUFFRCxhQUFhO1FBQ1QsT0FBTyxxQkFBVyxDQUFDLGFBQWEsQ0FDNUIsSUFBSSxDQUFDLEtBQUssQ0FBQyxLQUFLLEVBQ2hCLElBQUksQ0FBQyxLQUFLLENBQUMsSUFBSSxDQUNsQixDQUFDO0lBQ04sQ0FBQztJQTRCRCxhQUFhO1FBQ1QsSUFBSSxJQUFJLENBQUMsS0FBSyxDQUFDLEtBQUssQ0FBQyxNQUFNLEdBQUcsQ0FBQztZQUFFLE9BQU8sS0FBSyxDQUFDO1FBQzlDLE9BQU8scUJBQVcsQ0FBQyxhQUFhLENBQzVCLElBQUksQ0FBQyxLQUFLLENBQUMsS0FBSyxFQUNoQixJQUFJLENBQUMsS0FBSyxDQUFDLElBQUksQ0FDbEIsQ0FBQztJQUNOLENBQUM7SUFFRCxNQUFNLENBQUMsSUFBSSxFQUFFLElBQUs7UUFDZCxPQUFPLElBQUksQ0FBQyxLQUFLLENBQUMsVUFBVTtZQUN4QixDQUFDLENBQUMscUJBQVcsQ0FBQyxNQUFNLENBQUMsSUFBSSxFQUFFLElBQUksSUFBSSxJQUFJLENBQUMsS0FBSyxDQUFDLElBQUksQ0FBQztZQUNuRCxDQUFDLENBQUMsSUFBSSxDQUFDO0lBQ2YsQ0FBQztJQUVELFdBQVcsQ0FBQyxNQUFNLEVBQUUsc0JBQTJCLElBQUk7UUFDL0MsSUFBSSxjQUFjLEdBQUcsSUFBSSxDQUFDLFFBQVEsQ0FBQyxNQUFNLENBQUMsQ0FBQztRQUMzQyxNQUFNLEVBQUUseUJBQXlCLEVBQUUsR0FBRyxJQUFJLENBQUMsS0FBSyxDQUFDO1FBRWpELElBQUksY0FBYyxDQUFDLENBQUMsQ0FBQyxLQUFLLEdBQUcsSUFBSSxNQUFNLENBQUMsTUFBTSxFQUFFO1lBQzVDLGNBQWMsR0FBRyxJQUFJLGNBQWMsRUFBRSxDQUFDO1NBQ3pDO1FBQ0QsY0FBYyxHQUFHLHlCQUF5QjtZQUN0QyxDQUFDLENBQUMsY0FBYztZQUNoQixDQUFDLENBQUMsSUFBSSxDQUFDLHFDQUFxQyxDQUFDLGNBQWMsQ0FBQyxDQUFDO1FBQ2pFLE1BQU0sSUFBSSxHQUFXLHFCQUFXLENBQUMsc0JBQXNCLENBQUMsY0FBYyxDQUFDLENBQUM7UUFFeEUsSUFBSSxlQUFlLENBQUM7UUFDcEIsSUFBSSxJQUFJLEVBQUU7WUFDTixNQUFNLFdBQVcsR0FBRyxxQkFBVyxDQUFDLG9CQUFvQixDQUFDLElBQUksQ0FBQyxDQUFDO1lBQzNELGVBQWUsR0FBRyxXQUFXLENBQUMsUUFBUSxDQUFDO1NBQzFDO1FBRUQsSUFBSSxZQUFZLENBQUM7UUFDakIsSUFBSSxjQUFjLEtBQUssSUFBSSxlQUFlLEVBQUUsRUFBRTtZQUMxQyxZQUFZLEdBQUcsY0FBYyxDQUFDO1NBQ2pDO2FBQU07WUFDSCxZQUFZLEdBQUcsSUFBSSxDQUFDLE1BQU0sQ0FBQyxjQUFjLENBQUMsQ0FBQztTQUM5QztRQUVELElBQUksQ0FBQyxRQUFRLENBQUM7WUFDVixJQUFJO1lBQ0osWUFBWTtZQUNaLEtBQUssRUFBRSxjQUFjO1NBQ3hCLEVBQUUsR0FBRyxFQUFFO1lBQ0osSUFBSSxtQkFBbUIsRUFBRTtnQkFDckIsbUJBQW1CLENBQUMsWUFBWSxFQUFFLElBQUksQ0FBQyxDQUFDO2FBQzNDO1FBQ0wsQ0FBQyxDQUFDLENBQUM7SUFDUCxDQUFDO0lBRUQsa0RBQWtEO0lBQ2xELHFDQUFxQyxDQUFDLE1BQU07UUFDeEMsTUFBTSxRQUFRLEdBQUcscUJBQVcsQ0FBQyxXQUFXLENBQUMsTUFBTSxDQUFDLENBQUM7UUFDakQsT0FBTyxNQUFNLENBQUMsVUFBVSxDQUFDLEdBQUcsUUFBUSxHQUFHLENBQUM7WUFDcEMsQ0FBQyxDQUFDLFFBQVEsR0FBRyxNQUFNLENBQUMsTUFBTSxDQUFDLFFBQVEsQ0FBQyxNQUFNLEdBQUcsQ0FBQyxDQUFDO1lBQy9DLENBQUMsQ0FBQyxNQUFNLENBQUM7SUFDakIsQ0FBQztJQUVELHFCQUFxQjtRQUNqQixPQUFPLElBQUksQ0FBQyxLQUFLLENBQUMsa0JBQWtCLElBQUksaUJBQWlCLENBQUM7SUFDOUQsQ0FBQztJQUVELEtBQUs7UUFDRCxJQUFJLENBQUMsVUFBVSxDQUFDLEtBQUssRUFBRSxDQUFDO0lBQzVCLENBQUM7SUFFRCxJQUFJO1FBQ0EsSUFBSSxDQUFDLFVBQVUsQ0FBQyxJQUFJLEVBQUUsQ0FBQztJQUMzQixDQUFDO0lBRUQsTUFBTTtRQUNGLE1BQU0sRUFBRSxJQUFJLEVBQUUsWUFBWSxFQUFFLFFBQVEsRUFBRSxHQUFHLElBQUksQ0FBQyxLQUFLLENBQUM7UUFDcEQsTUFBTSxPQUFPLEdBQUcsSUFBSSxDQUFDLGVBQWUsRUFBRSxDQUFDLElBQUksQ0FBQyxDQUFDLENBQUMsRUFBRSxFQUFFLENBQUMsQ0FBQyxDQUFDLElBQUksS0FBSyxJQUFJLENBQUMsQ0FBQztRQUNwRSxNQUFNLGFBQWEsR0FBUSxJQUFJLENBQUMsS0FBSyxDQUFDLGFBQWEsSUFBSSx3QkFBUyxDQUFDO1FBQ2pFLE9BQU8sQ0FDSCw4QkFBQyxtQkFBSSxJQUFDLEtBQUssRUFBRSxDQUFDLGdCQUFNLENBQUMsU0FBUyxFQUFFLElBQUksQ0FBQyxLQUFLLENBQUMsS0FBSyxDQUFDO1lBQzdDLDhCQUFDLCtCQUFnQixJQUNiLE9BQU8sRUFBRSxJQUFJLENBQUMsV0FBVyxFQUN6QixRQUFRLEVBQUUsUUFBUSxFQUNsQixpQkFBaUIsRUFBQyxhQUFhLEVBQy9CLGtCQUFrQixFQUFFLE9BQU8sQ0FBQyxDQUFDLENBQUMsT0FBTyxDQUFDLElBQUksQ0FBQyxDQUFDLENBQUMsSUFBSSxJQUVoRCxJQUFJLENBQUMsS0FBSyxDQUFDLFVBQVUsQ0FBQyxDQUFDLENBQUMsQ0FDckIsOERBQ0ssSUFBSSxDQUFDLEtBQUssQ0FBQyxVQUFVLENBQUM7Z0JBQ25CLFdBQVcsRUFBRSxlQUFLLENBQUMsR0FBRyxDQUFDLElBQUksQ0FBQzthQUMvQixDQUFDLENBQ0gsQ0FDTixDQUFDLENBQUMsQ0FBQyxDQUNBLDhCQUFDLG9CQUFLLElBQ0YsZ0NBQWdDLEVBQUUsSUFBSSxFQUN0QyxNQUFNLEVBQUUsZUFBSyxDQUFDLEdBQUcsQ0FBQyxJQUFJLENBQUMsRUFDdkIsS0FBSyxFQUFFLENBQUMsZ0JBQU0sQ0FBQyxJQUFJLEVBQUUsSUFBSSxDQUFDLEtBQUssQ0FBQyxTQUFTLENBQUMsR0FDNUMsQ0FDTCxDQUNjO1lBQ25CLDhCQUFDLG1CQUFJLElBQUMsS0FBSyxFQUFFLEVBQUUsSUFBSSxFQUFFLENBQUMsRUFBRSxVQUFVLEVBQUUsSUFBSSxDQUFDLEtBQUssQ0FBQyxNQUFNLElBQUksRUFBRSxFQUFFO2dCQUN6RCw4QkFBQyxhQUFhLGtCQUNWLEdBQUcsRUFBRSxDQUFDLEdBQUcsRUFBRSxFQUFFO3dCQUNULElBQUksQ0FBQyxVQUFVLEdBQUcsR0FBRyxDQUFDO29CQUMxQixDQUFDLEVBQ0Qsa0JBQWtCLEVBQUUsSUFBSSxDQUFDLHFCQUFxQixFQUFFLEVBQ2hELFFBQVEsRUFBRSxDQUFDLFFBQVEsRUFDbkIsV0FBVyxFQUFFLEtBQUssRUFDbEIsS0FBSyxFQUFFLENBQUMsZ0JBQU0sQ0FBQyxJQUFJLEVBQUUsSUFBSSxDQUFDLEtBQUssQ0FBQyxTQUFTLENBQUMsRUFDMUMsWUFBWSxFQUFFLENBQUMsSUFBSSxFQUFFLEVBQUU7d0JBQ25CLElBQUksQ0FBQyxtQkFBbUIsQ0FBQyxJQUFJLENBQUMsQ0FBQztvQkFDbkMsQ0FBQyxFQUNELFlBQVksRUFBQyxXQUFXLEVBQ3hCLHFCQUFxQixFQUFDLGVBQWUsRUFDckMsS0FBSyxFQUFFLFlBQVksSUFDZixJQUFJLENBQUMsS0FBSyxDQUFDLFNBQVMsRUFDMUIsQ0FDQztZQUVQLDhCQUFDLHVCQUFhLElBQ1YsR0FBRyxFQUFFLENBQUMsR0FBRyxFQUFFLEVBQUU7b0JBQ1QsSUFBSSxDQUFDLE1BQU0sR0FBRyxHQUFHLENBQUM7Z0JBQ3RCLENBQUMsRUFDRCxlQUFlLEVBQUUsSUFBSSxFQUNyQixRQUFRLEVBQUUsSUFBSSxDQUFDLGFBQWEsRUFDNUIsV0FBVyxFQUFFLElBQUksQ0FBQyxLQUFLLENBQUMsaUJBQWlCLEVBQ3pDLFVBQVUsRUFBRSxJQUFJLENBQUMsS0FBSyxDQUFDLFVBQVUsRUFDakMsZUFBZSxFQUFFLElBQUksQ0FBQyxLQUFLLENBQUMsZUFBZSxFQUMzQyxXQUFXLEVBQUUsSUFBSSxDQUFDLEtBQUssQ0FBQyxXQUFXLEVBQ25DLGdCQUFnQixFQUFFLElBQUksQ0FBQyxLQUFLLENBQUMsZ0JBQWdCLEVBQzdDLHFCQUFxQixFQUFFLElBQUksQ0FBQyxLQUFLLENBQUMscUJBQXFCLEVBQ3ZELFNBQVMsRUFBRSxJQUFJLENBQUMsS0FBSyxDQUFDLGVBQWUsRUFDckMsYUFBYSxFQUFFLElBQUksQ0FBQyxLQUFLLENBQUMsYUFBYSxFQUN2QyxjQUFjLEVBQUUsSUFBSSxDQUFDLEtBQUssQ0FBQyxjQUFjLEdBQzNDLENBQ0MsQ0FDVixDQUFDO0lBQ04sQ0FBQztDQUNKO0FBaFJELDZCQWdSQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCBSZWFjdCBmcm9tICdyZWFjdCc7IC8vIGVzbGludC1kaXNhYmxlLWxpbmUgaW1wb3J0L25vLWV4dHJhbmVvdXMtZGVwZW5kZW5jaWVzLCBuby11c2UtYmVmb3JlLWRlZmluZVxuaW1wb3J0IHtcbiAgICBJbWFnZSwgVGV4dElucHV0LCBUb3VjaGFibGVPcGFjaXR5LCBWaWV3XG59IGZyb20gJ3JlYWN0LW5hdGl2ZSc7XG5pbXBvcnQgQ291bnRyeSBmcm9tICcuL2NvdW50cnknO1xuaW1wb3J0IEZsYWdzIGZyb20gJy4vcmVzb3VyY2VzL2ZsYWdzJztcbmltcG9ydCBQaG9uZU51bWJlciBmcm9tICcuL1Bob25lTnVtYmVyJztcbmltcG9ydCBzdHlsZXMgZnJvbSAnLi9zdHlsZXMnO1xuaW1wb3J0IENvdW50cnlQaWNrZXIgZnJvbSAnLi9Db3VudHJ5UGlja2VyJztcbmltcG9ydCB7IFJlYWN0TmF0aXZlUGhvbmVJbnB1dFByb3BzIH0gZnJvbSAnLi90eXBpbmdzJztcblxuZXhwb3J0IGRlZmF1bHQgY2xhc3MgUGhvbmVJbnB1dDxUZXh0Q29tcG9uZW50VHlwZSBleHRlbmRzIFJlYWN0LkNvbXBvbmVudFR5cGUgPSB0eXBlb2YgVGV4dElucHV0PlxuICAgIGV4dGVuZHMgUmVhY3QuQ29tcG9uZW50PFJlYWN0TmF0aXZlUGhvbmVJbnB1dFByb3BzPFRleHRDb21wb25lbnRUeXBlPiwgYW55PiB7XG4gICAgc3RhdGljIHNldEN1c3RvbUNvdW50cmllc0RhdGEoanNvbikge1xuICAgICAgICBDb3VudHJ5LnNldEN1c3RvbUNvdW50cmllc0RhdGEoanNvbik7XG4gICAgfVxuXG4gICAgcHJpdmF0ZSBwaWNrZXI6IGFueTtcblxuICAgIHByaXZhdGUgaW5wdXRQaG9uZTogYW55O1xuXG4gICAgY29uc3RydWN0b3IocHJvcHMpIHtcbiAgICAgICAgc3VwZXIocHJvcHMpO1xuXG4gICAgICAgIGxldCB7XG4gICAgICAgICAgICBpbml0aWFsQ291bnRyeSwgaW5pdGlhbFZhbHVlXG4gICAgICAgIH0gPSB0aGlzLnByb3BzO1xuXG4gICAgICAgIGNvbnN0IHtcbiAgICAgICAgICAgIGNvdW50cmllc0xpc3QsIGRpc2FibGVkXG4gICAgICAgIH0gPSB0aGlzLnByb3BzO1xuXG4gICAgICAgIGlmIChjb3VudHJpZXNMaXN0KSB7XG4gICAgICAgICAgICBDb3VudHJ5LnNldEN1c3RvbUNvdW50cmllc0RhdGEoY291bnRyaWVzTGlzdCk7XG4gICAgICAgIH1cblxuICAgICAgICBsZXQgZGlzcGxheVZhbHVlID0gJyc7XG5cbiAgICAgICAgaWYgKGluaXRpYWxWYWx1ZSkge1xuICAgICAgICAgICAgaWYgKGluaXRpYWxWYWx1ZVswXSAhPT0gJysnKSB7XG4gICAgICAgICAgICAgICAgaW5pdGlhbFZhbHVlID0gYCske2luaXRpYWxWYWx1ZX1gO1xuICAgICAgICAgICAgfVxuXG4gICAgICAgICAgICBpbml0aWFsQ291bnRyeSA9IFBob25lTnVtYmVyLmdldENvdW50cnlDb2RlT2ZOdW1iZXIoaW5pdGlhbFZhbHVlKTtcbiAgICAgICAgICAgIGRpc3BsYXlWYWx1ZSA9IHRoaXMuZm9ybWF0KGluaXRpYWxWYWx1ZSwgaW5pdGlhbENvdW50cnkpO1xuICAgICAgICB9IGVsc2Uge1xuICAgICAgICAgICAgY29uc3QgY291bnRyeURhdGEgPSBQaG9uZU51bWJlci5nZXRDb3VudHJ5RGF0YUJ5Q29kZShpbml0aWFsQ291bnRyeSk7XG4gICAgICAgICAgICBpbml0aWFsVmFsdWUgPSBjb3VudHJ5RGF0YSA/IGArJHtjb3VudHJ5RGF0YS5kaWFsQ29kZX1gIDogJyc7XG4gICAgICAgICAgICBkaXNwbGF5VmFsdWUgPSBpbml0aWFsVmFsdWU7XG4gICAgICAgIH1cblxuICAgICAgICB0aGlzLnN0YXRlID0ge1xuICAgICAgICAgICAgZGlzYWJsZWQsXG4gICAgICAgICAgICBpc28yOiBpbml0aWFsQ291bnRyeSxcbiAgICAgICAgICAgIGRpc3BsYXlWYWx1ZSxcbiAgICAgICAgICAgIHZhbHVlOiBpbml0aWFsVmFsdWUsXG4gICAgICAgIH07XG4gICAgfVxuXG4gICAgY29tcG9uZW50RGlkVXBkYXRlKCkge1xuICAgICAgICBjb25zdCB7IGRpc2FibGVkIH0gPSB0aGlzLnByb3BzO1xuICAgICAgICBpZiAoZGlzYWJsZWQgIT09IHRoaXMuc3RhdGUuZGlzYWJsZWQpIHtcbiAgICAgICAgICAgIHRoaXMuc2V0U3RhdGUoeyBkaXNhYmxlZCB9KTsgLy8gZXNsaW50LWRpc2FibGUtbGluZSByZWFjdC9uby1kaWQtdXBkYXRlLXNldC1zdGF0ZVxuICAgICAgICB9XG4gICAgfVxuXG4gICAgb25DaGFuZ2VQaG9uZU51bWJlciA9IChudW1iZXIpID0+IHtcbiAgICAgICAgY29uc3QgYWN0aW9uQWZ0ZXJTZXRTdGF0ZSA9IHRoaXMucHJvcHMub25DaGFuZ2VQaG9uZU51bWJlclxuICAgICAgICAgICAgPyAoZGlzcGxheVZhbHVlOiBzdHJpbmcsIGlzbzI6IHN0cmluZykgPT4ge1xuICAgICAgICAgICAgICAgIHRoaXMucHJvcHMub25DaGFuZ2VQaG9uZU51bWJlcj8uKGRpc3BsYXlWYWx1ZSwgaXNvMik7XG4gICAgICAgICAgICB9XG4gICAgICAgICAgICA6IG51bGw7XG4gICAgICAgIHRoaXMudXBkYXRlVmFsdWUobnVtYmVyLCBhY3Rpb25BZnRlclNldFN0YXRlKTtcbiAgICB9XG5cbiAgICBvblByZXNzRmxhZyA9ICgpID0+IHtcbiAgICAgICAgaWYgKHRoaXMucHJvcHMub25QcmVzc0ZsYWcpIHtcbiAgICAgICAgICAgIHRoaXMucHJvcHMub25QcmVzc0ZsYWcoKTtcbiAgICAgICAgfSBlbHNlIHtcbiAgICAgICAgICAgIGlmICh0aGlzLnN0YXRlLmlzbzIpIHRoaXMucGlja2VyLnNlbGVjdENvdW50cnkodGhpcy5zdGF0ZS5pc28yKTtcbiAgICAgICAgICAgIHRoaXMucGlja2VyLnNob3coKTtcbiAgICAgICAgfVxuICAgIH1cblxuICAgIC8vIGVzbGludC1kaXNhYmxlLW5leHQtbGluZSBjbGFzcy1tZXRob2RzLXVzZS10aGlzXG4gICAgZ2V0UGlja2VyRGF0YSgpIHtcbiAgICAgICAgcmV0dXJuIFBob25lTnVtYmVyLmdldEFsbENvdW50cmllcygpLm1hcCgoY291bnRyeSwgaW5kZXgpID0+ICh7XG4gICAgICAgICAgICBrZXk6IGluZGV4LFxuICAgICAgICAgICAgaW1hZ2U6IEZsYWdzLmdldChjb3VudHJ5LmlzbzIpLFxuICAgICAgICAgICAgbGFiZWw6IGNvdW50cnkubmFtZSxcbiAgICAgICAgICAgIGRpYWxDb2RlOiBgKyR7Y291bnRyeS5kaWFsQ29kZX1gLFxuICAgICAgICAgICAgaXNvMjogY291bnRyeS5pc28yXG4gICAgICAgIH0pKTtcbiAgICB9XG5cbiAgICBnZXRDb3VudHJ5Q29kZSgpIHtcbiAgICAgICAgY29uc3QgY291bnRyeURhdGEgPSBQaG9uZU51bWJlci5nZXRDb3VudHJ5RGF0YUJ5Q29kZSh0aGlzLnN0YXRlLmlzbzIpO1xuICAgICAgICByZXR1cm4gY291bnRyeURhdGEgPyBjb3VudHJ5RGF0YS5kaWFsQ29kZSA6IG51bGw7XG4gICAgfVxuXG4gICAgLy8gZXNsaW50LWRpc2FibGUtbmV4dC1saW5lIGNsYXNzLW1ldGhvZHMtdXNlLXRoaXNcbiAgICBnZXRBbGxDb3VudHJpZXMoKSB7XG4gICAgICAgIHJldHVybiBQaG9uZU51bWJlci5nZXRBbGxDb3VudHJpZXMoKTtcbiAgICB9XG5cbiAgICAvLyBlc2xpbnQtZGlzYWJsZS1uZXh0LWxpbmUgY2xhc3MtbWV0aG9kcy11c2UtdGhpc1xuICAgIGdldEZsYWcgPSAoaXNvMikgPT4gRmxhZ3MuZ2V0KGlzbzIpO1xuXG4gICAgZ2V0RGlhbENvZGUoKSB7XG4gICAgICAgIHJldHVybiBQaG9uZU51bWJlci5nZXREaWFsQ29kZSh0aGlzLnN0YXRlLnZhbHVlKTtcbiAgICB9XG5cbiAgICBnZXRWYWx1ZSh0ZXh0Pykge1xuICAgICAgICByZXR1cm4gdGV4dCA/IHRleHQucmVwbGFjZSgvW14wLTldL2csICcnKSA6IHRoaXMuc3RhdGUudmFsdWU7XG4gICAgfVxuXG4gICAgZ2V0TnVtYmVyVHlwZSgpIHtcbiAgICAgICAgcmV0dXJuIFBob25lTnVtYmVyLmdldE51bWJlclR5cGUoXG4gICAgICAgICAgICB0aGlzLnN0YXRlLnZhbHVlLFxuICAgICAgICAgICAgdGhpcy5zdGF0ZS5pc28yXG4gICAgICAgICk7XG4gICAgfVxuXG4gICAgZ2V0SVNPQ29kZSA9ICgpID0+IHRoaXMuc3RhdGUuaXNvMjtcblxuICAgIHNlbGVjdENvdW50cnkgPSAoaXNvMikgPT4ge1xuICAgICAgICBpZiAodGhpcy5zdGF0ZS5pc28yICE9PSBpc28yKSB7XG4gICAgICAgICAgICBjb25zdCBjb3VudHJ5RGF0YSA9IFBob25lTnVtYmVyLmdldENvdW50cnlEYXRhQnlDb2RlKGlzbzIpO1xuICAgICAgICAgICAgaWYgKGNvdW50cnlEYXRhKSB7XG4gICAgICAgICAgICAgICAgdGhpcy5zZXRTdGF0ZShcbiAgICAgICAgICAgICAgICAgICAge1xuICAgICAgICAgICAgICAgICAgICAgICAgaXNvMixcbiAgICAgICAgICAgICAgICAgICAgICAgIGRpc3BsYXlWYWx1ZTogdGhpcy5mb3JtYXQoYCske2NvdW50cnlEYXRhLmRpYWxDb2RlfWApLFxuICAgICAgICAgICAgICAgICAgICAgICAgdmFsdWU6IGArJHtjb3VudHJ5RGF0YS5kaWFsQ29kZX1gXG4gICAgICAgICAgICAgICAgICAgIH0sXG4gICAgICAgICAgICAgICAgICAgICgpID0+IHtcbiAgICAgICAgICAgICAgICAgICAgICAgIGlmICh0aGlzLnByb3BzLm9uU2VsZWN0Q291bnRyeSkgdGhpcy5wcm9wcy5vblNlbGVjdENvdW50cnkoaXNvMik7XG4gICAgICAgICAgICAgICAgICAgIH1cbiAgICAgICAgICAgICAgICApO1xuICAgICAgICAgICAgfVxuICAgICAgICB9XG4gICAgfVxuXG4gICAgc2V0VmFsdWUgPSAobnVtYmVyKSA9PiB7XG4gICAgICAgIGlmICh0aGlzLnN0YXRlLnZhbHVlICE9PSBudW1iZXIpIHtcbiAgICAgICAgICAgIHRoaXMudXBkYXRlVmFsdWUobnVtYmVyKTtcbiAgICAgICAgfVxuICAgIH1cblxuICAgIGlzVmFsaWROdW1iZXIoKSB7XG4gICAgICAgIGlmICh0aGlzLnN0YXRlLnZhbHVlLmxlbmd0aCA8IDQpIHJldHVybiBmYWxzZTtcbiAgICAgICAgcmV0dXJuIFBob25lTnVtYmVyLmlzVmFsaWROdW1iZXIoXG4gICAgICAgICAgICB0aGlzLnN0YXRlLnZhbHVlLFxuICAgICAgICAgICAgdGhpcy5zdGF0ZS5pc28yXG4gICAgICAgICk7XG4gICAgfVxuXG4gICAgZm9ybWF0KHRleHQsIGlzbzI/KSB7XG4gICAgICAgIHJldHVybiB0aGlzLnByb3BzLmF1dG9Gb3JtYXRcbiAgICAgICAgICAgID8gUGhvbmVOdW1iZXIuZm9ybWF0KHRleHQsIGlzbzIgfHwgdGhpcy5zdGF0ZS5pc28yKVxuICAgICAgICAgICAgOiB0ZXh0O1xuICAgIH1cblxuICAgIHVwZGF0ZVZhbHVlKG51bWJlciwgYWN0aW9uQWZ0ZXJTZXRTdGF0ZTogYW55ID0gbnVsbCkge1xuICAgICAgICBsZXQgbW9kaWZpZWROdW1iZXIgPSB0aGlzLmdldFZhbHVlKG51bWJlcik7XG4gICAgICAgIGNvbnN0IHsgYWxsb3daZXJvQWZ0ZXJDb3VudHJ5Q29kZSB9ID0gdGhpcy5wcm9wcztcblxuICAgICAgICBpZiAobW9kaWZpZWROdW1iZXJbMF0gIT09ICcrJyAmJiBudW1iZXIubGVuZ3RoKSB7XG4gICAgICAgICAgICBtb2RpZmllZE51bWJlciA9IGArJHttb2RpZmllZE51bWJlcn1gO1xuICAgICAgICB9XG4gICAgICAgIG1vZGlmaWVkTnVtYmVyID0gYWxsb3daZXJvQWZ0ZXJDb3VudHJ5Q29kZVxuICAgICAgICAgICAgPyBtb2RpZmllZE51bWJlclxuICAgICAgICAgICAgOiB0aGlzLnBvc3NpYmx5RWxpbWluYXRlWmVyb0FmdGVyQ291bnRyeUNvZGUobW9kaWZpZWROdW1iZXIpO1xuICAgICAgICBjb25zdCBpc28yOiBzdHJpbmcgPSBQaG9uZU51bWJlci5nZXRDb3VudHJ5Q29kZU9mTnVtYmVyKG1vZGlmaWVkTnVtYmVyKTtcblxuICAgICAgICBsZXQgY291bnRyeURpYWxDb2RlO1xuICAgICAgICBpZiAoaXNvMikge1xuICAgICAgICAgICAgY29uc3QgY291bnRyeURhdGEgPSBQaG9uZU51bWJlci5nZXRDb3VudHJ5RGF0YUJ5Q29kZShpc28yKTtcbiAgICAgICAgICAgIGNvdW50cnlEaWFsQ29kZSA9IGNvdW50cnlEYXRhLmRpYWxDb2RlO1xuICAgICAgICB9XG5cbiAgICAgICAgbGV0IGRpc3BsYXlWYWx1ZTtcbiAgICAgICAgaWYgKG1vZGlmaWVkTnVtYmVyID09PSBgKyR7Y291bnRyeURpYWxDb2RlfWApIHtcbiAgICAgICAgICAgIGRpc3BsYXlWYWx1ZSA9IG1vZGlmaWVkTnVtYmVyO1xuICAgICAgICB9IGVsc2Uge1xuICAgICAgICAgICAgZGlzcGxheVZhbHVlID0gdGhpcy5mb3JtYXQobW9kaWZpZWROdW1iZXIpO1xuICAgICAgICB9XG5cbiAgICAgICAgdGhpcy5zZXRTdGF0ZSh7XG4gICAgICAgICAgICBpc28yLFxuICAgICAgICAgICAgZGlzcGxheVZhbHVlLFxuICAgICAgICAgICAgdmFsdWU6IG1vZGlmaWVkTnVtYmVyLFxuICAgICAgICB9LCAoKSA9PiB7XG4gICAgICAgICAgICBpZiAoYWN0aW9uQWZ0ZXJTZXRTdGF0ZSkge1xuICAgICAgICAgICAgICAgIGFjdGlvbkFmdGVyU2V0U3RhdGUoZGlzcGxheVZhbHVlLCBpc28yKTtcbiAgICAgICAgICAgIH1cbiAgICAgICAgfSk7XG4gICAgfVxuXG4gICAgLy8gZXNsaW50LWRpc2FibGUtbmV4dC1saW5lIGNsYXNzLW1ldGhvZHMtdXNlLXRoaXNcbiAgICBwb3NzaWJseUVsaW1pbmF0ZVplcm9BZnRlckNvdW50cnlDb2RlKG51bWJlcikge1xuICAgICAgICBjb25zdCBkaWFsQ29kZSA9IFBob25lTnVtYmVyLmdldERpYWxDb2RlKG51bWJlcik7XG4gICAgICAgIHJldHVybiBudW1iZXIuc3RhcnRzV2l0aChgJHtkaWFsQ29kZX0wYClcbiAgICAgICAgICAgID8gZGlhbENvZGUgKyBudW1iZXIuc3Vic3RyKGRpYWxDb2RlLmxlbmd0aCArIDEpXG4gICAgICAgICAgICA6IG51bWJlcjtcbiAgICB9XG5cbiAgICBnZXRBY2Nlc3NpYmlsaXR5TGFiZWwoKSB7XG4gICAgICAgIHJldHVybiB0aGlzLnByb3BzLmFjY2Vzc2liaWxpdHlMYWJlbCB8fCAnVGVsZXBob25lIGlucHV0JztcbiAgICB9XG5cbiAgICBmb2N1cygpIHtcbiAgICAgICAgdGhpcy5pbnB1dFBob25lLmZvY3VzKCk7XG4gICAgfVxuXG4gICAgYmx1cigpIHtcbiAgICAgICAgdGhpcy5pbnB1dFBob25lLmJsdXIoKTtcbiAgICB9XG5cbiAgICByZW5kZXIoKSB7XG4gICAgICAgIGNvbnN0IHsgaXNvMiwgZGlzcGxheVZhbHVlLCBkaXNhYmxlZCB9ID0gdGhpcy5zdGF0ZTtcbiAgICAgICAgY29uc3QgY291bnRyeSA9IHRoaXMuZ2V0QWxsQ291bnRyaWVzKCkuZmluZCgoYykgPT4gYy5pc28yID09PSBpc28yKTtcbiAgICAgICAgY29uc3QgVGV4dENvbXBvbmVudDogYW55ID0gdGhpcy5wcm9wcy50ZXh0Q29tcG9uZW50IHx8IFRleHRJbnB1dDtcbiAgICAgICAgcmV0dXJuIChcbiAgICAgICAgICAgIDxWaWV3IHN0eWxlPXtbc3R5bGVzLmNvbnRhaW5lciwgdGhpcy5wcm9wcy5zdHlsZV19PlxuICAgICAgICAgICAgICAgIDxUb3VjaGFibGVPcGFjaXR5XG4gICAgICAgICAgICAgICAgICAgIG9uUHJlc3M9e3RoaXMub25QcmVzc0ZsYWd9XG4gICAgICAgICAgICAgICAgICAgIGRpc2FibGVkPXtkaXNhYmxlZH1cbiAgICAgICAgICAgICAgICAgICAgYWNjZXNzaWJpbGl0eVJvbGU9XCJpbWFnZWJ1dHRvblwiXG4gICAgICAgICAgICAgICAgICAgIGFjY2Vzc2liaWxpdHlMYWJlbD17Y291bnRyeSA/IGNvdW50cnkubmFtZSA6IGlzbzJ9XG4gICAgICAgICAgICAgICAgPlxuICAgICAgICAgICAgICAgICAgICB7dGhpcy5wcm9wcy5yZW5kZXJGbGFnID8gKFxuICAgICAgICAgICAgICAgICAgICAgICAgPD5cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICB7dGhpcy5wcm9wcy5yZW5kZXJGbGFnKHtcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgaW1hZ2VTb3VyY2U6IEZsYWdzLmdldChpc28yKSxcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICB9KX1cbiAgICAgICAgICAgICAgICAgICAgICAgIDwvPlxuICAgICAgICAgICAgICAgICAgICApIDogKFxuICAgICAgICAgICAgICAgICAgICAgICAgPEltYWdlXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgYWNjZXNzaWJpbGl0eUlnbm9yZXNJbnZlcnRDb2xvcnM9e3RydWV9XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgc291cmNlPXtGbGFncy5nZXQoaXNvMil9XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgc3R5bGU9e1tzdHlsZXMuZmxhZywgdGhpcy5wcm9wcy5mbGFnU3R5bGVdfVxuICAgICAgICAgICAgICAgICAgICAgICAgLz5cbiAgICAgICAgICAgICAgICAgICAgKX1cbiAgICAgICAgICAgICAgICA8L1RvdWNoYWJsZU9wYWNpdHk+XG4gICAgICAgICAgICAgICAgPFZpZXcgc3R5bGU9e3sgZmxleDogMSwgbWFyZ2luTGVmdDogdGhpcy5wcm9wcy5vZmZzZXQgfHwgMTAgfX0+XG4gICAgICAgICAgICAgICAgICAgIDxUZXh0Q29tcG9uZW50XG4gICAgICAgICAgICAgICAgICAgICAgICByZWY9eyhyZWYpID0+IHtcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICB0aGlzLmlucHV0UGhvbmUgPSByZWY7XG4gICAgICAgICAgICAgICAgICAgICAgICB9fVxuICAgICAgICAgICAgICAgICAgICAgICAgYWNjZXNzaWJpbGl0eUxhYmVsPXt0aGlzLmdldEFjY2Vzc2liaWxpdHlMYWJlbCgpfVxuICAgICAgICAgICAgICAgICAgICAgICAgZWRpdGFibGU9eyFkaXNhYmxlZH1cbiAgICAgICAgICAgICAgICAgICAgICAgIGF1dG9Db3JyZWN0PXtmYWxzZX1cbiAgICAgICAgICAgICAgICAgICAgICAgIHN0eWxlPXtbc3R5bGVzLnRleHQsIHRoaXMucHJvcHMudGV4dFN0eWxlXX1cbiAgICAgICAgICAgICAgICAgICAgICAgIG9uQ2hhbmdlVGV4dD17KHRleHQpID0+IHtcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICB0aGlzLm9uQ2hhbmdlUGhvbmVOdW1iZXIodGV4dCk7XG4gICAgICAgICAgICAgICAgICAgICAgICB9fVxuICAgICAgICAgICAgICAgICAgICAgICAga2V5Ym9hcmRUeXBlPVwicGhvbmUtcGFkXCJcbiAgICAgICAgICAgICAgICAgICAgICAgIHVuZGVybGluZUNvbG9yQW5kcm9pZD1cInJnYmEoMCwwLDAsMClcIlxuICAgICAgICAgICAgICAgICAgICAgICAgdmFsdWU9e2Rpc3BsYXlWYWx1ZX1cbiAgICAgICAgICAgICAgICAgICAgICAgIHsuLi50aGlzLnByb3BzLnRleHRQcm9wc31cbiAgICAgICAgICAgICAgICAgICAgLz5cbiAgICAgICAgICAgICAgICA8L1ZpZXc+XG5cbiAgICAgICAgICAgICAgICA8Q291bnRyeVBpY2tlclxuICAgICAgICAgICAgICAgICAgICByZWY9eyhyZWYpID0+IHtcbiAgICAgICAgICAgICAgICAgICAgICAgIHRoaXMucGlja2VyID0gcmVmO1xuICAgICAgICAgICAgICAgICAgICB9fVxuICAgICAgICAgICAgICAgICAgICBzZWxlY3RlZENvdW50cnk9e2lzbzJ9XG4gICAgICAgICAgICAgICAgICAgIG9uU3VibWl0PXt0aGlzLnNlbGVjdENvdW50cnl9XG4gICAgICAgICAgICAgICAgICAgIGJ1dHRvbkNvbG9yPXt0aGlzLnByb3BzLnBpY2tlckJ1dHRvbkNvbG9yfVxuICAgICAgICAgICAgICAgICAgICBjYW5jZWxUZXh0PXt0aGlzLnByb3BzLmNhbmNlbFRleHR9XG4gICAgICAgICAgICAgICAgICAgIGNhbmNlbFRleHRTdHlsZT17dGhpcy5wcm9wcy5jYW5jZWxUZXh0U3R5bGV9XG4gICAgICAgICAgICAgICAgICAgIGNvbmZpcm1UZXh0PXt0aGlzLnByb3BzLmNvbmZpcm1UZXh0fVxuICAgICAgICAgICAgICAgICAgICBjb25maXJtVGV4dFN0eWxlPXt0aGlzLnByb3BzLmNvbmZpcm1UZXh0U3R5bGV9XG4gICAgICAgICAgICAgICAgICAgIHBpY2tlckJhY2tncm91bmRDb2xvcj17dGhpcy5wcm9wcy5waWNrZXJCYWNrZ3JvdW5kQ29sb3J9XG4gICAgICAgICAgICAgICAgICAgIGl0ZW1TdHlsZT17dGhpcy5wcm9wcy5waWNrZXJJdGVtU3R5bGV9XG4gICAgICAgICAgICAgICAgICAgIG9uUHJlc3NDYW5jZWw9e3RoaXMucHJvcHMub25QcmVzc0NhbmNlbH1cbiAgICAgICAgICAgICAgICAgICAgb25QcmVzc0NvbmZpcm09e3RoaXMucHJvcHMub25QcmVzc0NvbmZpcm19XG4gICAgICAgICAgICAgICAgLz5cbiAgICAgICAgICAgIDwvVmlldz5cbiAgICAgICAgKTtcbiAgICB9XG59XG4iXX0= \ No newline at end of file diff --git a/dist/PhoneNumber.d.ts b/dist/PhoneNumber.d.ts new file mode 100644 index 00000000..ba3c21f9 --- /dev/null +++ b/dist/PhoneNumber.d.ts @@ -0,0 +1,14 @@ +declare class PhoneNumber { + getAllCountries(): any; + getDialCode(number: any): string; + getNumeric(str: any): any; + isNumeric(n: any): boolean; + getCountryCodeOfNumber(number: any): any; + parse(number: any, iso2: any): any; + isValidNumber(number: any, iso2: any): any; + format(number: any, iso2: any): any; + getNumberType(number: any, iso2: any): any; + getCountryDataByCode(iso2: any): any; +} +declare const _default: PhoneNumber; +export default _default; diff --git a/dist/PhoneNumber.js b/dist/PhoneNumber.js new file mode 100644 index 00000000..489949d1 --- /dev/null +++ b/dist/PhoneNumber.js @@ -0,0 +1,103 @@ +"use strict"; +var __importDefault = (this && this.__importDefault) || function (mod) { + return (mod && mod.__esModule) ? mod : { "default": mod }; +}; +Object.defineProperty(exports, "__esModule", { value: true }); +const lodash_1 = __importDefault(require("lodash")); +const google_libphonenumber_1 = __importDefault(require("google-libphonenumber")); +const country_1 = __importDefault(require("./country")); +const numberType_json_1 = __importDefault(require("./resources/numberType.json")); // eslint-disable-line @typescript-eslint/no-unused-vars +const phoneUtil = google_libphonenumber_1.default.PhoneNumberUtil.getInstance(); +const asYouTypeFormatter = google_libphonenumber_1.default.AsYouTypeFormatter; +class PhoneNumber { + // eslint-disable-next-line class-methods-use-this + getAllCountries() { + return country_1.default.getAll(); + } + getDialCode(number) { + let dialCode = ''; + // only interested in international numbers (starting with a plus) + if (number.charAt(0) === '+') { + let numericChars = ''; + // iterate over chars + for (let i = 0; i < number.length; i++) { + const c = number.charAt(i); + // if char is number + if (this.isNumeric(c)) { + numericChars += c; + // if current numericChars make a valid dial code + // if (this.countryCodes[numericChars]) { + if (country_1.default.getCountryCodes()[numericChars]) { + // store the actual raw string (useful for matching later) + dialCode = number.substr(0, i + 1); + } + // longest dial code is 4 chars + if (numericChars.length === 4) { + break; + } + } + } + } + return dialCode; + } + // eslint-disable-next-line class-methods-use-this + getNumeric(str) { + return str.replace(/\D/g, ''); + } + // eslint-disable-next-line class-methods-use-this + isNumeric(n) { + return !Number.isNaN(parseFloat(n)) && Number.isFinite(Number(n)); + } + getCountryCodeOfNumber(number) { + const dialCode = this.getDialCode(number); + const numeric = this.getNumeric(dialCode); + const countryCode = country_1.default.getCountryCodes()[numeric]; + // countryCode[0] can be null -> get first element that is not null + if (countryCode) { + return lodash_1.default.first(countryCode.filter((iso2) => iso2)); + } + return ''; + } + // eslint-disable-next-line class-methods-use-this + parse(number, iso2) { + try { + return phoneUtil.parse(number, iso2); + } + catch (err) { + console.log(`Exception was thrown: ${err.toString()}`); + return null; + } + } + isValidNumber(number, iso2) { + const phoneInfo = this.parse(number, iso2); + if (phoneInfo) { + return phoneUtil.isValidNumber(phoneInfo); + } + return false; + } + // eslint-disable-next-line class-methods-use-this + format(number, iso2) { + const formatter = new asYouTypeFormatter(iso2); // eslint-disable-line new-cap + let formatted; + number.replace(/-/g, '') + .replace(/ /g, '') + .replace(/\(/g, '') + .replace(/\)/g, '') + .split('') + .forEach((n) => { + formatted = formatter.inputDigit(n); + }); + return formatted; + } + getNumberType(number, iso2) { + const phoneInfo = this.parse(number, iso2); + const typeIndex = phoneInfo ? phoneUtil.getNumberType(phoneInfo) : -1; + return lodash_1.default.findKey(numberType_json_1.default, (noType) => noType === typeIndex); + } + // eslint-disable-next-line class-methods-use-this + getCountryDataByCode(iso2) { + return country_1.default.getCountryDataByCode(iso2); + } +} +exports.default = new PhoneNumber(); +//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiUGhvbmVOdW1iZXIuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvUGhvbmVOdW1iZXIudHN4Il0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7O0FBQUEsb0RBQXVCO0FBQ3ZCLGtGQUFtRDtBQUVuRCx3REFBZ0M7QUFFaEMsa0ZBQXFELENBQUMsd0RBQXdEO0FBRTlHLE1BQU0sU0FBUyxHQUFHLCtCQUFjLENBQUMsZUFBZSxDQUFDLFdBQVcsRUFBRSxDQUFDO0FBQy9ELE1BQU0sa0JBQWtCLEdBQUcsK0JBQWMsQ0FBQyxrQkFBa0IsQ0FBQztBQUU3RCxNQUFNLFdBQVc7SUFDYixrREFBa0Q7SUFDbEQsZUFBZTtRQUNYLE9BQU8saUJBQU8sQ0FBQyxNQUFNLEVBQUUsQ0FBQztJQUM1QixDQUFDO0lBRUQsV0FBVyxDQUFDLE1BQU07UUFDZCxJQUFJLFFBQVEsR0FBRyxFQUFFLENBQUM7UUFDbEIsa0VBQWtFO1FBQ2xFLElBQUksTUFBTSxDQUFDLE1BQU0sQ0FBQyxDQUFDLENBQUMsS0FBSyxHQUFHLEVBQUU7WUFDMUIsSUFBSSxZQUFZLEdBQUcsRUFBRSxDQUFDO1lBQ3RCLHFCQUFxQjtZQUNyQixLQUFLLElBQUksQ0FBQyxHQUFHLENBQUMsRUFBRSxDQUFDLEdBQUcsTUFBTSxDQUFDLE1BQU0sRUFBRSxDQUFDLEVBQUUsRUFBRTtnQkFDcEMsTUFBTSxDQUFDLEdBQUcsTUFBTSxDQUFDLE1BQU0sQ0FBQyxDQUFDLENBQUMsQ0FBQztnQkFDM0Isb0JBQW9CO2dCQUNwQixJQUFJLElBQUksQ0FBQyxTQUFTLENBQUMsQ0FBQyxDQUFDLEVBQUU7b0JBQ25CLFlBQVksSUFBSSxDQUFDLENBQUM7b0JBQ2xCLGlEQUFpRDtvQkFDakQseUNBQXlDO29CQUN6QyxJQUFJLGlCQUFPLENBQUMsZUFBZSxFQUFFLENBQUMsWUFBWSxDQUFDLEVBQUU7d0JBQ3pDLDBEQUEwRDt3QkFDMUQsUUFBUSxHQUFHLE1BQU0sQ0FBQyxNQUFNLENBQUMsQ0FBQyxFQUFFLENBQUMsR0FBRyxDQUFDLENBQUMsQ0FBQztxQkFDdEM7b0JBQ0QsK0JBQStCO29CQUMvQixJQUFJLFlBQVksQ0FBQyxNQUFNLEtBQUssQ0FBQyxFQUFFO3dCQUMzQixNQUFNO3FCQUNUO2lCQUNKO2FBQ0o7U0FDSjtRQUNELE9BQU8sUUFBUSxDQUFDO0lBQ3BCLENBQUM7SUFFRCxrREFBa0Q7SUFDbEQsVUFBVSxDQUFDLEdBQUc7UUFDVixPQUFPLEdBQUcsQ0FBQyxPQUFPLENBQUMsS0FBSyxFQUFFLEVBQUUsQ0FBQyxDQUFDO0lBQ2xDLENBQUM7SUFFRCxrREFBa0Q7SUFDbEQsU0FBUyxDQUFDLENBQUM7UUFDUCxPQUFPLENBQUMsTUFBTSxDQUFDLEtBQUssQ0FBQyxVQUFVLENBQUMsQ0FBQyxDQUFDLENBQUMsSUFBSSxNQUFNLENBQUMsUUFBUSxDQUFDLE1BQU0sQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDO0lBQ3RFLENBQUM7SUFFRCxzQkFBc0IsQ0FBQyxNQUFNO1FBQ3pCLE1BQU0sUUFBUSxHQUFHLElBQUksQ0FBQyxXQUFXLENBQUMsTUFBTSxDQUFDLENBQUM7UUFDMUMsTUFBTSxPQUFPLEdBQUcsSUFBSSxDQUFDLFVBQVUsQ0FBQyxRQUFRLENBQUMsQ0FBQztRQUMxQyxNQUFNLFdBQVcsR0FBRyxpQkFBTyxDQUFDLGVBQWUsRUFBRSxDQUFDLE9BQU8sQ0FBQyxDQUFDO1FBRXZELG1FQUFtRTtRQUNuRSxJQUFJLFdBQVcsRUFBRTtZQUNiLE9BQU8sZ0JBQUMsQ0FBQyxLQUFLLENBQUMsV0FBVyxDQUFDLE1BQU0sQ0FBQyxDQUFDLElBQVMsRUFBRSxFQUFFLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQztTQUMzRDtRQUVELE9BQU8sRUFBRSxDQUFDO0lBQ2QsQ0FBQztJQUVELGtEQUFrRDtJQUNsRCxLQUFLLENBQUMsTUFBTSxFQUFFLElBQUk7UUFDZCxJQUFJO1lBQ0EsT0FBTyxTQUFTLENBQUMsS0FBSyxDQUFDLE1BQU0sRUFBRSxJQUFJLENBQUMsQ0FBQztTQUN4QztRQUFDLE9BQU8sR0FBUSxFQUFFO1lBQ2YsT0FBTyxDQUFDLEdBQUcsQ0FBQyx5QkFBeUIsR0FBRyxDQUFDLFFBQVEsRUFBRSxFQUFFLENBQUMsQ0FBQztZQUN2RCxPQUFPLElBQUksQ0FBQztTQUNmO0lBQ0wsQ0FBQztJQUVELGFBQWEsQ0FBQyxNQUFNLEVBQUUsSUFBSTtRQUN0QixNQUFNLFNBQVMsR0FBRyxJQUFJLENBQUMsS0FBSyxDQUFDLE1BQU0sRUFBRSxJQUFJLENBQUMsQ0FBQztRQUUzQyxJQUFJLFNBQVMsRUFBRTtZQUNYLE9BQU8sU0FBUyxDQUFDLGFBQWEsQ0FBQyxTQUFTLENBQUMsQ0FBQztTQUM3QztRQUVELE9BQU8sS0FBSyxDQUFDO0lBQ2pCLENBQUM7SUFFRCxrREFBa0Q7SUFDbEQsTUFBTSxDQUFDLE1BQU0sRUFBRSxJQUFJO1FBQ2YsTUFBTSxTQUFTLEdBQUcsSUFBSSxrQkFBa0IsQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLDhCQUE4QjtRQUM5RSxJQUFJLFNBQVMsQ0FBQztRQUVkLE1BQU0sQ0FBQyxPQUFPLENBQUMsSUFBSSxFQUFFLEVBQUUsQ0FBQzthQUNuQixPQUFPLENBQUMsSUFBSSxFQUFFLEVBQUUsQ0FBQzthQUNqQixPQUFPLENBQUMsS0FBSyxFQUFFLEVBQUUsQ0FBQzthQUNsQixPQUFPLENBQUMsS0FBSyxFQUFFLEVBQUUsQ0FBQzthQUNsQixLQUFLLENBQUMsRUFBRSxDQUFDO2FBQ1QsT0FBTyxDQUFDLENBQUMsQ0FBTSxFQUFFLEVBQUU7WUFDaEIsU0FBUyxHQUFHLFNBQVMsQ0FBQyxVQUFVLENBQUMsQ0FBQyxDQUFDLENBQUM7UUFDeEMsQ0FBQyxDQUFDLENBQUM7UUFFUCxPQUFPLFNBQVMsQ0FBQztJQUNyQixDQUFDO0lBRUQsYUFBYSxDQUFDLE1BQU0sRUFBRSxJQUFJO1FBQ3RCLE1BQU0sU0FBUyxHQUFHLElBQUksQ0FBQyxLQUFLLENBQUMsTUFBTSxFQUFFLElBQUksQ0FBQyxDQUFDO1FBQzNDLE1BQU0sU0FBUyxHQUFHLFNBQVMsQ0FBQyxDQUFDLENBQUMsU0FBUyxDQUFDLGFBQWEsQ0FBQyxTQUFTLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUM7UUFDdEUsT0FBTyxnQkFBQyxDQUFDLE9BQU8sQ0FBQyx5QkFBVSxFQUFFLENBQUMsTUFBTSxFQUFFLEVBQUUsQ0FBQyxNQUFNLEtBQUssU0FBUyxDQUFDLENBQUM7SUFDbkUsQ0FBQztJQUVELGtEQUFrRDtJQUNsRCxvQkFBb0IsQ0FBQyxJQUFJO1FBQ3JCLE9BQU8saUJBQU8sQ0FBQyxvQkFBb0IsQ0FBQyxJQUFJLENBQUMsQ0FBQztJQUM5QyxDQUFDO0NBQ0o7QUFFRCxrQkFBZSxJQUFJLFdBQVcsRUFBRSxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IF8gZnJvbSAnbG9kYXNoJztcbmltcG9ydCBsaWJQaG9uZU51bWJlciBmcm9tICdnb29nbGUtbGlicGhvbmVudW1iZXInO1xuXG5pbXBvcnQgQ291bnRyeSBmcm9tICcuL2NvdW50cnknO1xuaW1wb3J0IGNvdW50cmllcyBmcm9tICcuL3Jlc291cmNlcy9jb3VudHJpZXMuanNvbic7IC8vIGVzbGludC1kaXNhYmxlLWxpbmUgQHR5cGVzY3JpcHQtZXNsaW50L25vLXVudXNlZC12YXJzXG5pbXBvcnQgbnVtYmVyVHlwZSBmcm9tICcuL3Jlc291cmNlcy9udW1iZXJUeXBlLmpzb24nOyAvLyBlc2xpbnQtZGlzYWJsZS1saW5lIEB0eXBlc2NyaXB0LWVzbGludC9uby11bnVzZWQtdmFyc1xuXG5jb25zdCBwaG9uZVV0aWwgPSBsaWJQaG9uZU51bWJlci5QaG9uZU51bWJlclV0aWwuZ2V0SW5zdGFuY2UoKTtcbmNvbnN0IGFzWW91VHlwZUZvcm1hdHRlciA9IGxpYlBob25lTnVtYmVyLkFzWW91VHlwZUZvcm1hdHRlcjtcblxuY2xhc3MgUGhvbmVOdW1iZXIge1xuICAgIC8vIGVzbGludC1kaXNhYmxlLW5leHQtbGluZSBjbGFzcy1tZXRob2RzLXVzZS10aGlzXG4gICAgZ2V0QWxsQ291bnRyaWVzKCkge1xuICAgICAgICByZXR1cm4gQ291bnRyeS5nZXRBbGwoKTtcbiAgICB9XG5cbiAgICBnZXREaWFsQ29kZShudW1iZXIpIHtcbiAgICAgICAgbGV0IGRpYWxDb2RlID0gJyc7XG4gICAgICAgIC8vIG9ubHkgaW50ZXJlc3RlZCBpbiBpbnRlcm5hdGlvbmFsIG51bWJlcnMgKHN0YXJ0aW5nIHdpdGggYSBwbHVzKVxuICAgICAgICBpZiAobnVtYmVyLmNoYXJBdCgwKSA9PT0gJysnKSB7XG4gICAgICAgICAgICBsZXQgbnVtZXJpY0NoYXJzID0gJyc7XG4gICAgICAgICAgICAvLyBpdGVyYXRlIG92ZXIgY2hhcnNcbiAgICAgICAgICAgIGZvciAobGV0IGkgPSAwOyBpIDwgbnVtYmVyLmxlbmd0aDsgaSsrKSB7XG4gICAgICAgICAgICAgICAgY29uc3QgYyA9IG51bWJlci5jaGFyQXQoaSk7XG4gICAgICAgICAgICAgICAgLy8gaWYgY2hhciBpcyBudW1iZXJcbiAgICAgICAgICAgICAgICBpZiAodGhpcy5pc051bWVyaWMoYykpIHtcbiAgICAgICAgICAgICAgICAgICAgbnVtZXJpY0NoYXJzICs9IGM7XG4gICAgICAgICAgICAgICAgICAgIC8vIGlmIGN1cnJlbnQgbnVtZXJpY0NoYXJzIG1ha2UgYSB2YWxpZCBkaWFsIGNvZGVcbiAgICAgICAgICAgICAgICAgICAgLy8gaWYgKHRoaXMuY291bnRyeUNvZGVzW251bWVyaWNDaGFyc10pIHtcbiAgICAgICAgICAgICAgICAgICAgaWYgKENvdW50cnkuZ2V0Q291bnRyeUNvZGVzKClbbnVtZXJpY0NoYXJzXSkge1xuICAgICAgICAgICAgICAgICAgICAgICAgLy8gc3RvcmUgdGhlIGFjdHVhbCByYXcgc3RyaW5nICh1c2VmdWwgZm9yIG1hdGNoaW5nIGxhdGVyKVxuICAgICAgICAgICAgICAgICAgICAgICAgZGlhbENvZGUgPSBudW1iZXIuc3Vic3RyKDAsIGkgKyAxKTtcbiAgICAgICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgICAgICAgICAvLyBsb25nZXN0IGRpYWwgY29kZSBpcyA0IGNoYXJzXG4gICAgICAgICAgICAgICAgICAgIGlmIChudW1lcmljQ2hhcnMubGVuZ3RoID09PSA0KSB7XG4gICAgICAgICAgICAgICAgICAgICAgICBicmVhaztcbiAgICAgICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgICAgIH1cbiAgICAgICAgICAgIH1cbiAgICAgICAgfVxuICAgICAgICByZXR1cm4gZGlhbENvZGU7XG4gICAgfVxuXG4gICAgLy8gZXNsaW50LWRpc2FibGUtbmV4dC1saW5lIGNsYXNzLW1ldGhvZHMtdXNlLXRoaXNcbiAgICBnZXROdW1lcmljKHN0cikge1xuICAgICAgICByZXR1cm4gc3RyLnJlcGxhY2UoL1xcRC9nLCAnJyk7XG4gICAgfVxuXG4gICAgLy8gZXNsaW50LWRpc2FibGUtbmV4dC1saW5lIGNsYXNzLW1ldGhvZHMtdXNlLXRoaXNcbiAgICBpc051bWVyaWMobikge1xuICAgICAgICByZXR1cm4gIU51bWJlci5pc05hTihwYXJzZUZsb2F0KG4pKSAmJiBOdW1iZXIuaXNGaW5pdGUoTnVtYmVyKG4pKTtcbiAgICB9XG5cbiAgICBnZXRDb3VudHJ5Q29kZU9mTnVtYmVyKG51bWJlcikge1xuICAgICAgICBjb25zdCBkaWFsQ29kZSA9IHRoaXMuZ2V0RGlhbENvZGUobnVtYmVyKTtcbiAgICAgICAgY29uc3QgbnVtZXJpYyA9IHRoaXMuZ2V0TnVtZXJpYyhkaWFsQ29kZSk7XG4gICAgICAgIGNvbnN0IGNvdW50cnlDb2RlID0gQ291bnRyeS5nZXRDb3VudHJ5Q29kZXMoKVtudW1lcmljXTtcblxuICAgICAgICAvLyBjb3VudHJ5Q29kZVswXSBjYW4gYmUgbnVsbCAtPiBnZXQgZmlyc3QgZWxlbWVudCB0aGF0IGlzIG5vdCBudWxsXG4gICAgICAgIGlmIChjb3VudHJ5Q29kZSkge1xuICAgICAgICAgICAgcmV0dXJuIF8uZmlyc3QoY291bnRyeUNvZGUuZmlsdGVyKChpc28yOiBhbnkpID0+IGlzbzIpKTtcbiAgICAgICAgfVxuXG4gICAgICAgIHJldHVybiAnJztcbiAgICB9XG5cbiAgICAvLyBlc2xpbnQtZGlzYWJsZS1uZXh0LWxpbmUgY2xhc3MtbWV0aG9kcy11c2UtdGhpc1xuICAgIHBhcnNlKG51bWJlciwgaXNvMikge1xuICAgICAgICB0cnkge1xuICAgICAgICAgICAgcmV0dXJuIHBob25lVXRpbC5wYXJzZShudW1iZXIsIGlzbzIpO1xuICAgICAgICB9IGNhdGNoIChlcnI6IGFueSkge1xuICAgICAgICAgICAgY29uc29sZS5sb2coYEV4Y2VwdGlvbiB3YXMgdGhyb3duOiAke2Vyci50b1N0cmluZygpfWApO1xuICAgICAgICAgICAgcmV0dXJuIG51bGw7XG4gICAgICAgIH1cbiAgICB9XG5cbiAgICBpc1ZhbGlkTnVtYmVyKG51bWJlciwgaXNvMikge1xuICAgICAgICBjb25zdCBwaG9uZUluZm8gPSB0aGlzLnBhcnNlKG51bWJlciwgaXNvMik7XG5cbiAgICAgICAgaWYgKHBob25lSW5mbykge1xuICAgICAgICAgICAgcmV0dXJuIHBob25lVXRpbC5pc1ZhbGlkTnVtYmVyKHBob25lSW5mbyk7XG4gICAgICAgIH1cblxuICAgICAgICByZXR1cm4gZmFsc2U7XG4gICAgfVxuXG4gICAgLy8gZXNsaW50LWRpc2FibGUtbmV4dC1saW5lIGNsYXNzLW1ldGhvZHMtdXNlLXRoaXNcbiAgICBmb3JtYXQobnVtYmVyLCBpc28yKSB7XG4gICAgICAgIGNvbnN0IGZvcm1hdHRlciA9IG5ldyBhc1lvdVR5cGVGb3JtYXR0ZXIoaXNvMik7IC8vIGVzbGludC1kaXNhYmxlLWxpbmUgbmV3LWNhcFxuICAgICAgICBsZXQgZm9ybWF0dGVkO1xuXG4gICAgICAgIG51bWJlci5yZXBsYWNlKC8tL2csICcnKVxuICAgICAgICAgICAgLnJlcGxhY2UoLyAvZywgJycpXG4gICAgICAgICAgICAucmVwbGFjZSgvXFwoL2csICcnKVxuICAgICAgICAgICAgLnJlcGxhY2UoL1xcKS9nLCAnJylcbiAgICAgICAgICAgIC5zcGxpdCgnJylcbiAgICAgICAgICAgIC5mb3JFYWNoKChuOiBhbnkpID0+IHtcbiAgICAgICAgICAgICAgICBmb3JtYXR0ZWQgPSBmb3JtYXR0ZXIuaW5wdXREaWdpdChuKTtcbiAgICAgICAgICAgIH0pO1xuXG4gICAgICAgIHJldHVybiBmb3JtYXR0ZWQ7XG4gICAgfVxuXG4gICAgZ2V0TnVtYmVyVHlwZShudW1iZXIsIGlzbzIpIHtcbiAgICAgICAgY29uc3QgcGhvbmVJbmZvID0gdGhpcy5wYXJzZShudW1iZXIsIGlzbzIpO1xuICAgICAgICBjb25zdCB0eXBlSW5kZXggPSBwaG9uZUluZm8gPyBwaG9uZVV0aWwuZ2V0TnVtYmVyVHlwZShwaG9uZUluZm8pIDogLTE7XG4gICAgICAgIHJldHVybiBfLmZpbmRLZXkobnVtYmVyVHlwZSwgKG5vVHlwZSkgPT4gbm9UeXBlID09PSB0eXBlSW5kZXgpO1xuICAgIH1cblxuICAgIC8vIGVzbGludC1kaXNhYmxlLW5leHQtbGluZSBjbGFzcy1tZXRob2RzLXVzZS10aGlzXG4gICAgZ2V0Q291bnRyeURhdGFCeUNvZGUoaXNvMikge1xuICAgICAgICByZXR1cm4gQ291bnRyeS5nZXRDb3VudHJ5RGF0YUJ5Q29kZShpc28yKTtcbiAgICB9XG59XG5cbmV4cG9ydCBkZWZhdWx0IG5ldyBQaG9uZU51bWJlcigpO1xuIl19 \ No newline at end of file diff --git a/dist/country.d.ts b/dist/country.d.ts new file mode 100644 index 00000000..b9b2a053 --- /dev/null +++ b/dist/country.d.ts @@ -0,0 +1,13 @@ +declare class Country { + private countryCodes; + private countriesData; + private countries; + constructor(); + setCustomCountriesData(json: any): void; + addCountryCode(iso2: any, dialCode: string, priority?: any): void; + getAll(): any; + getCountryCodes(): any[]; + getCountryDataByCode(iso2: any): any; +} +declare const _default: Country; +export default _default; diff --git a/dist/country.js b/dist/country.js new file mode 100644 index 00000000..dbfcd002 --- /dev/null +++ b/dist/country.js @@ -0,0 +1,44 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +const lodash_1 = require("lodash"); +class Country { + constructor() { + this.countryCodes = []; + this.countriesData = null; + } + setCustomCountriesData(json) { + this.countriesData = json; + } + addCountryCode(iso2, dialCode, priority) { + if (!(dialCode in this.countryCodes)) { + this.countryCodes[dialCode] = []; + } + const index = priority || 0; + this.countryCodes[dialCode][index] = iso2; + } + getAll() { + if (!this.countries) { + this.countries = (0, lodash_1.orderBy)(this.countriesData || require('./resources/countries.json'), // eslint-disable-line global-require + ['name'], ['asc']); + } + return this.countries; + } + getCountryCodes() { + if (!this.countryCodes.length) { + this.getAll().forEach((country) => { + this.addCountryCode(country.iso2, country.dialCode, country.priority); + if (country.areaCodes) { + country.areaCodes.forEach((areaCode) => { + this.addCountryCode(country.iso2, country.dialCode + areaCode); + }); + } + }); + } + return this.countryCodes; + } + getCountryDataByCode(iso2) { + return (0, lodash_1.find)(this.getAll(), (country) => country.iso2 === iso2); + } +} +exports.default = new Country(); +//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY291bnRyeS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uL3NyYy9jb3VudHJ5LnRzeCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOztBQUFBLG1DQUF1QztBQUV2QyxNQUFNLE9BQU87SUFPVDtRQUNJLElBQUksQ0FBQyxZQUFZLEdBQUcsRUFBRSxDQUFDO1FBRXZCLElBQUksQ0FBQyxhQUFhLEdBQUcsSUFBSSxDQUFDO0lBQzlCLENBQUM7SUFFRCxzQkFBc0IsQ0FBQyxJQUFJO1FBQ3ZCLElBQUksQ0FBQyxhQUFhLEdBQUcsSUFBSSxDQUFDO0lBQzlCLENBQUM7SUFFRCxjQUFjLENBQUMsSUFBSSxFQUFFLFFBQWdCLEVBQUUsUUFBUztRQUM1QyxJQUFJLENBQUMsQ0FBQyxRQUFRLElBQUksSUFBSSxDQUFDLFlBQVksQ0FBQyxFQUFFO1lBQ2xDLElBQUksQ0FBQyxZQUFZLENBQUMsUUFBUSxDQUFDLEdBQUcsRUFBRSxDQUFDO1NBQ3BDO1FBRUQsTUFBTSxLQUFLLEdBQUcsUUFBUSxJQUFJLENBQUMsQ0FBQztRQUM1QixJQUFJLENBQUMsWUFBWSxDQUFDLFFBQVEsQ0FBQyxDQUFDLEtBQUssQ0FBQyxHQUFHLElBQUksQ0FBQztJQUM5QyxDQUFDO0lBRUQsTUFBTTtRQUNGLElBQUksQ0FBQyxJQUFJLENBQUMsU0FBUyxFQUFFO1lBQ2pCLElBQUksQ0FBQyxTQUFTLEdBQUcsSUFBQSxnQkFBTyxFQUNwQixJQUFJLENBQUMsYUFBYSxJQUFJLE9BQU8sQ0FBQyw0QkFBNEIsQ0FBQyxFQUFFLHFDQUFxQztZQUNsRyxDQUFDLE1BQU0sQ0FBQyxFQUNSLENBQUMsS0FBSyxDQUFDLENBQ1YsQ0FBQztTQUNMO1FBRUQsT0FBTyxJQUFJLENBQUMsU0FBUyxDQUFDO0lBQzFCLENBQUM7SUFFRCxlQUFlO1FBQ1gsSUFBSSxDQUFDLElBQUksQ0FBQyxZQUFZLENBQUMsTUFBTSxFQUFFO1lBQzNCLElBQUksQ0FBQyxNQUFNLEVBQUUsQ0FBQyxPQUFPLENBQUMsQ0FBQyxPQUFPLEVBQUUsRUFBRTtnQkFDOUIsSUFBSSxDQUFDLGNBQWMsQ0FBQyxPQUFPLENBQUMsSUFBSSxFQUFFLE9BQU8sQ0FBQyxRQUFRLEVBQUUsT0FBTyxDQUFDLFFBQVEsQ0FBQyxDQUFDO2dCQUN0RSxJQUFJLE9BQU8sQ0FBQyxTQUFTLEVBQUU7b0JBQ25CLE9BQU8sQ0FBQyxTQUFTLENBQUMsT0FBTyxDQUFDLENBQUMsUUFBUSxFQUFFLEVBQUU7d0JBQ25DLElBQUksQ0FBQyxjQUFjLENBQUMsT0FBTyxDQUFDLElBQUksRUFBRSxPQUFPLENBQUMsUUFBUSxHQUFHLFFBQVEsQ0FBQyxDQUFDO29CQUNuRSxDQUFDLENBQUMsQ0FBQztpQkFDTjtZQUNMLENBQUMsQ0FBQyxDQUFDO1NBQ047UUFDRCxPQUFPLElBQUksQ0FBQyxZQUFZLENBQUM7SUFDN0IsQ0FBQztJQUVELG9CQUFvQixDQUFDLElBQUk7UUFDckIsT0FBTyxJQUFBLGFBQUksRUFBQyxJQUFJLENBQUMsTUFBTSxFQUFFLEVBQUUsQ0FBQyxPQUFPLEVBQUUsRUFBRSxDQUFDLE9BQU8sQ0FBQyxJQUFJLEtBQUssSUFBSSxDQUFDLENBQUM7SUFDbkUsQ0FBQztDQUNKO0FBRUQsa0JBQWUsSUFBSSxPQUFPLEVBQUUsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IGZpbmQsIG9yZGVyQnkgfSBmcm9tICdsb2Rhc2gnO1xuXG5jbGFzcyBDb3VudHJ5IHtcbiAgICBwcml2YXRlIGNvdW50cnlDb2RlczogYW55W107XG5cbiAgICBwcml2YXRlIGNvdW50cmllc0RhdGE6IGFueTtcblxuICAgIHByaXZhdGUgY291bnRyaWVzOiBhbnk7XG5cbiAgICBjb25zdHJ1Y3RvcigpIHtcbiAgICAgICAgdGhpcy5jb3VudHJ5Q29kZXMgPSBbXTtcblxuICAgICAgICB0aGlzLmNvdW50cmllc0RhdGEgPSBudWxsO1xuICAgIH1cblxuICAgIHNldEN1c3RvbUNvdW50cmllc0RhdGEoanNvbikge1xuICAgICAgICB0aGlzLmNvdW50cmllc0RhdGEgPSBqc29uO1xuICAgIH1cblxuICAgIGFkZENvdW50cnlDb2RlKGlzbzIsIGRpYWxDb2RlOiBzdHJpbmcsIHByaW9yaXR5Pykge1xuICAgICAgICBpZiAoIShkaWFsQ29kZSBpbiB0aGlzLmNvdW50cnlDb2RlcykpIHtcbiAgICAgICAgICAgIHRoaXMuY291bnRyeUNvZGVzW2RpYWxDb2RlXSA9IFtdO1xuICAgICAgICB9XG5cbiAgICAgICAgY29uc3QgaW5kZXggPSBwcmlvcml0eSB8fCAwO1xuICAgICAgICB0aGlzLmNvdW50cnlDb2Rlc1tkaWFsQ29kZV1baW5kZXhdID0gaXNvMjtcbiAgICB9XG5cbiAgICBnZXRBbGwoKSB7XG4gICAgICAgIGlmICghdGhpcy5jb3VudHJpZXMpIHtcbiAgICAgICAgICAgIHRoaXMuY291bnRyaWVzID0gb3JkZXJCeShcbiAgICAgICAgICAgICAgICB0aGlzLmNvdW50cmllc0RhdGEgfHwgcmVxdWlyZSgnLi9yZXNvdXJjZXMvY291bnRyaWVzLmpzb24nKSwgLy8gZXNsaW50LWRpc2FibGUtbGluZSBnbG9iYWwtcmVxdWlyZVxuICAgICAgICAgICAgICAgIFsnbmFtZSddLFxuICAgICAgICAgICAgICAgIFsnYXNjJ10sXG4gICAgICAgICAgICApO1xuICAgICAgICB9XG5cbiAgICAgICAgcmV0dXJuIHRoaXMuY291bnRyaWVzO1xuICAgIH1cblxuICAgIGdldENvdW50cnlDb2RlcygpIHtcbiAgICAgICAgaWYgKCF0aGlzLmNvdW50cnlDb2Rlcy5sZW5ndGgpIHtcbiAgICAgICAgICAgIHRoaXMuZ2V0QWxsKCkuZm9yRWFjaCgoY291bnRyeSkgPT4ge1xuICAgICAgICAgICAgICAgIHRoaXMuYWRkQ291bnRyeUNvZGUoY291bnRyeS5pc28yLCBjb3VudHJ5LmRpYWxDb2RlLCBjb3VudHJ5LnByaW9yaXR5KTtcbiAgICAgICAgICAgICAgICBpZiAoY291bnRyeS5hcmVhQ29kZXMpIHtcbiAgICAgICAgICAgICAgICAgICAgY291bnRyeS5hcmVhQ29kZXMuZm9yRWFjaCgoYXJlYUNvZGUpID0+IHtcbiAgICAgICAgICAgICAgICAgICAgICAgIHRoaXMuYWRkQ291bnRyeUNvZGUoY291bnRyeS5pc28yLCBjb3VudHJ5LmRpYWxDb2RlICsgYXJlYUNvZGUpO1xuICAgICAgICAgICAgICAgICAgICB9KTtcbiAgICAgICAgICAgICAgICB9XG4gICAgICAgICAgICB9KTtcbiAgICAgICAgfVxuICAgICAgICByZXR1cm4gdGhpcy5jb3VudHJ5Q29kZXM7XG4gICAgfVxuXG4gICAgZ2V0Q291bnRyeURhdGFCeUNvZGUoaXNvMikge1xuICAgICAgICByZXR1cm4gZmluZCh0aGlzLmdldEFsbCgpLCAoY291bnRyeSkgPT4gY291bnRyeS5pc28yID09PSBpc28yKTtcbiAgICB9XG59XG5cbmV4cG9ydCBkZWZhdWx0IG5ldyBDb3VudHJ5KCk7XG4iXX0= \ No newline at end of file diff --git a/dist/index.d.ts b/dist/index.d.ts new file mode 100644 index 00000000..78a64eff --- /dev/null +++ b/dist/index.d.ts @@ -0,0 +1,5 @@ +import PhoneInput from './PhoneInput'; +export { default as CountryPicker } from './CountryPicker'; +export { default as CountryList } from './resources/countries.json'; +export { default as PhoneNumber } from './PhoneNumber'; +export default PhoneInput; diff --git a/dist/index.js b/dist/index.js new file mode 100644 index 00000000..5afb7bdc --- /dev/null +++ b/dist/index.js @@ -0,0 +1,15 @@ +"use strict"; +var __importDefault = (this && this.__importDefault) || function (mod) { + return (mod && mod.__esModule) ? mod : { "default": mod }; +}; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.PhoneNumber = exports.CountryList = exports.CountryPicker = void 0; +const PhoneInput_1 = __importDefault(require("./PhoneInput")); +var CountryPicker_1 = require("./CountryPicker"); +Object.defineProperty(exports, "CountryPicker", { enumerable: true, get: function () { return __importDefault(CountryPicker_1).default; } }); +var countries_json_1 = require("./resources/countries.json"); +Object.defineProperty(exports, "CountryList", { enumerable: true, get: function () { return __importDefault(countries_json_1).default; } }); +var PhoneNumber_1 = require("./PhoneNumber"); +Object.defineProperty(exports, "PhoneNumber", { enumerable: true, get: function () { return __importDefault(PhoneNumber_1).default; } }); +exports.default = PhoneInput_1.default; +//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvaW5kZXgudHN4Il0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7OztBQUFBLDhEQUFzQztBQUV0QyxpREFBMkQ7QUFBbEQsK0hBQUEsT0FBTyxPQUFpQjtBQUNqQyw2REFBb0U7QUFBM0QsOEhBQUEsT0FBTyxPQUFlO0FBQy9CLDZDQUF1RDtBQUE5QywySEFBQSxPQUFPLE9BQWU7QUFDL0Isa0JBQWUsb0JBQVUsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCBQaG9uZUlucHV0IGZyb20gJy4vUGhvbmVJbnB1dCc7XG5cbmV4cG9ydCB7IGRlZmF1bHQgYXMgQ291bnRyeVBpY2tlciB9IGZyb20gJy4vQ291bnRyeVBpY2tlcic7XG5leHBvcnQgeyBkZWZhdWx0IGFzIENvdW50cnlMaXN0IH0gZnJvbSAnLi9yZXNvdXJjZXMvY291bnRyaWVzLmpzb24nO1xuZXhwb3J0IHsgZGVmYXVsdCBhcyBQaG9uZU51bWJlciB9IGZyb20gJy4vUGhvbmVOdW1iZXInO1xuZXhwb3J0IGRlZmF1bHQgUGhvbmVJbnB1dDtcbiJdfQ== \ No newline at end of file diff --git a/dist/resources/countries.json b/dist/resources/countries.json new file mode 100644 index 00000000..1737d70a --- /dev/null +++ b/dist/resources/countries.json @@ -0,0 +1,1788 @@ +[ + { + "name": "Afghanistan (‫افغانستان‬‎)", + "iso2": "af", + "dialCode": "93", + "priority": 0, + "areaCodes": null + }, + { + "name": "Albania (Shqipëri)", + "iso2": "al", + "dialCode": "355", + "priority": 0, + "areaCodes": null + }, + { + "name": "Algeria (‫الجزائر‬‎)", + "iso2": "dz", + "dialCode": "213", + "priority": 0, + "areaCodes": null + }, + { + "name": "American Samoa", + "iso2": "as", + "dialCode": "1684", + "priority": 0, + "areaCodes": null + }, + { + "name": "Andorra", + "iso2": "ad", + "dialCode": "376", + "priority": 0, + "areaCodes": null + }, + { + "name": "Angola", + "iso2": "ao", + "dialCode": "244", + "priority": 0, + "areaCodes": null + }, + { + "name": "Anguilla", + "iso2": "ai", + "dialCode": "1264", + "priority": 0, + "areaCodes": null + }, + { + "name": "Antigua and Barbuda", + "iso2": "ag", + "dialCode": "1268", + "priority": 0, + "areaCodes": null + }, + { + "name": "Argentina", + "iso2": "ar", + "dialCode": "54", + "priority": 0, + "areaCodes": null + }, + { + "name": "Armenia (Հայաստան)", + "iso2": "am", + "dialCode": "374", + "priority": 0, + "areaCodes": null + }, + { + "name": "Aruba", + "iso2": "aw", + "dialCode": "297", + "priority": 0, + "areaCodes": null + }, + { + "name": "Australia", + "iso2": "au", + "dialCode": "61", + "priority": 0, + "areaCodes": null + }, + { + "name": "Austria (Österreich)", + "iso2": "at", + "dialCode": "43", + "priority": 0, + "areaCodes": null + }, + { + "name": "Azerbaijan (Azərbaycan)", + "iso2": "az", + "dialCode": "994", + "priority": 0, + "areaCodes": null + }, + { + "name": "Bahamas", + "iso2": "bs", + "dialCode": "1242", + "priority": 0, + "areaCodes": null + }, + { + "name": "Bahrain (‫البحرين‬‎)", + "iso2": "bh", + "dialCode": "973", + "priority": 0, + "areaCodes": null + }, + { + "name": "Bangladesh (বাংলাদেশ)", + "iso2": "bd", + "dialCode": "880", + "priority": 0, + "areaCodes": null + }, + { + "name": "Barbados", + "iso2": "bb", + "dialCode": "1246", + "priority": 0, + "areaCodes": null + }, + { + "name": "Belarus (Беларусь)", + "iso2": "by", + "dialCode": "375", + "priority": 0, + "areaCodes": null + }, + { + "name": "Belgium (België)", + "iso2": "be", + "dialCode": "32", + "priority": 0, + "areaCodes": null + }, + { + "name": "Belize", + "iso2": "bz", + "dialCode": "501", + "priority": 0, + "areaCodes": null + }, + { + "name": "Benin (Bénin)", + "iso2": "bj", + "dialCode": "229", + "priority": 0, + "areaCodes": null + }, + { + "name": "Bermuda", + "iso2": "bm", + "dialCode": "1441", + "priority": 0, + "areaCodes": null + }, + { + "name": "Bhutan (འབྲུག)", + "iso2": "bt", + "dialCode": "975", + "priority": 0, + "areaCodes": null + }, + { + "name": "Bolivia", + "iso2": "bo", + "dialCode": "591", + "priority": 0, + "areaCodes": null + }, + { + "name": "Bosnia and Herzegovina (Босна и Херцеговина)", + "iso2": "ba", + "dialCode": "387", + "priority": 0, + "areaCodes": null + }, + { + "name": "Botswana", + "iso2": "bw", + "dialCode": "267", + "priority": 0, + "areaCodes": null + }, + { + "name": "Brazil (Brasil)", + "iso2": "br", + "dialCode": "55", + "priority": 0, + "areaCodes": null + }, + { + "name": "British Indian Ocean Territory", + "iso2": "io", + "dialCode": "246", + "priority": 0, + "areaCodes": null + }, + { + "name": "British Virgin Islands", + "iso2": "vg", + "dialCode": "1284", + "priority": 0, + "areaCodes": null + }, + { + "name": "Brunei", + "iso2": "bn", + "dialCode": "673", + "priority": 0, + "areaCodes": null + }, + { + "name": "Bulgaria (България)", + "iso2": "bg", + "dialCode": "359", + "priority": 0, + "areaCodes": null + }, + { + "name": "Burkina Faso", + "iso2": "bf", + "dialCode": "226", + "priority": 0, + "areaCodes": null + }, + { + "name": "Burundi (Uburundi)", + "iso2": "bi", + "dialCode": "257", + "priority": 0, + "areaCodes": null + }, + { + "name": "Cambodia (កម្ពុជា)", + "iso2": "kh", + "dialCode": "855", + "priority": 0, + "areaCodes": null + }, + { + "name": "Cameroon (Cameroun)", + "iso2": "cm", + "dialCode": "237", + "priority": 0, + "areaCodes": null + }, + { + "name": "Canada", + "iso2": "ca", + "dialCode": "1", + "priority": 1, + "areaCodes": [ + "204", + "226", + "236", + "249", + "250", + "289", + "306", + "343", + "365", + "387", + "403", + "416", + "418", + "431", + "437", + "438", + "450", + "506", + "514", + "519", + "548", + "579", + "581", + "587", + "604", + "613", + "639", + "647", + "672", + "705", + "709", + "742", + "778", + "780", + "782", + "807", + "819", + "825", + "867", + "873", + "902", + "905" + ] + }, + { + "name": "Cape Verde (Kabu Verdi)", + "iso2": "cv", + "dialCode": "238", + "priority": 0, + "areaCodes": null + }, + { + "name": "Caribbean Netherlands", + "iso2": "bq", + "dialCode": "599", + "priority": 1, + "areaCodes": null + }, + { + "name": "Cayman Islands", + "iso2": "ky", + "dialCode": "1345", + "priority": 0, + "areaCodes": null + }, + { + "name": "Central African Republic (République centrafricaine)", + "iso2": "cf", + "dialCode": "236", + "priority": 0, + "areaCodes": null + }, + { + "name": "Chad (Tchad)", + "iso2": "td", + "dialCode": "235", + "priority": 0, + "areaCodes": null + }, + { + "name": "Chile", + "iso2": "cl", + "dialCode": "56", + "priority": 0, + "areaCodes": null + }, + { + "name": "China (中国)", + "iso2": "cn", + "dialCode": "86", + "priority": 0, + "areaCodes": null + }, + { + "name": "Christmas Island", + "iso2": "cx", + "dialCode": "61", + "priority": 2, + "areaCodes": null + }, + { + "name": "Cocos (Keeling) Islands", + "iso2": "cc", + "dialCode": "61", + "priority": 1, + "areaCodes": null + }, + { + "name": "Colombia", + "iso2": "co", + "dialCode": "57", + "priority": 0, + "areaCodes": null + }, + { + "name": "Comoros (‫جزر القمر‬‎)", + "iso2": "km", + "dialCode": "269", + "priority": 0, + "areaCodes": null + }, + { + "name": "Congo (DRC) (Jamhuri ya Kidemokrasia ya Kongo)", + "iso2": "cd", + "dialCode": "243", + "priority": 0, + "areaCodes": null + }, + { + "name": "Congo (Republic) (Congo-Brazzaville)", + "iso2": "cg", + "dialCode": "242", + "priority": 0, + "areaCodes": null + }, + { + "name": "Cook Islands", + "iso2": "ck", + "dialCode": "682", + "priority": 0, + "areaCodes": null + }, + { + "name": "Costa Rica", + "iso2": "cr", + "dialCode": "506", + "priority": 0, + "areaCodes": null + }, + { + "name": "Côte d’Ivoire", + "iso2": "ci", + "dialCode": "225", + "priority": 0, + "areaCodes": null + }, + { + "name": "Croatia (Hrvatska)", + "iso2": "hr", + "dialCode": "385", + "priority": 0, + "areaCodes": null + }, + { + "name": "Cuba", + "iso2": "cu", + "dialCode": "53", + "priority": 0, + "areaCodes": null + }, + { + "name": "Curaçao", + "iso2": "cw", + "dialCode": "599", + "priority": 0, + "areaCodes": null + }, + { + "name": "Cyprus (Κύπρος)", + "iso2": "cy", + "dialCode": "357", + "priority": 0, + "areaCodes": null + }, + { + "name": "Czech Republic (Česká republika)", + "iso2": "cz", + "dialCode": "420", + "priority": 0, + "areaCodes": null + }, + { + "name": "Denmark (Danmark)", + "iso2": "dk", + "dialCode": "45", + "priority": 0, + "areaCodes": null + }, + { + "name": "Djibouti", + "iso2": "dj", + "dialCode": "253", + "priority": 0, + "areaCodes": null + }, + { + "name": "Dominica", + "iso2": "dm", + "dialCode": "1767", + "priority": 0, + "areaCodes": null + }, + { + "name": "Dominican Republic (República Dominicana)", + "iso2": "do", + "dialCode": "1", + "priority": 2, + "areaCodes": [ + "809", + "829", + "849" + ] + }, + { + "name": "Ecuador", + "iso2": "ec", + "dialCode": "593", + "priority": 0, + "areaCodes": null + }, + { + "name": "Egypt (‫مصر‬‎)", + "iso2": "eg", + "dialCode": "20", + "priority": 0, + "areaCodes": null + }, + { + "name": "El Salvador", + "iso2": "sv", + "dialCode": "503", + "priority": 0, + "areaCodes": null + }, + { + "name": "Equatorial Guinea (Guinea Ecuatorial)", + "iso2": "gq", + "dialCode": "240", + "priority": 0, + "areaCodes": null + }, + { + "name": "Eritrea", + "iso2": "er", + "dialCode": "291", + "priority": 0, + "areaCodes": null + }, + { + "name": "Estonia (Eesti)", + "iso2": "ee", + "dialCode": "372", + "priority": 0, + "areaCodes": null + }, + { + "name": "Ethiopia", + "iso2": "et", + "dialCode": "251", + "priority": 0, + "areaCodes": null + }, + { + "name": "Falkland Islands (Islas Malvinas)", + "iso2": "fk", + "dialCode": "500", + "priority": 0, + "areaCodes": null + }, + { + "name": "Faroe Islands (Føroyar)", + "iso2": "fo", + "dialCode": "298", + "priority": 0, + "areaCodes": null + }, + { + "name": "Fiji", + "iso2": "fj", + "dialCode": "679", + "priority": 0, + "areaCodes": null + }, + { + "name": "Finland (Suomi)", + "iso2": "fi", + "dialCode": "358", + "priority": 0, + "areaCodes": null + }, + { + "name": "France", + "iso2": "fr", + "dialCode": "33", + "priority": 0, + "areaCodes": null + }, + { + "name": "French Guiana (Guyane française)", + "iso2": "gf", + "dialCode": "594", + "priority": 0, + "areaCodes": null + }, + { + "name": "French Polynesia (Polynésie française)", + "iso2": "pf", + "dialCode": "689", + "priority": 0, + "areaCodes": null + }, + { + "name": "Gabon", + "iso2": "ga", + "dialCode": "241", + "priority": 0, + "areaCodes": null + }, + { + "name": "Gambia", + "iso2": "gm", + "dialCode": "220", + "priority": 0, + "areaCodes": null + }, + { + "name": "Georgia (საქართველო)", + "iso2": "ge", + "dialCode": "995", + "priority": 0, + "areaCodes": null + }, + { + "name": "Germany (Deutschland)", + "iso2": "de", + "dialCode": "49", + "priority": 0, + "areaCodes": null + }, + { + "name": "Ghana (Gaana)", + "iso2": "gh", + "dialCode": "233", + "priority": 0, + "areaCodes": null + }, + { + "name": "Gibraltar", + "iso2": "gi", + "dialCode": "350", + "priority": 0, + "areaCodes": null + }, + { + "name": "Greece (Ελλάδα)", + "iso2": "gr", + "dialCode": "30", + "priority": 0, + "areaCodes": null + }, + { + "name": "Greenland (Kalaallit Nunaat)", + "iso2": "gl", + "dialCode": "299", + "priority": 0, + "areaCodes": null + }, + { + "name": "Grenada", + "iso2": "gd", + "dialCode": "1473", + "priority": 0, + "areaCodes": null + }, + { + "name": "Guadeloupe", + "iso2": "gp", + "dialCode": "590", + "priority": 0, + "areaCodes": null + }, + { + "name": "Guam", + "iso2": "gu", + "dialCode": "1671", + "priority": 0, + "areaCodes": null + }, + { + "name": "Guatemala", + "iso2": "gt", + "dialCode": "502", + "priority": 0, + "areaCodes": null + }, + { + "name": "Guernsey", + "iso2": "gg", + "dialCode": "44", + "priority": 1, + "areaCodes": null + }, + { + "name": "Guinea (Guinée)", + "iso2": "gn", + "dialCode": "224", + "priority": 0, + "areaCodes": null + }, + { + "name": "Guinea-Bissau (Guiné Bissau)", + "iso2": "gw", + "dialCode": "245", + "priority": 0, + "areaCodes": null + }, + { + "name": "Guyana", + "iso2": "gy", + "dialCode": "592", + "priority": 0, + "areaCodes": null + }, + { + "name": "Haiti", + "iso2": "ht", + "dialCode": "509", + "priority": 0, + "areaCodes": null + }, + { + "name": "Honduras", + "iso2": "hn", + "dialCode": "504", + "priority": 0, + "areaCodes": null + }, + { + "name": "Hong Kong (香港)", + "iso2": "hk", + "dialCode": "852", + "priority": 0, + "areaCodes": null + }, + { + "name": "Hungary (Magyarország)", + "iso2": "hu", + "dialCode": "36", + "priority": 0, + "areaCodes": null + }, + { + "name": "Iceland (Ísland)", + "iso2": "is", + "dialCode": "354", + "priority": 0, + "areaCodes": null + }, + { + "name": "India (भारत)", + "iso2": "in", + "dialCode": "91", + "priority": 0, + "areaCodes": null + }, + { + "name": "Indonesia", + "iso2": "id", + "dialCode": "62", + "priority": 0, + "areaCodes": null + }, + { + "name": "Iran (‫ایران‬‎)", + "iso2": "ir", + "dialCode": "98", + "priority": 0, + "areaCodes": null + }, + { + "name": "Iraq (‫العراق‬‎)", + "iso2": "iq", + "dialCode": "964", + "priority": 0, + "areaCodes": null + }, + { + "name": "Ireland", + "iso2": "ie", + "dialCode": "353", + "priority": 0, + "areaCodes": null + }, + { + "name": "Isle of Man", + "iso2": "im", + "dialCode": "44", + "priority": 2, + "areaCodes": null + }, + { + "name": "Israel (‫ישראל‬‎)", + "iso2": "il", + "dialCode": "972", + "priority": 0, + "areaCodes": null + }, + { + "name": "Italy (Italia)", + "iso2": "it", + "dialCode": "39", + "priority": 0, + "areaCodes": null + }, + { + "name": "Jamaica", + "iso2": "jm", + "dialCode": "1876", + "priority": 0, + "areaCodes": null + }, + { + "name": "Japan (日本)", + "iso2": "jp", + "dialCode": "81", + "priority": 0, + "areaCodes": null + }, + { + "name": "Jersey", + "iso2": "je", + "dialCode": "44", + "priority": 3, + "areaCodes": null + }, + { + "name": "Jordan (‫الأردن‬‎)", + "iso2": "jo", + "dialCode": "962", + "priority": 0, + "areaCodes": null + }, + { + "name": "Kazakhstan (Казахстан)", + "iso2": "kz", + "dialCode": "7", + "priority": 1, + "areaCodes": [ + "700", + "701", + "702", + "705", + "707", + "710", + "711", + "712", + "713", + "714", + "715", + "716", + "717", + "718", + "719", + "721", + "722", + "723", + "724", + "725", + "726", + "727", + "728", + "729", + "775", + "777", + "760", + "762", + "763", + "764", + "771", + "751", + "778", + "785" + ] + }, + { + "name": "Kenya", + "iso2": "ke", + "dialCode": "254", + "priority": 0, + "areaCodes": null + }, + { + "name": "Kiribati", + "iso2": "ki", + "dialCode": "686", + "priority": 0, + "areaCodes": null + }, + { + "name": "Kosovo", + "iso2": "xk", + "dialCode": "383", + "priority": 0, + "areaCodes": null + }, + { + "name": "Kuwait (‫الكويت‬‎)", + "iso2": "kw", + "dialCode": "965", + "priority": 0, + "areaCodes": null + }, + { + "name": "Kyrgyzstan (Кыргызстан)", + "iso2": "kg", + "dialCode": "996", + "priority": 0, + "areaCodes": null + }, + { + "name": "Laos (ລາວ)", + "iso2": "la", + "dialCode": "856", + "priority": 0, + "areaCodes": null + }, + { + "name": "Latvia (Latvija)", + "iso2": "lv", + "dialCode": "371", + "priority": 0, + "areaCodes": null + }, + { + "name": "Lebanon (‫لبنان‬‎)", + "iso2": "lb", + "dialCode": "961", + "priority": 0, + "areaCodes": null + }, + { + "name": "Lesotho", + "iso2": "ls", + "dialCode": "266", + "priority": 0, + "areaCodes": null + }, + { + "name": "Liberia", + "iso2": "lr", + "dialCode": "231", + "priority": 0, + "areaCodes": null + }, + { + "name": "Libya (‫ليبيا‬‎)", + "iso2": "ly", + "dialCode": "218", + "priority": 0, + "areaCodes": null + }, + { + "name": "Liechtenstein", + "iso2": "li", + "dialCode": "423", + "priority": 0, + "areaCodes": null + }, + { + "name": "Lithuania (Lietuva)", + "iso2": "lt", + "dialCode": "370", + "priority": 0, + "areaCodes": null + }, + { + "name": "Luxembourg", + "iso2": "lu", + "dialCode": "352", + "priority": 0, + "areaCodes": null + }, + { + "name": "Macau (澳門)", + "iso2": "mo", + "dialCode": "853", + "priority": 0, + "areaCodes": null + }, + { + "name": "Macedonia (FYROM) (Македонија)", + "iso2": "mk", + "dialCode": "389", + "priority": 0, + "areaCodes": null + }, + { + "name": "Madagascar (Madagasikara)", + "iso2": "mg", + "dialCode": "261", + "priority": 0, + "areaCodes": null + }, + { + "name": "Malawi", + "iso2": "mw", + "dialCode": "265", + "priority": 0, + "areaCodes": null + }, + { + "name": "Malaysia", + "iso2": "my", + "dialCode": "60", + "priority": 0, + "areaCodes": null + }, + { + "name": "Maldives", + "iso2": "mv", + "dialCode": "960", + "priority": 0, + "areaCodes": null + }, + { + "name": "Mali", + "iso2": "ml", + "dialCode": "223", + "priority": 0, + "areaCodes": null + }, + { + "name": "Malta", + "iso2": "mt", + "dialCode": "356", + "priority": 0, + "areaCodes": null + }, + { + "name": "Marshall Islands", + "iso2": "mh", + "dialCode": "692", + "priority": 0, + "areaCodes": null + }, + { + "name": "Martinique", + "iso2": "mq", + "dialCode": "596", + "priority": 0, + "areaCodes": null + }, + { + "name": "Mauritania (‫موريتانيا‬‎)", + "iso2": "mr", + "dialCode": "222", + "priority": 0, + "areaCodes": null + }, + { + "name": "Mauritius (Moris)", + "iso2": "mu", + "dialCode": "230", + "priority": 0, + "areaCodes": null + }, + { + "name": "Mayotte", + "iso2": "yt", + "dialCode": "262", + "priority": 1, + "areaCodes": null + }, + { + "name": "Mexico (México)", + "iso2": "mx", + "dialCode": "52", + "priority": 0, + "areaCodes": null + }, + { + "name": "Micronesia", + "iso2": "fm", + "dialCode": "691", + "priority": 0, + "areaCodes": null + }, + { + "name": "Moldova (Republica Moldova)", + "iso2": "md", + "dialCode": "373", + "priority": 0, + "areaCodes": null + }, + { + "name": "Monaco", + "iso2": "mc", + "dialCode": "377", + "priority": 0, + "areaCodes": null + }, + { + "name": "Mongolia (Монгол)", + "iso2": "mn", + "dialCode": "976", + "priority": 0, + "areaCodes": null + }, + { + "name": "Montenegro (Crna Gora)", + "iso2": "me", + "dialCode": "382", + "priority": 0, + "areaCodes": null + }, + { + "name": "Montserrat", + "iso2": "ms", + "dialCode": "1664", + "priority": 0, + "areaCodes": null + }, + { + "name": "Morocco (‫المغرب‬‎)", + "iso2": "ma", + "dialCode": "212", + "priority": 0, + "areaCodes": null + }, + { + "name": "Mozambique (Moçambique)", + "iso2": "mz", + "dialCode": "258", + "priority": 0, + "areaCodes": null + }, + { + "name": "Myanmar (Burma)", + "iso2": "mm", + "dialCode": "95", + "priority": 0, + "areaCodes": null + }, + { + "name": "Namibia (Namibië)", + "iso2": "na", + "dialCode": "264", + "priority": 0, + "areaCodes": null + }, + { + "name": "Nauru", + "iso2": "nr", + "dialCode": "674", + "priority": 0, + "areaCodes": null + }, + { + "name": "Nepal (नेपाल)", + "iso2": "np", + "dialCode": "977", + "priority": 0, + "areaCodes": null + }, + { + "name": "Netherlands (Nederland)", + "iso2": "nl", + "dialCode": "31", + "priority": 0, + "areaCodes": null + }, + { + "name": "New Caledonia (Nouvelle-Calédonie)", + "iso2": "nc", + "dialCode": "687", + "priority": 0, + "areaCodes": null + }, + { + "name": "New Zealand", + "iso2": "nz", + "dialCode": "64", + "priority": 0, + "areaCodes": null + }, + { + "name": "Nicaragua", + "iso2": "ni", + "dialCode": "505", + "priority": 0, + "areaCodes": null + }, + { + "name": "Niger (Nijar)", + "iso2": "ne", + "dialCode": "227", + "priority": 0, + "areaCodes": null + }, + { + "name": "Nigeria", + "iso2": "ng", + "dialCode": "234", + "priority": 0, + "areaCodes": null + }, + { + "name": "Niue", + "iso2": "nu", + "dialCode": "683", + "priority": 0, + "areaCodes": null + }, + { + "name": "Norfolk Island", + "iso2": "nf", + "dialCode": "672", + "priority": 0, + "areaCodes": null + }, + { + "name": "North Korea (조선 민주주의 인민 공화국)", + "iso2": "kp", + "dialCode": "850", + "priority": 0, + "areaCodes": null + }, + { + "name": "Northern Mariana Islands", + "iso2": "mp", + "dialCode": "1670", + "priority": 0, + "areaCodes": null + }, + { + "name": "Norway (Norge)", + "iso2": "no", + "dialCode": "47", + "priority": 0, + "areaCodes": null + }, + { + "name": "Oman (‫عُمان‬‎)", + "iso2": "om", + "dialCode": "968", + "priority": 0, + "areaCodes": null + }, + { + "name": "Pakistan (‫پاکستان‬‎)", + "iso2": "pk", + "dialCode": "92", + "priority": 0, + "areaCodes": null + }, + { + "name": "Palau", + "iso2": "pw", + "dialCode": "680", + "priority": 0, + "areaCodes": null + }, + { + "name": "Palestine (‫فلسطين‬‎)", + "iso2": "ps", + "dialCode": "970", + "priority": 0, + "areaCodes": null + }, + { + "name": "Panama (Panamá)", + "iso2": "pa", + "dialCode": "507", + "priority": 0, + "areaCodes": null + }, + { + "name": "Papua New Guinea", + "iso2": "pg", + "dialCode": "675", + "priority": 0, + "areaCodes": null + }, + { + "name": "Paraguay", + "iso2": "py", + "dialCode": "595", + "priority": 0, + "areaCodes": null + }, + { + "name": "Peru (Perú)", + "iso2": "pe", + "dialCode": "51", + "priority": 0, + "areaCodes": null + }, + { + "name": "Philippines", + "iso2": "ph", + "dialCode": "63", + "priority": 0, + "areaCodes": null + }, + { + "name": "Poland (Polska)", + "iso2": "pl", + "dialCode": "48", + "priority": 0, + "areaCodes": null + }, + { + "name": "Portugal", + "iso2": "pt", + "dialCode": "351", + "priority": 0, + "areaCodes": null + }, + { + "name": "Puerto Rico", + "iso2": "pr", + "dialCode": "1", + "priority": 3, + "areaCodes": [ + "787", + "939" + ] + }, + { + "name": "Qatar (‫قطر‬‎)", + "iso2": "qa", + "dialCode": "974", + "priority": 0, + "areaCodes": null + }, + { + "name": "Réunion (La Réunion)", + "iso2": "re", + "dialCode": "262", + "priority": 0, + "areaCodes": null + }, + { + "name": "Romania (România)", + "iso2": "ro", + "dialCode": "40", + "priority": 0, + "areaCodes": null + }, + { + "name": "Russia (Россия)", + "iso2": "ru", + "dialCode": "7", + "priority": 0, + "areaCodes": null + }, + { + "name": "Rwanda", + "iso2": "rw", + "dialCode": "250", + "priority": 0, + "areaCodes": null + }, + { + "name": "Saint Barthélemy (Saint-Barthélemy)", + "iso2": "bl", + "dialCode": "590", + "priority": 1, + "areaCodes": null + }, + { + "name": "Saint Helena", + "iso2": "sh", + "dialCode": "290", + "priority": 0, + "areaCodes": null + }, + { + "name": "Saint Kitts and Nevis", + "iso2": "kn", + "dialCode": "1869", + "priority": 0, + "areaCodes": null + }, + { + "name": "Saint Lucia", + "iso2": "lc", + "dialCode": "1758", + "priority": 0, + "areaCodes": null + }, + { + "name": "Saint Martin (Saint-Martin (partie française))", + "iso2": "mf", + "dialCode": "590", + "priority": 2, + "areaCodes": null + }, + { + "name": "Saint Pierre and Miquelon (Saint-Pierre-et-Miquelon)", + "iso2": "pm", + "dialCode": "508", + "priority": 0, + "areaCodes": null + }, + { + "name": "Saint Vincent and the Grenadines", + "iso2": "vc", + "dialCode": "1784", + "priority": 0, + "areaCodes": null + }, + { + "name": "Samoa", + "iso2": "ws", + "dialCode": "685", + "priority": 0, + "areaCodes": null + }, + { + "name": "San Marino", + "iso2": "sm", + "dialCode": "378", + "priority": 0, + "areaCodes": null + }, + { + "name": "São Tomé and Príncipe (São Tomé e Príncipe)", + "iso2": "st", + "dialCode": "239", + "priority": 0, + "areaCodes": null + }, + { + "name": "Saudi Arabia (‫المملكة العربية السعودية‬‎)", + "iso2": "sa", + "dialCode": "966", + "priority": 0, + "areaCodes": null + }, + { + "name": "Senegal (Sénégal)", + "iso2": "sn", + "dialCode": "221", + "priority": 0, + "areaCodes": null + }, + { + "name": "Serbia (Србија)", + "iso2": "rs", + "dialCode": "381", + "priority": 0, + "areaCodes": null + }, + { + "name": "Seychelles", + "iso2": "sc", + "dialCode": "248", + "priority": 0, + "areaCodes": null + }, + { + "name": "Sierra Leone", + "iso2": "sl", + "dialCode": "232", + "priority": 0, + "areaCodes": null + }, + { + "name": "Singapore", + "iso2": "sg", + "dialCode": "65", + "priority": 0, + "areaCodes": null + }, + { + "name": "Sint Maarten", + "iso2": "sx", + "dialCode": "1721", + "priority": 0, + "areaCodes": null + }, + { + "name": "Slovakia (Slovensko)", + "iso2": "sk", + "dialCode": "421", + "priority": 0, + "areaCodes": null + }, + { + "name": "Slovenia (Slovenija)", + "iso2": "si", + "dialCode": "386", + "priority": 0, + "areaCodes": null + }, + { + "name": "Solomon Islands", + "iso2": "sb", + "dialCode": "677", + "priority": 0, + "areaCodes": null + }, + { + "name": "Somalia (Soomaaliya)", + "iso2": "so", + "dialCode": "252", + "priority": 0, + "areaCodes": null + }, + { + "name": "South Africa", + "iso2": "za", + "dialCode": "27", + "priority": 0, + "areaCodes": null + }, + { + "name": "South Korea (대한민국)", + "iso2": "kr", + "dialCode": "82", + "priority": 0, + "areaCodes": null + }, + { + "name": "South Sudan (‫جنوب السودان‬‎)", + "iso2": "ss", + "dialCode": "211", + "priority": 0, + "areaCodes": null + }, + { + "name": "Spain (España)", + "iso2": "es", + "dialCode": "34", + "priority": 0, + "areaCodes": null + }, + { + "name": "Sri Lanka (ශ්‍රී ලංකාව)", + "iso2": "lk", + "dialCode": "94", + "priority": 0, + "areaCodes": null + }, + { + "name": "Sudan (‫السودان‬‎)", + "iso2": "sd", + "dialCode": "249", + "priority": 0, + "areaCodes": null + }, + { + "name": "Suriname", + "iso2": "sr", + "dialCode": "597", + "priority": 0, + "areaCodes": null + }, + { + "name": "Svalbard and Jan Mayen", + "iso2": "sj", + "dialCode": "47", + "priority": 1, + "areaCodes": null + }, + { + "name": "Swaziland", + "iso2": "sz", + "dialCode": "268", + "priority": 0, + "areaCodes": null + }, + { + "name": "Sweden (Sverige)", + "iso2": "se", + "dialCode": "46", + "priority": 0, + "areaCodes": null + }, + { + "name": "Switzerland (Schweiz)", + "iso2": "ch", + "dialCode": "41", + "priority": 0, + "areaCodes": null + }, + { + "name": "Syria (‫سوريا‬‎)", + "iso2": "sy", + "dialCode": "963", + "priority": 0, + "areaCodes": null + }, + { + "name": "Taiwan (台灣)", + "iso2": "tw", + "dialCode": "886", + "priority": 0, + "areaCodes": null + }, + { + "name": "Tajikistan", + "iso2": "tj", + "dialCode": "992", + "priority": 0, + "areaCodes": null + }, + { + "name": "Tanzania", + "iso2": "tz", + "dialCode": "255", + "priority": 0, + "areaCodes": null + }, + { + "name": "Thailand (ไทย)", + "iso2": "th", + "dialCode": "66", + "priority": 0, + "areaCodes": null + }, + { + "name": "Timor-Leste", + "iso2": "tl", + "dialCode": "670", + "priority": 0, + "areaCodes": null + }, + { + "name": "Togo", + "iso2": "tg", + "dialCode": "228", + "priority": 0, + "areaCodes": null + }, + { + "name": "Tokelau", + "iso2": "tk", + "dialCode": "690", + "priority": 0, + "areaCodes": null + }, + { + "name": "Tonga", + "iso2": "to", + "dialCode": "676", + "priority": 0, + "areaCodes": null + }, + { + "name": "Trinidad and Tobago", + "iso2": "tt", + "dialCode": "1868", + "priority": 0, + "areaCodes": null + }, + { + "name": "Tunisia (‫تونس‬‎)", + "iso2": "tn", + "dialCode": "216", + "priority": 0, + "areaCodes": null + }, + { + "name": "Turkey (Türkiye)", + "iso2": "tr", + "dialCode": "90", + "priority": 0, + "areaCodes": null + }, + { + "name": "Turkmenistan", + "iso2": "tm", + "dialCode": "993", + "priority": 0, + "areaCodes": null + }, + { + "name": "Turks and Caicos Islands", + "iso2": "tc", + "dialCode": "1649", + "priority": 0, + "areaCodes": null + }, + { + "name": "Tuvalu", + "iso2": "tv", + "dialCode": "688", + "priority": 0, + "areaCodes": null + }, + { + "name": "U.S. Virgin Islands", + "iso2": "vi", + "dialCode": "1340", + "priority": 0, + "areaCodes": null + }, + { + "name": "Uganda", + "iso2": "ug", + "dialCode": "256", + "priority": 0, + "areaCodes": null + }, + { + "name": "Ukraine (Україна)", + "iso2": "ua", + "dialCode": "380", + "priority": 0, + "areaCodes": null + }, + { + "name": "United Arab Emirates (‫الإمارات العربية المتحدة‬‎)", + "iso2": "ae", + "dialCode": "971", + "priority": 0, + "areaCodes": null + }, + { + "name": "United Kingdom", + "iso2": "gb", + "dialCode": "44", + "priority": 0, + "areaCodes": null + }, + { + "name": "United States", + "iso2": "us", + "dialCode": "1", + "priority": 0, + "areaCodes": null + }, + { + "name": "Uruguay", + "iso2": "uy", + "dialCode": "598", + "priority": 0, + "areaCodes": null + }, + { + "name": "Uzbekistan (Oʻzbekiston)", + "iso2": "uz", + "dialCode": "998", + "priority": 0, + "areaCodes": null + }, + { + "name": "Vanuatu", + "iso2": "vu", + "dialCode": "678", + "priority": 0, + "areaCodes": null + }, + { + "name": "Vatican City (Città del Vaticano)", + "iso2": "va", + "dialCode": "39", + "priority": 1, + "areaCodes": null + }, + { + "name": "Venezuela", + "iso2": "ve", + "dialCode": "58", + "priority": 0, + "areaCodes": null + }, + { + "name": "Vietnam (Việt Nam)", + "iso2": "vn", + "dialCode": "84", + "priority": 0, + "areaCodes": null + }, + { + "name": "Wallis and Futuna", + "iso2": "wf", + "dialCode": "681", + "priority": 0, + "areaCodes": null + }, + { + "name": "Western Sahara (‫الصحراء الغربية‬‎)", + "iso2": "eh", + "dialCode": "212", + "priority": 1, + "areaCodes": null + }, + { + "name": "Yemen (‫اليمن‬‎)", + "iso2": "ye", + "dialCode": "967", + "priority": 0, + "areaCodes": null + }, + { + "name": "Zambia", + "iso2": "zm", + "dialCode": "260", + "priority": 0, + "areaCodes": null + }, + { + "name": "Zimbabwe", + "iso2": "zw", + "dialCode": "263", + "priority": 0, + "areaCodes": null + }, + { + "name": "Åland Islands", + "iso2": "ax", + "dialCode": "358", + "priority": 1, + "areaCodes": null + } +] diff --git a/dist/resources/flags/images/ad.png b/dist/resources/flags/images/ad.png new file mode 100644 index 00000000..966a5046 Binary files /dev/null and b/dist/resources/flags/images/ad.png differ diff --git a/dist/resources/flags/images/ae.png b/dist/resources/flags/images/ae.png new file mode 100644 index 00000000..8d839a97 Binary files /dev/null and b/dist/resources/flags/images/ae.png differ diff --git a/dist/resources/flags/images/af.png b/dist/resources/flags/images/af.png new file mode 100644 index 00000000..2751b7c2 Binary files /dev/null and b/dist/resources/flags/images/af.png differ diff --git a/dist/resources/flags/images/ag.png b/dist/resources/flags/images/ag.png new file mode 100644 index 00000000..1e5df7b2 Binary files /dev/null and b/dist/resources/flags/images/ag.png differ diff --git a/dist/resources/flags/images/ai.png b/dist/resources/flags/images/ai.png new file mode 100644 index 00000000..e80f1dc8 Binary files /dev/null and b/dist/resources/flags/images/ai.png differ diff --git a/dist/resources/flags/images/al.png b/dist/resources/flags/images/al.png new file mode 100644 index 00000000..2551d3d6 Binary files /dev/null and b/dist/resources/flags/images/al.png differ diff --git a/dist/resources/flags/images/am.png b/dist/resources/flags/images/am.png new file mode 100644 index 00000000..8438429a Binary files /dev/null and b/dist/resources/flags/images/am.png differ diff --git a/dist/resources/flags/images/ao.png b/dist/resources/flags/images/ao.png new file mode 100644 index 00000000..2b55ade4 Binary files /dev/null and b/dist/resources/flags/images/ao.png differ diff --git a/dist/resources/flags/images/ar.png b/dist/resources/flags/images/ar.png new file mode 100644 index 00000000..510cc20d Binary files /dev/null and b/dist/resources/flags/images/ar.png differ diff --git a/dist/resources/flags/images/as.png b/dist/resources/flags/images/as.png new file mode 100644 index 00000000..9daf765a Binary files /dev/null and b/dist/resources/flags/images/as.png differ diff --git a/dist/resources/flags/images/at.png b/dist/resources/flags/images/at.png new file mode 100644 index 00000000..11727aa4 Binary files /dev/null and b/dist/resources/flags/images/at.png differ diff --git a/dist/resources/flags/images/au.png b/dist/resources/flags/images/au.png new file mode 100644 index 00000000..af786d93 Binary files /dev/null and b/dist/resources/flags/images/au.png differ diff --git a/dist/resources/flags/images/aw.png b/dist/resources/flags/images/aw.png new file mode 100644 index 00000000..c5ca2bd5 Binary files /dev/null and b/dist/resources/flags/images/aw.png differ diff --git a/dist/resources/flags/images/ax.png b/dist/resources/flags/images/ax.png new file mode 100644 index 00000000..1eed3b63 Binary files /dev/null and b/dist/resources/flags/images/ax.png differ diff --git a/dist/resources/flags/images/az.png b/dist/resources/flags/images/az.png new file mode 100644 index 00000000..ea70b978 Binary files /dev/null and b/dist/resources/flags/images/az.png differ diff --git a/dist/resources/flags/images/ba.png b/dist/resources/flags/images/ba.png new file mode 100644 index 00000000..3ea10eb0 Binary files /dev/null and b/dist/resources/flags/images/ba.png differ diff --git a/dist/resources/flags/images/bb.png b/dist/resources/flags/images/bb.png new file mode 100644 index 00000000..5237aa69 Binary files /dev/null and b/dist/resources/flags/images/bb.png differ diff --git a/dist/resources/flags/images/bd.png b/dist/resources/flags/images/bd.png new file mode 100644 index 00000000..fdd7e369 Binary files /dev/null and b/dist/resources/flags/images/bd.png differ diff --git a/dist/resources/flags/images/be.png b/dist/resources/flags/images/be.png new file mode 100644 index 00000000..9c23ab3e Binary files /dev/null and b/dist/resources/flags/images/be.png differ diff --git a/dist/resources/flags/images/bf.png b/dist/resources/flags/images/bf.png new file mode 100644 index 00000000..8633da8e Binary files /dev/null and b/dist/resources/flags/images/bf.png differ diff --git a/dist/resources/flags/images/bg.png b/dist/resources/flags/images/bg.png new file mode 100644 index 00000000..df33a4bc Binary files /dev/null and b/dist/resources/flags/images/bg.png differ diff --git a/dist/resources/flags/images/bh.png b/dist/resources/flags/images/bh.png new file mode 100644 index 00000000..4a7eb323 Binary files /dev/null and b/dist/resources/flags/images/bh.png differ diff --git a/dist/resources/flags/images/bi.png b/dist/resources/flags/images/bi.png new file mode 100644 index 00000000..d76590a4 Binary files /dev/null and b/dist/resources/flags/images/bi.png differ diff --git a/dist/resources/flags/images/bj.png b/dist/resources/flags/images/bj.png new file mode 100644 index 00000000..1c4a69c1 Binary files /dev/null and b/dist/resources/flags/images/bj.png differ diff --git a/dist/resources/flags/images/bl.png b/dist/resources/flags/images/bl.png new file mode 100644 index 00000000..038b9d2f Binary files /dev/null and b/dist/resources/flags/images/bl.png differ diff --git a/dist/resources/flags/images/bm.png b/dist/resources/flags/images/bm.png new file mode 100644 index 00000000..f39d440b Binary files /dev/null and b/dist/resources/flags/images/bm.png differ diff --git a/dist/resources/flags/images/bn.png b/dist/resources/flags/images/bn.png new file mode 100644 index 00000000..a6f333e3 Binary files /dev/null and b/dist/resources/flags/images/bn.png differ diff --git a/dist/resources/flags/images/bo.png b/dist/resources/flags/images/bo.png new file mode 100644 index 00000000..274bc165 Binary files /dev/null and b/dist/resources/flags/images/bo.png differ diff --git a/dist/resources/flags/images/bq.png b/dist/resources/flags/images/bq.png new file mode 100644 index 00000000..0930cce1 Binary files /dev/null and b/dist/resources/flags/images/bq.png differ diff --git a/dist/resources/flags/images/br.png b/dist/resources/flags/images/br.png new file mode 100644 index 00000000..34ccb941 Binary files /dev/null and b/dist/resources/flags/images/br.png differ diff --git a/dist/resources/flags/images/bs.png b/dist/resources/flags/images/bs.png new file mode 100644 index 00000000..2934f7df Binary files /dev/null and b/dist/resources/flags/images/bs.png differ diff --git a/dist/resources/flags/images/bt.png b/dist/resources/flags/images/bt.png new file mode 100644 index 00000000..6372182e Binary files /dev/null and b/dist/resources/flags/images/bt.png differ diff --git a/dist/resources/flags/images/bw.png b/dist/resources/flags/images/bw.png new file mode 100644 index 00000000..c1f71c0d Binary files /dev/null and b/dist/resources/flags/images/bw.png differ diff --git a/dist/resources/flags/images/by.png b/dist/resources/flags/images/by.png new file mode 100644 index 00000000..5b06d5cc Binary files /dev/null and b/dist/resources/flags/images/by.png differ diff --git a/dist/resources/flags/images/bz.png b/dist/resources/flags/images/bz.png new file mode 100644 index 00000000..6abd9aa7 Binary files /dev/null and b/dist/resources/flags/images/bz.png differ diff --git a/dist/resources/flags/images/ca.png b/dist/resources/flags/images/ca.png new file mode 100644 index 00000000..aa8de065 Binary files /dev/null and b/dist/resources/flags/images/ca.png differ diff --git a/dist/resources/flags/images/cc.png b/dist/resources/flags/images/cc.png new file mode 100644 index 00000000..25fb9eeb Binary files /dev/null and b/dist/resources/flags/images/cc.png differ diff --git a/dist/resources/flags/images/cd.png b/dist/resources/flags/images/cd.png new file mode 100644 index 00000000..86172bfe Binary files /dev/null and b/dist/resources/flags/images/cd.png differ diff --git a/dist/resources/flags/images/cf.png b/dist/resources/flags/images/cf.png new file mode 100644 index 00000000..9d075b11 Binary files /dev/null and b/dist/resources/flags/images/cf.png differ diff --git a/dist/resources/flags/images/cg.png b/dist/resources/flags/images/cg.png new file mode 100644 index 00000000..be569ec6 Binary files /dev/null and b/dist/resources/flags/images/cg.png differ diff --git a/dist/resources/flags/images/ch.png b/dist/resources/flags/images/ch.png new file mode 100644 index 00000000..05c7d148 Binary files /dev/null and b/dist/resources/flags/images/ch.png differ diff --git a/dist/resources/flags/images/ci.png b/dist/resources/flags/images/ci.png new file mode 100644 index 00000000..9a72b2f9 Binary files /dev/null and b/dist/resources/flags/images/ci.png differ diff --git a/dist/resources/flags/images/ck.png b/dist/resources/flags/images/ck.png new file mode 100644 index 00000000..58273709 Binary files /dev/null and b/dist/resources/flags/images/ck.png differ diff --git a/dist/resources/flags/images/cl.png b/dist/resources/flags/images/cl.png new file mode 100644 index 00000000..cf739e77 Binary files /dev/null and b/dist/resources/flags/images/cl.png differ diff --git a/dist/resources/flags/images/cm.png b/dist/resources/flags/images/cm.png new file mode 100644 index 00000000..60dbd98d Binary files /dev/null and b/dist/resources/flags/images/cm.png differ diff --git a/dist/resources/flags/images/cn.png b/dist/resources/flags/images/cn.png new file mode 100644 index 00000000..6be2c29a Binary files /dev/null and b/dist/resources/flags/images/cn.png differ diff --git a/dist/resources/flags/images/co.png b/dist/resources/flags/images/co.png new file mode 100644 index 00000000..525f48e9 Binary files /dev/null and b/dist/resources/flags/images/co.png differ diff --git a/dist/resources/flags/images/cr.png b/dist/resources/flags/images/cr.png new file mode 100644 index 00000000..444a3d46 Binary files /dev/null and b/dist/resources/flags/images/cr.png differ diff --git a/dist/resources/flags/images/cu.png b/dist/resources/flags/images/cu.png new file mode 100644 index 00000000..1fdc31ac Binary files /dev/null and b/dist/resources/flags/images/cu.png differ diff --git a/dist/resources/flags/images/cv.png b/dist/resources/flags/images/cv.png new file mode 100644 index 00000000..44dfeacf Binary files /dev/null and b/dist/resources/flags/images/cv.png differ diff --git a/dist/resources/flags/images/cw.png b/dist/resources/flags/images/cw.png new file mode 100644 index 00000000..0ff72ba7 Binary files /dev/null and b/dist/resources/flags/images/cw.png differ diff --git a/dist/resources/flags/images/cx.png b/dist/resources/flags/images/cx.png new file mode 100644 index 00000000..2af3dead Binary files /dev/null and b/dist/resources/flags/images/cx.png differ diff --git a/dist/resources/flags/images/cy.png b/dist/resources/flags/images/cy.png new file mode 100644 index 00000000..a1a306b7 Binary files /dev/null and b/dist/resources/flags/images/cy.png differ diff --git a/dist/resources/flags/images/cz.png b/dist/resources/flags/images/cz.png new file mode 100644 index 00000000..35d8e7a5 Binary files /dev/null and b/dist/resources/flags/images/cz.png differ diff --git a/dist/resources/flags/images/de.png b/dist/resources/flags/images/de.png new file mode 100644 index 00000000..5ba6a693 Binary files /dev/null and b/dist/resources/flags/images/de.png differ diff --git a/dist/resources/flags/images/dj.png b/dist/resources/flags/images/dj.png new file mode 100644 index 00000000..2f4cb447 Binary files /dev/null and b/dist/resources/flags/images/dj.png differ diff --git a/dist/resources/flags/images/dk.png b/dist/resources/flags/images/dk.png new file mode 100644 index 00000000..ba318b02 Binary files /dev/null and b/dist/resources/flags/images/dk.png differ diff --git a/dist/resources/flags/images/dm.png b/dist/resources/flags/images/dm.png new file mode 100644 index 00000000..f404b705 Binary files /dev/null and b/dist/resources/flags/images/dm.png differ diff --git a/dist/resources/flags/images/do.png b/dist/resources/flags/images/do.png new file mode 100644 index 00000000..3812a5b9 Binary files /dev/null and b/dist/resources/flags/images/do.png differ diff --git a/dist/resources/flags/images/dz.png b/dist/resources/flags/images/dz.png new file mode 100644 index 00000000..e412b2a9 Binary files /dev/null and b/dist/resources/flags/images/dz.png differ diff --git a/dist/resources/flags/images/ec.png b/dist/resources/flags/images/ec.png new file mode 100644 index 00000000..26ff5c8b Binary files /dev/null and b/dist/resources/flags/images/ec.png differ diff --git a/dist/resources/flags/images/ee.png b/dist/resources/flags/images/ee.png new file mode 100644 index 00000000..e5a05ae3 Binary files /dev/null and b/dist/resources/flags/images/ee.png differ diff --git a/dist/resources/flags/images/eg.png b/dist/resources/flags/images/eg.png new file mode 100644 index 00000000..c5f6a888 Binary files /dev/null and b/dist/resources/flags/images/eg.png differ diff --git a/dist/resources/flags/images/eh.png b/dist/resources/flags/images/eh.png new file mode 100644 index 00000000..f51c9c5c Binary files /dev/null and b/dist/resources/flags/images/eh.png differ diff --git a/dist/resources/flags/images/er.png b/dist/resources/flags/images/er.png new file mode 100644 index 00000000..e9b30fb2 Binary files /dev/null and b/dist/resources/flags/images/er.png differ diff --git a/dist/resources/flags/images/es.png b/dist/resources/flags/images/es.png new file mode 100644 index 00000000..4769014c Binary files /dev/null and b/dist/resources/flags/images/es.png differ diff --git a/dist/resources/flags/images/et.png b/dist/resources/flags/images/et.png new file mode 100644 index 00000000..408fd474 Binary files /dev/null and b/dist/resources/flags/images/et.png differ diff --git a/dist/resources/flags/images/fi.png b/dist/resources/flags/images/fi.png new file mode 100644 index 00000000..f3c72c9b Binary files /dev/null and b/dist/resources/flags/images/fi.png differ diff --git a/dist/resources/flags/images/fj.png b/dist/resources/flags/images/fj.png new file mode 100644 index 00000000..557e2055 Binary files /dev/null and b/dist/resources/flags/images/fj.png differ diff --git a/dist/resources/flags/images/fk.png b/dist/resources/flags/images/fk.png new file mode 100644 index 00000000..596b9b11 Binary files /dev/null and b/dist/resources/flags/images/fk.png differ diff --git a/dist/resources/flags/images/fm.png b/dist/resources/flags/images/fm.png new file mode 100644 index 00000000..6c9e2dc3 Binary files /dev/null and b/dist/resources/flags/images/fm.png differ diff --git a/dist/resources/flags/images/fo.png b/dist/resources/flags/images/fo.png new file mode 100644 index 00000000..ab44751e Binary files /dev/null and b/dist/resources/flags/images/fo.png differ diff --git a/dist/resources/flags/images/fr.png b/dist/resources/flags/images/fr.png new file mode 100644 index 00000000..aefc38f9 Binary files /dev/null and b/dist/resources/flags/images/fr.png differ diff --git a/dist/resources/flags/images/ga.png b/dist/resources/flags/images/ga.png new file mode 100644 index 00000000..b6db7ed4 Binary files /dev/null and b/dist/resources/flags/images/ga.png differ diff --git a/dist/resources/flags/images/gb.png b/dist/resources/flags/images/gb.png new file mode 100644 index 00000000..86a314e7 Binary files /dev/null and b/dist/resources/flags/images/gb.png differ diff --git a/dist/resources/flags/images/gd.png b/dist/resources/flags/images/gd.png new file mode 100644 index 00000000..20775207 Binary files /dev/null and b/dist/resources/flags/images/gd.png differ diff --git a/dist/resources/flags/images/ge.png b/dist/resources/flags/images/ge.png new file mode 100644 index 00000000..f10f8400 Binary files /dev/null and b/dist/resources/flags/images/ge.png differ diff --git a/dist/resources/flags/images/gf.png b/dist/resources/flags/images/gf.png new file mode 100644 index 00000000..4c468c0d Binary files /dev/null and b/dist/resources/flags/images/gf.png differ diff --git a/dist/resources/flags/images/gg.png b/dist/resources/flags/images/gg.png new file mode 100644 index 00000000..5163f438 Binary files /dev/null and b/dist/resources/flags/images/gg.png differ diff --git a/dist/resources/flags/images/gh.png b/dist/resources/flags/images/gh.png new file mode 100644 index 00000000..17b08ddd Binary files /dev/null and b/dist/resources/flags/images/gh.png differ diff --git a/dist/resources/flags/images/gi.png b/dist/resources/flags/images/gi.png new file mode 100644 index 00000000..29374ffb Binary files /dev/null and b/dist/resources/flags/images/gi.png differ diff --git a/dist/resources/flags/images/gl.png b/dist/resources/flags/images/gl.png new file mode 100644 index 00000000..7c00af0f Binary files /dev/null and b/dist/resources/flags/images/gl.png differ diff --git a/dist/resources/flags/images/gm.png b/dist/resources/flags/images/gm.png new file mode 100644 index 00000000..83ac1b22 Binary files /dev/null and b/dist/resources/flags/images/gm.png differ diff --git a/dist/resources/flags/images/gn.png b/dist/resources/flags/images/gn.png new file mode 100644 index 00000000..cbb10341 Binary files /dev/null and b/dist/resources/flags/images/gn.png differ diff --git a/dist/resources/flags/images/gp.png b/dist/resources/flags/images/gp.png new file mode 100644 index 00000000..6b2fa7f8 Binary files /dev/null and b/dist/resources/flags/images/gp.png differ diff --git a/dist/resources/flags/images/gq.png b/dist/resources/flags/images/gq.png new file mode 100644 index 00000000..4a56ece3 Binary files /dev/null and b/dist/resources/flags/images/gq.png differ diff --git a/dist/resources/flags/images/gr.png b/dist/resources/flags/images/gr.png new file mode 100644 index 00000000..d5a54d27 Binary files /dev/null and b/dist/resources/flags/images/gr.png differ diff --git a/dist/resources/flags/images/gt.png b/dist/resources/flags/images/gt.png new file mode 100644 index 00000000..fb6523e4 Binary files /dev/null and b/dist/resources/flags/images/gt.png differ diff --git a/dist/resources/flags/images/gu.png b/dist/resources/flags/images/gu.png new file mode 100644 index 00000000..9161bf9d Binary files /dev/null and b/dist/resources/flags/images/gu.png differ diff --git a/dist/resources/flags/images/gw.png b/dist/resources/flags/images/gw.png new file mode 100644 index 00000000..8c49c10d Binary files /dev/null and b/dist/resources/flags/images/gw.png differ diff --git a/dist/resources/flags/images/gy.png b/dist/resources/flags/images/gy.png new file mode 100644 index 00000000..db9332a2 Binary files /dev/null and b/dist/resources/flags/images/gy.png differ diff --git a/dist/resources/flags/images/hk.png b/dist/resources/flags/images/hk.png new file mode 100644 index 00000000..1f407c74 Binary files /dev/null and b/dist/resources/flags/images/hk.png differ diff --git a/dist/resources/flags/images/hn.png b/dist/resources/flags/images/hn.png new file mode 100644 index 00000000..696a6995 Binary files /dev/null and b/dist/resources/flags/images/hn.png differ diff --git a/dist/resources/flags/images/hr.png b/dist/resources/flags/images/hr.png new file mode 100644 index 00000000..8e605203 Binary files /dev/null and b/dist/resources/flags/images/hr.png differ diff --git a/dist/resources/flags/images/ht.png b/dist/resources/flags/images/ht.png new file mode 100644 index 00000000..e3c5d4aa Binary files /dev/null and b/dist/resources/flags/images/ht.png differ diff --git a/dist/resources/flags/images/hu.png b/dist/resources/flags/images/hu.png new file mode 100644 index 00000000..237e7b52 Binary files /dev/null and b/dist/resources/flags/images/hu.png differ diff --git a/dist/resources/flags/images/id.png b/dist/resources/flags/images/id.png new file mode 100644 index 00000000..2cb99619 Binary files /dev/null and b/dist/resources/flags/images/id.png differ diff --git a/dist/resources/flags/images/ie.png b/dist/resources/flags/images/ie.png new file mode 100644 index 00000000..3789bc7f Binary files /dev/null and b/dist/resources/flags/images/ie.png differ diff --git a/dist/resources/flags/images/il.png b/dist/resources/flags/images/il.png new file mode 100644 index 00000000..f76d2cb9 Binary files /dev/null and b/dist/resources/flags/images/il.png differ diff --git a/dist/resources/flags/images/im.png b/dist/resources/flags/images/im.png new file mode 100644 index 00000000..b04213b5 Binary files /dev/null and b/dist/resources/flags/images/im.png differ diff --git a/dist/resources/flags/images/in.png b/dist/resources/flags/images/in.png new file mode 100644 index 00000000..ca1652bb Binary files /dev/null and b/dist/resources/flags/images/in.png differ diff --git a/dist/resources/flags/images/io.png b/dist/resources/flags/images/io.png new file mode 100644 index 00000000..0abfec4d Binary files /dev/null and b/dist/resources/flags/images/io.png differ diff --git a/dist/resources/flags/images/iq.png b/dist/resources/flags/images/iq.png new file mode 100644 index 00000000..a0446f1e Binary files /dev/null and b/dist/resources/flags/images/iq.png differ diff --git a/dist/resources/flags/images/ir.png b/dist/resources/flags/images/ir.png new file mode 100644 index 00000000..abced494 Binary files /dev/null and b/dist/resources/flags/images/ir.png differ diff --git a/dist/resources/flags/images/is.png b/dist/resources/flags/images/is.png new file mode 100644 index 00000000..3f3d35e4 Binary files /dev/null and b/dist/resources/flags/images/is.png differ diff --git a/dist/resources/flags/images/it.png b/dist/resources/flags/images/it.png new file mode 100644 index 00000000..058b3775 Binary files /dev/null and b/dist/resources/flags/images/it.png differ diff --git a/dist/resources/flags/images/je.png b/dist/resources/flags/images/je.png new file mode 100644 index 00000000..1431db65 Binary files /dev/null and b/dist/resources/flags/images/je.png differ diff --git a/dist/resources/flags/images/jm.png b/dist/resources/flags/images/jm.png new file mode 100644 index 00000000..abf88be0 Binary files /dev/null and b/dist/resources/flags/images/jm.png differ diff --git a/dist/resources/flags/images/jo.png b/dist/resources/flags/images/jo.png new file mode 100644 index 00000000..e2bcf81a Binary files /dev/null and b/dist/resources/flags/images/jo.png differ diff --git a/dist/resources/flags/images/jp.png b/dist/resources/flags/images/jp.png new file mode 100644 index 00000000..a4b207bc Binary files /dev/null and b/dist/resources/flags/images/jp.png differ diff --git a/dist/resources/flags/images/ke.png b/dist/resources/flags/images/ke.png new file mode 100644 index 00000000..f2ce6689 Binary files /dev/null and b/dist/resources/flags/images/ke.png differ diff --git a/dist/resources/flags/images/kg.png b/dist/resources/flags/images/kg.png new file mode 100644 index 00000000..248f52cc Binary files /dev/null and b/dist/resources/flags/images/kg.png differ diff --git a/dist/resources/flags/images/kh.png b/dist/resources/flags/images/kh.png new file mode 100644 index 00000000..de297a88 Binary files /dev/null and b/dist/resources/flags/images/kh.png differ diff --git a/dist/resources/flags/images/ki.png b/dist/resources/flags/images/ki.png new file mode 100644 index 00000000..56068f89 Binary files /dev/null and b/dist/resources/flags/images/ki.png differ diff --git a/dist/resources/flags/images/km.png b/dist/resources/flags/images/km.png new file mode 100644 index 00000000..b8d803a2 Binary files /dev/null and b/dist/resources/flags/images/km.png differ diff --git a/dist/resources/flags/images/kn.png b/dist/resources/flags/images/kn.png new file mode 100644 index 00000000..af198fc8 Binary files /dev/null and b/dist/resources/flags/images/kn.png differ diff --git a/dist/resources/flags/images/kp.png b/dist/resources/flags/images/kp.png new file mode 100644 index 00000000..e6dd4381 Binary files /dev/null and b/dist/resources/flags/images/kp.png differ diff --git a/dist/resources/flags/images/kr.png b/dist/resources/flags/images/kr.png new file mode 100644 index 00000000..7e910a0a Binary files /dev/null and b/dist/resources/flags/images/kr.png differ diff --git a/dist/resources/flags/images/ks.png b/dist/resources/flags/images/ks.png new file mode 100644 index 00000000..bb3a1c29 Binary files /dev/null and b/dist/resources/flags/images/ks.png differ diff --git a/dist/resources/flags/images/kw.png b/dist/resources/flags/images/kw.png new file mode 100644 index 00000000..d000f309 Binary files /dev/null and b/dist/resources/flags/images/kw.png differ diff --git a/dist/resources/flags/images/ky.png b/dist/resources/flags/images/ky.png new file mode 100644 index 00000000..9f24de94 Binary files /dev/null and b/dist/resources/flags/images/ky.png differ diff --git a/dist/resources/flags/images/kz.png b/dist/resources/flags/images/kz.png new file mode 100644 index 00000000..92f88291 Binary files /dev/null and b/dist/resources/flags/images/kz.png differ diff --git a/dist/resources/flags/images/la.png b/dist/resources/flags/images/la.png new file mode 100644 index 00000000..921ce12f Binary files /dev/null and b/dist/resources/flags/images/la.png differ diff --git a/dist/resources/flags/images/lb.png b/dist/resources/flags/images/lb.png new file mode 100644 index 00000000..fa4839e9 Binary files /dev/null and b/dist/resources/flags/images/lb.png differ diff --git a/dist/resources/flags/images/lc.png b/dist/resources/flags/images/lc.png new file mode 100644 index 00000000..25850de1 Binary files /dev/null and b/dist/resources/flags/images/lc.png differ diff --git a/dist/resources/flags/images/li.png b/dist/resources/flags/images/li.png new file mode 100644 index 00000000..1f78d1f3 Binary files /dev/null and b/dist/resources/flags/images/li.png differ diff --git a/dist/resources/flags/images/lk.png b/dist/resources/flags/images/lk.png new file mode 100644 index 00000000..561f34bc Binary files /dev/null and b/dist/resources/flags/images/lk.png differ diff --git a/dist/resources/flags/images/lr.png b/dist/resources/flags/images/lr.png new file mode 100644 index 00000000..e11e5fd2 Binary files /dev/null and b/dist/resources/flags/images/lr.png differ diff --git a/dist/resources/flags/images/ls.png b/dist/resources/flags/images/ls.png new file mode 100644 index 00000000..5dfd06a8 Binary files /dev/null and b/dist/resources/flags/images/ls.png differ diff --git a/dist/resources/flags/images/lt.png b/dist/resources/flags/images/lt.png new file mode 100644 index 00000000..df2b55d4 Binary files /dev/null and b/dist/resources/flags/images/lt.png differ diff --git a/dist/resources/flags/images/lu.png b/dist/resources/flags/images/lu.png new file mode 100644 index 00000000..6b9cfcde Binary files /dev/null and b/dist/resources/flags/images/lu.png differ diff --git a/dist/resources/flags/images/lv.png b/dist/resources/flags/images/lv.png new file mode 100644 index 00000000..e7fac330 Binary files /dev/null and b/dist/resources/flags/images/lv.png differ diff --git a/dist/resources/flags/images/ly.png b/dist/resources/flags/images/ly.png new file mode 100644 index 00000000..c1cbaf05 Binary files /dev/null and b/dist/resources/flags/images/ly.png differ diff --git a/dist/resources/flags/images/ma.png b/dist/resources/flags/images/ma.png new file mode 100644 index 00000000..c7fb7125 Binary files /dev/null and b/dist/resources/flags/images/ma.png differ diff --git a/dist/resources/flags/images/mc.png b/dist/resources/flags/images/mc.png new file mode 100644 index 00000000..fdbadbea Binary files /dev/null and b/dist/resources/flags/images/mc.png differ diff --git a/dist/resources/flags/images/md.png b/dist/resources/flags/images/md.png new file mode 100644 index 00000000..3401d9dc Binary files /dev/null and b/dist/resources/flags/images/md.png differ diff --git a/dist/resources/flags/images/me.png b/dist/resources/flags/images/me.png new file mode 100644 index 00000000..5473446e Binary files /dev/null and b/dist/resources/flags/images/me.png differ diff --git a/dist/resources/flags/images/mf.png b/dist/resources/flags/images/mf.png new file mode 100644 index 00000000..aefc38f9 Binary files /dev/null and b/dist/resources/flags/images/mf.png differ diff --git a/dist/resources/flags/images/mg.png b/dist/resources/flags/images/mg.png new file mode 100644 index 00000000..dc0d6b9e Binary files /dev/null and b/dist/resources/flags/images/mg.png differ diff --git a/dist/resources/flags/images/mh.png b/dist/resources/flags/images/mh.png new file mode 100644 index 00000000..59e4b941 Binary files /dev/null and b/dist/resources/flags/images/mh.png differ diff --git a/dist/resources/flags/images/mk.png b/dist/resources/flags/images/mk.png new file mode 100644 index 00000000..4d95a15c Binary files /dev/null and b/dist/resources/flags/images/mk.png differ diff --git a/dist/resources/flags/images/ml.png b/dist/resources/flags/images/ml.png new file mode 100644 index 00000000..57959717 Binary files /dev/null and b/dist/resources/flags/images/ml.png differ diff --git a/dist/resources/flags/images/mm.png b/dist/resources/flags/images/mm.png new file mode 100644 index 00000000..6253828f Binary files /dev/null and b/dist/resources/flags/images/mm.png differ diff --git a/dist/resources/flags/images/mn.png b/dist/resources/flags/images/mn.png new file mode 100644 index 00000000..dbbf1949 Binary files /dev/null and b/dist/resources/flags/images/mn.png differ diff --git a/dist/resources/flags/images/mo.png b/dist/resources/flags/images/mo.png new file mode 100644 index 00000000..6553417a Binary files /dev/null and b/dist/resources/flags/images/mo.png differ diff --git a/dist/resources/flags/images/mp.png b/dist/resources/flags/images/mp.png new file mode 100644 index 00000000..556911a9 Binary files /dev/null and b/dist/resources/flags/images/mp.png differ diff --git a/dist/resources/flags/images/mq.png b/dist/resources/flags/images/mq.png new file mode 100644 index 00000000..e6a4b806 Binary files /dev/null and b/dist/resources/flags/images/mq.png differ diff --git a/dist/resources/flags/images/mr.png b/dist/resources/flags/images/mr.png new file mode 100644 index 00000000..4a9d1ae2 Binary files /dev/null and b/dist/resources/flags/images/mr.png differ diff --git a/dist/resources/flags/images/ms.png b/dist/resources/flags/images/ms.png new file mode 100644 index 00000000..d8a429aa Binary files /dev/null and b/dist/resources/flags/images/ms.png differ diff --git a/dist/resources/flags/images/mt.png b/dist/resources/flags/images/mt.png new file mode 100644 index 00000000..c0f67e2c Binary files /dev/null and b/dist/resources/flags/images/mt.png differ diff --git a/dist/resources/flags/images/mu.png b/dist/resources/flags/images/mu.png new file mode 100644 index 00000000..864df2de Binary files /dev/null and b/dist/resources/flags/images/mu.png differ diff --git a/dist/resources/flags/images/mv.png b/dist/resources/flags/images/mv.png new file mode 100644 index 00000000..4955fc19 Binary files /dev/null and b/dist/resources/flags/images/mv.png differ diff --git a/dist/resources/flags/images/mw.png b/dist/resources/flags/images/mw.png new file mode 100644 index 00000000..2d0b4dd1 Binary files /dev/null and b/dist/resources/flags/images/mw.png differ diff --git a/dist/resources/flags/images/mx.png b/dist/resources/flags/images/mx.png new file mode 100644 index 00000000..b7836bb3 Binary files /dev/null and b/dist/resources/flags/images/mx.png differ diff --git a/dist/resources/flags/images/my.png b/dist/resources/flags/images/my.png new file mode 100644 index 00000000..061acba1 Binary files /dev/null and b/dist/resources/flags/images/my.png differ diff --git a/dist/resources/flags/images/mz.png b/dist/resources/flags/images/mz.png new file mode 100644 index 00000000..3078a752 Binary files /dev/null and b/dist/resources/flags/images/mz.png differ diff --git a/dist/resources/flags/images/na.png b/dist/resources/flags/images/na.png new file mode 100644 index 00000000..4728bbb5 Binary files /dev/null and b/dist/resources/flags/images/na.png differ diff --git a/dist/resources/flags/images/nc.png b/dist/resources/flags/images/nc.png new file mode 100644 index 00000000..10bcc179 Binary files /dev/null and b/dist/resources/flags/images/nc.png differ diff --git a/dist/resources/flags/images/ne.png b/dist/resources/flags/images/ne.png new file mode 100644 index 00000000..aea6291b Binary files /dev/null and b/dist/resources/flags/images/ne.png differ diff --git a/dist/resources/flags/images/nf.png b/dist/resources/flags/images/nf.png new file mode 100644 index 00000000..34737644 Binary files /dev/null and b/dist/resources/flags/images/nf.png differ diff --git a/dist/resources/flags/images/ng.png b/dist/resources/flags/images/ng.png new file mode 100644 index 00000000..524ca2e2 Binary files /dev/null and b/dist/resources/flags/images/ng.png differ diff --git a/dist/resources/flags/images/ni.png b/dist/resources/flags/images/ni.png new file mode 100644 index 00000000..efc0ab04 Binary files /dev/null and b/dist/resources/flags/images/ni.png differ diff --git a/dist/resources/flags/images/nl.png b/dist/resources/flags/images/nl.png new file mode 100644 index 00000000..0930cce1 Binary files /dev/null and b/dist/resources/flags/images/nl.png differ diff --git a/dist/resources/flags/images/no.png b/dist/resources/flags/images/no.png new file mode 100644 index 00000000..e70498f8 Binary files /dev/null and b/dist/resources/flags/images/no.png differ diff --git a/dist/resources/flags/images/np.png b/dist/resources/flags/images/np.png new file mode 100644 index 00000000..6e46b8c0 Binary files /dev/null and b/dist/resources/flags/images/np.png differ diff --git a/dist/resources/flags/images/nr.png b/dist/resources/flags/images/nr.png new file mode 100644 index 00000000..6e3b27d3 Binary files /dev/null and b/dist/resources/flags/images/nr.png differ diff --git a/dist/resources/flags/images/nu.png b/dist/resources/flags/images/nu.png new file mode 100644 index 00000000..22854b73 Binary files /dev/null and b/dist/resources/flags/images/nu.png differ diff --git a/dist/resources/flags/images/nz.png b/dist/resources/flags/images/nz.png new file mode 100644 index 00000000..6d7d9c5c Binary files /dev/null and b/dist/resources/flags/images/nz.png differ diff --git a/dist/resources/flags/images/om.png b/dist/resources/flags/images/om.png new file mode 100644 index 00000000..9203cca1 Binary files /dev/null and b/dist/resources/flags/images/om.png differ diff --git a/dist/resources/flags/images/pa.png b/dist/resources/flags/images/pa.png new file mode 100644 index 00000000..1aa5fdc0 Binary files /dev/null and b/dist/resources/flags/images/pa.png differ diff --git a/dist/resources/flags/images/pe.png b/dist/resources/flags/images/pe.png new file mode 100644 index 00000000..c8b1845f Binary files /dev/null and b/dist/resources/flags/images/pe.png differ diff --git a/dist/resources/flags/images/pf.png b/dist/resources/flags/images/pf.png new file mode 100644 index 00000000..03b9505b Binary files /dev/null and b/dist/resources/flags/images/pf.png differ diff --git a/dist/resources/flags/images/pg.png b/dist/resources/flags/images/pg.png new file mode 100644 index 00000000..65b46d87 Binary files /dev/null and b/dist/resources/flags/images/pg.png differ diff --git a/dist/resources/flags/images/ph.png b/dist/resources/flags/images/ph.png new file mode 100644 index 00000000..784f7e62 Binary files /dev/null and b/dist/resources/flags/images/ph.png differ diff --git a/dist/resources/flags/images/pk.png b/dist/resources/flags/images/pk.png new file mode 100644 index 00000000..f58e3be4 Binary files /dev/null and b/dist/resources/flags/images/pk.png differ diff --git a/dist/resources/flags/images/pl.png b/dist/resources/flags/images/pl.png new file mode 100644 index 00000000..d884f6be Binary files /dev/null and b/dist/resources/flags/images/pl.png differ diff --git a/dist/resources/flags/images/pm.png b/dist/resources/flags/images/pm.png new file mode 100644 index 00000000..10b2fe99 Binary files /dev/null and b/dist/resources/flags/images/pm.png differ diff --git a/dist/resources/flags/images/pr.png b/dist/resources/flags/images/pr.png new file mode 100644 index 00000000..5b2a1df4 Binary files /dev/null and b/dist/resources/flags/images/pr.png differ diff --git a/dist/resources/flags/images/ps.png b/dist/resources/flags/images/ps.png new file mode 100644 index 00000000..564440e2 Binary files /dev/null and b/dist/resources/flags/images/ps.png differ diff --git a/dist/resources/flags/images/pt.png b/dist/resources/flags/images/pt.png new file mode 100644 index 00000000..2210a868 Binary files /dev/null and b/dist/resources/flags/images/pt.png differ diff --git a/dist/resources/flags/images/pw.png b/dist/resources/flags/images/pw.png new file mode 100644 index 00000000..75d43206 Binary files /dev/null and b/dist/resources/flags/images/pw.png differ diff --git a/dist/resources/flags/images/py.png b/dist/resources/flags/images/py.png new file mode 100644 index 00000000..7f5fd442 Binary files /dev/null and b/dist/resources/flags/images/py.png differ diff --git a/dist/resources/flags/images/qa.png b/dist/resources/flags/images/qa.png new file mode 100644 index 00000000..fffb109e Binary files /dev/null and b/dist/resources/flags/images/qa.png differ diff --git a/dist/resources/flags/images/re.png b/dist/resources/flags/images/re.png new file mode 100644 index 00000000..6e90a31c Binary files /dev/null and b/dist/resources/flags/images/re.png differ diff --git a/dist/resources/flags/images/ro.png b/dist/resources/flags/images/ro.png new file mode 100644 index 00000000..5f5dd2d8 Binary files /dev/null and b/dist/resources/flags/images/ro.png differ diff --git a/dist/resources/flags/images/rs.png b/dist/resources/flags/images/rs.png new file mode 100644 index 00000000..ab5e5416 Binary files /dev/null and b/dist/resources/flags/images/rs.png differ diff --git a/dist/resources/flags/images/ru.png b/dist/resources/flags/images/ru.png new file mode 100644 index 00000000..d759af1c Binary files /dev/null and b/dist/resources/flags/images/ru.png differ diff --git a/dist/resources/flags/images/rw.png b/dist/resources/flags/images/rw.png new file mode 100644 index 00000000..bfca4022 Binary files /dev/null and b/dist/resources/flags/images/rw.png differ diff --git a/dist/resources/flags/images/sa.png b/dist/resources/flags/images/sa.png new file mode 100644 index 00000000..e6e4453c Binary files /dev/null and b/dist/resources/flags/images/sa.png differ diff --git a/dist/resources/flags/images/sb.png b/dist/resources/flags/images/sb.png new file mode 100644 index 00000000..81ad815b Binary files /dev/null and b/dist/resources/flags/images/sb.png differ diff --git a/dist/resources/flags/images/sc.png b/dist/resources/flags/images/sc.png new file mode 100644 index 00000000..868a6f18 Binary files /dev/null and b/dist/resources/flags/images/sc.png differ diff --git a/dist/resources/flags/images/sd.png b/dist/resources/flags/images/sd.png new file mode 100644 index 00000000..a5423825 Binary files /dev/null and b/dist/resources/flags/images/sd.png differ diff --git a/dist/resources/flags/images/se.png b/dist/resources/flags/images/se.png new file mode 100644 index 00000000..481075d2 Binary files /dev/null and b/dist/resources/flags/images/se.png differ diff --git a/dist/resources/flags/images/sg.png b/dist/resources/flags/images/sg.png new file mode 100644 index 00000000..91c54ec0 Binary files /dev/null and b/dist/resources/flags/images/sg.png differ diff --git a/dist/resources/flags/images/sh.png b/dist/resources/flags/images/sh.png new file mode 100644 index 00000000..ebf499b7 Binary files /dev/null and b/dist/resources/flags/images/sh.png differ diff --git a/dist/resources/flags/images/si.png b/dist/resources/flags/images/si.png new file mode 100644 index 00000000..0a4660fb Binary files /dev/null and b/dist/resources/flags/images/si.png differ diff --git a/dist/resources/flags/images/sj.png b/dist/resources/flags/images/sj.png new file mode 100644 index 00000000..e70498f8 Binary files /dev/null and b/dist/resources/flags/images/sj.png differ diff --git a/dist/resources/flags/images/sk.png b/dist/resources/flags/images/sk.png new file mode 100644 index 00000000..41130ced Binary files /dev/null and b/dist/resources/flags/images/sk.png differ diff --git a/dist/resources/flags/images/sl.png b/dist/resources/flags/images/sl.png new file mode 100644 index 00000000..2b565ebe Binary files /dev/null and b/dist/resources/flags/images/sl.png differ diff --git a/dist/resources/flags/images/sm.png b/dist/resources/flags/images/sm.png new file mode 100644 index 00000000..8d0104c4 Binary files /dev/null and b/dist/resources/flags/images/sm.png differ diff --git a/dist/resources/flags/images/sn.png b/dist/resources/flags/images/sn.png new file mode 100644 index 00000000..d001fa48 Binary files /dev/null and b/dist/resources/flags/images/sn.png differ diff --git a/dist/resources/flags/images/so.png b/dist/resources/flags/images/so.png new file mode 100644 index 00000000..748f598d Binary files /dev/null and b/dist/resources/flags/images/so.png differ diff --git a/dist/resources/flags/images/sr.png b/dist/resources/flags/images/sr.png new file mode 100644 index 00000000..e0f1a055 Binary files /dev/null and b/dist/resources/flags/images/sr.png differ diff --git a/dist/resources/flags/images/ss.png b/dist/resources/flags/images/ss.png new file mode 100644 index 00000000..ea52ec5b Binary files /dev/null and b/dist/resources/flags/images/ss.png differ diff --git a/dist/resources/flags/images/st.png b/dist/resources/flags/images/st.png new file mode 100644 index 00000000..f29af982 Binary files /dev/null and b/dist/resources/flags/images/st.png differ diff --git a/dist/resources/flags/images/sv.png b/dist/resources/flags/images/sv.png new file mode 100644 index 00000000..2df47fcc Binary files /dev/null and b/dist/resources/flags/images/sv.png differ diff --git a/dist/resources/flags/images/sx.png b/dist/resources/flags/images/sx.png new file mode 100644 index 00000000..548a7538 Binary files /dev/null and b/dist/resources/flags/images/sx.png differ diff --git a/dist/resources/flags/images/sy.png b/dist/resources/flags/images/sy.png new file mode 100644 index 00000000..71b82a2d Binary files /dev/null and b/dist/resources/flags/images/sy.png differ diff --git a/dist/resources/flags/images/sz.png b/dist/resources/flags/images/sz.png new file mode 100644 index 00000000..6e0827ad Binary files /dev/null and b/dist/resources/flags/images/sz.png differ diff --git a/dist/resources/flags/images/tc.png b/dist/resources/flags/images/tc.png new file mode 100644 index 00000000..77957913 Binary files /dev/null and b/dist/resources/flags/images/tc.png differ diff --git a/dist/resources/flags/images/td.png b/dist/resources/flags/images/td.png new file mode 100644 index 00000000..7e7f4178 Binary files /dev/null and b/dist/resources/flags/images/td.png differ diff --git a/dist/resources/flags/images/tg.png b/dist/resources/flags/images/tg.png new file mode 100644 index 00000000..905af396 Binary files /dev/null and b/dist/resources/flags/images/tg.png differ diff --git a/dist/resources/flags/images/th.png b/dist/resources/flags/images/th.png new file mode 100644 index 00000000..2cae6ad9 Binary files /dev/null and b/dist/resources/flags/images/th.png differ diff --git a/dist/resources/flags/images/tj.png b/dist/resources/flags/images/tj.png new file mode 100644 index 00000000..2dfb5586 Binary files /dev/null and b/dist/resources/flags/images/tj.png differ diff --git a/dist/resources/flags/images/tk.png b/dist/resources/flags/images/tk.png new file mode 100644 index 00000000..77e92398 Binary files /dev/null and b/dist/resources/flags/images/tk.png differ diff --git a/dist/resources/flags/images/tl.png b/dist/resources/flags/images/tl.png new file mode 100644 index 00000000..68fbd65a Binary files /dev/null and b/dist/resources/flags/images/tl.png differ diff --git a/dist/resources/flags/images/tm.png b/dist/resources/flags/images/tm.png new file mode 100644 index 00000000..d0d9f6b2 Binary files /dev/null and b/dist/resources/flags/images/tm.png differ diff --git a/dist/resources/flags/images/tn.png b/dist/resources/flags/images/tn.png new file mode 100644 index 00000000..20178557 Binary files /dev/null and b/dist/resources/flags/images/tn.png differ diff --git a/dist/resources/flags/images/to.png b/dist/resources/flags/images/to.png new file mode 100644 index 00000000..9f708dbc Binary files /dev/null and b/dist/resources/flags/images/to.png differ diff --git a/dist/resources/flags/images/tr.png b/dist/resources/flags/images/tr.png new file mode 100644 index 00000000..2f3898b1 Binary files /dev/null and b/dist/resources/flags/images/tr.png differ diff --git a/dist/resources/flags/images/tt.png b/dist/resources/flags/images/tt.png new file mode 100644 index 00000000..4ea7bca0 Binary files /dev/null and b/dist/resources/flags/images/tt.png differ diff --git a/dist/resources/flags/images/tv.png b/dist/resources/flags/images/tv.png new file mode 100644 index 00000000..036f4075 Binary files /dev/null and b/dist/resources/flags/images/tv.png differ diff --git a/dist/resources/flags/images/tw.png b/dist/resources/flags/images/tw.png new file mode 100644 index 00000000..5855095e Binary files /dev/null and b/dist/resources/flags/images/tw.png differ diff --git a/dist/resources/flags/images/tz.png b/dist/resources/flags/images/tz.png new file mode 100644 index 00000000..65ed9eb2 Binary files /dev/null and b/dist/resources/flags/images/tz.png differ diff --git a/dist/resources/flags/images/ua.png b/dist/resources/flags/images/ua.png new file mode 100644 index 00000000..67548907 Binary files /dev/null and b/dist/resources/flags/images/ua.png differ diff --git a/dist/resources/flags/images/ug.png b/dist/resources/flags/images/ug.png new file mode 100644 index 00000000..6a2671b6 Binary files /dev/null and b/dist/resources/flags/images/ug.png differ diff --git a/dist/resources/flags/images/us.png b/dist/resources/flags/images/us.png new file mode 100644 index 00000000..335d33e0 Binary files /dev/null and b/dist/resources/flags/images/us.png differ diff --git a/dist/resources/flags/images/uy.png b/dist/resources/flags/images/uy.png new file mode 100644 index 00000000..9eb069c0 Binary files /dev/null and b/dist/resources/flags/images/uy.png differ diff --git a/dist/resources/flags/images/uz.png b/dist/resources/flags/images/uz.png new file mode 100644 index 00000000..16697d68 Binary files /dev/null and b/dist/resources/flags/images/uz.png differ diff --git a/dist/resources/flags/images/va.png b/dist/resources/flags/images/va.png new file mode 100644 index 00000000..6c6bf533 Binary files /dev/null and b/dist/resources/flags/images/va.png differ diff --git a/dist/resources/flags/images/vc.png b/dist/resources/flags/images/vc.png new file mode 100644 index 00000000..1a206993 Binary files /dev/null and b/dist/resources/flags/images/vc.png differ diff --git a/dist/resources/flags/images/ve.png b/dist/resources/flags/images/ve.png new file mode 100644 index 00000000..44d5724d Binary files /dev/null and b/dist/resources/flags/images/ve.png differ diff --git a/dist/resources/flags/images/vg.png b/dist/resources/flags/images/vg.png new file mode 100644 index 00000000..a6f232c5 Binary files /dev/null and b/dist/resources/flags/images/vg.png differ diff --git a/dist/resources/flags/images/vi.png b/dist/resources/flags/images/vi.png new file mode 100644 index 00000000..d74e3593 Binary files /dev/null and b/dist/resources/flags/images/vi.png differ diff --git a/dist/resources/flags/images/vn.png b/dist/resources/flags/images/vn.png new file mode 100644 index 00000000..5d73248e Binary files /dev/null and b/dist/resources/flags/images/vn.png differ diff --git a/dist/resources/flags/images/vu.png b/dist/resources/flags/images/vu.png new file mode 100644 index 00000000..97574b1f Binary files /dev/null and b/dist/resources/flags/images/vu.png differ diff --git a/dist/resources/flags/images/wf.png b/dist/resources/flags/images/wf.png new file mode 100644 index 00000000..c64dd8aa Binary files /dev/null and b/dist/resources/flags/images/wf.png differ diff --git a/dist/resources/flags/images/ws.png b/dist/resources/flags/images/ws.png new file mode 100644 index 00000000..250f3e86 Binary files /dev/null and b/dist/resources/flags/images/ws.png differ diff --git a/dist/resources/flags/images/xk.png b/dist/resources/flags/images/xk.png new file mode 100644 index 00000000..32891509 Binary files /dev/null and b/dist/resources/flags/images/xk.png differ diff --git a/dist/resources/flags/images/ye.png b/dist/resources/flags/images/ye.png new file mode 100644 index 00000000..1ab766c5 Binary files /dev/null and b/dist/resources/flags/images/ye.png differ diff --git a/dist/resources/flags/images/yt.png b/dist/resources/flags/images/yt.png new file mode 100644 index 00000000..aefc38f9 Binary files /dev/null and b/dist/resources/flags/images/yt.png differ diff --git a/dist/resources/flags/images/za.png b/dist/resources/flags/images/za.png new file mode 100644 index 00000000..4eec606d Binary files /dev/null and b/dist/resources/flags/images/za.png differ diff --git a/dist/resources/flags/images/zm.png b/dist/resources/flags/images/zm.png new file mode 100644 index 00000000..0206f0eb Binary files /dev/null and b/dist/resources/flags/images/zm.png differ diff --git a/dist/resources/flags/images/zw.png b/dist/resources/flags/images/zw.png new file mode 100644 index 00000000..bb7180ff Binary files /dev/null and b/dist/resources/flags/images/zw.png differ diff --git a/dist/resources/flags/index.d.ts b/dist/resources/flags/index.d.ts new file mode 100644 index 00000000..d3d196d8 --- /dev/null +++ b/dist/resources/flags/index.d.ts @@ -0,0 +1,7 @@ +declare class FlagResource { + private flags; + constructor(); + get(name: any): any; +} +declare const _default: FlagResource; +export default _default; diff --git a/dist/resources/flags/index.js b/dist/resources/flags/index.js new file mode 100644 index 00000000..8a58bb3b --- /dev/null +++ b/dist/resources/flags/index.js @@ -0,0 +1,258 @@ +"use strict"; +/* eslint-disable global-require */ +Object.defineProperty(exports, "__esModule", { value: true }); +class FlagResource { + constructor() { + this.flags = { + ad: require('./images/ad.png'), + ae: require('./images/ae.png'), + af: require('./images/af.png'), + ag: require('./images/ag.png'), + ai: require('./images/ai.png'), + al: require('./images/al.png'), + am: require('./images/am.png'), + ao: require('./images/ao.png'), + ar: require('./images/ar.png'), + as: require('./images/as.png'), + at: require('./images/at.png'), + au: require('./images/au.png'), + aw: require('./images/aw.png'), + ax: require('./images/ax.png'), + az: require('./images/az.png'), + ba: require('./images/ba.png'), + bb: require('./images/bb.png'), + bd: require('./images/bd.png'), + be: require('./images/be.png'), + bf: require('./images/bf.png'), + bg: require('./images/bg.png'), + bh: require('./images/bh.png'), + bi: require('./images/bi.png'), + bj: require('./images/bj.png'), + bl: require('./images/bl.png'), + bm: require('./images/bm.png'), + bn: require('./images/bn.png'), + bo: require('./images/bo.png'), + bq: require('./images/bq.png'), + br: require('./images/br.png'), + bs: require('./images/bs.png'), + bt: require('./images/bt.png'), + bw: require('./images/bw.png'), + by: require('./images/by.png'), + bz: require('./images/bz.png'), + ca: require('./images/ca.png'), + cc: require('./images/cc.png'), + cd: require('./images/cd.png'), + cf: require('./images/cf.png'), + cg: require('./images/cg.png'), + ch: require('./images/ch.png'), + ci: require('./images/ci.png'), + ck: require('./images/ck.png'), + cl: require('./images/cl.png'), + cm: require('./images/cm.png'), + cn: require('./images/cn.png'), + co: require('./images/co.png'), + cr: require('./images/cr.png'), + cu: require('./images/cu.png'), + cv: require('./images/cv.png'), + cw: require('./images/cw.png'), + cx: require('./images/cx.png'), + cy: require('./images/cy.png'), + cz: require('./images/cz.png'), + de: require('./images/de.png'), + dj: require('./images/dj.png'), + dk: require('./images/dk.png'), + dm: require('./images/dm.png'), + do: require('./images/do.png'), + dz: require('./images/dz.png'), + ec: require('./images/ec.png'), + ee: require('./images/ee.png'), + eg: require('./images/eg.png'), + eh: require('./images/eh.png'), + er: require('./images/er.png'), + es: require('./images/es.png'), + et: require('./images/et.png'), + fi: require('./images/fi.png'), + fj: require('./images/fj.png'), + fk: require('./images/fk.png'), + fm: require('./images/fm.png'), + fo: require('./images/fo.png'), + fr: require('./images/fr.png'), + ga: require('./images/ga.png'), + gb: require('./images/gb.png'), + gd: require('./images/gd.png'), + ge: require('./images/ge.png'), + gf: require('./images/gf.png'), + gg: require('./images/gg.png'), + gh: require('./images/gh.png'), + gi: require('./images/gi.png'), + gl: require('./images/gl.png'), + gm: require('./images/gm.png'), + gn: require('./images/gn.png'), + gp: require('./images/gp.png'), + gq: require('./images/gq.png'), + gr: require('./images/gr.png'), + gt: require('./images/gt.png'), + gu: require('./images/gu.png'), + gw: require('./images/gw.png'), + gy: require('./images/gy.png'), + hk: require('./images/hk.png'), + hn: require('./images/hn.png'), + hr: require('./images/hr.png'), + ht: require('./images/ht.png'), + hu: require('./images/hu.png'), + id: require('./images/id.png'), + ie: require('./images/ie.png'), + il: require('./images/il.png'), + im: require('./images/im.png'), + in: require('./images/in.png'), + io: require('./images/io.png'), + iq: require('./images/iq.png'), + ir: require('./images/ir.png'), + is: require('./images/is.png'), + it: require('./images/it.png'), + je: require('./images/je.png'), + jm: require('./images/jm.png'), + jo: require('./images/jo.png'), + jp: require('./images/jp.png'), + ke: require('./images/ke.png'), + kg: require('./images/kg.png'), + kh: require('./images/kh.png'), + ki: require('./images/ki.png'), + xk: require('./images/xk.png'), + km: require('./images/km.png'), + kn: require('./images/kn.png'), + kp: require('./images/kp.png'), + kr: require('./images/kr.png'), + ks: require('./images/ks.png'), + kw: require('./images/kw.png'), + ky: require('./images/ky.png'), + kz: require('./images/kz.png'), + la: require('./images/la.png'), + lb: require('./images/lb.png'), + lc: require('./images/lc.png'), + li: require('./images/li.png'), + lk: require('./images/lk.png'), + lr: require('./images/lr.png'), + ls: require('./images/ls.png'), + lt: require('./images/lt.png'), + lu: require('./images/lu.png'), + lv: require('./images/lv.png'), + ly: require('./images/ly.png'), + ma: require('./images/ma.png'), + mc: require('./images/mc.png'), + md: require('./images/md.png'), + me: require('./images/me.png'), + mf: require('./images/mf.png'), + mg: require('./images/mg.png'), + mh: require('./images/mh.png'), + mk: require('./images/mk.png'), + ml: require('./images/ml.png'), + mm: require('./images/mm.png'), + mn: require('./images/mn.png'), + mo: require('./images/mo.png'), + mp: require('./images/mp.png'), + mq: require('./images/mq.png'), + mr: require('./images/mr.png'), + ms: require('./images/ms.png'), + mt: require('./images/mt.png'), + mu: require('./images/mu.png'), + mv: require('./images/mv.png'), + mw: require('./images/mw.png'), + mx: require('./images/mx.png'), + my: require('./images/my.png'), + mz: require('./images/mz.png'), + na: require('./images/na.png'), + nc: require('./images/nc.png'), + ne: require('./images/ne.png'), + nf: require('./images/nf.png'), + ng: require('./images/ng.png'), + ni: require('./images/ni.png'), + nl: require('./images/nl.png'), + no: require('./images/no.png'), + np: require('./images/np.png'), + nr: require('./images/nr.png'), + nu: require('./images/nu.png'), + nz: require('./images/nz.png'), + om: require('./images/om.png'), + pa: require('./images/pa.png'), + pe: require('./images/pe.png'), + pf: require('./images/pf.png'), + pg: require('./images/pg.png'), + ph: require('./images/ph.png'), + pk: require('./images/pk.png'), + pl: require('./images/pl.png'), + pm: require('./images/pm.png'), + pr: require('./images/pr.png'), + ps: require('./images/ps.png'), + pt: require('./images/pt.png'), + pw: require('./images/pw.png'), + py: require('./images/py.png'), + qa: require('./images/qa.png'), + re: require('./images/re.png'), + ro: require('./images/ro.png'), + rs: require('./images/rs.png'), + ru: require('./images/ru.png'), + rw: require('./images/rw.png'), + sa: require('./images/sa.png'), + sb: require('./images/sb.png'), + sc: require('./images/sc.png'), + sd: require('./images/sd.png'), + se: require('./images/se.png'), + sg: require('./images/sg.png'), + sh: require('./images/sh.png'), + si: require('./images/si.png'), + sj: require('./images/sj.png'), + sk: require('./images/sk.png'), + sl: require('./images/sl.png'), + sm: require('./images/sm.png'), + sn: require('./images/sn.png'), + so: require('./images/so.png'), + sr: require('./images/sr.png'), + ss: require('./images/ss.png'), + st: require('./images/st.png'), + sv: require('./images/sv.png'), + sx: require('./images/sx.png'), + sy: require('./images/sy.png'), + sz: require('./images/sz.png'), + tc: require('./images/tc.png'), + td: require('./images/td.png'), + tg: require('./images/tg.png'), + th: require('./images/th.png'), + tj: require('./images/tj.png'), + tk: require('./images/tk.png'), + tl: require('./images/tl.png'), + tm: require('./images/tm.png'), + tn: require('./images/tn.png'), + to: require('./images/to.png'), + tr: require('./images/tr.png'), + tt: require('./images/tt.png'), + tv: require('./images/tv.png'), + tw: require('./images/tw.png'), + tz: require('./images/tz.png'), + ua: require('./images/ua.png'), + ug: require('./images/ug.png'), + us: require('./images/us.png'), + uy: require('./images/uy.png'), + uz: require('./images/uz.png'), + va: require('./images/va.png'), + vc: require('./images/vc.png'), + ve: require('./images/ve.png'), + vg: require('./images/vg.png'), + vi: require('./images/vi.png'), + vn: require('./images/vn.png'), + vu: require('./images/vu.png'), + wf: require('./images/wf.png'), + ws: require('./images/ws.png'), + ye: require('./images/ye.png'), + yt: require('./images/yt.png'), + za: require('./images/za.png'), + zm: require('./images/zm.png'), + zw: require('./images/zw.png'), + }; + } + get(name) { + return this.flags[name]; + } +} +exports.default = new FlagResource(); +//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvcmVzb3VyY2VzL2ZsYWdzL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQSxtQ0FBbUM7O0FBRW5DLE1BQU0sWUFBWTtJQUdkO1FBQ0ksSUFBSSxDQUFDLEtBQUssR0FBRztZQUNULEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7WUFDOUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQztZQUM5QixFQUFFLEVBQUUsT0FBTyxDQUFDLGlCQUFpQixDQUFDO1lBQzlCLEVBQUUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7U0FDakMsQ0FBQztJQUNOLENBQUM7SUFFRCxHQUFHLENBQUMsSUFBSTtRQUNKLE9BQU8sSUFBSSxDQUFDLEtBQUssQ0FBQyxJQUFJLENBQUMsQ0FBQztJQUM1QixDQUFDO0NBQ0o7QUFFRCxrQkFBZSxJQUFJLFlBQVksRUFBRSxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLyogZXNsaW50LWRpc2FibGUgZ2xvYmFsLXJlcXVpcmUgKi9cblxuY2xhc3MgRmxhZ1Jlc291cmNlIHtcbiAgICBwcml2YXRlIGZsYWdzOiBhbnk7XG5cbiAgICBjb25zdHJ1Y3RvcigpIHtcbiAgICAgICAgdGhpcy5mbGFncyA9IHtcbiAgICAgICAgICAgIGFkOiByZXF1aXJlKCcuL2ltYWdlcy9hZC5wbmcnKSxcbiAgICAgICAgICAgIGFlOiByZXF1aXJlKCcuL2ltYWdlcy9hZS5wbmcnKSxcbiAgICAgICAgICAgIGFmOiByZXF1aXJlKCcuL2ltYWdlcy9hZi5wbmcnKSxcbiAgICAgICAgICAgIGFnOiByZXF1aXJlKCcuL2ltYWdlcy9hZy5wbmcnKSxcbiAgICAgICAgICAgIGFpOiByZXF1aXJlKCcuL2ltYWdlcy9haS5wbmcnKSxcbiAgICAgICAgICAgIGFsOiByZXF1aXJlKCcuL2ltYWdlcy9hbC5wbmcnKSxcbiAgICAgICAgICAgIGFtOiByZXF1aXJlKCcuL2ltYWdlcy9hbS5wbmcnKSxcbiAgICAgICAgICAgIGFvOiByZXF1aXJlKCcuL2ltYWdlcy9hby5wbmcnKSxcbiAgICAgICAgICAgIGFyOiByZXF1aXJlKCcuL2ltYWdlcy9hci5wbmcnKSxcbiAgICAgICAgICAgIGFzOiByZXF1aXJlKCcuL2ltYWdlcy9hcy5wbmcnKSxcbiAgICAgICAgICAgIGF0OiByZXF1aXJlKCcuL2ltYWdlcy9hdC5wbmcnKSxcbiAgICAgICAgICAgIGF1OiByZXF1aXJlKCcuL2ltYWdlcy9hdS5wbmcnKSxcbiAgICAgICAgICAgIGF3OiByZXF1aXJlKCcuL2ltYWdlcy9hdy5wbmcnKSxcbiAgICAgICAgICAgIGF4OiByZXF1aXJlKCcuL2ltYWdlcy9heC5wbmcnKSxcbiAgICAgICAgICAgIGF6OiByZXF1aXJlKCcuL2ltYWdlcy9hei5wbmcnKSxcbiAgICAgICAgICAgIGJhOiByZXF1aXJlKCcuL2ltYWdlcy9iYS5wbmcnKSxcbiAgICAgICAgICAgIGJiOiByZXF1aXJlKCcuL2ltYWdlcy9iYi5wbmcnKSxcbiAgICAgICAgICAgIGJkOiByZXF1aXJlKCcuL2ltYWdlcy9iZC5wbmcnKSxcbiAgICAgICAgICAgIGJlOiByZXF1aXJlKCcuL2ltYWdlcy9iZS5wbmcnKSxcbiAgICAgICAgICAgIGJmOiByZXF1aXJlKCcuL2ltYWdlcy9iZi5wbmcnKSxcbiAgICAgICAgICAgIGJnOiByZXF1aXJlKCcuL2ltYWdlcy9iZy5wbmcnKSxcbiAgICAgICAgICAgIGJoOiByZXF1aXJlKCcuL2ltYWdlcy9iaC5wbmcnKSxcbiAgICAgICAgICAgIGJpOiByZXF1aXJlKCcuL2ltYWdlcy9iaS5wbmcnKSxcbiAgICAgICAgICAgIGJqOiByZXF1aXJlKCcuL2ltYWdlcy9iai5wbmcnKSxcbiAgICAgICAgICAgIGJsOiByZXF1aXJlKCcuL2ltYWdlcy9ibC5wbmcnKSxcbiAgICAgICAgICAgIGJtOiByZXF1aXJlKCcuL2ltYWdlcy9ibS5wbmcnKSxcbiAgICAgICAgICAgIGJuOiByZXF1aXJlKCcuL2ltYWdlcy9ibi5wbmcnKSxcbiAgICAgICAgICAgIGJvOiByZXF1aXJlKCcuL2ltYWdlcy9iby5wbmcnKSxcbiAgICAgICAgICAgIGJxOiByZXF1aXJlKCcuL2ltYWdlcy9icS5wbmcnKSxcbiAgICAgICAgICAgIGJyOiByZXF1aXJlKCcuL2ltYWdlcy9ici5wbmcnKSxcbiAgICAgICAgICAgIGJzOiByZXF1aXJlKCcuL2ltYWdlcy9icy5wbmcnKSxcbiAgICAgICAgICAgIGJ0OiByZXF1aXJlKCcuL2ltYWdlcy9idC5wbmcnKSxcbiAgICAgICAgICAgIGJ3OiByZXF1aXJlKCcuL2ltYWdlcy9idy5wbmcnKSxcbiAgICAgICAgICAgIGJ5OiByZXF1aXJlKCcuL2ltYWdlcy9ieS5wbmcnKSxcbiAgICAgICAgICAgIGJ6OiByZXF1aXJlKCcuL2ltYWdlcy9iei5wbmcnKSxcbiAgICAgICAgICAgIGNhOiByZXF1aXJlKCcuL2ltYWdlcy9jYS5wbmcnKSxcbiAgICAgICAgICAgIGNjOiByZXF1aXJlKCcuL2ltYWdlcy9jYy5wbmcnKSxcbiAgICAgICAgICAgIGNkOiByZXF1aXJlKCcuL2ltYWdlcy9jZC5wbmcnKSxcbiAgICAgICAgICAgIGNmOiByZXF1aXJlKCcuL2ltYWdlcy9jZi5wbmcnKSxcbiAgICAgICAgICAgIGNnOiByZXF1aXJlKCcuL2ltYWdlcy9jZy5wbmcnKSxcbiAgICAgICAgICAgIGNoOiByZXF1aXJlKCcuL2ltYWdlcy9jaC5wbmcnKSxcbiAgICAgICAgICAgIGNpOiByZXF1aXJlKCcuL2ltYWdlcy9jaS5wbmcnKSxcbiAgICAgICAgICAgIGNrOiByZXF1aXJlKCcuL2ltYWdlcy9jay5wbmcnKSxcbiAgICAgICAgICAgIGNsOiByZXF1aXJlKCcuL2ltYWdlcy9jbC5wbmcnKSxcbiAgICAgICAgICAgIGNtOiByZXF1aXJlKCcuL2ltYWdlcy9jbS5wbmcnKSxcbiAgICAgICAgICAgIGNuOiByZXF1aXJlKCcuL2ltYWdlcy9jbi5wbmcnKSxcbiAgICAgICAgICAgIGNvOiByZXF1aXJlKCcuL2ltYWdlcy9jby5wbmcnKSxcbiAgICAgICAgICAgIGNyOiByZXF1aXJlKCcuL2ltYWdlcy9jci5wbmcnKSxcbiAgICAgICAgICAgIGN1OiByZXF1aXJlKCcuL2ltYWdlcy9jdS5wbmcnKSxcbiAgICAgICAgICAgIGN2OiByZXF1aXJlKCcuL2ltYWdlcy9jdi5wbmcnKSxcbiAgICAgICAgICAgIGN3OiByZXF1aXJlKCcuL2ltYWdlcy9jdy5wbmcnKSxcbiAgICAgICAgICAgIGN4OiByZXF1aXJlKCcuL2ltYWdlcy9jeC5wbmcnKSxcbiAgICAgICAgICAgIGN5OiByZXF1aXJlKCcuL2ltYWdlcy9jeS5wbmcnKSxcbiAgICAgICAgICAgIGN6OiByZXF1aXJlKCcuL2ltYWdlcy9jei5wbmcnKSxcbiAgICAgICAgICAgIGRlOiByZXF1aXJlKCcuL2ltYWdlcy9kZS5wbmcnKSxcbiAgICAgICAgICAgIGRqOiByZXF1aXJlKCcuL2ltYWdlcy9kai5wbmcnKSxcbiAgICAgICAgICAgIGRrOiByZXF1aXJlKCcuL2ltYWdlcy9kay5wbmcnKSxcbiAgICAgICAgICAgIGRtOiByZXF1aXJlKCcuL2ltYWdlcy9kbS5wbmcnKSxcbiAgICAgICAgICAgIGRvOiByZXF1aXJlKCcuL2ltYWdlcy9kby5wbmcnKSxcbiAgICAgICAgICAgIGR6OiByZXF1aXJlKCcuL2ltYWdlcy9kei5wbmcnKSxcbiAgICAgICAgICAgIGVjOiByZXF1aXJlKCcuL2ltYWdlcy9lYy5wbmcnKSxcbiAgICAgICAgICAgIGVlOiByZXF1aXJlKCcuL2ltYWdlcy9lZS5wbmcnKSxcbiAgICAgICAgICAgIGVnOiByZXF1aXJlKCcuL2ltYWdlcy9lZy5wbmcnKSxcbiAgICAgICAgICAgIGVoOiByZXF1aXJlKCcuL2ltYWdlcy9laC5wbmcnKSxcbiAgICAgICAgICAgIGVyOiByZXF1aXJlKCcuL2ltYWdlcy9lci5wbmcnKSxcbiAgICAgICAgICAgIGVzOiByZXF1aXJlKCcuL2ltYWdlcy9lcy5wbmcnKSxcbiAgICAgICAgICAgIGV0OiByZXF1aXJlKCcuL2ltYWdlcy9ldC5wbmcnKSxcbiAgICAgICAgICAgIGZpOiByZXF1aXJlKCcuL2ltYWdlcy9maS5wbmcnKSxcbiAgICAgICAgICAgIGZqOiByZXF1aXJlKCcuL2ltYWdlcy9mai5wbmcnKSxcbiAgICAgICAgICAgIGZrOiByZXF1aXJlKCcuL2ltYWdlcy9may5wbmcnKSxcbiAgICAgICAgICAgIGZtOiByZXF1aXJlKCcuL2ltYWdlcy9mbS5wbmcnKSxcbiAgICAgICAgICAgIGZvOiByZXF1aXJlKCcuL2ltYWdlcy9mby5wbmcnKSxcbiAgICAgICAgICAgIGZyOiByZXF1aXJlKCcuL2ltYWdlcy9mci5wbmcnKSxcbiAgICAgICAgICAgIGdhOiByZXF1aXJlKCcuL2ltYWdlcy9nYS5wbmcnKSxcbiAgICAgICAgICAgIGdiOiByZXF1aXJlKCcuL2ltYWdlcy9nYi5wbmcnKSxcbiAgICAgICAgICAgIGdkOiByZXF1aXJlKCcuL2ltYWdlcy9nZC5wbmcnKSxcbiAgICAgICAgICAgIGdlOiByZXF1aXJlKCcuL2ltYWdlcy9nZS5wbmcnKSxcbiAgICAgICAgICAgIGdmOiByZXF1aXJlKCcuL2ltYWdlcy9nZi5wbmcnKSxcbiAgICAgICAgICAgIGdnOiByZXF1aXJlKCcuL2ltYWdlcy9nZy5wbmcnKSxcbiAgICAgICAgICAgIGdoOiByZXF1aXJlKCcuL2ltYWdlcy9naC5wbmcnKSxcbiAgICAgICAgICAgIGdpOiByZXF1aXJlKCcuL2ltYWdlcy9naS5wbmcnKSxcbiAgICAgICAgICAgIGdsOiByZXF1aXJlKCcuL2ltYWdlcy9nbC5wbmcnKSxcbiAgICAgICAgICAgIGdtOiByZXF1aXJlKCcuL2ltYWdlcy9nbS5wbmcnKSxcbiAgICAgICAgICAgIGduOiByZXF1aXJlKCcuL2ltYWdlcy9nbi5wbmcnKSxcbiAgICAgICAgICAgIGdwOiByZXF1aXJlKCcuL2ltYWdlcy9ncC5wbmcnKSxcbiAgICAgICAgICAgIGdxOiByZXF1aXJlKCcuL2ltYWdlcy9ncS5wbmcnKSxcbiAgICAgICAgICAgIGdyOiByZXF1aXJlKCcuL2ltYWdlcy9nci5wbmcnKSxcbiAgICAgICAgICAgIGd0OiByZXF1aXJlKCcuL2ltYWdlcy9ndC5wbmcnKSxcbiAgICAgICAgICAgIGd1OiByZXF1aXJlKCcuL2ltYWdlcy9ndS5wbmcnKSxcbiAgICAgICAgICAgIGd3OiByZXF1aXJlKCcuL2ltYWdlcy9ndy5wbmcnKSxcbiAgICAgICAgICAgIGd5OiByZXF1aXJlKCcuL2ltYWdlcy9neS5wbmcnKSxcbiAgICAgICAgICAgIGhrOiByZXF1aXJlKCcuL2ltYWdlcy9oay5wbmcnKSxcbiAgICAgICAgICAgIGhuOiByZXF1aXJlKCcuL2ltYWdlcy9obi5wbmcnKSxcbiAgICAgICAgICAgIGhyOiByZXF1aXJlKCcuL2ltYWdlcy9oci5wbmcnKSxcbiAgICAgICAgICAgIGh0OiByZXF1aXJlKCcuL2ltYWdlcy9odC5wbmcnKSxcbiAgICAgICAgICAgIGh1OiByZXF1aXJlKCcuL2ltYWdlcy9odS5wbmcnKSxcbiAgICAgICAgICAgIGlkOiByZXF1aXJlKCcuL2ltYWdlcy9pZC5wbmcnKSxcbiAgICAgICAgICAgIGllOiByZXF1aXJlKCcuL2ltYWdlcy9pZS5wbmcnKSxcbiAgICAgICAgICAgIGlsOiByZXF1aXJlKCcuL2ltYWdlcy9pbC5wbmcnKSxcbiAgICAgICAgICAgIGltOiByZXF1aXJlKCcuL2ltYWdlcy9pbS5wbmcnKSxcbiAgICAgICAgICAgIGluOiByZXF1aXJlKCcuL2ltYWdlcy9pbi5wbmcnKSxcbiAgICAgICAgICAgIGlvOiByZXF1aXJlKCcuL2ltYWdlcy9pby5wbmcnKSxcbiAgICAgICAgICAgIGlxOiByZXF1aXJlKCcuL2ltYWdlcy9pcS5wbmcnKSxcbiAgICAgICAgICAgIGlyOiByZXF1aXJlKCcuL2ltYWdlcy9pci5wbmcnKSxcbiAgICAgICAgICAgIGlzOiByZXF1aXJlKCcuL2ltYWdlcy9pcy5wbmcnKSxcbiAgICAgICAgICAgIGl0OiByZXF1aXJlKCcuL2ltYWdlcy9pdC5wbmcnKSxcbiAgICAgICAgICAgIGplOiByZXF1aXJlKCcuL2ltYWdlcy9qZS5wbmcnKSxcbiAgICAgICAgICAgIGptOiByZXF1aXJlKCcuL2ltYWdlcy9qbS5wbmcnKSxcbiAgICAgICAgICAgIGpvOiByZXF1aXJlKCcuL2ltYWdlcy9qby5wbmcnKSxcbiAgICAgICAgICAgIGpwOiByZXF1aXJlKCcuL2ltYWdlcy9qcC5wbmcnKSxcbiAgICAgICAgICAgIGtlOiByZXF1aXJlKCcuL2ltYWdlcy9rZS5wbmcnKSxcbiAgICAgICAgICAgIGtnOiByZXF1aXJlKCcuL2ltYWdlcy9rZy5wbmcnKSxcbiAgICAgICAgICAgIGtoOiByZXF1aXJlKCcuL2ltYWdlcy9raC5wbmcnKSxcbiAgICAgICAgICAgIGtpOiByZXF1aXJlKCcuL2ltYWdlcy9raS5wbmcnKSxcbiAgICAgICAgICAgIHhrOiByZXF1aXJlKCcuL2ltYWdlcy94ay5wbmcnKSxcbiAgICAgICAgICAgIGttOiByZXF1aXJlKCcuL2ltYWdlcy9rbS5wbmcnKSxcbiAgICAgICAgICAgIGtuOiByZXF1aXJlKCcuL2ltYWdlcy9rbi5wbmcnKSxcbiAgICAgICAgICAgIGtwOiByZXF1aXJlKCcuL2ltYWdlcy9rcC5wbmcnKSxcbiAgICAgICAgICAgIGtyOiByZXF1aXJlKCcuL2ltYWdlcy9rci5wbmcnKSxcbiAgICAgICAgICAgIGtzOiByZXF1aXJlKCcuL2ltYWdlcy9rcy5wbmcnKSxcbiAgICAgICAgICAgIGt3OiByZXF1aXJlKCcuL2ltYWdlcy9rdy5wbmcnKSxcbiAgICAgICAgICAgIGt5OiByZXF1aXJlKCcuL2ltYWdlcy9reS5wbmcnKSxcbiAgICAgICAgICAgIGt6OiByZXF1aXJlKCcuL2ltYWdlcy9rei5wbmcnKSxcbiAgICAgICAgICAgIGxhOiByZXF1aXJlKCcuL2ltYWdlcy9sYS5wbmcnKSxcbiAgICAgICAgICAgIGxiOiByZXF1aXJlKCcuL2ltYWdlcy9sYi5wbmcnKSxcbiAgICAgICAgICAgIGxjOiByZXF1aXJlKCcuL2ltYWdlcy9sYy5wbmcnKSxcbiAgICAgICAgICAgIGxpOiByZXF1aXJlKCcuL2ltYWdlcy9saS5wbmcnKSxcbiAgICAgICAgICAgIGxrOiByZXF1aXJlKCcuL2ltYWdlcy9say5wbmcnKSxcbiAgICAgICAgICAgIGxyOiByZXF1aXJlKCcuL2ltYWdlcy9sci5wbmcnKSxcbiAgICAgICAgICAgIGxzOiByZXF1aXJlKCcuL2ltYWdlcy9scy5wbmcnKSxcbiAgICAgICAgICAgIGx0OiByZXF1aXJlKCcuL2ltYWdlcy9sdC5wbmcnKSxcbiAgICAgICAgICAgIGx1OiByZXF1aXJlKCcuL2ltYWdlcy9sdS5wbmcnKSxcbiAgICAgICAgICAgIGx2OiByZXF1aXJlKCcuL2ltYWdlcy9sdi5wbmcnKSxcbiAgICAgICAgICAgIGx5OiByZXF1aXJlKCcuL2ltYWdlcy9seS5wbmcnKSxcbiAgICAgICAgICAgIG1hOiByZXF1aXJlKCcuL2ltYWdlcy9tYS5wbmcnKSxcbiAgICAgICAgICAgIG1jOiByZXF1aXJlKCcuL2ltYWdlcy9tYy5wbmcnKSxcbiAgICAgICAgICAgIG1kOiByZXF1aXJlKCcuL2ltYWdlcy9tZC5wbmcnKSxcbiAgICAgICAgICAgIG1lOiByZXF1aXJlKCcuL2ltYWdlcy9tZS5wbmcnKSxcbiAgICAgICAgICAgIG1mOiByZXF1aXJlKCcuL2ltYWdlcy9tZi5wbmcnKSxcbiAgICAgICAgICAgIG1nOiByZXF1aXJlKCcuL2ltYWdlcy9tZy5wbmcnKSxcbiAgICAgICAgICAgIG1oOiByZXF1aXJlKCcuL2ltYWdlcy9taC5wbmcnKSxcbiAgICAgICAgICAgIG1rOiByZXF1aXJlKCcuL2ltYWdlcy9tay5wbmcnKSxcbiAgICAgICAgICAgIG1sOiByZXF1aXJlKCcuL2ltYWdlcy9tbC5wbmcnKSxcbiAgICAgICAgICAgIG1tOiByZXF1aXJlKCcuL2ltYWdlcy9tbS5wbmcnKSxcbiAgICAgICAgICAgIG1uOiByZXF1aXJlKCcuL2ltYWdlcy9tbi5wbmcnKSxcbiAgICAgICAgICAgIG1vOiByZXF1aXJlKCcuL2ltYWdlcy9tby5wbmcnKSxcbiAgICAgICAgICAgIG1wOiByZXF1aXJlKCcuL2ltYWdlcy9tcC5wbmcnKSxcbiAgICAgICAgICAgIG1xOiByZXF1aXJlKCcuL2ltYWdlcy9tcS5wbmcnKSxcbiAgICAgICAgICAgIG1yOiByZXF1aXJlKCcuL2ltYWdlcy9tci5wbmcnKSxcbiAgICAgICAgICAgIG1zOiByZXF1aXJlKCcuL2ltYWdlcy9tcy5wbmcnKSxcbiAgICAgICAgICAgIG10OiByZXF1aXJlKCcuL2ltYWdlcy9tdC5wbmcnKSxcbiAgICAgICAgICAgIG11OiByZXF1aXJlKCcuL2ltYWdlcy9tdS5wbmcnKSxcbiAgICAgICAgICAgIG12OiByZXF1aXJlKCcuL2ltYWdlcy9tdi5wbmcnKSxcbiAgICAgICAgICAgIG13OiByZXF1aXJlKCcuL2ltYWdlcy9tdy5wbmcnKSxcbiAgICAgICAgICAgIG14OiByZXF1aXJlKCcuL2ltYWdlcy9teC5wbmcnKSxcbiAgICAgICAgICAgIG15OiByZXF1aXJlKCcuL2ltYWdlcy9teS5wbmcnKSxcbiAgICAgICAgICAgIG16OiByZXF1aXJlKCcuL2ltYWdlcy9tei5wbmcnKSxcbiAgICAgICAgICAgIG5hOiByZXF1aXJlKCcuL2ltYWdlcy9uYS5wbmcnKSxcbiAgICAgICAgICAgIG5jOiByZXF1aXJlKCcuL2ltYWdlcy9uYy5wbmcnKSxcbiAgICAgICAgICAgIG5lOiByZXF1aXJlKCcuL2ltYWdlcy9uZS5wbmcnKSxcbiAgICAgICAgICAgIG5mOiByZXF1aXJlKCcuL2ltYWdlcy9uZi5wbmcnKSxcbiAgICAgICAgICAgIG5nOiByZXF1aXJlKCcuL2ltYWdlcy9uZy5wbmcnKSxcbiAgICAgICAgICAgIG5pOiByZXF1aXJlKCcuL2ltYWdlcy9uaS5wbmcnKSxcbiAgICAgICAgICAgIG5sOiByZXF1aXJlKCcuL2ltYWdlcy9ubC5wbmcnKSxcbiAgICAgICAgICAgIG5vOiByZXF1aXJlKCcuL2ltYWdlcy9uby5wbmcnKSxcbiAgICAgICAgICAgIG5wOiByZXF1aXJlKCcuL2ltYWdlcy9ucC5wbmcnKSxcbiAgICAgICAgICAgIG5yOiByZXF1aXJlKCcuL2ltYWdlcy9uci5wbmcnKSxcbiAgICAgICAgICAgIG51OiByZXF1aXJlKCcuL2ltYWdlcy9udS5wbmcnKSxcbiAgICAgICAgICAgIG56OiByZXF1aXJlKCcuL2ltYWdlcy9uei5wbmcnKSxcbiAgICAgICAgICAgIG9tOiByZXF1aXJlKCcuL2ltYWdlcy9vbS5wbmcnKSxcbiAgICAgICAgICAgIHBhOiByZXF1aXJlKCcuL2ltYWdlcy9wYS5wbmcnKSxcbiAgICAgICAgICAgIHBlOiByZXF1aXJlKCcuL2ltYWdlcy9wZS5wbmcnKSxcbiAgICAgICAgICAgIHBmOiByZXF1aXJlKCcuL2ltYWdlcy9wZi5wbmcnKSxcbiAgICAgICAgICAgIHBnOiByZXF1aXJlKCcuL2ltYWdlcy9wZy5wbmcnKSxcbiAgICAgICAgICAgIHBoOiByZXF1aXJlKCcuL2ltYWdlcy9waC5wbmcnKSxcbiAgICAgICAgICAgIHBrOiByZXF1aXJlKCcuL2ltYWdlcy9way5wbmcnKSxcbiAgICAgICAgICAgIHBsOiByZXF1aXJlKCcuL2ltYWdlcy9wbC5wbmcnKSxcbiAgICAgICAgICAgIHBtOiByZXF1aXJlKCcuL2ltYWdlcy9wbS5wbmcnKSxcbiAgICAgICAgICAgIHByOiByZXF1aXJlKCcuL2ltYWdlcy9wci5wbmcnKSxcbiAgICAgICAgICAgIHBzOiByZXF1aXJlKCcuL2ltYWdlcy9wcy5wbmcnKSxcbiAgICAgICAgICAgIHB0OiByZXF1aXJlKCcuL2ltYWdlcy9wdC5wbmcnKSxcbiAgICAgICAgICAgIHB3OiByZXF1aXJlKCcuL2ltYWdlcy9wdy5wbmcnKSxcbiAgICAgICAgICAgIHB5OiByZXF1aXJlKCcuL2ltYWdlcy9weS5wbmcnKSxcbiAgICAgICAgICAgIHFhOiByZXF1aXJlKCcuL2ltYWdlcy9xYS5wbmcnKSxcbiAgICAgICAgICAgIHJlOiByZXF1aXJlKCcuL2ltYWdlcy9yZS5wbmcnKSxcbiAgICAgICAgICAgIHJvOiByZXF1aXJlKCcuL2ltYWdlcy9yby5wbmcnKSxcbiAgICAgICAgICAgIHJzOiByZXF1aXJlKCcuL2ltYWdlcy9ycy5wbmcnKSxcbiAgICAgICAgICAgIHJ1OiByZXF1aXJlKCcuL2ltYWdlcy9ydS5wbmcnKSxcbiAgICAgICAgICAgIHJ3OiByZXF1aXJlKCcuL2ltYWdlcy9ydy5wbmcnKSxcbiAgICAgICAgICAgIHNhOiByZXF1aXJlKCcuL2ltYWdlcy9zYS5wbmcnKSxcbiAgICAgICAgICAgIHNiOiByZXF1aXJlKCcuL2ltYWdlcy9zYi5wbmcnKSxcbiAgICAgICAgICAgIHNjOiByZXF1aXJlKCcuL2ltYWdlcy9zYy5wbmcnKSxcbiAgICAgICAgICAgIHNkOiByZXF1aXJlKCcuL2ltYWdlcy9zZC5wbmcnKSxcbiAgICAgICAgICAgIHNlOiByZXF1aXJlKCcuL2ltYWdlcy9zZS5wbmcnKSxcbiAgICAgICAgICAgIHNnOiByZXF1aXJlKCcuL2ltYWdlcy9zZy5wbmcnKSxcbiAgICAgICAgICAgIHNoOiByZXF1aXJlKCcuL2ltYWdlcy9zaC5wbmcnKSxcbiAgICAgICAgICAgIHNpOiByZXF1aXJlKCcuL2ltYWdlcy9zaS5wbmcnKSxcbiAgICAgICAgICAgIHNqOiByZXF1aXJlKCcuL2ltYWdlcy9zai5wbmcnKSxcbiAgICAgICAgICAgIHNrOiByZXF1aXJlKCcuL2ltYWdlcy9zay5wbmcnKSxcbiAgICAgICAgICAgIHNsOiByZXF1aXJlKCcuL2ltYWdlcy9zbC5wbmcnKSxcbiAgICAgICAgICAgIHNtOiByZXF1aXJlKCcuL2ltYWdlcy9zbS5wbmcnKSxcbiAgICAgICAgICAgIHNuOiByZXF1aXJlKCcuL2ltYWdlcy9zbi5wbmcnKSxcbiAgICAgICAgICAgIHNvOiByZXF1aXJlKCcuL2ltYWdlcy9zby5wbmcnKSxcbiAgICAgICAgICAgIHNyOiByZXF1aXJlKCcuL2ltYWdlcy9zci5wbmcnKSxcbiAgICAgICAgICAgIHNzOiByZXF1aXJlKCcuL2ltYWdlcy9zcy5wbmcnKSxcbiAgICAgICAgICAgIHN0OiByZXF1aXJlKCcuL2ltYWdlcy9zdC5wbmcnKSxcbiAgICAgICAgICAgIHN2OiByZXF1aXJlKCcuL2ltYWdlcy9zdi5wbmcnKSxcbiAgICAgICAgICAgIHN4OiByZXF1aXJlKCcuL2ltYWdlcy9zeC5wbmcnKSxcbiAgICAgICAgICAgIHN5OiByZXF1aXJlKCcuL2ltYWdlcy9zeS5wbmcnKSxcbiAgICAgICAgICAgIHN6OiByZXF1aXJlKCcuL2ltYWdlcy9zei5wbmcnKSxcbiAgICAgICAgICAgIHRjOiByZXF1aXJlKCcuL2ltYWdlcy90Yy5wbmcnKSxcbiAgICAgICAgICAgIHRkOiByZXF1aXJlKCcuL2ltYWdlcy90ZC5wbmcnKSxcbiAgICAgICAgICAgIHRnOiByZXF1aXJlKCcuL2ltYWdlcy90Zy5wbmcnKSxcbiAgICAgICAgICAgIHRoOiByZXF1aXJlKCcuL2ltYWdlcy90aC5wbmcnKSxcbiAgICAgICAgICAgIHRqOiByZXF1aXJlKCcuL2ltYWdlcy90ai5wbmcnKSxcbiAgICAgICAgICAgIHRrOiByZXF1aXJlKCcuL2ltYWdlcy90ay5wbmcnKSxcbiAgICAgICAgICAgIHRsOiByZXF1aXJlKCcuL2ltYWdlcy90bC5wbmcnKSxcbiAgICAgICAgICAgIHRtOiByZXF1aXJlKCcuL2ltYWdlcy90bS5wbmcnKSxcbiAgICAgICAgICAgIHRuOiByZXF1aXJlKCcuL2ltYWdlcy90bi5wbmcnKSxcbiAgICAgICAgICAgIHRvOiByZXF1aXJlKCcuL2ltYWdlcy90by5wbmcnKSxcbiAgICAgICAgICAgIHRyOiByZXF1aXJlKCcuL2ltYWdlcy90ci5wbmcnKSxcbiAgICAgICAgICAgIHR0OiByZXF1aXJlKCcuL2ltYWdlcy90dC5wbmcnKSxcbiAgICAgICAgICAgIHR2OiByZXF1aXJlKCcuL2ltYWdlcy90di5wbmcnKSxcbiAgICAgICAgICAgIHR3OiByZXF1aXJlKCcuL2ltYWdlcy90dy5wbmcnKSxcbiAgICAgICAgICAgIHR6OiByZXF1aXJlKCcuL2ltYWdlcy90ei5wbmcnKSxcbiAgICAgICAgICAgIHVhOiByZXF1aXJlKCcuL2ltYWdlcy91YS5wbmcnKSxcbiAgICAgICAgICAgIHVnOiByZXF1aXJlKCcuL2ltYWdlcy91Zy5wbmcnKSxcbiAgICAgICAgICAgIHVzOiByZXF1aXJlKCcuL2ltYWdlcy91cy5wbmcnKSxcbiAgICAgICAgICAgIHV5OiByZXF1aXJlKCcuL2ltYWdlcy91eS5wbmcnKSxcbiAgICAgICAgICAgIHV6OiByZXF1aXJlKCcuL2ltYWdlcy91ei5wbmcnKSxcbiAgICAgICAgICAgIHZhOiByZXF1aXJlKCcuL2ltYWdlcy92YS5wbmcnKSxcbiAgICAgICAgICAgIHZjOiByZXF1aXJlKCcuL2ltYWdlcy92Yy5wbmcnKSxcbiAgICAgICAgICAgIHZlOiByZXF1aXJlKCcuL2ltYWdlcy92ZS5wbmcnKSxcbiAgICAgICAgICAgIHZnOiByZXF1aXJlKCcuL2ltYWdlcy92Zy5wbmcnKSxcbiAgICAgICAgICAgIHZpOiByZXF1aXJlKCcuL2ltYWdlcy92aS5wbmcnKSxcbiAgICAgICAgICAgIHZuOiByZXF1aXJlKCcuL2ltYWdlcy92bi5wbmcnKSxcbiAgICAgICAgICAgIHZ1OiByZXF1aXJlKCcuL2ltYWdlcy92dS5wbmcnKSxcbiAgICAgICAgICAgIHdmOiByZXF1aXJlKCcuL2ltYWdlcy93Zi5wbmcnKSxcbiAgICAgICAgICAgIHdzOiByZXF1aXJlKCcuL2ltYWdlcy93cy5wbmcnKSxcbiAgICAgICAgICAgIHllOiByZXF1aXJlKCcuL2ltYWdlcy95ZS5wbmcnKSxcbiAgICAgICAgICAgIHl0OiByZXF1aXJlKCcuL2ltYWdlcy95dC5wbmcnKSxcbiAgICAgICAgICAgIHphOiByZXF1aXJlKCcuL2ltYWdlcy96YS5wbmcnKSxcbiAgICAgICAgICAgIHptOiByZXF1aXJlKCcuL2ltYWdlcy96bS5wbmcnKSxcbiAgICAgICAgICAgIHp3OiByZXF1aXJlKCcuL2ltYWdlcy96dy5wbmcnKSxcbiAgICAgICAgfTtcbiAgICB9XG5cbiAgICBnZXQobmFtZSkge1xuICAgICAgICByZXR1cm4gdGhpcy5mbGFnc1tuYW1lXTtcbiAgICB9XG59XG5cbmV4cG9ydCBkZWZhdWx0IG5ldyBGbGFnUmVzb3VyY2UoKTtcbiJdfQ== \ No newline at end of file diff --git a/dist/resources/numberType.json b/dist/resources/numberType.json new file mode 100644 index 00000000..ba4ea496 --- /dev/null +++ b/dist/resources/numberType.json @@ -0,0 +1,14 @@ +{ + "FIXED_LINE": 0, + "MOBILE": 1, + "FIXED_LINE_OR_MOBILE": 2, + "TOLL_FREE": 3, + "PREMIUM_RATE": 4, + "SHARED_COST": 5, + "VOIP": 6, + "PERSONAL_NUMBER": 7, + "PAGER": 8, + "UAN": 9, + "VOICEMAIL": 10, + "UNKNOWN": -1 +} diff --git a/dist/styles.d.ts b/dist/styles.d.ts new file mode 100644 index 00000000..b2246c4b --- /dev/null +++ b/dist/styles.d.ts @@ -0,0 +1,44 @@ +declare const _default: { + container: { + flexDirection: "row"; + alignItems: "center"; + justifyContent: "center"; + }; + mainBox: {}; + basicContainer: { + flex: number; + justifyContent: "flex-end"; + alignItems: "center"; + }; + modalContainer: { + width: number; + justifyContent: "center"; + alignItems: "center"; + padding: number; + }; + buttonView: { + width: number; + padding: number; + borderTopWidth: number; + borderTopColor: string; + justifyContent: "space-between"; + flexDirection: "row"; + }; + bottomPicker: { + width: number; + }; + flag: { + height: number; + width: number; + borderRadius: number; + borderWidth: number; + borderColor: string; + backgroundColor: string; + }; + text: { + height: number; + padding: number; + justifyContent: "center"; + }; +}; +export default _default; diff --git a/dist/styles.js b/dist/styles.js new file mode 100644 index 00000000..a41a6177 --- /dev/null +++ b/dist/styles.js @@ -0,0 +1,50 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +const react_native_1 = require("react-native"); +const { width } = react_native_1.Dimensions.get('window'); +const SCREEN_WIDTH = width; +exports.default = react_native_1.StyleSheet.create({ + container: { + flexDirection: 'row', + alignItems: 'center', + justifyContent: 'center', + // borderWidth:1, + }, + mainBox: {}, + basicContainer: { + flex: 1, + justifyContent: 'flex-end', + alignItems: 'center', + }, + modalContainer: { + width: SCREEN_WIDTH, + justifyContent: 'center', + alignItems: 'center', + padding: 0, + }, + buttonView: { + width: SCREEN_WIDTH, + padding: 8, + borderTopWidth: 0.5, + borderTopColor: 'lightgrey', + justifyContent: 'space-between', + flexDirection: 'row', + }, + bottomPicker: { + width: SCREEN_WIDTH, + }, + flag: { + height: 20, + width: 30, + borderRadius: 2, + borderWidth: 0.5, + borderColor: '#cecece', + backgroundColor: '#cecece', + }, + text: { + height: 20, + padding: 0, + justifyContent: 'center', + }, +}); +//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3R5bGVzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vc3JjL3N0eWxlcy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOztBQUFBLCtDQUFzRDtBQUV0RCxNQUFNLEVBQUUsS0FBSyxFQUFFLEdBQUcseUJBQVUsQ0FBQyxHQUFHLENBQUMsUUFBUSxDQUFDLENBQUM7QUFFM0MsTUFBTSxZQUFZLEdBQUcsS0FBSyxDQUFDO0FBRTNCLGtCQUFlLHlCQUFVLENBQUMsTUFBTSxDQUFDO0lBQzdCLFNBQVMsRUFBRTtRQUNQLGFBQWEsRUFBRSxLQUFLO1FBQ3BCLFVBQVUsRUFBRSxRQUFRO1FBQ3BCLGNBQWMsRUFBRSxRQUFRO1FBQzVCLGlCQUFpQjtLQUNoQjtJQUNELE9BQU8sRUFBRSxFQUVSO0lBQ0QsY0FBYyxFQUFFO1FBQ1osSUFBSSxFQUFFLENBQUM7UUFDUCxjQUFjLEVBQUUsVUFBVTtRQUMxQixVQUFVLEVBQUUsUUFBUTtLQUN2QjtJQUNELGNBQWMsRUFBRTtRQUNaLEtBQUssRUFBRSxZQUFZO1FBQ25CLGNBQWMsRUFBRSxRQUFRO1FBQ3hCLFVBQVUsRUFBRSxRQUFRO1FBQ3BCLE9BQU8sRUFBRSxDQUFDO0tBQ2I7SUFDRCxVQUFVLEVBQUU7UUFDUixLQUFLLEVBQUUsWUFBWTtRQUNuQixPQUFPLEVBQUUsQ0FBQztRQUNWLGNBQWMsRUFBRSxHQUFHO1FBQ25CLGNBQWMsRUFBRSxXQUFXO1FBQzNCLGNBQWMsRUFBRSxlQUFlO1FBQy9CLGFBQWEsRUFBRSxLQUFLO0tBQ3ZCO0lBQ0QsWUFBWSxFQUFFO1FBQ1YsS0FBSyxFQUFFLFlBQVk7S0FDdEI7SUFDRCxJQUFJLEVBQUU7UUFDRixNQUFNLEVBQUUsRUFBRTtRQUNWLEtBQUssRUFBRSxFQUFFO1FBQ1QsWUFBWSxFQUFFLENBQUM7UUFDZixXQUFXLEVBQUUsR0FBRztRQUNoQixXQUFXLEVBQUUsU0FBUztRQUN0QixlQUFlLEVBQUUsU0FBUztLQUM3QjtJQUNELElBQUksRUFBRTtRQUNGLE1BQU0sRUFBRSxFQUFFO1FBQ1YsT0FBTyxFQUFFLENBQUM7UUFDVixjQUFjLEVBQUUsUUFBUTtLQUMzQjtDQUNKLENBQUMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IFN0eWxlU2hlZXQsIERpbWVuc2lvbnMgfSBmcm9tICdyZWFjdC1uYXRpdmUnO1xuXG5jb25zdCB7IHdpZHRoIH0gPSBEaW1lbnNpb25zLmdldCgnd2luZG93Jyk7XG5cbmNvbnN0IFNDUkVFTl9XSURUSCA9IHdpZHRoO1xuXG5leHBvcnQgZGVmYXVsdCBTdHlsZVNoZWV0LmNyZWF0ZSh7XG4gICAgY29udGFpbmVyOiB7XG4gICAgICAgIGZsZXhEaXJlY3Rpb246ICdyb3cnLFxuICAgICAgICBhbGlnbkl0ZW1zOiAnY2VudGVyJyxcbiAgICAgICAganVzdGlmeUNvbnRlbnQ6ICdjZW50ZXInLFxuICAgIC8vIGJvcmRlcldpZHRoOjEsXG4gICAgfSxcbiAgICBtYWluQm94OiB7XG5cbiAgICB9LFxuICAgIGJhc2ljQ29udGFpbmVyOiB7XG4gICAgICAgIGZsZXg6IDEsXG4gICAgICAgIGp1c3RpZnlDb250ZW50OiAnZmxleC1lbmQnLFxuICAgICAgICBhbGlnbkl0ZW1zOiAnY2VudGVyJyxcbiAgICB9LFxuICAgIG1vZGFsQ29udGFpbmVyOiB7XG4gICAgICAgIHdpZHRoOiBTQ1JFRU5fV0lEVEgsXG4gICAgICAgIGp1c3RpZnlDb250ZW50OiAnY2VudGVyJyxcbiAgICAgICAgYWxpZ25JdGVtczogJ2NlbnRlcicsXG4gICAgICAgIHBhZGRpbmc6IDAsXG4gICAgfSxcbiAgICBidXR0b25WaWV3OiB7XG4gICAgICAgIHdpZHRoOiBTQ1JFRU5fV0lEVEgsXG4gICAgICAgIHBhZGRpbmc6IDgsXG4gICAgICAgIGJvcmRlclRvcFdpZHRoOiAwLjUsXG4gICAgICAgIGJvcmRlclRvcENvbG9yOiAnbGlnaHRncmV5JyxcbiAgICAgICAganVzdGlmeUNvbnRlbnQ6ICdzcGFjZS1iZXR3ZWVuJyxcbiAgICAgICAgZmxleERpcmVjdGlvbjogJ3JvdycsXG4gICAgfSxcbiAgICBib3R0b21QaWNrZXI6IHtcbiAgICAgICAgd2lkdGg6IFNDUkVFTl9XSURUSCxcbiAgICB9LFxuICAgIGZsYWc6IHtcbiAgICAgICAgaGVpZ2h0OiAyMCxcbiAgICAgICAgd2lkdGg6IDMwLFxuICAgICAgICBib3JkZXJSYWRpdXM6IDIsXG4gICAgICAgIGJvcmRlcldpZHRoOiAwLjUsXG4gICAgICAgIGJvcmRlckNvbG9yOiAnI2NlY2VjZScsXG4gICAgICAgIGJhY2tncm91bmRDb2xvcjogJyNjZWNlY2UnLFxuICAgIH0sXG4gICAgdGV4dDoge1xuICAgICAgICBoZWlnaHQ6IDIwLFxuICAgICAgICBwYWRkaW5nOiAwLFxuICAgICAgICBqdXN0aWZ5Q29udGVudDogJ2NlbnRlcicsXG4gICAgfSxcbn0pO1xuIl19 \ No newline at end of file diff --git a/dist/typings/index.d.ts b/dist/typings/index.d.ts new file mode 100644 index 00000000..8ac4378c --- /dev/null +++ b/dist/typings/index.d.ts @@ -0,0 +1,231 @@ +// Type definitions for react-native-phone-input 0.2 +// Project: https://github.com/thegamenicorus/react-native-phone-input +// Definitions by: Matthew Elphick +// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped +// TypeScript Version: 2.9 + +import * as React from 'react'; // eslint-disable-line import/no-extraneous-dependencies +import { + StyleProp, + ViewStyle as ViewStyleRaw, + TextStyle as TextStyleRaw, + TextInput, + ImageRequireSource, + ImageStyle, +} from 'react-native'; + +export type ViewStyle = StyleProp; +export type TextStyle = StyleProp; + +export interface CountriesListItem { + name: string; + iso2: string; + dialCode: string; + priority: number; + areaCodes: ReadonlyArray | null; +} + +export interface PickerData { + key: number; + image: ImageRequireSource; + label: CountriesListItem['name']; + dialCode: CountriesListItem['dialCode']; + iso2: CountriesListItem['iso2']; +} + +export interface ReactNativeCountryPickerProps { + buttonColor?: string; + cancelText?: string; + cancelTextStyle: TextStyle; + confirmText?: string; + confirmTextStyle?: TextStyle; + selectedCountry?: any; + onPressCancel?: Function; + onPressConfirm?: Function; + onSubmit?: Function; + pickerBackgroundColor?: string; + itemStyle?: ViewStyle; +} + +export interface ReactNativeCountryPickerState { + buttonColor: string; + modalVisible: boolean; + selectedCountry: any; +} + +export interface ReactNativePhoneInputProps { + /** + * Override accessibility label for telephone input + */ + accessibilityLabel?: string; + /** + * Format input while typing + */ + autoFormat?: boolean; + /** + * Initial selected country + */ + initialCountry?: string; + /** + * Allow user input 0 after country code + */ + allowZeroAfterCountryCode?: boolean; + /** + * If true, disable all interaction of this component + */ + disabled?: boolean; + /** + * Initial phone number + */ + initialValue?: string; + /** + * Custom styles to be applied if supplied + */ + style?: ViewStyle; + /** + * Custom styles for flag image eg. {{width: 50, height: 30, borderWidth:0}} + */ + flagStyle?: ImageStyle; + /** + * Custom styles for phone number text input eg. {{fontSize: 14}} + */ + textStyle?: TextStyle; + /** + * Properties for phone number text input eg. {{placeholder: 'Telephone number'}} + */ + textProps?: React.ComponentProps; + /** + * The input component to use + */ + textComponent?: TextComponentType; + /** + * Distance between flag and phone number + */ + offset?: number; + /** + * Set button color of country picker + */ + pickerButtonColor?: string; + /** + * Set background color of country picker + */ + pickerBackgroundColor?: string; + /** + * Custom styles for text in country picker eg. {{fontSize: 14}} + */ + pickerItemStyle?: ViewStyle; + /** + * Cancel word + */ + cancelText?: string; + /** + * Cancel word text style + */ + cancelTextStyle?: TextStyle; + /** + * Confirm word + */ + confirmText?: string; + /** + * Confirm word text style + */ + confirmTextStyle?: TextStyle; + /** + * Custom styles for country picker button + */ + buttonTextStyle?: TextStyle; + /** + * Function to be invoked when phone number is changed + */ + onChangePhoneNumber?: (displayValue: string, iso2: string) => void; + /** + * Function to be invoked when country picker is selected + */ + onSelectCountry?: (iso2: string) => void; + /** + * Function to be invoked when press on flag image + */ + onPressFlag?: () => void; + /** + * Custom countries list + */ + countriesList?: ReadonlyArray; + /** + * Function to be invoked when cancelling country picker selection + */ + onPressCancel?: () => void; + /** + * Function to be invoked when confirming country picker selection + */ + onPressConfirm?: () => void; + /** + * Render function to replace the default flag + */ + renderFlag?: ({ imageSource }: { imageSource: number }) => Element; +} + +export default class ReactNativePhoneInput< + TextComponentType extends React.ComponentType = typeof TextInput +> extends React.Component> { + picker?: React.Ref>; + + /** + * Return true if current phone number is valid + */ + isValidNumber: () => boolean; + + /** + * Return true type of current phone number + */ + getNumberType: () => string; + + /** + * Return current phone number without display format + */ + getValue: () => string; + + /** + * Return flag image + */ + getFlag: (iso2: string) => ImageRequireSource; + + /** + * Return country object in country picker + */ + getAllCountries: () => CountriesListItem; + + /** + * Return country object with flag image + */ + getPickerData: () => PickerData; + + /** + * Focus the phone input + */ + focus: () => void; + + /** + * Blur the phone input + */ + blur: () => void; + + /** + * Set phone input to specific country + */ + selectCountry: (iso2: string) => void; + + /** + * Set phone input value + */ + setValue: (value: string) => void; + + /** + * Return country dial code of current phone number + */ + getCountryCode: () => string; + + /** + * Return country iso code of current phone number + */ + getISOCode: () => string; +} diff --git a/package-lock.json b/package-lock.json deleted file mode 100644 index ed14b944..00000000 --- a/package-lock.json +++ /dev/null @@ -1,13159 +0,0 @@ -{ - "name": "react-native-phone-input", - "version": "1.3.6", - "lockfileVersion": 3, - "requires": true, - "packages": { - "": { - "name": "react-native-phone-input", - "version": "1.3.6", - "license": "MIT", - "dependencies": { - "google-libphonenumber": "^3.2.32", - "lodash": "^4.17.21", - "prop-types": "^15.8.1" - }, - "devDependencies": { - "@istanbuljs/nyc-config-typescript": "^0.1.3", - "@types/chai": "^4.3.4", - "@types/mocha": "^5.2.7", - "@types/react-native": "^0.63.69", - "@types/react-native-phone-input": "^0.2.2", - "@typescript-eslint/eslint-plugin": "^5.57.1", - "@typescript-eslint/parser": "^5.57.1", - "chai": "^4.3.7", - "eslint": "^7.32.0", - "eslint-config-airbnb-base": "^14.2.1", - "eslint-config-react": "^1.1.7", - "eslint-plugin-import": "^2.27.5", - "eslint-plugin-jsx-a11y": "^6.7.1", - "eslint-plugin-react": "^7.32.2", - "husky": "^4.3.8", - "mocha": "^8.4.0", - "nyc": "^15.1.0", - "ts-loader": "^9.4.2", - "ts-node": "^8.10.2", - "tsconfig-paths": "^3.14.2", - "typescript": "^4.9.5" - }, - "peerDependencies": { - "@react-native-picker/picker": ">= 2.0", - "react-native": ">=0.69.9" - } - }, - "node_modules/@ampproject/remapping": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", - "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", - "dependencies": { - "@jridgewell/gen-mapping": "^0.3.0", - "@jridgewell/trace-mapping": "^0.3.9" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@babel/code-frame": { - "version": "7.12.11", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", - "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", - "dependencies": { - "@babel/highlight": "^7.10.4" - } - }, - "node_modules/@babel/compat-data": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.21.4.tgz", - "integrity": "sha512-/DYyDpeCfaVinT40FPGdkkb+lYSKvsVuMjDAG7jPOWWiM1ibOaB9CXJAlc4d1QpP/U2q2P9jbrSlClKSErd55g==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/core": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.21.4.tgz", - "integrity": "sha512-qt/YV149Jman/6AfmlxJ04LMIu8bMoyl3RB91yTFrxQmgbrSvQMy7cI8Q62FHx1t8wJ8B5fu0UDoLwHAhUo1QA==", - "dependencies": { - "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.21.4", - "@babel/generator": "^7.21.4", - "@babel/helper-compilation-targets": "^7.21.4", - "@babel/helper-module-transforms": "^7.21.2", - "@babel/helpers": "^7.21.0", - "@babel/parser": "^7.21.4", - "@babel/template": "^7.20.7", - "@babel/traverse": "^7.21.4", - "@babel/types": "^7.21.4", - "convert-source-map": "^1.7.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.2", - "json5": "^2.2.2", - "semver": "^6.3.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/babel" - } - }, - "node_modules/@babel/core/node_modules/@babel/code-frame": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.21.4.tgz", - "integrity": "sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g==", - "dependencies": { - "@babel/highlight": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/core/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/@babel/generator": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.21.4.tgz", - "integrity": "sha512-NieM3pVIYW2SwGzKoqfPrQsf4xGs9M9AIG3ThppsSRmO+m7eQhmI6amajKMUeIO37wFfsvnvcxQFx6x6iqxDnA==", - "dependencies": { - "@babel/types": "^7.21.4", - "@jridgewell/gen-mapping": "^0.3.2", - "@jridgewell/trace-mapping": "^0.3.17", - "jsesc": "^2.5.1" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-annotate-as-pure": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz", - "integrity": "sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==", - "peer": true, - "dependencies": { - "@babel/types": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.9.tgz", - "integrity": "sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==", - "peer": true, - "dependencies": { - "@babel/helper-explode-assignable-expression": "^7.18.6", - "@babel/types": "^7.18.9" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-compilation-targets": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.21.4.tgz", - "integrity": "sha512-Fa0tTuOXZ1iL8IeDFUWCzjZcn+sJGd9RZdH9esYVjEejGmzf+FFYQpMi/kZUk2kPy/q1H3/GPw7np8qar/stfg==", - "dependencies": { - "@babel/compat-data": "^7.21.4", - "@babel/helper-validator-option": "^7.21.0", - "browserslist": "^4.21.3", - "lru-cache": "^5.1.1", - "semver": "^6.3.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-compilation-targets/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/@babel/helper-create-class-features-plugin": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.21.4.tgz", - "integrity": "sha512-46QrX2CQlaFRF4TkwfTt6nJD7IHq8539cCL7SDpqWSDeJKY1xylKKY5F/33mJhLZ3mFvKv2gGrVS6NkyF6qs+Q==", - "peer": true, - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-function-name": "^7.21.0", - "@babel/helper-member-expression-to-functions": "^7.21.0", - "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/helper-replace-supers": "^7.20.7", - "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", - "@babel/helper-split-export-declaration": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-create-regexp-features-plugin": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.21.4.tgz", - "integrity": "sha512-M00OuhU+0GyZ5iBBN9czjugzWrEq2vDpf/zCYHxxf93ul/Q5rv+a5h+/+0WnI1AebHNVtl5bFV0qsJoH23DbfA==", - "peer": true, - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "regexpu-core": "^5.3.1" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-define-polyfill-provider": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.3.tgz", - "integrity": "sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==", - "peer": true, - "dependencies": { - "@babel/helper-compilation-targets": "^7.17.7", - "@babel/helper-plugin-utils": "^7.16.7", - "debug": "^4.1.1", - "lodash.debounce": "^4.0.8", - "resolve": "^1.14.2", - "semver": "^6.1.2" - }, - "peerDependencies": { - "@babel/core": "^7.4.0-0" - } - }, - "node_modules/@babel/helper-define-polyfill-provider/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "peer": true, - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/@babel/helper-environment-visitor": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz", - "integrity": "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-explode-assignable-expression": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.18.6.tgz", - "integrity": "sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==", - "peer": true, - "dependencies": { - "@babel/types": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-function-name": { - "version": "7.21.0", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.21.0.tgz", - "integrity": "sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg==", - "dependencies": { - "@babel/template": "^7.20.7", - "@babel/types": "^7.21.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-hoist-variables": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", - "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", - "dependencies": { - "@babel/types": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-member-expression-to-functions": { - "version": "7.21.0", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.21.0.tgz", - "integrity": "sha512-Muu8cdZwNN6mRRNG6lAYErJ5X3bRevgYR2O8wN0yn7jJSnGDu6eG59RfT29JHxGUovyfrh6Pj0XzmR7drNVL3Q==", - "peer": true, - "dependencies": { - "@babel/types": "^7.21.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-module-imports": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.21.4.tgz", - "integrity": "sha512-orajc5T2PsRYUN3ZryCEFeMDYwyw09c/pZeaQEZPH0MpKzSvn3e0uXsDBu3k03VI+9DBiRo+l22BfKTpKwa/Wg==", - "dependencies": { - "@babel/types": "^7.21.4" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-module-transforms": { - "version": "7.21.2", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.21.2.tgz", - "integrity": "sha512-79yj2AR4U/Oqq/WOV7Lx6hUjau1Zfo4cI+JLAVYeMV5XIlbOhmjEk5ulbTc9fMpmlojzZHkUUxAiK+UKn+hNQQ==", - "dependencies": { - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-module-imports": "^7.18.6", - "@babel/helper-simple-access": "^7.20.2", - "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/helper-validator-identifier": "^7.19.1", - "@babel/template": "^7.20.7", - "@babel/traverse": "^7.21.2", - "@babel/types": "^7.21.2" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-optimise-call-expression": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz", - "integrity": "sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==", - "peer": true, - "dependencies": { - "@babel/types": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-plugin-utils": { - "version": "7.20.2", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", - "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", - "peer": true, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-remap-async-to-generator": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz", - "integrity": "sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==", - "peer": true, - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-wrap-function": "^7.18.9", - "@babel/types": "^7.18.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-replace-supers": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.20.7.tgz", - "integrity": "sha512-vujDMtB6LVfNW13jhlCrp48QNslK6JXi7lQG736HVbHz/mbf4Dc7tIRh1Xf5C0rF7BP8iiSxGMCmY6Ci1ven3A==", - "peer": true, - "dependencies": { - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-member-expression-to-functions": "^7.20.7", - "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/template": "^7.20.7", - "@babel/traverse": "^7.20.7", - "@babel/types": "^7.20.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-simple-access": { - "version": "7.20.2", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz", - "integrity": "sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==", - "dependencies": { - "@babel/types": "^7.20.2" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-skip-transparent-expression-wrappers": { - "version": "7.20.0", - "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.20.0.tgz", - "integrity": "sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==", - "peer": true, - "dependencies": { - "@babel/types": "^7.20.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-split-export-declaration": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", - "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", - "dependencies": { - "@babel/types": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-string-parser": { - "version": "7.19.4", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz", - "integrity": "sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-validator-identifier": { - "version": "7.19.1", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz", - "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-validator-option": { - "version": "7.21.0", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.21.0.tgz", - "integrity": "sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-wrap-function": { - "version": "7.20.5", - "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.20.5.tgz", - "integrity": "sha512-bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q==", - "peer": true, - "dependencies": { - "@babel/helper-function-name": "^7.19.0", - "@babel/template": "^7.18.10", - "@babel/traverse": "^7.20.5", - "@babel/types": "^7.20.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helpers": { - "version": "7.21.0", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.21.0.tgz", - "integrity": "sha512-XXve0CBtOW0pd7MRzzmoyuSj0e3SEzj8pgyFxnTT1NJZL38BD1MK7yYrm8yefRPIDvNNe14xR4FdbHwpInD4rA==", - "dependencies": { - "@babel/template": "^7.20.7", - "@babel/traverse": "^7.21.0", - "@babel/types": "^7.21.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/highlight": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", - "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", - "dependencies": { - "@babel/helper-validator-identifier": "^7.18.6", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/highlight/node_modules/ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dependencies": { - "color-convert": "^1.9.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/@babel/highlight/node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/@babel/highlight/node_modules/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==", - "dependencies": { - "color-name": "1.1.3" - } - }, - "node_modules/@babel/highlight/node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" - }, - "node_modules/@babel/highlight/node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/@babel/highlight/node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "engines": { - "node": ">=4" - } - }, - "node_modules/@babel/highlight/node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/@babel/parser": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.21.4.tgz", - "integrity": "sha512-alVJj7k7zIxqBZ7BTRhz0IqJFxW1VJbm6N8JbcYhQ186df9ZBPbZBmWSqAMXwHGsCJdYks7z/voa3ibiS5bCIw==", - "bin": { - "parser": "bin/babel-parser.js" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6.tgz", - "integrity": "sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==", - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.20.7.tgz", - "integrity": "sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==", - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", - "@babel/plugin-proposal-optional-chaining": "^7.20.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.13.0" - } - }, - "node_modules/@babel/plugin-proposal-async-generator-functions": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.7.tgz", - "integrity": "sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==", - "peer": true, - "dependencies": { - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-remap-async-to-generator": "^7.18.9", - "@babel/plugin-syntax-async-generators": "^7.8.4" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-class-properties": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz", - "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==", - "peer": true, - "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-class-static-block": { - "version": "7.21.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.21.0.tgz", - "integrity": "sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==", - "peer": true, - "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.21.0", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/plugin-syntax-class-static-block": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.12.0" - } - }, - "node_modules/@babel/plugin-proposal-dynamic-import": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.18.6.tgz", - "integrity": "sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==", - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-dynamic-import": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-export-default-from": { - "version": "7.18.10", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-default-from/-/plugin-proposal-export-default-from-7.18.10.tgz", - "integrity": "sha512-5H2N3R2aQFxkV4PIBUR/i7PUSwgTZjouJKzI8eKswfIjT0PhvzkPn0t0wIS5zn6maQuvtT0t1oHtMUz61LOuow==", - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.9", - "@babel/plugin-syntax-export-default-from": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-export-namespace-from": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz", - "integrity": "sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==", - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.9", - "@babel/plugin-syntax-export-namespace-from": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-json-strings": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.18.6.tgz", - "integrity": "sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==", - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-json-strings": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-logical-assignment-operators": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.20.7.tgz", - "integrity": "sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==", - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-nullish-coalescing-operator": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz", - "integrity": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==", - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-numeric-separator": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz", - "integrity": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==", - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-numeric-separator": "^7.10.4" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-object-rest-spread": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz", - "integrity": "sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==", - "peer": true, - "dependencies": { - "@babel/compat-data": "^7.20.5", - "@babel/helper-compilation-targets": "^7.20.7", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-transform-parameters": "^7.20.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-optional-catch-binding": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz", - "integrity": "sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==", - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-optional-chaining": { - "version": "7.21.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz", - "integrity": "sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==", - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", - "@babel/plugin-syntax-optional-chaining": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-private-methods": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz", - "integrity": "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==", - "peer": true, - "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-private-property-in-object": { - "version": "7.21.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0.tgz", - "integrity": "sha512-ha4zfehbJjc5MmXBlHec1igel5TJXXLDDRbuJ4+XT2TJcyD9/V1919BA8gMvsdHcNMBy4WBUBiRb3nw/EQUtBw==", - "peer": true, - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-create-class-features-plugin": "^7.21.0", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/plugin-syntax-private-property-in-object": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-unicode-property-regex": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz", - "integrity": "sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==", - "peer": true, - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=4" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-async-generators": { - "version": "7.8.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", - "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-class-properties": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", - "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.12.13" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-class-static-block": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", - "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-dynamic-import": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", - "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-export-default-from": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-default-from/-/plugin-syntax-export-default-from-7.18.6.tgz", - "integrity": "sha512-Kr//z3ujSVNx6E9z9ih5xXXMqK07VVTuqPmqGe6Mss/zW5XPeLZeSDZoP9ab/hT4wPKqAgjl2PnhPrcpk8Seew==", - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-export-namespace-from": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", - "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.3" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-flow": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.21.4.tgz", - "integrity": "sha512-l9xd3N+XG4fZRxEP3vXdK6RW7vN1Uf5dxzRC/09wV86wqZ/YYQooBIGNsiRdfNR3/q2/5pPzV4B54J/9ctX5jw==", - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-import-assertions": { - "version": "7.20.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.20.0.tgz", - "integrity": "sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==", - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.19.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-json-strings": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", - "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-jsx": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.21.4.tgz", - "integrity": "sha512-5hewiLct5OKyh6PLKEYaFclcqtIgCb6bmELouxjF6up5q3Sov7rOayW4RwhbaBL0dit8rA80GNfY+UuDp2mBbQ==", - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-logical-assignment-operators": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", - "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.4" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", - "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-numeric-separator": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", - "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.4" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-object-rest-spread": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", - "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-optional-catch-binding": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", - "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-optional-chaining": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", - "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-private-property-in-object": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", - "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-top-level-await": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", - "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-typescript": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.21.4.tgz", - "integrity": "sha512-xz0D39NvhQn4t4RNsHmDnnsaQizIlUkdtYvLs8La1BlfjQ6JEwxkJGeqJMW2tAXx+q6H+WFuUTXNdYVpEya0YA==", - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-arrow-functions": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.20.7.tgz", - "integrity": "sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ==", - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-async-to-generator": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.20.7.tgz", - "integrity": "sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==", - "peer": true, - "dependencies": { - "@babel/helper-module-imports": "^7.18.6", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-remap-async-to-generator": "^7.18.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-block-scoped-functions": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.18.6.tgz", - "integrity": "sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==", - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-block-scoping": { - "version": "7.21.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.21.0.tgz", - "integrity": "sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ==", - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-classes": { - "version": "7.21.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.21.0.tgz", - "integrity": "sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ==", - "peer": true, - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-compilation-targets": "^7.20.7", - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-function-name": "^7.21.0", - "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-replace-supers": "^7.20.7", - "@babel/helper-split-export-declaration": "^7.18.6", - "globals": "^11.1.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-classes/node_modules/globals": { - "version": "11.12.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", - "peer": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/@babel/plugin-transform-computed-properties": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.20.7.tgz", - "integrity": "sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ==", - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/template": "^7.20.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-destructuring": { - "version": "7.21.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.21.3.tgz", - "integrity": "sha512-bp6hwMFzuiE4HqYEyoGJ/V2LeIWn+hLVKc4pnj++E5XQptwhtcGmSayM029d/j2X1bPKGTlsyPwAubuU22KhMA==", - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-dotall-regex": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.18.6.tgz", - "integrity": "sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==", - "peer": true, - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-duplicate-keys": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.9.tgz", - "integrity": "sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==", - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-exponentiation-operator": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.18.6.tgz", - "integrity": "sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==", - "peer": true, - "dependencies": { - "@babel/helper-builder-binary-assignment-operator-visitor": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-flow-strip-types": { - "version": "7.21.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.21.0.tgz", - "integrity": "sha512-FlFA2Mj87a6sDkW4gfGrQQqwY/dLlBAyJa2dJEZ+FHXUVHBflO2wyKvg+OOEzXfrKYIa4HWl0mgmbCzt0cMb7w==", - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/plugin-syntax-flow": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-for-of": { - "version": "7.21.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.21.0.tgz", - "integrity": "sha512-LlUYlydgDkKpIY7mcBWvyPPmMcOphEyYA27Ef4xpbh1IiDNLr0kZsos2nf92vz3IccvJI25QUwp86Eo5s6HmBQ==", - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-function-name": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.9.tgz", - "integrity": "sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==", - "peer": true, - "dependencies": { - "@babel/helper-compilation-targets": "^7.18.9", - "@babel/helper-function-name": "^7.18.9", - "@babel/helper-plugin-utils": "^7.18.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-literals": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz", - "integrity": "sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==", - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-member-expression-literals": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.18.6.tgz", - "integrity": "sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==", - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-modules-amd": { - "version": "7.20.11", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.20.11.tgz", - "integrity": "sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==", - "peer": true, - "dependencies": { - "@babel/helper-module-transforms": "^7.20.11", - "@babel/helper-plugin-utils": "^7.20.2" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-modules-commonjs": { - "version": "7.21.2", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.21.2.tgz", - "integrity": "sha512-Cln+Yy04Gxua7iPdj6nOV96smLGjpElir5YwzF0LBPKoPlLDNJePNlrGGaybAJkd0zKRnOVXOgizSqPYMNYkzA==", - "peer": true, - "dependencies": { - "@babel/helper-module-transforms": "^7.21.2", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-simple-access": "^7.20.2" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-modules-systemjs": { - "version": "7.20.11", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.20.11.tgz", - "integrity": "sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==", - "peer": true, - "dependencies": { - "@babel/helper-hoist-variables": "^7.18.6", - "@babel/helper-module-transforms": "^7.20.11", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-validator-identifier": "^7.19.1" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-modules-umd": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.18.6.tgz", - "integrity": "sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==", - "peer": true, - "dependencies": { - "@babel/helper-module-transforms": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { - "version": "7.20.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.20.5.tgz", - "integrity": "sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==", - "peer": true, - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.20.5", - "@babel/helper-plugin-utils": "^7.20.2" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/plugin-transform-new-target": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.18.6.tgz", - "integrity": "sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==", - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-object-super": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.18.6.tgz", - "integrity": "sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==", - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-replace-supers": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-parameters": { - "version": "7.21.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.21.3.tgz", - "integrity": "sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ==", - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-property-literals": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.18.6.tgz", - "integrity": "sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==", - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-react-display-name": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.18.6.tgz", - "integrity": "sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==", - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-react-jsx": { - "version": "7.21.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.21.0.tgz", - "integrity": "sha512-6OAWljMvQrZjR2DaNhVfRz6dkCAVV+ymcLUmaf8bccGOHn2v5rHJK3tTpij0BuhdYWP4LLaqj5lwcdlpAAPuvg==", - "peer": true, - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-module-imports": "^7.18.6", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/plugin-syntax-jsx": "^7.18.6", - "@babel/types": "^7.21.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-react-jsx-self": { - "version": "7.21.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.21.0.tgz", - "integrity": "sha512-f/Eq+79JEu+KUANFks9UZCcvydOOGMgF7jBrcwjHa5jTZD8JivnhCJYvmlhR/WTXBWonDExPoW0eO/CR4QJirA==", - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-react-jsx-source": { - "version": "7.19.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.19.6.tgz", - "integrity": "sha512-RpAi004QyMNisst/pvSanoRdJ4q+jMCWyk9zdw/CyLB9j8RXEahodR6l2GyttDRyEVWZtbN+TpLiHJ3t34LbsQ==", - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.19.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-regenerator": { - "version": "7.20.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.20.5.tgz", - "integrity": "sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ==", - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2", - "regenerator-transform": "^0.15.1" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-reserved-words": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.18.6.tgz", - "integrity": "sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==", - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-runtime": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.21.4.tgz", - "integrity": "sha512-1J4dhrw1h1PqnNNpzwxQ2UBymJUF8KuPjAAnlLwZcGhHAIqUigFW7cdK6GHoB64ubY4qXQNYknoUeks4Wz7CUA==", - "peer": true, - "dependencies": { - "@babel/helper-module-imports": "^7.21.4", - "@babel/helper-plugin-utils": "^7.20.2", - "babel-plugin-polyfill-corejs2": "^0.3.3", - "babel-plugin-polyfill-corejs3": "^0.6.0", - "babel-plugin-polyfill-regenerator": "^0.4.1", - "semver": "^6.3.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-runtime/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "peer": true, - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/@babel/plugin-transform-shorthand-properties": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.18.6.tgz", - "integrity": "sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==", - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-spread": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.20.7.tgz", - "integrity": "sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==", - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-sticky-regex": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.18.6.tgz", - "integrity": "sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==", - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-template-literals": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz", - "integrity": "sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==", - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-typeof-symbol": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.9.tgz", - "integrity": "sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==", - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-typescript": { - "version": "7.21.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.21.3.tgz", - "integrity": "sha512-RQxPz6Iqt8T0uw/WsJNReuBpWpBqs/n7mNo18sKLoTbMp+UrEekhH+pKSVC7gWz+DNjo9gryfV8YzCiT45RgMw==", - "peer": true, - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-create-class-features-plugin": "^7.21.0", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/plugin-syntax-typescript": "^7.20.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-unicode-escapes": { - "version": "7.18.10", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.18.10.tgz", - "integrity": "sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==", - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-unicode-regex": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.18.6.tgz", - "integrity": "sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==", - "peer": true, - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/preset-env": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.21.4.tgz", - "integrity": "sha512-2W57zHs2yDLm6GD5ZpvNn71lZ0B/iypSdIeq25OurDKji6AdzV07qp4s3n1/x5BqtiGaTrPN3nerlSCaC5qNTw==", - "peer": true, - "dependencies": { - "@babel/compat-data": "^7.21.4", - "@babel/helper-compilation-targets": "^7.21.4", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-validator-option": "^7.21.0", - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.18.6", - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.20.7", - "@babel/plugin-proposal-async-generator-functions": "^7.20.7", - "@babel/plugin-proposal-class-properties": "^7.18.6", - "@babel/plugin-proposal-class-static-block": "^7.21.0", - "@babel/plugin-proposal-dynamic-import": "^7.18.6", - "@babel/plugin-proposal-export-namespace-from": "^7.18.9", - "@babel/plugin-proposal-json-strings": "^7.18.6", - "@babel/plugin-proposal-logical-assignment-operators": "^7.20.7", - "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", - "@babel/plugin-proposal-numeric-separator": "^7.18.6", - "@babel/plugin-proposal-object-rest-spread": "^7.20.7", - "@babel/plugin-proposal-optional-catch-binding": "^7.18.6", - "@babel/plugin-proposal-optional-chaining": "^7.21.0", - "@babel/plugin-proposal-private-methods": "^7.18.6", - "@babel/plugin-proposal-private-property-in-object": "^7.21.0", - "@babel/plugin-proposal-unicode-property-regex": "^7.18.6", - "@babel/plugin-syntax-async-generators": "^7.8.4", - "@babel/plugin-syntax-class-properties": "^7.12.13", - "@babel/plugin-syntax-class-static-block": "^7.14.5", - "@babel/plugin-syntax-dynamic-import": "^7.8.3", - "@babel/plugin-syntax-export-namespace-from": "^7.8.3", - "@babel/plugin-syntax-import-assertions": "^7.20.0", - "@babel/plugin-syntax-json-strings": "^7.8.3", - "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", - "@babel/plugin-syntax-numeric-separator": "^7.10.4", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", - "@babel/plugin-syntax-optional-chaining": "^7.8.3", - "@babel/plugin-syntax-private-property-in-object": "^7.14.5", - "@babel/plugin-syntax-top-level-await": "^7.14.5", - "@babel/plugin-transform-arrow-functions": "^7.20.7", - "@babel/plugin-transform-async-to-generator": "^7.20.7", - "@babel/plugin-transform-block-scoped-functions": "^7.18.6", - "@babel/plugin-transform-block-scoping": "^7.21.0", - "@babel/plugin-transform-classes": "^7.21.0", - "@babel/plugin-transform-computed-properties": "^7.20.7", - "@babel/plugin-transform-destructuring": "^7.21.3", - "@babel/plugin-transform-dotall-regex": "^7.18.6", - "@babel/plugin-transform-duplicate-keys": "^7.18.9", - "@babel/plugin-transform-exponentiation-operator": "^7.18.6", - "@babel/plugin-transform-for-of": "^7.21.0", - "@babel/plugin-transform-function-name": "^7.18.9", - "@babel/plugin-transform-literals": "^7.18.9", - "@babel/plugin-transform-member-expression-literals": "^7.18.6", - "@babel/plugin-transform-modules-amd": "^7.20.11", - "@babel/plugin-transform-modules-commonjs": "^7.21.2", - "@babel/plugin-transform-modules-systemjs": "^7.20.11", - "@babel/plugin-transform-modules-umd": "^7.18.6", - "@babel/plugin-transform-named-capturing-groups-regex": "^7.20.5", - "@babel/plugin-transform-new-target": "^7.18.6", - "@babel/plugin-transform-object-super": "^7.18.6", - "@babel/plugin-transform-parameters": "^7.21.3", - "@babel/plugin-transform-property-literals": "^7.18.6", - "@babel/plugin-transform-regenerator": "^7.20.5", - "@babel/plugin-transform-reserved-words": "^7.18.6", - "@babel/plugin-transform-shorthand-properties": "^7.18.6", - "@babel/plugin-transform-spread": "^7.20.7", - "@babel/plugin-transform-sticky-regex": "^7.18.6", - "@babel/plugin-transform-template-literals": "^7.18.9", - "@babel/plugin-transform-typeof-symbol": "^7.18.9", - "@babel/plugin-transform-unicode-escapes": "^7.18.10", - "@babel/plugin-transform-unicode-regex": "^7.18.6", - "@babel/preset-modules": "^0.1.5", - "@babel/types": "^7.21.4", - "babel-plugin-polyfill-corejs2": "^0.3.3", - "babel-plugin-polyfill-corejs3": "^0.6.0", - "babel-plugin-polyfill-regenerator": "^0.4.1", - "core-js-compat": "^3.25.1", - "semver": "^6.3.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/preset-env/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "peer": true, - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/@babel/preset-flow": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/preset-flow/-/preset-flow-7.21.4.tgz", - "integrity": "sha512-F24cSq4DIBmhq4OzK3dE63NHagb27OPE3eWR+HLekt4Z3Y5MzIIUGF3LlLgV0gN8vzbDViSY7HnrReNVCJXTeA==", - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-validator-option": "^7.21.0", - "@babel/plugin-transform-flow-strip-types": "^7.21.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/preset-modules": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz", - "integrity": "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==", - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", - "@babel/plugin-transform-dotall-regex": "^7.4.4", - "@babel/types": "^7.4.4", - "esutils": "^2.0.2" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/preset-typescript": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.21.4.tgz", - "integrity": "sha512-sMLNWY37TCdRH/bJ6ZeeOH1nPuanED7Ai9Y/vH31IPqalioJ6ZNFUWONsakhv4r4n+I6gm5lmoE0olkgib/j/A==", - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-validator-option": "^7.21.0", - "@babel/plugin-syntax-jsx": "^7.21.4", - "@babel/plugin-transform-modules-commonjs": "^7.21.2", - "@babel/plugin-transform-typescript": "^7.21.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/register": { - "version": "7.21.0", - "resolved": "https://registry.npmjs.org/@babel/register/-/register-7.21.0.tgz", - "integrity": "sha512-9nKsPmYDi5DidAqJaQooxIhsLJiNMkGr8ypQ8Uic7cIox7UCDsM7HuUGxdGT7mSDTYbqzIdsOWzfBton/YJrMw==", - "peer": true, - "dependencies": { - "clone-deep": "^4.0.1", - "find-cache-dir": "^2.0.0", - "make-dir": "^2.1.0", - "pirates": "^4.0.5", - "source-map-support": "^0.5.16" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/register/node_modules/find-cache-dir": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz", - "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==", - "peer": true, - "dependencies": { - "commondir": "^1.0.1", - "make-dir": "^2.0.0", - "pkg-dir": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/@babel/register/node_modules/find-up": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", - "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", - "peer": true, - "dependencies": { - "locate-path": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/@babel/register/node_modules/locate-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", - "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", - "peer": true, - "dependencies": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/@babel/register/node_modules/make-dir": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", - "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", - "peer": true, - "dependencies": { - "pify": "^4.0.1", - "semver": "^5.6.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/@babel/register/node_modules/p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "peer": true, - "dependencies": { - "p-try": "^2.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@babel/register/node_modules/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==", - "peer": true, - "dependencies": { - "p-limit": "^2.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/@babel/register/node_modules/path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", - "peer": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/@babel/register/node_modules/pkg-dir": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", - "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", - "peer": true, - "dependencies": { - "find-up": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/@babel/register/node_modules/semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "peer": true, - "bin": { - "semver": "bin/semver" - } - }, - "node_modules/@babel/regjsgen": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz", - "integrity": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==", - "peer": true - }, - "node_modules/@babel/runtime": { - "version": "7.21.0", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.0.tgz", - "integrity": "sha512-xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw==", - "dependencies": { - "regenerator-runtime": "^0.13.11" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/template": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.20.7.tgz", - "integrity": "sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==", - "dependencies": { - "@babel/code-frame": "^7.18.6", - "@babel/parser": "^7.20.7", - "@babel/types": "^7.20.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/template/node_modules/@babel/code-frame": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.21.4.tgz", - "integrity": "sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g==", - "dependencies": { - "@babel/highlight": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/traverse": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.21.4.tgz", - "integrity": "sha512-eyKrRHKdyZxqDm+fV1iqL9UAHMoIg0nDaGqfIOd8rKH17m5snv7Gn4qgjBoFfLz9APvjFU/ICT00NVCv1Epp8Q==", - "dependencies": { - "@babel/code-frame": "^7.21.4", - "@babel/generator": "^7.21.4", - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-function-name": "^7.21.0", - "@babel/helper-hoist-variables": "^7.18.6", - "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.21.4", - "@babel/types": "^7.21.4", - "debug": "^4.1.0", - "globals": "^11.1.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/traverse/node_modules/@babel/code-frame": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.21.4.tgz", - "integrity": "sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g==", - "dependencies": { - "@babel/highlight": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/traverse/node_modules/globals": { - "version": "11.12.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", - "engines": { - "node": ">=4" - } - }, - "node_modules/@babel/types": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.21.4.tgz", - "integrity": "sha512-rU2oY501qDxE8Pyo7i/Orqma4ziCOrby0/9mvbDUGEfvZjb279Nk9k19e2fiCxHbRRpY2ZyrgW1eq22mvmOIzA==", - "dependencies": { - "@babel/helper-string-parser": "^7.19.4", - "@babel/helper-validator-identifier": "^7.19.1", - "to-fast-properties": "^2.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@eslint-community/eslint-utils": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", - "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", - "dev": true, - "dependencies": { - "eslint-visitor-keys": "^3.3.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "peerDependencies": { - "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" - } - }, - "node_modules/@eslint-community/regexpp": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.5.0.tgz", - "integrity": "sha512-vITaYzIcNmjn5tF5uxcZ/ft7/RXGrMUIS9HalWckEOF6ESiwXKoMzAQf2UW0aVd6rnOeExTJVd5hmWXucBKGXQ==", - "dev": true, - "engines": { - "node": "^12.0.0 || ^14.0.0 || >=16.0.0" - } - }, - "node_modules/@eslint/eslintrc": { - "version": "0.4.3", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.3.tgz", - "integrity": "sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==", - "dev": true, - "dependencies": { - "ajv": "^6.12.4", - "debug": "^4.1.1", - "espree": "^7.3.0", - "globals": "^13.9.0", - "ignore": "^4.0.6", - "import-fresh": "^3.2.1", - "js-yaml": "^3.13.1", - "minimatch": "^3.0.4", - "strip-json-comments": "^3.1.1" - }, - "engines": { - "node": "^10.12.0 || >=12.0.0" - } - }, - "node_modules/@eslint/eslintrc/node_modules/ignore": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", - "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", - "dev": true, - "engines": { - "node": ">= 4" - } - }, - "node_modules/@hapi/hoek": { - "version": "9.3.0", - "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.3.0.tgz", - "integrity": "sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==", - "peer": true - }, - "node_modules/@hapi/topo": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/@hapi/topo/-/topo-5.1.0.tgz", - "integrity": "sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==", - "peer": true, - "dependencies": { - "@hapi/hoek": "^9.0.0" - } - }, - "node_modules/@humanwhocodes/config-array": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.5.0.tgz", - "integrity": "sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==", - "dev": true, - "dependencies": { - "@humanwhocodes/object-schema": "^1.2.0", - "debug": "^4.1.1", - "minimatch": "^3.0.4" - }, - "engines": { - "node": ">=10.10.0" - } - }, - "node_modules/@humanwhocodes/object-schema": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", - "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", - "dev": true - }, - "node_modules/@istanbuljs/load-nyc-config": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", - "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", - "dev": true, - "dependencies": { - "camelcase": "^5.3.1", - "find-up": "^4.1.0", - "get-package-type": "^0.1.0", - "js-yaml": "^3.13.1", - "resolve-from": "^5.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dev": true, - "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dev": true, - "dependencies": { - "p-locate": "^4.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "dev": true, - "dependencies": { - "p-try": "^2.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dev": true, - "dependencies": { - "p-limit": "^2.2.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/@istanbuljs/nyc-config-typescript": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/@istanbuljs/nyc-config-typescript/-/nyc-config-typescript-0.1.3.tgz", - "integrity": "sha512-EzRFg92bRSD1W/zeuNkeGwph0nkWf+pP2l/lYW4/5hav7RjKKBN5kV1Ix7Tvi0CMu3pC4Wi/U7rNisiJMR3ORg==", - "dev": true, - "engines": { - "node": ">=6" - }, - "peerDependencies": { - "source-map-support": "*", - "ts-node": "*" - } - }, - "node_modules/@istanbuljs/schema": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", - "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/@jest/create-cache-key-function": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/create-cache-key-function/-/create-cache-key-function-29.5.0.tgz", - "integrity": "sha512-LIDZyZgnZss7uikvBKBB/USWwG+GO8+GnwRWT+YkCGDGsqLQlhm9BC3z6+7+eMs1kUlvXQIWEzBR8Q2Pnvx6lg==", - "peer": true, - "dependencies": { - "@jest/types": "^29.5.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jest/environment": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.5.0.tgz", - "integrity": "sha512-5FXw2+wD29YU1d4I2htpRX7jYnAyTRjP2CsXQdo9SAM8g3ifxWPSV0HnClSn71xwctr0U3oZIIH+dtbfmnbXVQ==", - "peer": true, - "dependencies": { - "@jest/fake-timers": "^29.5.0", - "@jest/types": "^29.5.0", - "@types/node": "*", - "jest-mock": "^29.5.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jest/fake-timers": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.5.0.tgz", - "integrity": "sha512-9ARvuAAQcBwDAqOnglWq2zwNIRUDtk/SCkp/ToGEhFv5r86K21l+VEs0qNTaXtyiY0lEePl3kylijSYJQqdbDg==", - "peer": true, - "dependencies": { - "@jest/types": "^29.5.0", - "@sinonjs/fake-timers": "^10.0.2", - "@types/node": "*", - "jest-message-util": "^29.5.0", - "jest-mock": "^29.5.0", - "jest-util": "^29.5.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jest/schemas": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.4.3.tgz", - "integrity": "sha512-VLYKXQmtmuEz6IxJsrZwzG9NvtkQsWNnWMsKxqWNu3+CnfzJQhp0WDDKWLVV9hLKr0l3SLLFRqcYHjhtyuDVxg==", - "peer": true, - "dependencies": { - "@sinclair/typebox": "^0.25.16" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jest/types": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.5.0.tgz", - "integrity": "sha512-qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog==", - "peer": true, - "dependencies": { - "@jest/schemas": "^29.4.3", - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^17.0.8", - "chalk": "^4.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jridgewell/gen-mapping": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", - "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", - "dependencies": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/resolve-uri": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", - "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/set-array": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", - "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/source-map": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.3.tgz", - "integrity": "sha512-b+fsZXeLYi9fEULmfBrhxn4IrPlINf8fiNarzTof004v3lFdntdwa9PF7vFJqm3mg7s+ScJMxXaE3Acp1irZcg==", - "peer": true, - "dependencies": { - "@jridgewell/gen-mapping": "^0.3.0", - "@jridgewell/trace-mapping": "^0.3.9" - } - }, - "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.15", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", - "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" - }, - "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.18", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", - "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", - "dependencies": { - "@jridgewell/resolve-uri": "3.1.0", - "@jridgewell/sourcemap-codec": "1.4.14" - } - }, - "node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.14", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", - "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" - }, - "node_modules/@nodelib/fs.scandir": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", - "dev": true, - "dependencies": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nodelib/fs.stat": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", - "dev": true, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nodelib/fs.walk": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", - "dev": true, - "dependencies": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@react-native-community/cli": { - "version": "10.2.2", - "resolved": "https://registry.npmjs.org/@react-native-community/cli/-/cli-10.2.2.tgz", - "integrity": "sha512-aZVcVIqj+OG6CrliR/Yn8wHxrvyzbFBY9cj7n0MvRw/P54QUru2nNqUTSSbqv0Qaa297yHJbe6kFDojDMSTM8Q==", - "peer": true, - "dependencies": { - "@react-native-community/cli-clean": "^10.1.1", - "@react-native-community/cli-config": "^10.1.1", - "@react-native-community/cli-debugger-ui": "^10.0.0", - "@react-native-community/cli-doctor": "^10.2.2", - "@react-native-community/cli-hermes": "^10.2.0", - "@react-native-community/cli-plugin-metro": "^10.2.2", - "@react-native-community/cli-server-api": "^10.1.1", - "@react-native-community/cli-tools": "^10.1.1", - "@react-native-community/cli-types": "^10.0.0", - "chalk": "^4.1.2", - "commander": "^9.4.1", - "execa": "^1.0.0", - "find-up": "^4.1.0", - "fs-extra": "^8.1.0", - "graceful-fs": "^4.1.3", - "prompts": "^2.4.0", - "semver": "^6.3.0" - }, - "bin": { - "react-native": "build/bin.js" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/@react-native-community/cli-clean": { - "version": "10.1.1", - "resolved": "https://registry.npmjs.org/@react-native-community/cli-clean/-/cli-clean-10.1.1.tgz", - "integrity": "sha512-iNsrjzjIRv9yb5y309SWJ8NDHdwYtnCpmxZouQDyOljUdC9MwdZ4ChbtA4rwQyAwgOVfS9F/j56ML3Cslmvrxg==", - "peer": true, - "dependencies": { - "@react-native-community/cli-tools": "^10.1.1", - "chalk": "^4.1.2", - "execa": "^1.0.0", - "prompts": "^2.4.0" - } - }, - "node_modules/@react-native-community/cli-config": { - "version": "10.1.1", - "resolved": "https://registry.npmjs.org/@react-native-community/cli-config/-/cli-config-10.1.1.tgz", - "integrity": "sha512-p4mHrjC+s/ayiNVG6T35GdEGdP6TuyBUg5plVGRJfTl8WT6LBfLYLk+fz/iETrEZ/YkhQIsQcEUQC47MqLNHog==", - "peer": true, - "dependencies": { - "@react-native-community/cli-tools": "^10.1.1", - "chalk": "^4.1.2", - "cosmiconfig": "^5.1.0", - "deepmerge": "^3.2.0", - "glob": "^7.1.3", - "joi": "^17.2.1" - } - }, - "node_modules/@react-native-community/cli-config/node_modules/cosmiconfig": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz", - "integrity": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==", - "peer": true, - "dependencies": { - "import-fresh": "^2.0.0", - "is-directory": "^0.3.1", - "js-yaml": "^3.13.1", - "parse-json": "^4.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/@react-native-community/cli-config/node_modules/import-fresh": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz", - "integrity": "sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==", - "peer": true, - "dependencies": { - "caller-path": "^2.0.0", - "resolve-from": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/@react-native-community/cli-config/node_modules/parse-json": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", - "peer": true, - "dependencies": { - "error-ex": "^1.3.1", - "json-parse-better-errors": "^1.0.1" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/@react-native-community/cli-config/node_modules/resolve-from": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", - "integrity": "sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==", - "peer": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/@react-native-community/cli-debugger-ui": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/@react-native-community/cli-debugger-ui/-/cli-debugger-ui-10.0.0.tgz", - "integrity": "sha512-8UKLcvpSNxnUTRy8CkCl27GGLqZunQ9ncGYhSrWyKrU9SWBJJGeZwi2k2KaoJi5FvF2+cD0t8z8cU6lsq2ZZmA==", - "peer": true, - "dependencies": { - "serve-static": "^1.13.1" - } - }, - "node_modules/@react-native-community/cli-doctor": { - "version": "10.2.2", - "resolved": "https://registry.npmjs.org/@react-native-community/cli-doctor/-/cli-doctor-10.2.2.tgz", - "integrity": "sha512-49Ep2aQOF0PkbAR/TcyMjOm9XwBa8VQr+/Zzf4SJeYwiYLCT1NZRAVAVjYRXl0xqvq5S5mAGZZShS4AQl4WsZw==", - "peer": true, - "dependencies": { - "@react-native-community/cli-config": "^10.1.1", - "@react-native-community/cli-platform-ios": "^10.2.1", - "@react-native-community/cli-tools": "^10.1.1", - "chalk": "^4.1.2", - "command-exists": "^1.2.8", - "envinfo": "^7.7.2", - "execa": "^1.0.0", - "hermes-profile-transformer": "^0.0.6", - "ip": "^1.1.5", - "node-stream-zip": "^1.9.1", - "ora": "^5.4.1", - "prompts": "^2.4.0", - "semver": "^6.3.0", - "strip-ansi": "^5.2.0", - "sudo-prompt": "^9.0.0", - "wcwidth": "^1.0.1" - } - }, - "node_modules/@react-native-community/cli-doctor/node_modules/ansi-regex": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", - "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", - "peer": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/@react-native-community/cli-doctor/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "peer": true, - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/@react-native-community/cli-doctor/node_modules/strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", - "peer": true, - "dependencies": { - "ansi-regex": "^4.1.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/@react-native-community/cli-hermes": { - "version": "10.2.0", - "resolved": "https://registry.npmjs.org/@react-native-community/cli-hermes/-/cli-hermes-10.2.0.tgz", - "integrity": "sha512-urfmvNeR8IiO/Sd92UU3xPO+/qI2lwCWQnxOkWaU/i2EITFekE47MD6MZrfVulRVYRi5cuaFqKZO/ccOdOB/vQ==", - "peer": true, - "dependencies": { - "@react-native-community/cli-platform-android": "^10.2.0", - "@react-native-community/cli-tools": "^10.1.1", - "chalk": "^4.1.2", - "hermes-profile-transformer": "^0.0.6", - "ip": "^1.1.5" - } - }, - "node_modules/@react-native-community/cli-platform-android": { - "version": "10.2.0", - "resolved": "https://registry.npmjs.org/@react-native-community/cli-platform-android/-/cli-platform-android-10.2.0.tgz", - "integrity": "sha512-CBenYwGxwFdObZTn1lgxWtMGA5ms2G/ALQhkS+XTAD7KHDrCxFF9yT/fnAjFZKM6vX/1TqGI1RflruXih3kAhw==", - "peer": true, - "dependencies": { - "@react-native-community/cli-tools": "^10.1.1", - "chalk": "^4.1.2", - "execa": "^1.0.0", - "glob": "^7.1.3", - "logkitty": "^0.7.1" - } - }, - "node_modules/@react-native-community/cli-platform-ios": { - "version": "10.2.1", - "resolved": "https://registry.npmjs.org/@react-native-community/cli-platform-ios/-/cli-platform-ios-10.2.1.tgz", - "integrity": "sha512-hz4zu4Y6eyj7D0lnZx8Mf2c2si8y+zh/zUTgCTaPPLzQD8jSZNNBtUUiA1cARm2razpe8marCZ1QbTMAGbf3mg==", - "peer": true, - "dependencies": { - "@react-native-community/cli-tools": "^10.1.1", - "chalk": "^4.1.2", - "execa": "^1.0.0", - "fast-xml-parser": "^4.0.12", - "glob": "^7.1.3", - "ora": "^5.4.1" - } - }, - "node_modules/@react-native-community/cli-plugin-metro": { - "version": "10.2.2", - "resolved": "https://registry.npmjs.org/@react-native-community/cli-plugin-metro/-/cli-plugin-metro-10.2.2.tgz", - "integrity": "sha512-sTGjZlD3OGqbF9v1ajwUIXhGmjw9NyJ/14Lo0sg7xH8Pv4qUd5ZvQ6+DWYrQn3IKFUMfGFWYyL81ovLuPylrpw==", - "peer": true, - "dependencies": { - "@react-native-community/cli-server-api": "^10.1.1", - "@react-native-community/cli-tools": "^10.1.1", - "chalk": "^4.1.2", - "execa": "^1.0.0", - "metro": "0.73.9", - "metro-config": "0.73.9", - "metro-core": "0.73.9", - "metro-react-native-babel-transformer": "0.73.9", - "metro-resolver": "0.73.9", - "metro-runtime": "0.73.9", - "readline": "^1.3.0" - } - }, - "node_modules/@react-native-community/cli-server-api": { - "version": "10.1.1", - "resolved": "https://registry.npmjs.org/@react-native-community/cli-server-api/-/cli-server-api-10.1.1.tgz", - "integrity": "sha512-NZDo/wh4zlm8as31UEBno2bui8+ufzsZV+KN7QjEJWEM0levzBtxaD+4je0OpfhRIIkhaRm2gl/vVf7OYAzg4g==", - "peer": true, - "dependencies": { - "@react-native-community/cli-debugger-ui": "^10.0.0", - "@react-native-community/cli-tools": "^10.1.1", - "compression": "^1.7.1", - "connect": "^3.6.5", - "errorhandler": "^1.5.0", - "nocache": "^3.0.1", - "pretty-format": "^26.6.2", - "serve-static": "^1.13.1", - "ws": "^7.5.1" - } - }, - "node_modules/@react-native-community/cli-server-api/node_modules/ws": { - "version": "7.5.9", - "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz", - "integrity": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==", - "peer": true, - "engines": { - "node": ">=8.3.0" - }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": "^5.0.2" - }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true - }, - "utf-8-validate": { - "optional": true - } - } - }, - "node_modules/@react-native-community/cli-tools": { - "version": "10.1.1", - "resolved": "https://registry.npmjs.org/@react-native-community/cli-tools/-/cli-tools-10.1.1.tgz", - "integrity": "sha512-+FlwOnZBV+ailEzXjcD8afY2ogFEBeHOw/8+XXzMgPaquU2Zly9B+8W089tnnohO3yfiQiZqkQlElP423MY74g==", - "peer": true, - "dependencies": { - "appdirsjs": "^1.2.4", - "chalk": "^4.1.2", - "find-up": "^5.0.0", - "mime": "^2.4.1", - "node-fetch": "^2.6.0", - "open": "^6.2.0", - "ora": "^5.4.1", - "semver": "^6.3.0", - "shell-quote": "^1.7.3" - } - }, - "node_modules/@react-native-community/cli-tools/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "peer": true, - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/@react-native-community/cli-types": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/@react-native-community/cli-types/-/cli-types-10.0.0.tgz", - "integrity": "sha512-31oUM6/rFBZQfSmDQsT1DX/5fjqfxg7sf2u8kTPJK7rXVya5SRpAMaCXsPAG0omsmJxXt+J9HxUi3Ic+5Ux5Iw==", - "peer": true, - "dependencies": { - "joi": "^17.2.1" - } - }, - "node_modules/@react-native-community/cli/node_modules/find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "peer": true, - "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@react-native-community/cli/node_modules/locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "peer": true, - "dependencies": { - "p-locate": "^4.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@react-native-community/cli/node_modules/p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "peer": true, - "dependencies": { - "p-try": "^2.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@react-native-community/cli/node_modules/p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "peer": true, - "dependencies": { - "p-limit": "^2.2.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@react-native-community/cli/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "peer": true, - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/@react-native-picker/picker": { - "version": "2.4.9", - "resolved": "https://registry.npmjs.org/@react-native-picker/picker/-/picker-2.4.9.tgz", - "integrity": "sha512-Bo1yIliSxDuCp42Q1CXNo+DAk8NfqTp/eQI/6kkzsTit/k1LWYYYDhiZd7AO9113IuXbHb7PyJwyqprFMPSB/A==", - "peer": true, - "peerDependencies": { - "react": ">=16", - "react-native": ">=0.57" - } - }, - "node_modules/@react-native/assets": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@react-native/assets/-/assets-1.0.0.tgz", - "integrity": "sha512-KrwSpS1tKI70wuKl68DwJZYEvXktDHdZMG0k2AXD/rJVSlB23/X2CB2cutVR0HwNMJIal9HOUOBB2rVfa6UGtQ==", - "peer": true - }, - "node_modules/@react-native/normalize-color": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@react-native/normalize-color/-/normalize-color-2.1.0.tgz", - "integrity": "sha512-Z1jQI2NpdFJCVgpY+8Dq/Bt3d+YUi1928Q+/CZm/oh66fzM0RUl54vvuXlPJKybH4pdCZey1eDTPaLHkMPNgWA==", - "peer": true - }, - "node_modules/@react-native/polyfills": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@react-native/polyfills/-/polyfills-2.0.0.tgz", - "integrity": "sha512-K0aGNn1TjalKj+65D7ycc1//H9roAQ51GJVk5ZJQFb2teECGmzd86bYDC0aYdbRf7gtovescq4Zt6FR0tgXiHQ==", - "peer": true - }, - "node_modules/@sideway/address": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/@sideway/address/-/address-4.1.4.tgz", - "integrity": "sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw==", - "peer": true, - "dependencies": { - "@hapi/hoek": "^9.0.0" - } - }, - "node_modules/@sideway/formula": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@sideway/formula/-/formula-3.0.1.tgz", - "integrity": "sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==", - "peer": true - }, - "node_modules/@sideway/pinpoint": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@sideway/pinpoint/-/pinpoint-2.0.0.tgz", - "integrity": "sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==", - "peer": true - }, - "node_modules/@sinclair/typebox": { - "version": "0.25.24", - "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.25.24.tgz", - "integrity": "sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==", - "peer": true - }, - "node_modules/@sinonjs/commons": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-2.0.0.tgz", - "integrity": "sha512-uLa0j859mMrg2slwQYdO/AkrOfmH+X6LTVmNTS9CqexuE2IvVORIkSpJLqePAbEnKJ77aMmCwr1NUZ57120Xcg==", - "peer": true, - "dependencies": { - "type-detect": "4.0.8" - } - }, - "node_modules/@sinonjs/fake-timers": { - "version": "10.0.2", - "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.0.2.tgz", - "integrity": "sha512-SwUDyjWnah1AaNl7kxsa7cfLhlTYoiyhDAIgyh+El30YvXs/o7OLXpYH88Zdhyx9JExKrmHDJ+10bwIcY80Jmw==", - "peer": true, - "dependencies": { - "@sinonjs/commons": "^2.0.0" - } - }, - "node_modules/@types/chai": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/@types/chai/-/chai-4.3.4.tgz", - "integrity": "sha512-KnRanxnpfpjUTqTCXslZSEdLfXExwgNxYPdiO2WGUj8+HDjFi8R3k5RVKPeSCzLjCcshCAtVO2QBbVuAV4kTnw==", - "dev": true - }, - "node_modules/@types/eslint": { - "version": "8.37.0", - "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.37.0.tgz", - "integrity": "sha512-Piet7dG2JBuDIfohBngQ3rCt7MgO9xCO4xIMKxBThCq5PNRB91IjlJ10eJVwfoNtvTErmxLzwBZ7rHZtbOMmFQ==", - "dev": true, - "peer": true, - "dependencies": { - "@types/estree": "*", - "@types/json-schema": "*" - } - }, - "node_modules/@types/eslint-scope": { - "version": "3.7.4", - "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz", - "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==", - "dev": true, - "peer": true, - "dependencies": { - "@types/eslint": "*", - "@types/estree": "*" - } - }, - "node_modules/@types/estree": { - "version": "0.0.51", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.51.tgz", - "integrity": "sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==", - "dev": true, - "peer": true - }, - "node_modules/@types/istanbul-lib-coverage": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz", - "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==", - "peer": true - }, - "node_modules/@types/istanbul-lib-report": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", - "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", - "peer": true, - "dependencies": { - "@types/istanbul-lib-coverage": "*" - } - }, - "node_modules/@types/istanbul-reports": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", - "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", - "peer": true, - "dependencies": { - "@types/istanbul-lib-report": "*" - } - }, - "node_modules/@types/json-schema": { - "version": "7.0.11", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz", - "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==", - "dev": true - }, - "node_modules/@types/json5": { - "version": "0.0.29", - "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", - "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", - "dev": true - }, - "node_modules/@types/mocha": { - "version": "5.2.7", - "resolved": "https://registry.npmjs.org/@types/mocha/-/mocha-5.2.7.tgz", - "integrity": "sha512-NYrtPht0wGzhwe9+/idPaBB+TqkY9AhTvOLMkThm0IoEfLaiVQZwBwyJ5puCkO3AUCWrmcoePjp2mbFocKy4SQ==", - "dev": true - }, - "node_modules/@types/node": { - "version": "18.15.11", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.15.11.tgz", - "integrity": "sha512-E5Kwq2n4SbMzQOn6wnmBjuK9ouqlURrcZDVfbo9ftDDTFt3nk7ZKK4GMOzoYgnpQJKcxwQw+lGaBvvlMo0qN/Q==", - "peer": true - }, - "node_modules/@types/parse-json": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==", - "dev": true - }, - "node_modules/@types/prop-types": { - "version": "15.7.5", - "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz", - "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==", - "dev": true - }, - "node_modules/@types/react": { - "version": "16.14.38", - "resolved": "https://registry.npmjs.org/@types/react/-/react-16.14.38.tgz", - "integrity": "sha512-PbEjuhwkdH6IB5Sak6BFAqpVMHY/wJxa0EG3bKkr0vWA2hSDIq3iEMhHyqjXrDFMqRzkiQkdyNXOnoELrh/9aQ==", - "dev": true, - "dependencies": { - "@types/prop-types": "*", - "@types/scheduler": "*", - "csstype": "^3.0.2" - } - }, - "node_modules/@types/react-native": { - "version": "0.63.69", - "resolved": "https://registry.npmjs.org/@types/react-native/-/react-native-0.63.69.tgz", - "integrity": "sha512-0kg1IFpvs5JTBbTSLi53UvnyzdfKP3xFSWBCwLeZXQjPWLOccyRxaaHTJes6Yc4D+txzFvt4v+Lr21fTumW9Sw==", - "dev": true, - "dependencies": { - "@types/react": "^16" - } - }, - "node_modules/@types/react-native-phone-input": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/@types/react-native-phone-input/-/react-native-phone-input-0.2.2.tgz", - "integrity": "sha512-jlfkiS6Qq9pkE386D/kM7Az6mEE4X2Cbuz/K5esDTESYCXUh7tQ+CWvAyCDiC/0vjnieUC/BjFbDky/ld5QrRg==", - "dev": true, - "dependencies": { - "@types/react": "*", - "@types/react-native": "*" - } - }, - "node_modules/@types/scheduler": { - "version": "0.16.3", - "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.3.tgz", - "integrity": "sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==", - "dev": true - }, - "node_modules/@types/semver": { - "version": "7.3.13", - "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.13.tgz", - "integrity": "sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==", - "dev": true - }, - "node_modules/@types/stack-utils": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", - "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", - "peer": true - }, - "node_modules/@types/yargs": { - "version": "17.0.24", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.24.tgz", - "integrity": "sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==", - "peer": true, - "dependencies": { - "@types/yargs-parser": "*" - } - }, - "node_modules/@types/yargs-parser": { - "version": "21.0.0", - "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz", - "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==", - "peer": true - }, - "node_modules/@typescript-eslint/eslint-plugin": { - "version": "5.57.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.57.1.tgz", - "integrity": "sha512-1MeobQkQ9tztuleT3v72XmY0XuKXVXusAhryoLuU5YZ+mXoYKZP9SQ7Flulh1NX4DTjpGTc2b/eMu4u7M7dhnQ==", - "dev": true, - "dependencies": { - "@eslint-community/regexpp": "^4.4.0", - "@typescript-eslint/scope-manager": "5.57.1", - "@typescript-eslint/type-utils": "5.57.1", - "@typescript-eslint/utils": "5.57.1", - "debug": "^4.3.4", - "grapheme-splitter": "^1.0.4", - "ignore": "^5.2.0", - "natural-compare-lite": "^1.4.0", - "semver": "^7.3.7", - "tsutils": "^3.21.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "@typescript-eslint/parser": "^5.0.0", - "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/parser": { - "version": "5.57.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.57.1.tgz", - "integrity": "sha512-hlA0BLeVSA/wBPKdPGxoVr9Pp6GutGoY380FEhbVi0Ph4WNe8kLvqIRx76RSQt1lynZKfrXKs0/XeEk4zZycuA==", - "dev": true, - "dependencies": { - "@typescript-eslint/scope-manager": "5.57.1", - "@typescript-eslint/types": "5.57.1", - "@typescript-eslint/typescript-estree": "5.57.1", - "debug": "^4.3.4" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/scope-manager": { - "version": "5.57.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.57.1.tgz", - "integrity": "sha512-N/RrBwEUKMIYxSKl0oDK5sFVHd6VI7p9K5MyUlVYAY6dyNb/wHUqndkTd3XhpGlXgnQsBkRZuu4f9kAHghvgPw==", - "dev": true, - "dependencies": { - "@typescript-eslint/types": "5.57.1", - "@typescript-eslint/visitor-keys": "5.57.1" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@typescript-eslint/type-utils": { - "version": "5.57.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.57.1.tgz", - "integrity": "sha512-/RIPQyx60Pt6ga86hKXesXkJ2WOS4UemFrmmq/7eOyiYjYv/MUSHPlkhU6k9T9W1ytnTJueqASW+wOmW4KrViw==", - "dev": true, - "dependencies": { - "@typescript-eslint/typescript-estree": "5.57.1", - "@typescript-eslint/utils": "5.57.1", - "debug": "^4.3.4", - "tsutils": "^3.21.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "*" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/types": { - "version": "5.57.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.57.1.tgz", - "integrity": "sha512-bSs4LOgyV3bJ08F5RDqO2KXqg3WAdwHCu06zOqcQ6vqbTJizyBhuh1o1ImC69X4bV2g1OJxbH71PJqiO7Y1RuA==", - "dev": true, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@typescript-eslint/typescript-estree": { - "version": "5.57.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.57.1.tgz", - "integrity": "sha512-A2MZqD8gNT0qHKbk2wRspg7cHbCDCk2tcqt6ScCFLr5Ru8cn+TCfM786DjPhqwseiS+PrYwcXht5ztpEQ6TFTw==", - "dev": true, - "dependencies": { - "@typescript-eslint/types": "5.57.1", - "@typescript-eslint/visitor-keys": "5.57.1", - "debug": "^4.3.4", - "globby": "^11.1.0", - "is-glob": "^4.0.3", - "semver": "^7.3.7", - "tsutils": "^3.21.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/utils": { - "version": "5.57.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.57.1.tgz", - "integrity": "sha512-kN6vzzf9NkEtawECqze6v99LtmDiUJCVpvieTFA1uL7/jDghiJGubGZ5csicYHU1Xoqb3oH/R5cN5df6W41Nfg==", - "dev": true, - "dependencies": { - "@eslint-community/eslint-utils": "^4.2.0", - "@types/json-schema": "^7.0.9", - "@types/semver": "^7.3.12", - "@typescript-eslint/scope-manager": "5.57.1", - "@typescript-eslint/types": "5.57.1", - "@typescript-eslint/typescript-estree": "5.57.1", - "eslint-scope": "^5.1.1", - "semver": "^7.3.7" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" - } - }, - "node_modules/@typescript-eslint/visitor-keys": { - "version": "5.57.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.57.1.tgz", - "integrity": "sha512-RjQrAniDU0CEk5r7iphkm731zKlFiUjvcBS2yHAg8WWqFMCaCrD0rKEVOMUyMMcbGPZ0bPp56srkGWrgfZqLRA==", - "dev": true, - "dependencies": { - "@typescript-eslint/types": "5.57.1", - "eslint-visitor-keys": "^3.3.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@ungap/promise-all-settled": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@ungap/promise-all-settled/-/promise-all-settled-1.1.2.tgz", - "integrity": "sha512-sL/cEvJWAnClXw0wHk85/2L0G6Sj8UB0Ctc1TEMbKSsmpRosqhwj9gWgFRZSrBr2f9tiXISwNhCPmlfqUqyb9Q==", - "dev": true - }, - "node_modules/@webassemblyjs/ast": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.1.tgz", - "integrity": "sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==", - "dev": true, - "peer": true, - "dependencies": { - "@webassemblyjs/helper-numbers": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1" - } - }, - "node_modules/@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz", - "integrity": "sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==", - "dev": true, - "peer": true - }, - "node_modules/@webassemblyjs/helper-api-error": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz", - "integrity": "sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==", - "dev": true, - "peer": true - }, - "node_modules/@webassemblyjs/helper-buffer": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz", - "integrity": "sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==", - "dev": true, - "peer": true - }, - "node_modules/@webassemblyjs/helper-numbers": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz", - "integrity": "sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==", - "dev": true, - "peer": true, - "dependencies": { - "@webassemblyjs/floating-point-hex-parser": "1.11.1", - "@webassemblyjs/helper-api-error": "1.11.1", - "@xtuc/long": "4.2.2" - } - }, - "node_modules/@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz", - "integrity": "sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==", - "dev": true, - "peer": true - }, - "node_modules/@webassemblyjs/helper-wasm-section": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz", - "integrity": "sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==", - "dev": true, - "peer": true, - "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1" - } - }, - "node_modules/@webassemblyjs/ieee754": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz", - "integrity": "sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==", - "dev": true, - "peer": true, - "dependencies": { - "@xtuc/ieee754": "^1.2.0" - } - }, - "node_modules/@webassemblyjs/leb128": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.1.tgz", - "integrity": "sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==", - "dev": true, - "peer": true, - "dependencies": { - "@xtuc/long": "4.2.2" - } - }, - "node_modules/@webassemblyjs/utf8": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.1.tgz", - "integrity": "sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==", - "dev": true, - "peer": true - }, - "node_modules/@webassemblyjs/wasm-edit": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz", - "integrity": "sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==", - "dev": true, - "peer": true, - "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/helper-wasm-section": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1", - "@webassemblyjs/wasm-opt": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1", - "@webassemblyjs/wast-printer": "1.11.1" - } - }, - "node_modules/@webassemblyjs/wasm-gen": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz", - "integrity": "sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==", - "dev": true, - "peer": true, - "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/ieee754": "1.11.1", - "@webassemblyjs/leb128": "1.11.1", - "@webassemblyjs/utf8": "1.11.1" - } - }, - "node_modules/@webassemblyjs/wasm-opt": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz", - "integrity": "sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==", - "dev": true, - "peer": true, - "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1" - } - }, - "node_modules/@webassemblyjs/wasm-parser": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz", - "integrity": "sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==", - "dev": true, - "peer": true, - "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-api-error": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/ieee754": "1.11.1", - "@webassemblyjs/leb128": "1.11.1", - "@webassemblyjs/utf8": "1.11.1" - } - }, - "node_modules/@webassemblyjs/wast-printer": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz", - "integrity": "sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==", - "dev": true, - "peer": true, - "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@xtuc/long": "4.2.2" - } - }, - "node_modules/@xtuc/ieee754": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", - "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", - "dev": true, - "peer": true - }, - "node_modules/@xtuc/long": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", - "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", - "dev": true, - "peer": true - }, - "node_modules/abort-controller": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", - "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", - "peer": true, - "dependencies": { - "event-target-shim": "^5.0.0" - }, - "engines": { - "node": ">=6.5" - } - }, - "node_modules/absolute-path": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/absolute-path/-/absolute-path-0.0.0.tgz", - "integrity": "sha512-HQiug4c+/s3WOvEnDRxXVmNtSG5s2gJM9r19BTcqjp7BWcE48PB+Y2G6jE65kqI0LpsQeMZygt/b60Gi4KxGyA==", - "peer": true - }, - "node_modules/accepts": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", - "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", - "peer": true, - "dependencies": { - "mime-types": "~2.1.34", - "negotiator": "0.6.3" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/acorn": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", - "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", - "dev": true, - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/acorn-jsx": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", - "dev": true, - "peerDependencies": { - "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" - } - }, - "node_modules/aggregate-error": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", - "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", - "dev": true, - "dependencies": { - "clean-stack": "^2.0.0", - "indent-string": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/ajv-keywords": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", - "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", - "dev": true, - "peer": true, - "peerDependencies": { - "ajv": "^6.9.1" - } - }, - "node_modules/anser": { - "version": "1.4.10", - "resolved": "https://registry.npmjs.org/anser/-/anser-1.4.10.tgz", - "integrity": "sha512-hCv9AqTQ8ycjpSd3upOJd7vFwW1JaoYQ7tpham03GJ1ca8/65rqn0RpaWpItOAd6ylW9wAw6luXYPJIyPFVOww==", - "peer": true - }, - "node_modules/ansi-colors": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", - "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/ansi-fragments": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/ansi-fragments/-/ansi-fragments-0.2.1.tgz", - "integrity": "sha512-DykbNHxuXQwUDRv5ibc2b0x7uw7wmwOGLBUd5RmaQ5z8Lhx19vwvKV+FAsM5rEA6dEcHxX+/Ad5s9eF2k2bB+w==", - "peer": true, - "dependencies": { - "colorette": "^1.0.7", - "slice-ansi": "^2.0.0", - "strip-ansi": "^5.0.0" - } - }, - "node_modules/ansi-fragments/node_modules/ansi-regex": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", - "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", - "peer": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/ansi-fragments/node_modules/strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", - "peer": true, - "dependencies": { - "ansi-regex": "^4.1.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/anymatch": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", - "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", - "dependencies": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/appdirsjs": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/appdirsjs/-/appdirsjs-1.2.7.tgz", - "integrity": "sha512-Quji6+8kLBC3NnBeo14nPDq0+2jUs5s3/xEye+udFHumHhRk4M7aAMXp/PBJqkKYGuuyR9M/6Dq7d2AViiGmhw==", - "peer": true - }, - "node_modules/append-transform": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/append-transform/-/append-transform-2.0.0.tgz", - "integrity": "sha512-7yeyCEurROLQJFv5Xj4lEGTy0borxepjFv1g22oAdqFu//SrAlDl1O1Nxx15SH1RoliUml6p8dwJW9jvZughhg==", - "dev": true, - "dependencies": { - "default-require-extensions": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/archy": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz", - "integrity": "sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw==", - "dev": true - }, - "node_modules/arg": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", - "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", - "dev": true - }, - "node_modules/argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", - "dependencies": { - "sprintf-js": "~1.0.2" - } - }, - "node_modules/aria-query": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz", - "integrity": "sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==", - "dev": true, - "dependencies": { - "deep-equal": "^2.0.5" - } - }, - "node_modules/arr-diff": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", - "integrity": "sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==", - "peer": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/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==", - "peer": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/arr-union": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", - "integrity": "sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==", - "peer": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/array-buffer-byte-length": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", - "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "is-array-buffer": "^3.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array-includes": { - "version": "3.1.6", - "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz", - "integrity": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "get-intrinsic": "^1.1.3", - "is-string": "^1.0.7" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array-union": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", - "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/array-unique": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", - "integrity": "sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==", - "peer": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/array.prototype.flat": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz", - "integrity": "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "es-shim-unscopables": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array.prototype.flatmap": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz", - "integrity": "sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "es-shim-unscopables": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array.prototype.tosorted": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz", - "integrity": "sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "es-shim-unscopables": "^1.0.0", - "get-intrinsic": "^1.1.3" - } - }, - "node_modules/asap": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", - "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==", - "peer": true - }, - "node_modules/assertion-error": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz", - "integrity": "sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==", - "dev": true, - "engines": { - "node": "*" - } - }, - "node_modules/assign-symbols": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", - "integrity": "sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==", - "peer": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/ast-types": { - "version": "0.14.2", - "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.14.2.tgz", - "integrity": "sha512-O0yuUDnZeQDL+ncNGlJ78BiO4jnYI3bvMsD5prT0/nsgijG/LpNBIr63gTjVTNsiGkgQhiyCShTgxt8oXOrklA==", - "peer": true, - "dependencies": { - "tslib": "^2.0.1" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/ast-types-flow": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz", - "integrity": "sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==", - "dev": true - }, - "node_modules/astral-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz", - "integrity": "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==", - "peer": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/async": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz", - "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==", - "peer": true - }, - "node_modules/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==", - "peer": true - }, - "node_modules/atob": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", - "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", - "peer": true, - "bin": { - "atob": "bin/atob.js" - }, - "engines": { - "node": ">= 4.5.0" - } - }, - "node_modules/available-typed-arrays": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", - "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/axe-core": { - "version": "4.6.3", - "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.6.3.tgz", - "integrity": "sha512-/BQzOX780JhsxDnPpH4ZiyrJAzcd8AfzFPkv+89veFSr1rcMjuq2JDCwypKaPeB6ljHp9KjXhPpjgCvQlWYuqg==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/axobject-query": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.1.1.tgz", - "integrity": "sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==", - "dev": true, - "dependencies": { - "deep-equal": "^2.0.5" - } - }, - "node_modules/babel-core": { - "version": "7.0.0-bridge.0", - "resolved": "https://registry.npmjs.org/babel-core/-/babel-core-7.0.0-bridge.0.tgz", - "integrity": "sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==", - "peer": true, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/babel-plugin-polyfill-corejs2": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.3.tgz", - "integrity": "sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==", - "peer": true, - "dependencies": { - "@babel/compat-data": "^7.17.7", - "@babel/helper-define-polyfill-provider": "^0.3.3", - "semver": "^6.1.1" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/babel-plugin-polyfill-corejs2/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "peer": true, - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/babel-plugin-polyfill-corejs3": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.6.0.tgz", - "integrity": "sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==", - "peer": true, - "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.3.3", - "core-js-compat": "^3.25.1" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/babel-plugin-polyfill-regenerator": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.1.tgz", - "integrity": "sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==", - "peer": true, - "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.3.3" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/babel-plugin-syntax-trailing-function-commas": { - "version": "7.0.0-beta.0", - "resolved": "https://registry.npmjs.org/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-7.0.0-beta.0.tgz", - "integrity": "sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ==", - "peer": true - }, - "node_modules/babel-preset-fbjs": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/babel-preset-fbjs/-/babel-preset-fbjs-3.4.0.tgz", - "integrity": "sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==", - "peer": true, - "dependencies": { - "@babel/plugin-proposal-class-properties": "^7.0.0", - "@babel/plugin-proposal-object-rest-spread": "^7.0.0", - "@babel/plugin-syntax-class-properties": "^7.0.0", - "@babel/plugin-syntax-flow": "^7.0.0", - "@babel/plugin-syntax-jsx": "^7.0.0", - "@babel/plugin-syntax-object-rest-spread": "^7.0.0", - "@babel/plugin-transform-arrow-functions": "^7.0.0", - "@babel/plugin-transform-block-scoped-functions": "^7.0.0", - "@babel/plugin-transform-block-scoping": "^7.0.0", - "@babel/plugin-transform-classes": "^7.0.0", - "@babel/plugin-transform-computed-properties": "^7.0.0", - "@babel/plugin-transform-destructuring": "^7.0.0", - "@babel/plugin-transform-flow-strip-types": "^7.0.0", - "@babel/plugin-transform-for-of": "^7.0.0", - "@babel/plugin-transform-function-name": "^7.0.0", - "@babel/plugin-transform-literals": "^7.0.0", - "@babel/plugin-transform-member-expression-literals": "^7.0.0", - "@babel/plugin-transform-modules-commonjs": "^7.0.0", - "@babel/plugin-transform-object-super": "^7.0.0", - "@babel/plugin-transform-parameters": "^7.0.0", - "@babel/plugin-transform-property-literals": "^7.0.0", - "@babel/plugin-transform-react-display-name": "^7.0.0", - "@babel/plugin-transform-react-jsx": "^7.0.0", - "@babel/plugin-transform-shorthand-properties": "^7.0.0", - "@babel/plugin-transform-spread": "^7.0.0", - "@babel/plugin-transform-template-literals": "^7.0.0", - "babel-plugin-syntax-trailing-function-commas": "^7.0.0-beta.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" - }, - "node_modules/base": { - "version": "0.11.2", - "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", - "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", - "peer": true, - "dependencies": { - "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" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/base/node_modules/define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", - "peer": true, - "dependencies": { - "is-descriptor": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/base64-js": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", - "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "peer": true - }, - "node_modules/binary-extensions": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", - "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/bl": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", - "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", - "peer": true, - "dependencies": { - "buffer": "^5.5.0", - "inherits": "^2.0.4", - "readable-stream": "^3.4.0" - } - }, - "node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "dependencies": { - "fill-range": "^7.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/browser-stdout": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz", - "integrity": "sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==", - "dev": true - }, - "node_modules/browserslist": { - "version": "4.21.5", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.5.tgz", - "integrity": "sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - } - ], - "dependencies": { - "caniuse-lite": "^1.0.30001449", - "electron-to-chromium": "^1.4.284", - "node-releases": "^2.0.8", - "update-browserslist-db": "^1.0.10" - }, - "bin": { - "browserslist": "cli.js" - }, - "engines": { - "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" - } - }, - "node_modules/bser": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", - "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", - "peer": true, - "dependencies": { - "node-int64": "^0.4.0" - } - }, - "node_modules/buffer": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", - "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "peer": true, - "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" - } - }, - "node_modules/buffer-from": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", - "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" - }, - "node_modules/bytes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", - "peer": true, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/cache-base": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", - "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", - "peer": true, - "dependencies": { - "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" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/caching-transform": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/caching-transform/-/caching-transform-4.0.0.tgz", - "integrity": "sha512-kpqOvwXnjjN44D89K5ccQC+RUrsy7jB/XLlRrx0D7/2HNcTPqzsb6XgYoErwko6QsV184CA2YgS1fxDiiDZMWA==", - "dev": true, - "dependencies": { - "hasha": "^5.0.0", - "make-dir": "^3.0.0", - "package-hash": "^4.0.0", - "write-file-atomic": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "dev": true, - "dependencies": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/caller-callsite": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz", - "integrity": "sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ==", - "peer": true, - "dependencies": { - "callsites": "^2.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/caller-callsite/node_modules/callsites": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz", - "integrity": "sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ==", - "peer": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/caller-path": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz", - "integrity": "sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A==", - "peer": true, - "dependencies": { - "caller-callsite": "^2.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/callsites": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", - "engines": { - "node": ">=6" - } - }, - "node_modules/caniuse-lite": { - "version": "1.0.30001474", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001474.tgz", - "integrity": "sha512-iaIZ8gVrWfemh5DG3T9/YqarVZoYf0r188IjaGwx68j4Pf0SGY6CQkmJUIE+NZHkkecQGohzXmBGEwWDr9aM3Q==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/caniuse-lite" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ] - }, - "node_modules/chai": { - "version": "4.3.7", - "resolved": "https://registry.npmjs.org/chai/-/chai-4.3.7.tgz", - "integrity": "sha512-HLnAzZ2iupm25PlN0xFreAlBA5zaBSv3og0DdeGA4Ar6h6rJ3A0rolRUKJhSF2V10GZKDgWF/VmAEsNWjCRB+A==", - "dev": true, - "dependencies": { - "assertion-error": "^1.1.0", - "check-error": "^1.0.2", - "deep-eql": "^4.1.2", - "get-func-name": "^2.0.0", - "loupe": "^2.3.1", - "pathval": "^1.1.1", - "type-detect": "^4.0.5" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/check-error": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/check-error/-/check-error-1.0.2.tgz", - "integrity": "sha512-BrgHpW9NURQgzoNyjfq0Wu6VFO6D7IZEmJNdtgNqpzGG8RuNFHt2jQxWlAs4HMe119chBnv+34syEZtc6IhLtA==", - "dev": true, - "engines": { - "node": "*" - } - }, - "node_modules/chokidar": { - "version": "3.5.1", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.1.tgz", - "integrity": "sha512-9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw==", - "dev": true, - "dependencies": { - "anymatch": "~3.1.1", - "braces": "~3.0.2", - "glob-parent": "~5.1.0", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.5.0" - }, - "engines": { - "node": ">= 8.10.0" - }, - "optionalDependencies": { - "fsevents": "~2.3.1" - } - }, - "node_modules/chrome-trace-event": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", - "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", - "dev": true, - "peer": true, - "engines": { - "node": ">=6.0" - } - }, - "node_modules/ci-info": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", - "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==" - }, - "node_modules/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==", - "peer": true, - "dependencies": { - "arr-union": "^3.1.0", - "define-property": "^0.2.5", - "isobject": "^3.0.0", - "static-extend": "^0.1.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/class-utils/node_modules/define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", - "peer": true, - "dependencies": { - "is-descriptor": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/class-utils/node_modules/is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", - "peer": true, - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/class-utils/node_modules/is-accessor-descriptor/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "peer": true, - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/class-utils/node_modules/is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", - "peer": true, - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/class-utils/node_modules/is-data-descriptor/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "peer": true, - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/class-utils/node_modules/is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "peer": true, - "dependencies": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/class-utils/node_modules/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==", - "peer": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/clean-stack": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", - "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/cli-cursor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", - "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", - "peer": true, - "dependencies": { - "restore-cursor": "^3.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/cli-spinners": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.8.0.tgz", - "integrity": "sha512-/eG5sJcvEIwxcdYM86k5tPwn0MUzkX5YY3eImTGpJOZgVe4SdTMY14vQpcxgBzJ0wXwAYrS8E+c3uHeK4JNyzQ==", - "peer": true, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/cliui": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", - "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", - "dev": true, - "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", - "wrap-ansi": "^7.0.0" - } - }, - "node_modules/clone": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", - "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", - "peer": true, - "engines": { - "node": ">=0.8" - } - }, - "node_modules/clone-deep": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", - "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", - "peer": true, - "dependencies": { - "is-plain-object": "^2.0.4", - "kind-of": "^6.0.2", - "shallow-clone": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/collection-visit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", - "integrity": "sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==", - "peer": true, - "dependencies": { - "map-visit": "^1.0.0", - "object-visit": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/colorette": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.4.0.tgz", - "integrity": "sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==", - "peer": true - }, - "node_modules/command-exists": { - "version": "1.2.9", - "resolved": "https://registry.npmjs.org/command-exists/-/command-exists-1.2.9.tgz", - "integrity": "sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w==", - "peer": true - }, - "node_modules/commander": { - "version": "9.5.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz", - "integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==", - "peer": true, - "engines": { - "node": "^12.20.0 || >=14" - } - }, - "node_modules/commondir": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", - "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==" - }, - "node_modules/compare-versions": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/compare-versions/-/compare-versions-3.6.0.tgz", - "integrity": "sha512-W6Af2Iw1z4CB7q4uU4hv646dW9GQuBM+YpC0UvUCWSD8w90SJjp+ujJuXaEMtAXBtSqGfMPuFOVn4/+FlaqfBA==", - "dev": true - }, - "node_modules/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==", - "peer": true - }, - "node_modules/compressible": { - "version": "2.0.18", - "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", - "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", - "peer": true, - "dependencies": { - "mime-db": ">= 1.43.0 < 2" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/compression": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", - "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", - "peer": true, - "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" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/compression/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "peer": true, - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/compression/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "peer": true - }, - "node_modules/concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" - }, - "node_modules/confusing-browser-globals": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz", - "integrity": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==", - "dev": true - }, - "node_modules/connect": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/connect/-/connect-3.7.0.tgz", - "integrity": "sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==", - "peer": true, - "dependencies": { - "debug": "2.6.9", - "finalhandler": "1.1.2", - "parseurl": "~1.3.3", - "utils-merge": "1.0.1" - }, - "engines": { - "node": ">= 0.10.0" - } - }, - "node_modules/connect/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "peer": true, - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/connect/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "peer": true - }, - "node_modules/convert-source-map": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", - "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==" - }, - "node_modules/copy-descriptor": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", - "integrity": "sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==", - "peer": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/core-js-compat": { - "version": "3.30.0", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.30.0.tgz", - "integrity": "sha512-P5A2h/9mRYZFIAP+5Ab8ns6083IyVpSclU74UNvbGVQ8VM7n3n3/g2yF3AkKQ9NXz2O+ioxLbEWKnDtgsFamhg==", - "peer": true, - "dependencies": { - "browserslist": "^4.21.5" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/core-js" - } - }, - "node_modules/core-util-is": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", - "peer": true - }, - "node_modules/cosmiconfig": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", - "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", - "dev": true, - "dependencies": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.2.1", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.10.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "dev": true, - "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/csstype": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz", - "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==", - "dev": true - }, - "node_modules/damerau-levenshtein": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", - "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==", - "dev": true - }, - "node_modules/dayjs": { - "version": "1.11.7", - "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.7.tgz", - "integrity": "sha512-+Yw9U6YO5TQohxLcIkrXBeY73WP3ejHWVvx8XCk3gxvQDCTEmS48ZrSZCKciI7Bhl/uCMyxYtE9UqRILmFphkQ==", - "peer": true - }, - "node_modules/debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/decamelize": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", - "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/decode-uri-component": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz", - "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==", - "peer": true, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/deep-eql": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-4.1.3.tgz", - "integrity": "sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==", - "dev": true, - "dependencies": { - "type-detect": "^4.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/deep-equal": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.0.tgz", - "integrity": "sha512-RdpzE0Hv4lhowpIUKKMJfeH6C1pXdtT1/it80ubgWqwI3qpuxUBpC1S4hnHg+zjnuOoDkzUtUCEEkG+XG5l3Mw==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "es-get-iterator": "^1.1.2", - "get-intrinsic": "^1.1.3", - "is-arguments": "^1.1.1", - "is-array-buffer": "^3.0.1", - "is-date-object": "^1.0.5", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.2", - "isarray": "^2.0.5", - "object-is": "^1.1.5", - "object-keys": "^1.1.1", - "object.assign": "^4.1.4", - "regexp.prototype.flags": "^1.4.3", - "side-channel": "^1.0.4", - "which-boxed-primitive": "^1.0.2", - "which-collection": "^1.0.1", - "which-typed-array": "^1.1.9" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/deep-is": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", - "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", - "dev": true - }, - "node_modules/deepmerge": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-3.3.0.tgz", - "integrity": "sha512-GRQOafGHwMHpjPx9iCvTgpu9NojZ49q794EEL94JVEw6VaeA8XTUyBKvAkOOjBX9oJNiV6G3P+T+tihFjo2TqA==", - "peer": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/default-require-extensions": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/default-require-extensions/-/default-require-extensions-3.0.1.tgz", - "integrity": "sha512-eXTJmRbm2TIt9MgWTsOH1wEuhew6XGZcMeGKCtLedIg/NCsg1iBePXkceTdK4Fii7pzmN9tGsZhKzZ4h7O/fxw==", - "dev": true, - "dependencies": { - "strip-bom": "^4.0.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/defaults": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", - "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", - "peer": true, - "dependencies": { - "clone": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/define-properties": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz", - "integrity": "sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==", - "dev": true, - "dependencies": { - "has-property-descriptors": "^1.0.0", - "object-keys": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/define-property": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", - "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", - "peer": true, - "dependencies": { - "is-descriptor": "^1.0.2", - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/denodeify": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/denodeify/-/denodeify-1.2.1.tgz", - "integrity": "sha512-KNTihKNmQENUZeKu5fzfpzRqR5S2VMp4gl9RFHiWzj9DfvYQPMJ6XHKNaQxaGCXwPk6y9yme3aUoaiAe+KX+vg==", - "peer": true - }, - "node_modules/depd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", - "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", - "peer": true, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/deprecated-react-native-prop-types": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/deprecated-react-native-prop-types/-/deprecated-react-native-prop-types-3.0.1.tgz", - "integrity": "sha512-J0jCJcsk4hMlIb7xwOZKLfMpuJn6l8UtrPEzzQV5ewz5gvKNYakhBuq9h2rWX7YwHHJZFhU5W8ye7dB9oN8VcQ==", - "peer": true, - "dependencies": { - "@react-native/normalize-color": "*", - "invariant": "*", - "prop-types": "*" - } - }, - "node_modules/destroy": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", - "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", - "peer": true, - "engines": { - "node": ">= 0.8", - "npm": "1.2.8000 || >= 1.4.16" - } - }, - "node_modules/diff": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/diff/-/diff-5.0.0.tgz", - "integrity": "sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w==", - "dev": true, - "engines": { - "node": ">=0.3.1" - } - }, - "node_modules/dir-glob": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", - "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", - "dev": true, - "dependencies": { - "path-type": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/doctrine": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", - "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", - "dev": true, - "dependencies": { - "esutils": "^2.0.2" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/ee-first": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", - "peer": true - }, - "node_modules/electron-to-chromium": { - "version": "1.4.355", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.355.tgz", - "integrity": "sha512-056hxzEE4l667YeOccgjhRr5fTiwZ6EIJ4FpzGps4k3YcS8iAhiaBYUBrv5E2LDQJsussscv9EEUwAYKnv+ZKg==" - }, - "node_modules/emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", - "dev": true - }, - "node_modules/encodeurl": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", - "peer": true, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/end-of-stream": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", - "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", - "peer": true, - "dependencies": { - "once": "^1.4.0" - } - }, - "node_modules/enhanced-resolve": { - "version": "5.12.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz", - "integrity": "sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==", - "dev": true, - "dependencies": { - "graceful-fs": "^4.2.4", - "tapable": "^2.2.0" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/enquirer": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz", - "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==", - "dev": true, - "dependencies": { - "ansi-colors": "^4.1.1" - }, - "engines": { - "node": ">=8.6" - } - }, - "node_modules/envinfo": { - "version": "7.8.1", - "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.8.1.tgz", - "integrity": "sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==", - "peer": true, - "bin": { - "envinfo": "dist/cli.js" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/error-ex": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", - "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", - "dependencies": { - "is-arrayish": "^0.2.1" - } - }, - "node_modules/error-stack-parser": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.1.4.tgz", - "integrity": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==", - "peer": true, - "dependencies": { - "stackframe": "^1.3.4" - } - }, - "node_modules/errorhandler": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/errorhandler/-/errorhandler-1.5.1.tgz", - "integrity": "sha512-rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A==", - "peer": true, - "dependencies": { - "accepts": "~1.3.7", - "escape-html": "~1.0.3" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/es-abstract": { - "version": "1.21.2", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.21.2.tgz", - "integrity": "sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==", - "dev": true, - "dependencies": { - "array-buffer-byte-length": "^1.0.0", - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "es-set-tostringtag": "^2.0.1", - "es-to-primitive": "^1.2.1", - "function.prototype.name": "^1.1.5", - "get-intrinsic": "^1.2.0", - "get-symbol-description": "^1.0.0", - "globalthis": "^1.0.3", - "gopd": "^1.0.1", - "has": "^1.0.3", - "has-property-descriptors": "^1.0.0", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "internal-slot": "^1.0.5", - "is-array-buffer": "^3.0.2", - "is-callable": "^1.2.7", - "is-negative-zero": "^2.0.2", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.2", - "is-string": "^1.0.7", - "is-typed-array": "^1.1.10", - "is-weakref": "^1.0.2", - "object-inspect": "^1.12.3", - "object-keys": "^1.1.1", - "object.assign": "^4.1.4", - "regexp.prototype.flags": "^1.4.3", - "safe-regex-test": "^1.0.0", - "string.prototype.trim": "^1.2.7", - "string.prototype.trimend": "^1.0.6", - "string.prototype.trimstart": "^1.0.6", - "typed-array-length": "^1.0.4", - "unbox-primitive": "^1.0.2", - "which-typed-array": "^1.1.9" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/es-get-iterator": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.3.tgz", - "integrity": "sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.3", - "has-symbols": "^1.0.3", - "is-arguments": "^1.1.1", - "is-map": "^2.0.2", - "is-set": "^2.0.2", - "is-string": "^1.0.7", - "isarray": "^2.0.5", - "stop-iteration-iterator": "^1.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/es-module-lexer": { - "version": "0.9.3", - "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz", - "integrity": "sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==", - "dev": true, - "peer": true - }, - "node_modules/es-set-tostringtag": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz", - "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", - "dev": true, - "dependencies": { - "get-intrinsic": "^1.1.3", - "has": "^1.0.3", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/es-shim-unscopables": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", - "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", - "dev": true, - "dependencies": { - "has": "^1.0.3" - } - }, - "node_modules/es-to-primitive": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", - "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", - "dev": true, - "dependencies": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/es6-error": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/es6-error/-/es6-error-4.1.1.tgz", - "integrity": "sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==", - "dev": true - }, - "node_modules/escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", - "engines": { - "node": ">=6" - } - }, - "node_modules/escape-html": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", - "peer": true - }, - "node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/eslint": { - "version": "7.32.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-7.32.0.tgz", - "integrity": "sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==", - "dev": true, - "dependencies": { - "@babel/code-frame": "7.12.11", - "@eslint/eslintrc": "^0.4.3", - "@humanwhocodes/config-array": "^0.5.0", - "ajv": "^6.10.0", - "chalk": "^4.0.0", - "cross-spawn": "^7.0.2", - "debug": "^4.0.1", - "doctrine": "^3.0.0", - "enquirer": "^2.3.5", - "escape-string-regexp": "^4.0.0", - "eslint-scope": "^5.1.1", - "eslint-utils": "^2.1.0", - "eslint-visitor-keys": "^2.0.0", - "espree": "^7.3.1", - "esquery": "^1.4.0", - "esutils": "^2.0.2", - "fast-deep-equal": "^3.1.3", - "file-entry-cache": "^6.0.1", - "functional-red-black-tree": "^1.0.1", - "glob-parent": "^5.1.2", - "globals": "^13.6.0", - "ignore": "^4.0.6", - "import-fresh": "^3.0.0", - "imurmurhash": "^0.1.4", - "is-glob": "^4.0.0", - "js-yaml": "^3.13.1", - "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.4.1", - "lodash.merge": "^4.6.2", - "minimatch": "^3.0.4", - "natural-compare": "^1.4.0", - "optionator": "^0.9.1", - "progress": "^2.0.0", - "regexpp": "^3.1.0", - "semver": "^7.2.1", - "strip-ansi": "^6.0.0", - "strip-json-comments": "^3.1.0", - "table": "^6.0.9", - "text-table": "^0.2.0", - "v8-compile-cache": "^2.0.3" - }, - "bin": { - "eslint": "bin/eslint.js" - }, - "engines": { - "node": "^10.12.0 || >=12.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/eslint-config-airbnb-base": { - "version": "14.2.1", - "resolved": "https://registry.npmjs.org/eslint-config-airbnb-base/-/eslint-config-airbnb-base-14.2.1.tgz", - "integrity": "sha512-GOrQyDtVEc1Xy20U7vsB2yAoB4nBlfH5HZJeatRXHleO+OS5Ot+MWij4Dpltw4/DyIkqUfqz1epfhVR5XWWQPA==", - "dev": true, - "dependencies": { - "confusing-browser-globals": "^1.0.10", - "object.assign": "^4.1.2", - "object.entries": "^1.1.2" - }, - "engines": { - "node": ">= 6" - }, - "peerDependencies": { - "eslint": "^5.16.0 || ^6.8.0 || ^7.2.0", - "eslint-plugin-import": "^2.22.1" - } - }, - "node_modules/eslint-config-react": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/eslint-config-react/-/eslint-config-react-1.1.7.tgz", - "integrity": "sha512-P4Z6u68wf0BvIvZNu+U8uQsk3DcZ1CcCI1XpUkJlG6vOa+iVcSQLgE01f2DB2kXlKRcT8/3dsH+wveLgvEgbkQ==", - "dev": true - }, - "node_modules/eslint-import-resolver-node": { - "version": "0.3.7", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz", - "integrity": "sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==", - "dev": true, - "dependencies": { - "debug": "^3.2.7", - "is-core-module": "^2.11.0", - "resolve": "^1.22.1" - } - }, - "node_modules/eslint-import-resolver-node/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/eslint-module-utils": { - "version": "2.7.4", - "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.7.4.tgz", - "integrity": "sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==", - "dev": true, - "dependencies": { - "debug": "^3.2.7" - }, - "engines": { - "node": ">=4" - }, - "peerDependenciesMeta": { - "eslint": { - "optional": true - } - } - }, - "node_modules/eslint-module-utils/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/eslint-plugin-import": { - "version": "2.27.5", - "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.27.5.tgz", - "integrity": "sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==", - "dev": true, - "dependencies": { - "array-includes": "^3.1.6", - "array.prototype.flat": "^1.3.1", - "array.prototype.flatmap": "^1.3.1", - "debug": "^3.2.7", - "doctrine": "^2.1.0", - "eslint-import-resolver-node": "^0.3.7", - "eslint-module-utils": "^2.7.4", - "has": "^1.0.3", - "is-core-module": "^2.11.0", - "is-glob": "^4.0.3", - "minimatch": "^3.1.2", - "object.values": "^1.1.6", - "resolve": "^1.22.1", - "semver": "^6.3.0", - "tsconfig-paths": "^3.14.1" - }, - "engines": { - "node": ">=4" - }, - "peerDependencies": { - "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" - } - }, - "node_modules/eslint-plugin-import/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/eslint-plugin-import/node_modules/doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", - "dev": true, - "dependencies": { - "esutils": "^2.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/eslint-plugin-import/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/eslint-plugin-jsx-a11y": { - "version": "6.7.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.7.1.tgz", - "integrity": "sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==", - "dev": true, - "dependencies": { - "@babel/runtime": "^7.20.7", - "aria-query": "^5.1.3", - "array-includes": "^3.1.6", - "array.prototype.flatmap": "^1.3.1", - "ast-types-flow": "^0.0.7", - "axe-core": "^4.6.2", - "axobject-query": "^3.1.1", - "damerau-levenshtein": "^1.0.8", - "emoji-regex": "^9.2.2", - "has": "^1.0.3", - "jsx-ast-utils": "^3.3.3", - "language-tags": "=1.0.5", - "minimatch": "^3.1.2", - "object.entries": "^1.1.6", - "object.fromentries": "^2.0.6", - "semver": "^6.3.0" - }, - "engines": { - "node": ">=4.0" - }, - "peerDependencies": { - "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" - } - }, - "node_modules/eslint-plugin-jsx-a11y/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/eslint-plugin-react": { - "version": "7.32.2", - "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.32.2.tgz", - "integrity": "sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==", - "dev": true, - "dependencies": { - "array-includes": "^3.1.6", - "array.prototype.flatmap": "^1.3.1", - "array.prototype.tosorted": "^1.1.1", - "doctrine": "^2.1.0", - "estraverse": "^5.3.0", - "jsx-ast-utils": "^2.4.1 || ^3.0.0", - "minimatch": "^3.1.2", - "object.entries": "^1.1.6", - "object.fromentries": "^2.0.6", - "object.hasown": "^1.1.2", - "object.values": "^1.1.6", - "prop-types": "^15.8.1", - "resolve": "^2.0.0-next.4", - "semver": "^6.3.0", - "string.prototype.matchall": "^4.0.8" - }, - "engines": { - "node": ">=4" - }, - "peerDependencies": { - "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" - } - }, - "node_modules/eslint-plugin-react/node_modules/doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", - "dev": true, - "dependencies": { - "esutils": "^2.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/eslint-plugin-react/node_modules/resolve": { - "version": "2.0.0-next.4", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz", - "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==", - "dev": true, - "dependencies": { - "is-core-module": "^2.9.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/eslint-plugin-react/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/eslint-scope": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", - "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", - "dev": true, - "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/eslint-scope/node_modules/estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", - "dev": true, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/eslint-utils": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", - "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", - "dev": true, - "dependencies": { - "eslint-visitor-keys": "^1.1.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/mysticatea" - } - }, - "node_modules/eslint-utils/node_modules/eslint-visitor-keys": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", - "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/eslint-visitor-keys": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.0.tgz", - "integrity": "sha512-HPpKPUBQcAsZOsHAFwTtIKcYlCje62XB7SEAcxjtmW6TD1WVpkS6i6/hOVtTZIl4zGj/mBqpFVGvaDneik+VoQ==", - "dev": true, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/eslint/node_modules/eslint-visitor-keys": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", - "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", - "dev": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/eslint/node_modules/ignore": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", - "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", - "dev": true, - "engines": { - "node": ">= 4" - } - }, - "node_modules/espree": { - "version": "7.3.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz", - "integrity": "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==", - "dev": true, - "dependencies": { - "acorn": "^7.4.0", - "acorn-jsx": "^5.3.1", - "eslint-visitor-keys": "^1.3.0" - }, - "engines": { - "node": "^10.12.0 || >=12.0.0" - } - }, - "node_modules/espree/node_modules/eslint-visitor-keys": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", - "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/esprima": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", - "bin": { - "esparse": "bin/esparse.js", - "esvalidate": "bin/esvalidate.js" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/esquery": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", - "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", - "dev": true, - "dependencies": { - "estraverse": "^5.1.0" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/esrecurse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", - "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", - "dev": true, - "dependencies": { - "estraverse": "^5.2.0" - }, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "dev": true, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/etag": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", - "peer": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/event-target-shim": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", - "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==", - "peer": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/events": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", - "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", - "dev": true, - "peer": true, - "engines": { - "node": ">=0.8.x" - } - }, - "node_modules/execa": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", - "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", - "peer": true, - "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" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/execa/node_modules/cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", - "peer": true, - "dependencies": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - }, - "engines": { - "node": ">=4.8" - } - }, - "node_modules/execa/node_modules/is-stream": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", - "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", - "peer": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/execa/node_modules/path-key": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", - "peer": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/execa/node_modules/semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "peer": true, - "bin": { - "semver": "bin/semver" - } - }, - "node_modules/execa/node_modules/shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", - "peer": true, - "dependencies": { - "shebang-regex": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/execa/node_modules/shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", - "peer": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/execa/node_modules/which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "peer": true, - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "which": "bin/which" - } - }, - "node_modules/expand-brackets": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", - "integrity": "sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==", - "peer": true, - "dependencies": { - "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" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/expand-brackets/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "peer": true, - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/expand-brackets/node_modules/define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", - "peer": true, - "dependencies": { - "is-descriptor": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/expand-brackets/node_modules/extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "peer": true, - "dependencies": { - "is-extendable": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/expand-brackets/node_modules/is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", - "peer": true, - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/expand-brackets/node_modules/is-accessor-descriptor/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "peer": true, - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/expand-brackets/node_modules/is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", - "peer": true, - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/expand-brackets/node_modules/is-data-descriptor/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "peer": true, - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/expand-brackets/node_modules/is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "peer": true, - "dependencies": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/expand-brackets/node_modules/is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", - "peer": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/expand-brackets/node_modules/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==", - "peer": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/expand-brackets/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "peer": true - }, - "node_modules/extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", - "peer": true, - "dependencies": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/extglob": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", - "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", - "peer": true, - "dependencies": { - "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" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/extglob/node_modules/define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", - "peer": true, - "dependencies": { - "is-descriptor": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/extglob/node_modules/extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "peer": true, - "dependencies": { - "is-extendable": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/extglob/node_modules/is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", - "peer": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", - "dev": true - }, - "node_modules/fast-glob": { - "version": "3.2.12", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz", - "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==", - "dev": true, - "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" - }, - "engines": { - "node": ">=8.6.0" - } - }, - "node_modules/fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", - "dev": true - }, - "node_modules/fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", - "dev": true - }, - "node_modules/fast-xml-parser": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.1.3.tgz", - "integrity": "sha512-LsNDahCiCcJPe8NO7HijcnukHB24tKbfDDA5IILx9dmW3Frb52lhbeX6MPNUSvyGNfav2VTYpJ/OqkRoVLrh2Q==", - "peer": true, - "dependencies": { - "strnum": "^1.0.5" - }, - "bin": { - "fxparser": "src/cli/cli.js" - }, - "funding": { - "type": "paypal", - "url": "https://paypal.me/naturalintelligence" - } - }, - "node_modules/fastq": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", - "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", - "dev": true, - "dependencies": { - "reusify": "^1.0.4" - } - }, - "node_modules/fb-watchman": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", - "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", - "peer": true, - "dependencies": { - "bser": "2.1.1" - } - }, - "node_modules/file-entry-cache": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", - "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", - "dev": true, - "dependencies": { - "flat-cache": "^3.0.4" - }, - "engines": { - "node": "^10.12.0 || >=12.0.0" - } - }, - "node_modules/fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "dependencies": { - "to-regex-range": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/finalhandler": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", - "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", - "peer": true, - "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" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/finalhandler/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "peer": true, - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/finalhandler/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "peer": true - }, - "node_modules/find-cache-dir": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", - "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", - "dev": true, - "dependencies": { - "commondir": "^1.0.1", - "make-dir": "^3.0.2", - "pkg-dir": "^4.1.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/avajs/find-cache-dir?sponsor=1" - } - }, - "node_modules/find-cache-dir/node_modules/find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dev": true, - "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/find-cache-dir/node_modules/locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dev": true, - "dependencies": { - "p-locate": "^4.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/find-cache-dir/node_modules/p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "dev": true, - "dependencies": { - "p-try": "^2.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/find-cache-dir/node_modules/p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dev": true, - "dependencies": { - "p-limit": "^2.2.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/find-cache-dir/node_modules/pkg-dir": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", - "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", - "dev": true, - "dependencies": { - "find-up": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", - "dependencies": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/find-versions": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/find-versions/-/find-versions-4.0.0.tgz", - "integrity": "sha512-wgpWy002tA+wgmO27buH/9KzyEOQnKsG/R0yrcjPT9BOFm0zRBVQbZ95nRGXWMywS8YR5knRbpohio0bcJABxQ==", - "dev": true, - "dependencies": { - "semver-regex": "^3.1.2" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/flat": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", - "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", - "dev": true, - "bin": { - "flat": "cli.js" - } - }, - "node_modules/flat-cache": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", - "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", - "dev": true, - "dependencies": { - "flatted": "^3.1.0", - "rimraf": "^3.0.2" - }, - "engines": { - "node": "^10.12.0 || >=12.0.0" - } - }, - "node_modules/flatted": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", - "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==", - "dev": true - }, - "node_modules/flow-parser": { - "version": "0.185.2", - "resolved": "https://registry.npmjs.org/flow-parser/-/flow-parser-0.185.2.tgz", - "integrity": "sha512-2hJ5ACYeJCzNtiVULov6pljKOLygy0zddoqSI1fFetM+XRPpRshFdGEijtqlamA1XwyZ+7rhryI6FQFzvtLWUQ==", - "peer": true, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/for-each": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", - "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", - "dev": true, - "dependencies": { - "is-callable": "^1.1.3" - } - }, - "node_modules/for-in": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", - "integrity": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==", - "peer": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/foreground-child": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-2.0.0.tgz", - "integrity": "sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA==", - "dev": true, - "dependencies": { - "cross-spawn": "^7.0.0", - "signal-exit": "^3.0.2" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/fragment-cache": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", - "integrity": "sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==", - "peer": true, - "dependencies": { - "map-cache": "^0.2.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/fresh": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", - "peer": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/fromentries": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/fromentries/-/fromentries-1.3.2.tgz", - "integrity": "sha512-cHEpEQHUg0f8XdtZCc2ZAhrHzKzT0MrFUTcvx+hfxYu7rGMDc5SKoXFh+n4YigxsHXRzc6OrCshdR1bWH6HHyg==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/fs-extra": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", - "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", - "peer": true, - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" - }, - "engines": { - "node": ">=6 <7 || >=8" - } - }, - "node_modules/fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" - }, - "node_modules/fsevents": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", - "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", - "hasInstallScript": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": "^8.16.0 || ^10.6.0 || >=11.0.0" - } - }, - "node_modules/function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" - }, - "node_modules/function.prototype.name": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", - "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.0", - "functions-have-names": "^1.2.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/functional-red-black-tree": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", - "integrity": "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==", - "dev": true - }, - "node_modules/functions-have-names": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", - "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/gensync": { - "version": "1.0.0-beta.2", - "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", - "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/get-caller-file": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", - "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", - "engines": { - "node": "6.* || 8.* || >= 10.*" - } - }, - "node_modules/get-func-name": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.0.tgz", - "integrity": "sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig==", - "dev": true, - "engines": { - "node": "*" - } - }, - "node_modules/get-intrinsic": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.0.tgz", - "integrity": "sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==", - "dev": true, - "dependencies": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/get-package-type": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", - "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", - "dev": true, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/get-stream": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", - "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", - "peer": true, - "dependencies": { - "pump": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/get-symbol-description": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", - "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/get-value": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", - "integrity": "sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==", - "peer": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/glob": { - "version": "7.1.6", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", - "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dev": true, - "dependencies": { - "is-glob": "^4.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/glob-to-regexp": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", - "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", - "dev": true, - "peer": true - }, - "node_modules/globals": { - "version": "13.20.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", - "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", - "dev": true, - "dependencies": { - "type-fest": "^0.20.2" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/globalthis": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", - "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", - "dev": true, - "dependencies": { - "define-properties": "^1.1.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/globby": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", - "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", - "dev": true, - "dependencies": { - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.9", - "ignore": "^5.2.0", - "merge2": "^1.4.1", - "slash": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/google-libphonenumber": { - "version": "3.2.32", - "resolved": "https://registry.npmjs.org/google-libphonenumber/-/google-libphonenumber-3.2.32.tgz", - "integrity": "sha512-mcNgakausov/B/eTgVeX8qc8IwWjRrupk9UzZZ/QDEvdh5fAjE7Aa211bkZpZj42zKkeS6MTT8avHUwjcLxuGQ==", - "engines": { - "node": ">=0.10" - } - }, - "node_modules/gopd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", - "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", - "dev": true, - "dependencies": { - "get-intrinsic": "^1.1.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/graceful-fs": { - "version": "4.2.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", - "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" - }, - "node_modules/grapheme-splitter": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz", - "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==", - "dev": true - }, - "node_modules/growl": { - "version": "1.10.5", - "resolved": "https://registry.npmjs.org/growl/-/growl-1.10.5.tgz", - "integrity": "sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA==", - "dev": true, - "engines": { - "node": ">=4.x" - } - }, - "node_modules/has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "dependencies": { - "function-bind": "^1.1.1" - }, - "engines": { - "node": ">= 0.4.0" - } - }, - "node_modules/has-bigints": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", - "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/has-property-descriptors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", - "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", - "dev": true, - "dependencies": { - "get-intrinsic": "^1.1.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-proto": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", - "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-tostringtag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", - "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", - "dev": true, - "dependencies": { - "has-symbols": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-value": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", - "integrity": "sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==", - "peer": true, - "dependencies": { - "get-value": "^2.0.6", - "has-values": "^1.0.0", - "isobject": "^3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/has-values": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", - "integrity": "sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==", - "peer": true, - "dependencies": { - "is-number": "^3.0.0", - "kind-of": "^4.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/has-values/node_modules/is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", - "peer": true, - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/has-values/node_modules/is-number/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "peer": true, - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/has-values/node_modules/kind-of": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", - "integrity": "sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==", - "peer": true, - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/hasha": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/hasha/-/hasha-5.2.2.tgz", - "integrity": "sha512-Hrp5vIK/xr5SkeN2onO32H0MgNZ0f17HRNH39WfL0SYUNOTZ5Lz1TJ8Pajo/87dYGEFlLMm7mIc/k/s6Bvz9HQ==", - "dev": true, - "dependencies": { - "is-stream": "^2.0.0", - "type-fest": "^0.8.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/hasha/node_modules/type-fest": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", - "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/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, - "bin": { - "he": "bin/he" - } - }, - "node_modules/hermes-estree": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/hermes-estree/-/hermes-estree-0.8.0.tgz", - "integrity": "sha512-W6JDAOLZ5pMPMjEiQGLCXSSV7pIBEgRR5zGkxgmzGSXHOxqV5dC/M1Zevqpbm9TZDE5tu358qZf8Vkzmsc+u7Q==", - "peer": true - }, - "node_modules/hermes-parser": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/hermes-parser/-/hermes-parser-0.8.0.tgz", - "integrity": "sha512-yZKalg1fTYG5eOiToLUaw69rQfZq/fi+/NtEXRU7N87K/XobNRhRWorh80oSge2lWUiZfTgUvRJH+XgZWrhoqA==", - "peer": true, - "dependencies": { - "hermes-estree": "0.8.0" - } - }, - "node_modules/hermes-profile-transformer": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/hermes-profile-transformer/-/hermes-profile-transformer-0.0.6.tgz", - "integrity": "sha512-cnN7bQUm65UWOy6cbGcCcZ3rpwW8Q/j4OP5aWRhEry4Z2t2aR1cjrbp0BS+KiBN0smvP1caBgAuxutvyvJILzQ==", - "peer": true, - "dependencies": { - "source-map": "^0.7.3" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/hermes-profile-transformer/node_modules/source-map": { - "version": "0.7.4", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", - "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", - "peer": true, - "engines": { - "node": ">= 8" - } - }, - "node_modules/html-escaper": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", - "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", - "dev": true - }, - "node_modules/http-errors": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", - "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", - "peer": true, - "dependencies": { - "depd": "2.0.0", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "toidentifier": "1.0.1" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/http-errors/node_modules/statuses": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", - "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", - "peer": true, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/husky": { - "version": "4.3.8", - "resolved": "https://registry.npmjs.org/husky/-/husky-4.3.8.tgz", - "integrity": "sha512-LCqqsB0PzJQ/AlCgfrfzRe3e3+NvmefAdKQhRYpxS4u6clblBoDdzzvHi8fmxKRzvMxPY/1WZWzomPZww0Anow==", - "dev": true, - "hasInstallScript": true, - "dependencies": { - "chalk": "^4.0.0", - "ci-info": "^2.0.0", - "compare-versions": "^3.6.0", - "cosmiconfig": "^7.0.0", - "find-versions": "^4.0.0", - "opencollective-postinstall": "^2.0.2", - "pkg-dir": "^5.0.0", - "please-upgrade-node": "^3.2.0", - "slash": "^3.0.0", - "which-pm-runs": "^1.0.0" - }, - "bin": { - "husky-run": "bin/run.js", - "husky-upgrade": "lib/upgrader/bin.js" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/husky" - } - }, - "node_modules/ieee754": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", - "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "peer": true - }, - "node_modules/ignore": { - "version": "5.2.4", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", - "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", - "dev": true, - "engines": { - "node": ">= 4" - } - }, - "node_modules/image-size": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/image-size/-/image-size-0.6.3.tgz", - "integrity": "sha512-47xSUiQioGaB96nqtp5/q55m0aBQSQdyIloMOc/x+QVTDZLNmXE892IIDrJ0hM1A5vcNUDD5tDffkSP5lCaIIA==", - "peer": true, - "bin": { - "image-size": "bin/image-size.js" - }, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/import-fresh": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", - "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", - "dev": true, - "dependencies": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", - "engines": { - "node": ">=0.8.19" - } - }, - "node_modules/indent-string": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", - "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", - "dependencies": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "node_modules/inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" - }, - "node_modules/internal-slot": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz", - "integrity": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==", - "dev": true, - "dependencies": { - "get-intrinsic": "^1.2.0", - "has": "^1.0.3", - "side-channel": "^1.0.4" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/invariant": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", - "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", - "peer": true, - "dependencies": { - "loose-envify": "^1.0.0" - } - }, - "node_modules/ip": { - "version": "1.1.8", - "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.8.tgz", - "integrity": "sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==", - "peer": true - }, - "node_modules/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==", - "peer": true, - "dependencies": { - "kind-of": "^6.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-arguments": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", - "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-array-buffer": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", - "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.0", - "is-typed-array": "^1.1.10" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" - }, - "node_modules/is-bigint": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", - "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", - "dev": true, - "dependencies": { - "has-bigints": "^1.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", - "dev": true, - "dependencies": { - "binary-extensions": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-boolean-object": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", - "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-buffer": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", - "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", - "peer": true - }, - "node_modules/is-callable": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", - "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-core-module": { - "version": "2.11.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz", - "integrity": "sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==", - "dependencies": { - "has": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/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==", - "peer": true, - "dependencies": { - "kind-of": "^6.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-date-object": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", - "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", - "dev": true, - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "peer": true, - "dependencies": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-directory": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz", - "integrity": "sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==", - "peer": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/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==", - "peer": true, - "dependencies": { - "is-plain-object": "^2.0.4" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/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": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==", - "engines": { - "node": ">=4" - } - }, - "node_modules/is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", - "dev": true, - "dependencies": { - "is-extglob": "^2.1.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-interactive": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", - "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", - "peer": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-map": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", - "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-negative-zero": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", - "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "engines": { - "node": ">=0.12.0" - } - }, - "node_modules/is-number-object": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", - "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", - "dev": true, - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-plain-obj": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", - "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/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==", - "peer": true, - "dependencies": { - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-regex": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", - "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-set": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", - "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-shared-array-buffer": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", - "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", - "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-string": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", - "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", - "dev": true, - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-symbol": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", - "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", - "dev": true, - "dependencies": { - "has-symbols": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-typed-array": { - "version": "1.1.10", - "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz", - "integrity": "sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==", - "dev": true, - "dependencies": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-typedarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", - "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==", - "dev": true - }, - "node_modules/is-unicode-supported": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", - "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", - "peer": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-weakmap": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz", - "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-weakref": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", - "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-weakset": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz", - "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/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==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-wsl": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", - "integrity": "sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==", - "peer": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/isarray": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", - "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", - "dev": true - }, - "node_modules/isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" - }, - "node_modules/isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", - "peer": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/istanbul-lib-coverage": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", - "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/istanbul-lib-hook": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-hook/-/istanbul-lib-hook-3.0.0.tgz", - "integrity": "sha512-Pt/uge1Q9s+5VAZ+pCo16TYMWPBIl+oaNIjgLQxcX0itS6ueeaA+pEfThZpH8WxhFgCiEb8sAJY6MdUKgiIWaQ==", - "dev": true, - "dependencies": { - "append-transform": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/istanbul-lib-instrument": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz", - "integrity": "sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==", - "dev": true, - "dependencies": { - "@babel/core": "^7.7.5", - "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-coverage": "^3.0.0", - "semver": "^6.3.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/istanbul-lib-instrument/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/istanbul-lib-processinfo": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/istanbul-lib-processinfo/-/istanbul-lib-processinfo-2.0.3.tgz", - "integrity": "sha512-NkwHbo3E00oybX6NGJi6ar0B29vxyvNwoC7eJ4G4Yq28UfY758Hgn/heV8VRFhevPED4LXfFz0DQ8z/0kw9zMg==", - "dev": true, - "dependencies": { - "archy": "^1.0.0", - "cross-spawn": "^7.0.3", - "istanbul-lib-coverage": "^3.2.0", - "p-map": "^3.0.0", - "rimraf": "^3.0.0", - "uuid": "^8.3.2" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/istanbul-lib-report": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", - "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", - "dev": true, - "dependencies": { - "istanbul-lib-coverage": "^3.0.0", - "make-dir": "^3.0.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/istanbul-lib-source-maps": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", - "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", - "dev": true, - "dependencies": { - "debug": "^4.1.1", - "istanbul-lib-coverage": "^3.0.0", - "source-map": "^0.6.1" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/istanbul-reports": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.5.tgz", - "integrity": "sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==", - "dev": true, - "dependencies": { - "html-escaper": "^2.0.0", - "istanbul-lib-report": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-environment-node": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.5.0.tgz", - "integrity": "sha512-ExxuIK/+yQ+6PRGaHkKewYtg6hto2uGCgvKdb2nfJfKXgZ17DfXjvbZ+jA1Qt9A8EQSfPnt5FKIfnOO3u1h9qw==", - "peer": true, - "dependencies": { - "@jest/environment": "^29.5.0", - "@jest/fake-timers": "^29.5.0", - "@jest/types": "^29.5.0", - "@types/node": "*", - "jest-mock": "^29.5.0", - "jest-util": "^29.5.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-get-type": { - "version": "26.3.0", - "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-26.3.0.tgz", - "integrity": "sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==", - "peer": true, - "engines": { - "node": ">= 10.14.2" - } - }, - "node_modules/jest-message-util": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.5.0.tgz", - "integrity": "sha512-Kijeg9Dag6CKtIDA7O21zNTACqD5MD/8HfIV8pdD94vFyFuer52SigdC3IQMhab3vACxXMiFk+yMHNdbqtyTGA==", - "peer": true, - "dependencies": { - "@babel/code-frame": "^7.12.13", - "@jest/types": "^29.5.0", - "@types/stack-utils": "^2.0.0", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "micromatch": "^4.0.4", - "pretty-format": "^29.5.0", - "slash": "^3.0.0", - "stack-utils": "^2.0.3" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-message-util/node_modules/@babel/code-frame": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.21.4.tgz", - "integrity": "sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g==", - "peer": true, - "dependencies": { - "@babel/highlight": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/jest-message-util/node_modules/ansi-styles": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", - "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", - "peer": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-message-util/node_modules/pretty-format": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.5.0.tgz", - "integrity": "sha512-V2mGkI31qdttvTFX7Mt4efOqHXqJWMu4/r66Xh3Z3BwZaPfPJgp6/gbwoujRpPUtfEF6AUUWx3Jim3GCw5g/Qw==", - "peer": true, - "dependencies": { - "@jest/schemas": "^29.4.3", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-message-util/node_modules/react-is": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", - "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", - "peer": true - }, - "node_modules/jest-mock": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.5.0.tgz", - "integrity": "sha512-GqOzvdWDE4fAV2bWQLQCkujxYWL7RxjCnj71b5VhDAGOevB3qj3Ovg26A5NI84ZpODxyzaozXLOh2NCgkbvyaw==", - "peer": true, - "dependencies": { - "@jest/types": "^29.5.0", - "@types/node": "*", - "jest-util": "^29.5.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-regex-util": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", - "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", - "peer": true, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-serializer": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz", - "integrity": "sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==", - "peer": true, - "dependencies": { - "@types/node": "*", - "graceful-fs": "^4.2.9" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-util": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.5.0.tgz", - "integrity": "sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ==", - "peer": true, - "dependencies": { - "@jest/types": "^29.5.0", - "@types/node": "*", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "graceful-fs": "^4.2.9", - "picomatch": "^2.2.3" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-util/node_modules/ci-info": { - "version": "3.8.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.8.0.tgz", - "integrity": "sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/sibiraj-s" - } - ], - "peer": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-validate": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-26.6.2.tgz", - "integrity": "sha512-NEYZ9Aeyj0i5rQqbq+tpIOom0YS1u2MVu6+euBsvpgIme+FOfRmoC4R5p0JiAUpaFvFy24xgrpMknarR/93XjQ==", - "peer": true, - "dependencies": { - "@jest/types": "^26.6.2", - "camelcase": "^6.0.0", - "chalk": "^4.0.0", - "jest-get-type": "^26.3.0", - "leven": "^3.1.0", - "pretty-format": "^26.6.2" - }, - "engines": { - "node": ">= 10.14.2" - } - }, - "node_modules/jest-validate/node_modules/@jest/types": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz", - "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==", - "peer": true, - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^15.0.0", - "chalk": "^4.0.0" - }, - "engines": { - "node": ">= 10.14.2" - } - }, - "node_modules/jest-validate/node_modules/@types/yargs": { - "version": "15.0.15", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.15.tgz", - "integrity": "sha512-IziEYMU9XoVj8hWg7k+UJrXALkGFjWJhn5QFEv9q4p+v40oZhSuC135M38st8XPjICL7Ey4TV64ferBGUoJhBg==", - "peer": true, - "dependencies": { - "@types/yargs-parser": "*" - } - }, - "node_modules/jest-validate/node_modules/camelcase": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", - "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", - "peer": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/jest-worker": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", - "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", - "peer": true, - "dependencies": { - "@types/node": "*", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" - }, - "engines": { - "node": ">= 10.13.0" - } - }, - "node_modules/jest-worker/node_modules/supports-color": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", - "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", - "peer": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" - } - }, - "node_modules/joi": { - "version": "17.9.1", - "resolved": "https://registry.npmjs.org/joi/-/joi-17.9.1.tgz", - "integrity": "sha512-FariIi9j6QODKATGBrEX7HZcja8Bsh3rfdGYy/Sb65sGlZWK/QWesU1ghk7aJWDj95knjXlQfSmzFSPPkLVsfw==", - "peer": true, - "dependencies": { - "@hapi/hoek": "^9.0.0", - "@hapi/topo": "^5.0.0", - "@sideway/address": "^4.1.3", - "@sideway/formula": "^3.0.1", - "@sideway/pinpoint": "^2.0.0" - } - }, - "node_modules/js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" - }, - "node_modules/js-yaml": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", - "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", - "dependencies": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/jsc-android": { - "version": "250231.0.0", - "resolved": "https://registry.npmjs.org/jsc-android/-/jsc-android-250231.0.0.tgz", - "integrity": "sha512-rS46PvsjYmdmuz1OAWXY/1kCYG7pnf1TBqeTiOJr1iDz7s5DLxxC9n/ZMknLDxzYzNVfI7R95MH10emSSG1Wuw==", - "peer": true - }, - "node_modules/jscodeshift": { - "version": "0.13.1", - "resolved": "https://registry.npmjs.org/jscodeshift/-/jscodeshift-0.13.1.tgz", - "integrity": "sha512-lGyiEbGOvmMRKgWk4vf+lUrCWO/8YR8sUR3FKF1Cq5fovjZDlIcw3Hu5ppLHAnEXshVffvaM0eyuY/AbOeYpnQ==", - "peer": true, - "dependencies": { - "@babel/core": "^7.13.16", - "@babel/parser": "^7.13.16", - "@babel/plugin-proposal-class-properties": "^7.13.0", - "@babel/plugin-proposal-nullish-coalescing-operator": "^7.13.8", - "@babel/plugin-proposal-optional-chaining": "^7.13.12", - "@babel/plugin-transform-modules-commonjs": "^7.13.8", - "@babel/preset-flow": "^7.13.13", - "@babel/preset-typescript": "^7.13.0", - "@babel/register": "^7.13.16", - "babel-core": "^7.0.0-bridge.0", - "chalk": "^4.1.2", - "flow-parser": "0.*", - "graceful-fs": "^4.2.4", - "micromatch": "^3.1.10", - "neo-async": "^2.5.0", - "node-dir": "^0.1.17", - "recast": "^0.20.4", - "temp": "^0.8.4", - "write-file-atomic": "^2.3.0" - }, - "bin": { - "jscodeshift": "bin/jscodeshift.js" - }, - "peerDependencies": { - "@babel/preset-env": "^7.1.6" - } - }, - "node_modules/jscodeshift/node_modules/braces": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", - "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", - "peer": true, - "dependencies": { - "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" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/jscodeshift/node_modules/braces/node_modules/extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "peer": true, - "dependencies": { - "is-extendable": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/jscodeshift/node_modules/fill-range": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", - "peer": true, - "dependencies": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/jscodeshift/node_modules/fill-range/node_modules/extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "peer": true, - "dependencies": { - "is-extendable": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/jscodeshift/node_modules/is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", - "peer": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/jscodeshift/node_modules/is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", - "peer": true, - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/jscodeshift/node_modules/is-number/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "peer": true, - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/jscodeshift/node_modules/micromatch": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", - "peer": true, - "dependencies": { - "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" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/jscodeshift/node_modules/rimraf": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", - "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", - "peer": true, - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - } - }, - "node_modules/jscodeshift/node_modules/temp": { - "version": "0.8.4", - "resolved": "https://registry.npmjs.org/temp/-/temp-0.8.4.tgz", - "integrity": "sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg==", - "peer": true, - "dependencies": { - "rimraf": "~2.6.2" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/jscodeshift/node_modules/to-regex-range": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", - "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", - "peer": true, - "dependencies": { - "is-number": "^3.0.0", - "repeat-string": "^1.6.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/jscodeshift/node_modules/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==", - "peer": true, - "dependencies": { - "graceful-fs": "^4.1.11", - "imurmurhash": "^0.1.4", - "signal-exit": "^3.0.2" - } - }, - "node_modules/jsesc": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", - "bin": { - "jsesc": "bin/jsesc" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/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==", - "peer": true - }, - "node_modules/json-parse-even-better-errors": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", - "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", - "dev": true - }, - "node_modules/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 - }, - "node_modules/json-stable-stringify-without-jsonify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", - "dev": true - }, - "node_modules/json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", - "bin": { - "json5": "lib/cli.js" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/jsonfile": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", - "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", - "peer": true, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/jsx-ast-utils": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.3.tgz", - "integrity": "sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==", - "dev": true, - "dependencies": { - "array-includes": "^3.1.5", - "object.assign": "^4.1.3" - }, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "peer": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/kleur": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", - "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", - "peer": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/language-subtag-registry": { - "version": "0.3.22", - "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz", - "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==", - "dev": true - }, - "node_modules/language-tags": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz", - "integrity": "sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==", - "dev": true, - "dependencies": { - "language-subtag-registry": "~0.3.2" - } - }, - "node_modules/leven": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", - "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", - "peer": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/levn": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", - "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", - "dev": true, - "dependencies": { - "prelude-ls": "^1.2.1", - "type-check": "~0.4.0" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/lines-and-columns": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", - "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", - "dev": true - }, - "node_modules/loader-runner": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", - "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", - "dev": true, - "peer": true, - "engines": { - "node": ">=6.11.5" - } - }, - "node_modules/locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", - "dependencies": { - "p-locate": "^5.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" - }, - "node_modules/lodash.debounce": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", - "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", - "peer": true - }, - "node_modules/lodash.flattendeep": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz", - "integrity": "sha512-uHaJFihxmJcEX3kT4I23ABqKKalJ/zDrDg0lsFtc1h+3uw49SIJ5beyhx5ExVRti3AvKoOJngIj7xz3oylPdWQ==", - "dev": true - }, - "node_modules/lodash.merge": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", - "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", - "dev": true - }, - "node_modules/lodash.throttle": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/lodash.throttle/-/lodash.throttle-4.1.1.tgz", - "integrity": "sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ==", - "peer": true - }, - "node_modules/lodash.truncate": { - "version": "4.4.2", - "resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz", - "integrity": "sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==", - "dev": true - }, - "node_modules/log-symbols": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.0.0.tgz", - "integrity": "sha512-FN8JBzLx6CzeMrB0tg6pqlGU1wCrXW+ZXGH481kfsBqer0hToTIiHdjH4Mq8xJUbvATujKCvaREGWpGUionraA==", - "dev": true, - "dependencies": { - "chalk": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/logkitty": { - "version": "0.7.1", - "resolved": "https://registry.npmjs.org/logkitty/-/logkitty-0.7.1.tgz", - "integrity": "sha512-/3ER20CTTbahrCrpYfPn7Xavv9diBROZpoXGVZDWMw4b/X4uuUwAC0ki85tgsdMRONURyIJbcOvS94QsUBYPbQ==", - "peer": true, - "dependencies": { - "ansi-fragments": "^0.2.1", - "dayjs": "^1.8.15", - "yargs": "^15.1.0" - }, - "bin": { - "logkitty": "bin/logkitty.js" - } - }, - "node_modules/logkitty/node_modules/cliui": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", - "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", - "peer": true, - "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", - "wrap-ansi": "^6.2.0" - } - }, - "node_modules/logkitty/node_modules/find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "peer": true, - "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/logkitty/node_modules/locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "peer": true, - "dependencies": { - "p-locate": "^4.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/logkitty/node_modules/p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "peer": true, - "dependencies": { - "p-try": "^2.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/logkitty/node_modules/p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "peer": true, - "dependencies": { - "p-limit": "^2.2.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/logkitty/node_modules/wrap-ansi": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", - "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", - "peer": true, - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/logkitty/node_modules/y18n": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", - "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==", - "peer": true - }, - "node_modules/logkitty/node_modules/yargs": { - "version": "15.4.1", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", - "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", - "peer": true, - "dependencies": { - "cliui": "^6.0.0", - "decamelize": "^1.2.0", - "find-up": "^4.1.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": "^4.2.0", - "which-module": "^2.0.0", - "y18n": "^4.0.0", - "yargs-parser": "^18.1.2" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/logkitty/node_modules/yargs-parser": { - "version": "18.1.3", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", - "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", - "peer": true, - "dependencies": { - "camelcase": "^5.0.0", - "decamelize": "^1.2.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/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==", - "dependencies": { - "js-tokens": "^3.0.0 || ^4.0.0" - }, - "bin": { - "loose-envify": "cli.js" - } - }, - "node_modules/loupe": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/loupe/-/loupe-2.3.6.tgz", - "integrity": "sha512-RaPMZKiMy8/JruncMU5Bt6na1eftNoo++R4Y+N2FrxkDVTrGvcyzFTsaGif4QTeKESheMGegbhw6iUAq+5A8zA==", - "dev": true, - "dependencies": { - "get-func-name": "^2.0.0" - } - }, - "node_modules/lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", - "dependencies": { - "yallist": "^3.0.2" - } - }, - "node_modules/make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", - "dev": true, - "dependencies": { - "semver": "^6.0.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/make-dir/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/make-error": { - "version": "1.3.6", - "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", - "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", - "dev": true - }, - "node_modules/makeerror": { - "version": "1.0.12", - "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", - "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", - "peer": true, - "dependencies": { - "tmpl": "1.0.5" - } - }, - "node_modules/map-cache": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", - "integrity": "sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==", - "peer": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/map-visit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", - "integrity": "sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==", - "peer": true, - "dependencies": { - "object-visit": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/memoize-one": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/memoize-one/-/memoize-one-5.2.1.tgz", - "integrity": "sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==", - "peer": true - }, - "node_modules/merge-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", - "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", - "peer": true - }, - "node_modules/merge2": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", - "dev": true, - "engines": { - "node": ">= 8" - } - }, - "node_modules/metro": { - "version": "0.73.9", - "resolved": "https://registry.npmjs.org/metro/-/metro-0.73.9.tgz", - "integrity": "sha512-BlYbPmTF60hpetyNdKhdvi57dSqutb+/oK0u3ni4emIh78PiI0axGo7RfdsZ/mn3saASXc94tDbpC5yn7+NpEg==", - "peer": true, - "dependencies": { - "@babel/code-frame": "^7.0.0", - "@babel/core": "^7.20.0", - "@babel/generator": "^7.20.0", - "@babel/parser": "^7.20.0", - "@babel/template": "^7.0.0", - "@babel/traverse": "^7.20.0", - "@babel/types": "^7.20.0", - "absolute-path": "^0.0.0", - "accepts": "^1.3.7", - "async": "^3.2.2", - "chalk": "^4.0.0", - "ci-info": "^2.0.0", - "connect": "^3.6.5", - "debug": "^2.2.0", - "denodeify": "^1.2.1", - "error-stack-parser": "^2.0.6", - "graceful-fs": "^4.2.4", - "hermes-parser": "0.8.0", - "image-size": "^0.6.0", - "invariant": "^2.2.4", - "jest-worker": "^27.2.0", - "lodash.throttle": "^4.1.1", - "metro-babel-transformer": "0.73.9", - "metro-cache": "0.73.9", - "metro-cache-key": "0.73.9", - "metro-config": "0.73.9", - "metro-core": "0.73.9", - "metro-file-map": "0.73.9", - "metro-hermes-compiler": "0.73.9", - "metro-inspector-proxy": "0.73.9", - "metro-minify-terser": "0.73.9", - "metro-minify-uglify": "0.73.9", - "metro-react-native-babel-preset": "0.73.9", - "metro-resolver": "0.73.9", - "metro-runtime": "0.73.9", - "metro-source-map": "0.73.9", - "metro-symbolicate": "0.73.9", - "metro-transform-plugins": "0.73.9", - "metro-transform-worker": "0.73.9", - "mime-types": "^2.1.27", - "node-fetch": "^2.2.0", - "nullthrows": "^1.1.1", - "rimraf": "^3.0.2", - "serialize-error": "^2.1.0", - "source-map": "^0.5.6", - "strip-ansi": "^6.0.0", - "temp": "0.8.3", - "throat": "^5.0.0", - "ws": "^7.5.1", - "yargs": "^17.5.1" - }, - "bin": { - "metro": "src/cli.js" - } - }, - "node_modules/metro-babel-transformer": { - "version": "0.73.9", - "resolved": "https://registry.npmjs.org/metro-babel-transformer/-/metro-babel-transformer-0.73.9.tgz", - "integrity": "sha512-DlYwg9wwYIZTHtic7dyD4BP0SDftoltZ3clma76nHu43blMWsCnrImHeHsAVne3XsQ+RJaSRxhN5nkG2VyVHwA==", - "peer": true, - "dependencies": { - "@babel/core": "^7.20.0", - "hermes-parser": "0.8.0", - "metro-source-map": "0.73.9", - "nullthrows": "^1.1.1" - } - }, - "node_modules/metro-cache": { - "version": "0.73.9", - "resolved": "https://registry.npmjs.org/metro-cache/-/metro-cache-0.73.9.tgz", - "integrity": "sha512-upiRxY8rrQkUWj7ieACD6tna7xXuXdu2ZqrheksT79ePI0aN/t0memf6WcyUtJUMHZetke3j+ppELNvlmp3tOw==", - "peer": true, - "dependencies": { - "metro-core": "0.73.9", - "rimraf": "^3.0.2" - } - }, - "node_modules/metro-cache-key": { - "version": "0.73.9", - "resolved": "https://registry.npmjs.org/metro-cache-key/-/metro-cache-key-0.73.9.tgz", - "integrity": "sha512-uJg+6Al7UoGIuGfoxqPBy6y1Ewq7Y8/YapGYIDh6sohInwt/kYKnPZgLDYHIPvY2deORnQ/2CYo4tOeBTnhCXQ==", - "peer": true - }, - "node_modules/metro-config": { - "version": "0.73.9", - "resolved": "https://registry.npmjs.org/metro-config/-/metro-config-0.73.9.tgz", - "integrity": "sha512-NiWl1nkYtjqecDmw77tbRbXnzIAwdO6DXGZTuKSkH+H/c1NKq1eizO8Fe+NQyFtwR9YLqn8Q0WN1nmkwM1j8CA==", - "peer": true, - "dependencies": { - "cosmiconfig": "^5.0.5", - "jest-validate": "^26.5.2", - "metro": "0.73.9", - "metro-cache": "0.73.9", - "metro-core": "0.73.9", - "metro-runtime": "0.73.9" - } - }, - "node_modules/metro-config/node_modules/cosmiconfig": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz", - "integrity": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==", - "peer": true, - "dependencies": { - "import-fresh": "^2.0.0", - "is-directory": "^0.3.1", - "js-yaml": "^3.13.1", - "parse-json": "^4.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/metro-config/node_modules/import-fresh": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz", - "integrity": "sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==", - "peer": true, - "dependencies": { - "caller-path": "^2.0.0", - "resolve-from": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/metro-config/node_modules/parse-json": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", - "peer": true, - "dependencies": { - "error-ex": "^1.3.1", - "json-parse-better-errors": "^1.0.1" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/metro-config/node_modules/resolve-from": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", - "integrity": "sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==", - "peer": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/metro-core": { - "version": "0.73.9", - "resolved": "https://registry.npmjs.org/metro-core/-/metro-core-0.73.9.tgz", - "integrity": "sha512-1NTs0IErlKcFTfYyRT3ljdgrISWpl1nys+gaHkXapzTSpvtX9F1NQNn5cgAuE+XIuTJhbsCdfIJiM2JXbrJQaQ==", - "peer": true, - "dependencies": { - "lodash.throttle": "^4.1.1", - "metro-resolver": "0.73.9" - } - }, - "node_modules/metro-file-map": { - "version": "0.73.9", - "resolved": "https://registry.npmjs.org/metro-file-map/-/metro-file-map-0.73.9.tgz", - "integrity": "sha512-R/Wg3HYeQhYY3ehWtfedw8V0ne4lpufG7a21L3GWer8tafnC9pmjoCKEbJz9XZkVj9i1FtxE7UTbrtZNeIILxQ==", - "peer": true, - "dependencies": { - "abort-controller": "^3.0.0", - "anymatch": "^3.0.3", - "debug": "^2.2.0", - "fb-watchman": "^2.0.0", - "graceful-fs": "^4.2.4", - "invariant": "^2.2.4", - "jest-regex-util": "^27.0.6", - "jest-serializer": "^27.0.6", - "jest-util": "^27.2.0", - "jest-worker": "^27.2.0", - "micromatch": "^4.0.4", - "nullthrows": "^1.1.1", - "walker": "^1.0.7" - }, - "optionalDependencies": { - "fsevents": "^2.3.2" - } - }, - "node_modules/metro-file-map/node_modules/@jest/types": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", - "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", - "peer": true, - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/metro-file-map/node_modules/@types/yargs": { - "version": "16.0.5", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.5.tgz", - "integrity": "sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==", - "peer": true, - "dependencies": { - "@types/yargs-parser": "*" - } - }, - "node_modules/metro-file-map/node_modules/ci-info": { - "version": "3.8.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.8.0.tgz", - "integrity": "sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/sibiraj-s" - } - ], - "peer": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/metro-file-map/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "peer": true, - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/metro-file-map/node_modules/jest-util": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", - "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", - "peer": true, - "dependencies": { - "@jest/types": "^27.5.1", - "@types/node": "*", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "graceful-fs": "^4.2.9", - "picomatch": "^2.2.3" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/metro-file-map/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "peer": true - }, - "node_modules/metro-hermes-compiler": { - "version": "0.73.9", - "resolved": "https://registry.npmjs.org/metro-hermes-compiler/-/metro-hermes-compiler-0.73.9.tgz", - "integrity": "sha512-5B3vXIwQkZMSh3DQQY23XpTCpX9kPLqZbA3rDuAcbGW0tzC3f8dCenkyBb0GcCzyTDncJeot/A7oVCVK6zapwg==", - "peer": true - }, - "node_modules/metro-inspector-proxy": { - "version": "0.73.9", - "resolved": "https://registry.npmjs.org/metro-inspector-proxy/-/metro-inspector-proxy-0.73.9.tgz", - "integrity": "sha512-B3WrWZnlYhtTrv0IaX3aUAhi2qVILPAZQzb5paO1e+xrz4YZHk9c7dXv7qe7B/IQ132e3w46y3AL7rFo90qVjA==", - "peer": true, - "dependencies": { - "connect": "^3.6.5", - "debug": "^2.2.0", - "ws": "^7.5.1", - "yargs": "^17.5.1" - }, - "bin": { - "metro-inspector-proxy": "src/cli.js" - } - }, - "node_modules/metro-inspector-proxy/node_modules/cliui": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", - "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", - "peer": true, - "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.1", - "wrap-ansi": "^7.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/metro-inspector-proxy/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "peer": true, - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/metro-inspector-proxy/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "peer": true - }, - "node_modules/metro-inspector-proxy/node_modules/ws": { - "version": "7.5.9", - "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz", - "integrity": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==", - "peer": true, - "engines": { - "node": ">=8.3.0" - }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": "^5.0.2" - }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true - }, - "utf-8-validate": { - "optional": true - } - } - }, - "node_modules/metro-inspector-proxy/node_modules/yargs": { - "version": "17.7.1", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.1.tgz", - "integrity": "sha512-cwiTb08Xuv5fqF4AovYacTFNxk62th7LKJ6BL9IGUpTJrWoU7/7WdQGTP2SjKf1dUNBGzDd28p/Yfs/GI6JrLw==", - "peer": true, - "dependencies": { - "cliui": "^8.0.1", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.3", - "y18n": "^5.0.5", - "yargs-parser": "^21.1.1" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/metro-inspector-proxy/node_modules/yargs-parser": { - "version": "21.1.1", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", - "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", - "peer": true, - "engines": { - "node": ">=12" - } - }, - "node_modules/metro-minify-terser": { - "version": "0.73.9", - "resolved": "https://registry.npmjs.org/metro-minify-terser/-/metro-minify-terser-0.73.9.tgz", - "integrity": "sha512-MTGPu2qV5qtzPJ2SqH6s58awHDtZ4jd7lmmLR+7TXDwtZDjIBA0YVfI0Zak2Haby2SqoNKrhhUns/b4dPAQAVg==", - "peer": true, - "dependencies": { - "terser": "^5.15.0" - } - }, - "node_modules/metro-minify-uglify": { - "version": "0.73.9", - "resolved": "https://registry.npmjs.org/metro-minify-uglify/-/metro-minify-uglify-0.73.9.tgz", - "integrity": "sha512-gzxD/7WjYcnCNGiFJaA26z34rjOp+c/Ft++194Wg91lYep3TeWQ0CnH8t2HRS7AYDHU81SGWgvD3U7WV0g4LGA==", - "peer": true, - "dependencies": { - "uglify-es": "^3.1.9" - } - }, - "node_modules/metro-react-native-babel-preset": { - "version": "0.73.9", - "resolved": "https://registry.npmjs.org/metro-react-native-babel-preset/-/metro-react-native-babel-preset-0.73.9.tgz", - "integrity": "sha512-AoD7v132iYDV4K78yN2OLgTPwtAKn0XlD2pOhzyBxiI8PeXzozhbKyPV7zUOJUPETj+pcEVfuYj5ZN/8+bhbCw==", - "peer": true, - "dependencies": { - "@babel/core": "^7.20.0", - "@babel/plugin-proposal-async-generator-functions": "^7.0.0", - "@babel/plugin-proposal-class-properties": "^7.0.0", - "@babel/plugin-proposal-export-default-from": "^7.0.0", - "@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0", - "@babel/plugin-proposal-object-rest-spread": "^7.0.0", - "@babel/plugin-proposal-optional-catch-binding": "^7.0.0", - "@babel/plugin-proposal-optional-chaining": "^7.0.0", - "@babel/plugin-syntax-dynamic-import": "^7.0.0", - "@babel/plugin-syntax-export-default-from": "^7.0.0", - "@babel/plugin-syntax-flow": "^7.18.0", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.0.0", - "@babel/plugin-syntax-optional-chaining": "^7.0.0", - "@babel/plugin-transform-arrow-functions": "^7.0.0", - "@babel/plugin-transform-async-to-generator": "^7.0.0", - "@babel/plugin-transform-block-scoping": "^7.0.0", - "@babel/plugin-transform-classes": "^7.0.0", - "@babel/plugin-transform-computed-properties": "^7.0.0", - "@babel/plugin-transform-destructuring": "^7.0.0", - "@babel/plugin-transform-flow-strip-types": "^7.0.0", - "@babel/plugin-transform-function-name": "^7.0.0", - "@babel/plugin-transform-literals": "^7.0.0", - "@babel/plugin-transform-modules-commonjs": "^7.0.0", - "@babel/plugin-transform-named-capturing-groups-regex": "^7.0.0", - "@babel/plugin-transform-parameters": "^7.0.0", - "@babel/plugin-transform-react-display-name": "^7.0.0", - "@babel/plugin-transform-react-jsx": "^7.0.0", - "@babel/plugin-transform-react-jsx-self": "^7.0.0", - "@babel/plugin-transform-react-jsx-source": "^7.0.0", - "@babel/plugin-transform-runtime": "^7.0.0", - "@babel/plugin-transform-shorthand-properties": "^7.0.0", - "@babel/plugin-transform-spread": "^7.0.0", - "@babel/plugin-transform-sticky-regex": "^7.0.0", - "@babel/plugin-transform-template-literals": "^7.0.0", - "@babel/plugin-transform-typescript": "^7.5.0", - "@babel/plugin-transform-unicode-regex": "^7.0.0", - "@babel/template": "^7.0.0", - "react-refresh": "^0.4.0" - }, - "peerDependencies": { - "@babel/core": "*" - } - }, - "node_modules/metro-react-native-babel-transformer": { - "version": "0.73.9", - "resolved": "https://registry.npmjs.org/metro-react-native-babel-transformer/-/metro-react-native-babel-transformer-0.73.9.tgz", - "integrity": "sha512-DSdrEHuQ22ixY7DyipyKkIcqhOJrt5s6h6X7BYJCP9AMUfXOwLe2biY3BcgJz5GOXv8/Akry4vTCvQscVS1otQ==", - "peer": true, - "dependencies": { - "@babel/core": "^7.20.0", - "babel-preset-fbjs": "^3.4.0", - "hermes-parser": "0.8.0", - "metro-babel-transformer": "0.73.9", - "metro-react-native-babel-preset": "0.73.9", - "metro-source-map": "0.73.9", - "nullthrows": "^1.1.1" - }, - "peerDependencies": { - "@babel/core": "*" - } - }, - "node_modules/metro-resolver": { - "version": "0.73.9", - "resolved": "https://registry.npmjs.org/metro-resolver/-/metro-resolver-0.73.9.tgz", - "integrity": "sha512-Ej3wAPOeNRPDnJmkK0zk7vJ33iU07n+oPhpcf5L0NFkWneMmSM2bflMPibI86UjzZGmRfn0AhGhs8yGeBwQ/Xg==", - "peer": true, - "dependencies": { - "absolute-path": "^0.0.0" - } - }, - "node_modules/metro-runtime": { - "version": "0.73.9", - "resolved": "https://registry.npmjs.org/metro-runtime/-/metro-runtime-0.73.9.tgz", - "integrity": "sha512-d5Hs83FpKB9r8q8Vb95+fa6ESpwysmPr4lL1I2rM2qXAFiO7OAPT9Bc23WmXgidkBtD0uUFdB2lG+H1ATz8rZg==", - "peer": true, - "dependencies": { - "@babel/runtime": "^7.0.0", - "react-refresh": "^0.4.0" - } - }, - "node_modules/metro-source-map": { - "version": "0.73.9", - "resolved": "https://registry.npmjs.org/metro-source-map/-/metro-source-map-0.73.9.tgz", - "integrity": "sha512-l4VZKzdqafipriETYR6lsrwtavCF1+CMhCOY9XbyWeTrpGSNgJQgdeJpttzEZTHQQTLR0csQo0nD1ef3zEP6IQ==", - "peer": true, - "dependencies": { - "@babel/traverse": "^7.20.0", - "@babel/types": "^7.20.0", - "invariant": "^2.2.4", - "metro-symbolicate": "0.73.9", - "nullthrows": "^1.1.1", - "ob1": "0.73.9", - "source-map": "^0.5.6", - "vlq": "^1.0.0" - } - }, - "node_modules/metro-source-map/node_modules/source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", - "peer": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/metro-symbolicate": { - "version": "0.73.9", - "resolved": "https://registry.npmjs.org/metro-symbolicate/-/metro-symbolicate-0.73.9.tgz", - "integrity": "sha512-4TUOwxRHHqbEHxRqRJ3wZY5TA8xq7AHMtXrXcjegMH9FscgYztsrIG9aNBUBS+VLB6g1qc6BYbfIgoAnLjCDyw==", - "peer": true, - "dependencies": { - "invariant": "^2.2.4", - "metro-source-map": "0.73.9", - "nullthrows": "^1.1.1", - "source-map": "^0.5.6", - "through2": "^2.0.1", - "vlq": "^1.0.0" - }, - "bin": { - "metro-symbolicate": "src/index.js" - }, - "engines": { - "node": ">=8.3" - } - }, - "node_modules/metro-symbolicate/node_modules/source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", - "peer": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/metro-transform-plugins": { - "version": "0.73.9", - "resolved": "https://registry.npmjs.org/metro-transform-plugins/-/metro-transform-plugins-0.73.9.tgz", - "integrity": "sha512-r9NeiqMngmooX2VOKLJVQrMuV7PAydbqst5bFhdVBPcFpZkxxqyzjzo+kzrszGy2UpSQBZr2P1L6OMjLHwQwfQ==", - "peer": true, - "dependencies": { - "@babel/core": "^7.20.0", - "@babel/generator": "^7.20.0", - "@babel/template": "^7.0.0", - "@babel/traverse": "^7.20.0", - "nullthrows": "^1.1.1" - } - }, - "node_modules/metro-transform-worker": { - "version": "0.73.9", - "resolved": "https://registry.npmjs.org/metro-transform-worker/-/metro-transform-worker-0.73.9.tgz", - "integrity": "sha512-Rq4b489sIaTUENA+WCvtu9yvlT/C6zFMWhU4sq+97W29Zj0mPBjdk+qGT5n1ZBgtBIJzZWt1KxeYuc17f4aYtQ==", - "peer": true, - "dependencies": { - "@babel/core": "^7.20.0", - "@babel/generator": "^7.20.0", - "@babel/parser": "^7.20.0", - "@babel/types": "^7.20.0", - "babel-preset-fbjs": "^3.4.0", - "metro": "0.73.9", - "metro-babel-transformer": "0.73.9", - "metro-cache": "0.73.9", - "metro-cache-key": "0.73.9", - "metro-hermes-compiler": "0.73.9", - "metro-source-map": "0.73.9", - "metro-transform-plugins": "0.73.9", - "nullthrows": "^1.1.1" - } - }, - "node_modules/metro/node_modules/cliui": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", - "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", - "peer": true, - "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.1", - "wrap-ansi": "^7.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/metro/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "peer": true, - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/metro/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "peer": true - }, - "node_modules/metro/node_modules/source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", - "peer": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/metro/node_modules/ws": { - "version": "7.5.9", - "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz", - "integrity": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==", - "peer": true, - "engines": { - "node": ">=8.3.0" - }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": "^5.0.2" - }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true - }, - "utf-8-validate": { - "optional": true - } - } - }, - "node_modules/metro/node_modules/yargs": { - "version": "17.7.1", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.1.tgz", - "integrity": "sha512-cwiTb08Xuv5fqF4AovYacTFNxk62th7LKJ6BL9IGUpTJrWoU7/7WdQGTP2SjKf1dUNBGzDd28p/Yfs/GI6JrLw==", - "peer": true, - "dependencies": { - "cliui": "^8.0.1", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.3", - "y18n": "^5.0.5", - "yargs-parser": "^21.1.1" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/metro/node_modules/yargs-parser": { - "version": "21.1.1", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", - "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", - "peer": true, - "engines": { - "node": ">=12" - } - }, - "node_modules/micromatch": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", - "dependencies": { - "braces": "^3.0.2", - "picomatch": "^2.3.1" - }, - "engines": { - "node": ">=8.6" - } - }, - "node_modules/mime": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz", - "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==", - "peer": true, - "bin": { - "mime": "cli.js" - }, - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/mime-db": { - "version": "1.52.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", - "peer": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/mime-types": { - "version": "2.1.35", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", - "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", - "peer": true, - "dependencies": { - "mime-db": "1.52.0" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", - "peer": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/minimist": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", - "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/mixin-deep": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", - "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", - "peer": true, - "dependencies": { - "for-in": "^1.0.2", - "is-extendable": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/mkdirp": { - "version": "0.5.6", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", - "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", - "peer": true, - "dependencies": { - "minimist": "^1.2.6" - }, - "bin": { - "mkdirp": "bin/cmd.js" - } - }, - "node_modules/mocha": { - "version": "8.4.0", - "resolved": "https://registry.npmjs.org/mocha/-/mocha-8.4.0.tgz", - "integrity": "sha512-hJaO0mwDXmZS4ghXsvPVriOhsxQ7ofcpQdm8dE+jISUOKopitvnXFQmpRR7jd2K6VBG6E26gU3IAbXXGIbu4sQ==", - "dev": true, - "dependencies": { - "@ungap/promise-all-settled": "1.1.2", - "ansi-colors": "4.1.1", - "browser-stdout": "1.3.1", - "chokidar": "3.5.1", - "debug": "4.3.1", - "diff": "5.0.0", - "escape-string-regexp": "4.0.0", - "find-up": "5.0.0", - "glob": "7.1.6", - "growl": "1.10.5", - "he": "1.2.0", - "js-yaml": "4.0.0", - "log-symbols": "4.0.0", - "minimatch": "3.0.4", - "ms": "2.1.3", - "nanoid": "3.1.20", - "serialize-javascript": "5.0.1", - "strip-json-comments": "3.1.1", - "supports-color": "8.1.1", - "which": "2.0.2", - "wide-align": "1.1.3", - "workerpool": "6.1.0", - "yargs": "16.2.0", - "yargs-parser": "20.2.4", - "yargs-unparser": "2.0.0" - }, - "bin": { - "_mocha": "bin/_mocha", - "mocha": "bin/mocha" - }, - "engines": { - "node": ">= 10.12.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/mochajs" - } - }, - "node_modules/mocha/node_modules/ansi-colors": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz", - "integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/mocha/node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, - "node_modules/mocha/node_modules/debug": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz", - "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==", - "dev": true, - "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/mocha/node_modules/debug/node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - }, - "node_modules/mocha/node_modules/js-yaml": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.0.0.tgz", - "integrity": "sha512-pqon0s+4ScYUvX30wxQi3PogGFAlUyH0awepWvwkj4jD4v+ova3RiYw8bmA6x2rDrEaj8i/oWKoRxpVNW+Re8Q==", - "dev": true, - "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/mocha/node_modules/minimatch": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", - "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", - "dev": true, - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/mocha/node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "dev": true - }, - "node_modules/mocha/node_modules/supports-color": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", - "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" - } - }, - "node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" - }, - "node_modules/nanoid": { - "version": "3.1.20", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.1.20.tgz", - "integrity": "sha512-a1cQNyczgKbLX9jwbS/+d7W8fX/RfgYR7lVWwWOGIPNgK2m0MWvrGF6/m4kk6U3QcFMnZf3RIhL0v2Jgh/0Uxw==", - "dev": true, - "bin": { - "nanoid": "bin/nanoid.cjs" - }, - "engines": { - "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" - } - }, - "node_modules/nanomatch": { - "version": "1.2.13", - "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", - "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", - "peer": true, - "dependencies": { - "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" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/natural-compare": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", - "dev": true - }, - "node_modules/natural-compare-lite": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz", - "integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==", - "dev": true - }, - "node_modules/negotiator": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", - "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", - "peer": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/neo-async": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", - "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", - "peer": true - }, - "node_modules/nice-try": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", - "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", - "peer": true - }, - "node_modules/nocache": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/nocache/-/nocache-3.0.4.tgz", - "integrity": "sha512-WDD0bdg9mbq6F4mRxEYcPWwfA1vxd0mrvKOyxI7Xj/atfRHVeutzuWByG//jfm4uPzp0y4Kj051EORCBSQMycw==", - "peer": true, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/node-dir": { - "version": "0.1.17", - "resolved": "https://registry.npmjs.org/node-dir/-/node-dir-0.1.17.tgz", - "integrity": "sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==", - "peer": true, - "dependencies": { - "minimatch": "^3.0.2" - }, - "engines": { - "node": ">= 0.10.5" - } - }, - "node_modules/node-fetch": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.9.tgz", - "integrity": "sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==", - "peer": true, - "dependencies": { - "whatwg-url": "^5.0.0" - }, - "engines": { - "node": "4.x || >=6.0.0" - }, - "peerDependencies": { - "encoding": "^0.1.0" - }, - "peerDependenciesMeta": { - "encoding": { - "optional": true - } - } - }, - "node_modules/node-int64": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", - "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", - "peer": true - }, - "node_modules/node-preload": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/node-preload/-/node-preload-0.2.1.tgz", - "integrity": "sha512-RM5oyBy45cLEoHqCeh+MNuFAxO0vTFBLskvQbOKnEE7YTTSN4tbN8QWDIPQ6L+WvKsB/qLEGpYe2ZZ9d4W9OIQ==", - "dev": true, - "dependencies": { - "process-on-spawn": "^1.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/node-releases": { - "version": "2.0.10", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.10.tgz", - "integrity": "sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==" - }, - "node_modules/node-stream-zip": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/node-stream-zip/-/node-stream-zip-1.15.0.tgz", - "integrity": "sha512-LN4fydt9TqhZhThkZIVQnF9cwjU3qmUH9h78Mx/K7d3VvfRqqwthLwJEUOEL0QPZ0XQmNN7be5Ggit5+4dq3Bw==", - "peer": true, - "engines": { - "node": ">=0.12.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/antelle" - } - }, - "node_modules/normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/npm-run-path": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", - "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", - "peer": true, - "dependencies": { - "path-key": "^2.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/npm-run-path/node_modules/path-key": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", - "peer": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/nullthrows": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/nullthrows/-/nullthrows-1.1.1.tgz", - "integrity": "sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==", - "peer": true - }, - "node_modules/nyc": { - "version": "15.1.0", - "resolved": "https://registry.npmjs.org/nyc/-/nyc-15.1.0.tgz", - "integrity": "sha512-jMW04n9SxKdKi1ZMGhvUTHBN0EICCRkHemEoE5jm6mTYcqcdas0ATzgUgejlQUHMvpnOZqGB5Xxsv9KxJW1j8A==", - "dev": true, - "dependencies": { - "@istanbuljs/load-nyc-config": "^1.0.0", - "@istanbuljs/schema": "^0.1.2", - "caching-transform": "^4.0.0", - "convert-source-map": "^1.7.0", - "decamelize": "^1.2.0", - "find-cache-dir": "^3.2.0", - "find-up": "^4.1.0", - "foreground-child": "^2.0.0", - "get-package-type": "^0.1.0", - "glob": "^7.1.6", - "istanbul-lib-coverage": "^3.0.0", - "istanbul-lib-hook": "^3.0.0", - "istanbul-lib-instrument": "^4.0.0", - "istanbul-lib-processinfo": "^2.0.2", - "istanbul-lib-report": "^3.0.0", - "istanbul-lib-source-maps": "^4.0.0", - "istanbul-reports": "^3.0.2", - "make-dir": "^3.0.0", - "node-preload": "^0.2.1", - "p-map": "^3.0.0", - "process-on-spawn": "^1.0.0", - "resolve-from": "^5.0.0", - "rimraf": "^3.0.0", - "signal-exit": "^3.0.2", - "spawn-wrap": "^2.0.0", - "test-exclude": "^6.0.0", - "yargs": "^15.0.2" - }, - "bin": { - "nyc": "bin/nyc.js" - }, - "engines": { - "node": ">=8.9" - } - }, - "node_modules/nyc/node_modules/cliui": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", - "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", - "dev": true, - "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", - "wrap-ansi": "^6.2.0" - } - }, - "node_modules/nyc/node_modules/find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dev": true, - "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/nyc/node_modules/locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dev": true, - "dependencies": { - "p-locate": "^4.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/nyc/node_modules/p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "dev": true, - "dependencies": { - "p-try": "^2.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/nyc/node_modules/p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dev": true, - "dependencies": { - "p-limit": "^2.2.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/nyc/node_modules/resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/nyc/node_modules/wrap-ansi": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", - "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/nyc/node_modules/y18n": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", - "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==", - "dev": true - }, - "node_modules/nyc/node_modules/yargs": { - "version": "15.4.1", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", - "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", - "dev": true, - "dependencies": { - "cliui": "^6.0.0", - "decamelize": "^1.2.0", - "find-up": "^4.1.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": "^4.2.0", - "which-module": "^2.0.0", - "y18n": "^4.0.0", - "yargs-parser": "^18.1.2" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/nyc/node_modules/yargs-parser": { - "version": "18.1.3", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", - "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", - "dev": true, - "dependencies": { - "camelcase": "^5.0.0", - "decamelize": "^1.2.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/ob1": { - "version": "0.73.9", - "resolved": "https://registry.npmjs.org/ob1/-/ob1-0.73.9.tgz", - "integrity": "sha512-kHOzCOFXmAM26fy7V/YuXNKne2TyRiXbFAvPBIbuedJCZZWQZHLdPzMeXJI4Egt6IcfDttRzN3jQ90wOwq1iNw==", - "peer": true - }, - "node_modules/object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-copy": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", - "integrity": "sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==", - "peer": true, - "dependencies": { - "copy-descriptor": "^0.1.0", - "define-property": "^0.2.5", - "kind-of": "^3.0.3" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-copy/node_modules/define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", - "peer": true, - "dependencies": { - "is-descriptor": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-copy/node_modules/is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", - "peer": true, - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-copy/node_modules/is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", - "peer": true, - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-copy/node_modules/is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "peer": true, - "dependencies": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-copy/node_modules/is-descriptor/node_modules/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==", - "peer": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-copy/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "peer": true, - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-inspect": { - "version": "1.12.3", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", - "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object-is": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", - "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/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, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/object-visit": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", - "integrity": "sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==", - "peer": true, - "dependencies": { - "isobject": "^3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object.assign": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", - "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "has-symbols": "^1.0.3", - "object-keys": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object.entries": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz", - "integrity": "sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/object.fromentries": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.6.tgz", - "integrity": "sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object.hasown": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.2.tgz", - "integrity": "sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==", - "dev": true, - "dependencies": { - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object.pick": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", - "integrity": "sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==", - "peer": true, - "dependencies": { - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object.values": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz", - "integrity": "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/on-finished": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", - "integrity": "sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==", - "peer": true, - "dependencies": { - "ee-first": "1.1.1" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/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==", - "peer": true, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", - "dependencies": { - "wrappy": "1" - } - }, - "node_modules/onetime": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", - "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", - "peer": true, - "dependencies": { - "mimic-fn": "^2.1.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/open": { - "version": "6.4.0", - "resolved": "https://registry.npmjs.org/open/-/open-6.4.0.tgz", - "integrity": "sha512-IFenVPgF70fSm1keSd2iDBIDIBZkroLeuffXq+wKTzTJlBpesFWojV9lb8mzOfaAzM1sr7HQHuO0vtV0zYekGg==", - "peer": true, - "dependencies": { - "is-wsl": "^1.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/opencollective-postinstall": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/opencollective-postinstall/-/opencollective-postinstall-2.0.3.tgz", - "integrity": "sha512-8AV/sCtuzUeTo8gQK5qDZzARrulB3egtLzFgteqB2tcT4Mw7B8Kt7JcDHmltjz6FOAHsvTevk70gZEbhM4ZS9Q==", - "dev": true, - "bin": { - "opencollective-postinstall": "index.js" - } - }, - "node_modules/optionator": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", - "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", - "dev": true, - "dependencies": { - "deep-is": "^0.1.3", - "fast-levenshtein": "^2.0.6", - "levn": "^0.4.1", - "prelude-ls": "^1.2.1", - "type-check": "^0.4.0", - "word-wrap": "^1.2.3" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/ora": { - "version": "5.4.1", - "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", - "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", - "peer": true, - "dependencies": { - "bl": "^4.1.0", - "chalk": "^4.1.0", - "cli-cursor": "^3.1.0", - "cli-spinners": "^2.5.0", - "is-interactive": "^1.0.0", - "is-unicode-supported": "^0.1.0", - "log-symbols": "^4.1.0", - "strip-ansi": "^6.0.0", - "wcwidth": "^1.0.1" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ora/node_modules/log-symbols": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", - "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", - "peer": true, - "dependencies": { - "chalk": "^4.1.0", - "is-unicode-supported": "^0.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/os-tmpdir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", - "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", - "peer": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/p-finally": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", - "integrity": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==", - "peer": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dependencies": { - "yocto-queue": "^0.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", - "dependencies": { - "p-limit": "^3.0.2" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-map": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-3.0.0.tgz", - "integrity": "sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==", - "dev": true, - "dependencies": { - "aggregate-error": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/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==", - "engines": { - "node": ">=6" - } - }, - "node_modules/package-hash": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/package-hash/-/package-hash-4.0.0.tgz", - "integrity": "sha512-whdkPIooSu/bASggZ96BWVvZTRMOFxnyUG5PnTSGKoJE2gd5mbVNmR2Nj20QFzxYYgAXpoqC+AiXzl+UMRh7zQ==", - "dev": true, - "dependencies": { - "graceful-fs": "^4.1.15", - "hasha": "^5.0.0", - "lodash.flattendeep": "^4.4.0", - "release-zalgo": "^1.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/parent-module": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", - "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", - "dev": true, - "dependencies": { - "callsites": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/parse-json": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", - "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", - "dev": true, - "dependencies": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-even-better-errors": "^2.3.0", - "lines-and-columns": "^1.1.6" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/parseurl": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", - "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", - "peer": true, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/pascalcase": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", - "integrity": "sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==", - "peer": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "engines": { - "node": ">=8" - } - }, - "node_modules/path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" - }, - "node_modules/path-type": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/pathval": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/pathval/-/pathval-1.1.1.tgz", - "integrity": "sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==", - "dev": true, - "engines": { - "node": "*" - } - }, - "node_modules/picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" - }, - "node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "engines": { - "node": ">=8.6" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" - } - }, - "node_modules/pify": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", - "peer": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/pirates": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.5.tgz", - "integrity": "sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==", - "peer": true, - "engines": { - "node": ">= 6" - } - }, - "node_modules/pkg-dir": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-5.0.0.tgz", - "integrity": "sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==", - "dev": true, - "dependencies": { - "find-up": "^5.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/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, - "dependencies": { - "semver-compare": "^1.0.0" - } - }, - "node_modules/posix-character-classes": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", - "integrity": "sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==", - "peer": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/prelude-ls": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", - "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", - "dev": true, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/pretty-format": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz", - "integrity": "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==", - "peer": true, - "dependencies": { - "@jest/types": "^26.6.2", - "ansi-regex": "^5.0.0", - "ansi-styles": "^4.0.0", - "react-is": "^17.0.1" - }, - "engines": { - "node": ">= 10" - } - }, - "node_modules/pretty-format/node_modules/@jest/types": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz", - "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==", - "peer": true, - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^15.0.0", - "chalk": "^4.0.0" - }, - "engines": { - "node": ">= 10.14.2" - } - }, - "node_modules/pretty-format/node_modules/@types/yargs": { - "version": "15.0.15", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.15.tgz", - "integrity": "sha512-IziEYMU9XoVj8hWg7k+UJrXALkGFjWJhn5QFEv9q4p+v40oZhSuC135M38st8XPjICL7Ey4TV64ferBGUoJhBg==", - "peer": true, - "dependencies": { - "@types/yargs-parser": "*" - } - }, - "node_modules/pretty-format/node_modules/react-is": { - "version": "17.0.2", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", - "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", - "peer": true - }, - "node_modules/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==", - "peer": true - }, - "node_modules/process-on-spawn": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/process-on-spawn/-/process-on-spawn-1.0.0.tgz", - "integrity": "sha512-1WsPDsUSMmZH5LeMLegqkPDrsGgsWwk1Exipy2hvB0o/F0ASzbpIctSCcZIK1ykJvtTJULEH+20WOFjMvGnCTg==", - "dev": true, - "dependencies": { - "fromentries": "^1.2.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/progress": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", - "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", - "dev": true, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/promise": { - "version": "8.3.0", - "resolved": "https://registry.npmjs.org/promise/-/promise-8.3.0.tgz", - "integrity": "sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==", - "peer": true, - "dependencies": { - "asap": "~2.0.6" - } - }, - "node_modules/prompts": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", - "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", - "peer": true, - "dependencies": { - "kleur": "^3.0.3", - "sisteransi": "^1.0.5" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/prop-types": { - "version": "15.8.1", - "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", - "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", - "dependencies": { - "loose-envify": "^1.4.0", - "object-assign": "^4.1.1", - "react-is": "^16.13.1" - } - }, - "node_modules/pump": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", - "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", - "peer": true, - "dependencies": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - }, - "node_modules/punycode": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", - "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/queue-microtask": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/randombytes": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", - "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", - "dev": true, - "dependencies": { - "safe-buffer": "^5.1.0" - } - }, - "node_modules/range-parser": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", - "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", - "peer": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/react": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", - "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", - "peer": true, - "dependencies": { - "loose-envify": "^1.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/react-devtools-core": { - "version": "4.27.4", - "resolved": "https://registry.npmjs.org/react-devtools-core/-/react-devtools-core-4.27.4.tgz", - "integrity": "sha512-dvZjrAJjahd6NNl7dDwEk5TyHsWJxDpYL7VnD9jdEr98EEEsVhw9G8JDX54Nrb3XIIOBlJDpjo3AuBuychX9zg==", - "peer": true, - "dependencies": { - "shell-quote": "^1.6.1", - "ws": "^7" - } - }, - "node_modules/react-devtools-core/node_modules/ws": { - "version": "7.5.9", - "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz", - "integrity": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==", - "peer": true, - "engines": { - "node": ">=8.3.0" - }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": "^5.0.2" - }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true - }, - "utf-8-validate": { - "optional": true - } - } - }, - "node_modules/react-is": { - "version": "16.13.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", - "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" - }, - "node_modules/react-native": { - "version": "0.71.6", - "resolved": "https://registry.npmjs.org/react-native/-/react-native-0.71.6.tgz", - "integrity": "sha512-gHrDj7qaAaiE41JwaFCh3AtvOqOLuRgZtHKzNiwxakG/wvPAYmG73ECfWHGxjxIx/QT17Hp37Da3ipCei/CayQ==", - "peer": true, - "dependencies": { - "@jest/create-cache-key-function": "^29.2.1", - "@react-native-community/cli": "10.2.2", - "@react-native-community/cli-platform-android": "10.2.0", - "@react-native-community/cli-platform-ios": "10.2.1", - "@react-native/assets": "1.0.0", - "@react-native/normalize-color": "2.1.0", - "@react-native/polyfills": "2.0.0", - "abort-controller": "^3.0.0", - "anser": "^1.4.9", - "base64-js": "^1.1.2", - "deprecated-react-native-prop-types": "^3.0.1", - "event-target-shim": "^5.0.1", - "invariant": "^2.2.4", - "jest-environment-node": "^29.2.1", - "jsc-android": "^250231.0.0", - "memoize-one": "^5.0.0", - "metro-react-native-babel-transformer": "0.73.9", - "metro-runtime": "0.73.9", - "metro-source-map": "0.73.9", - "mkdirp": "^0.5.1", - "nullthrows": "^1.1.1", - "pretty-format": "^26.5.2", - "promise": "^8.3.0", - "react-devtools-core": "^4.26.1", - "react-native-codegen": "^0.71.5", - "react-native-gradle-plugin": "^0.71.17", - "react-refresh": "^0.4.0", - "react-shallow-renderer": "^16.15.0", - "regenerator-runtime": "^0.13.2", - "scheduler": "^0.23.0", - "stacktrace-parser": "^0.1.3", - "use-sync-external-store": "^1.0.0", - "whatwg-fetch": "^3.0.0", - "ws": "^6.2.2" - }, - "bin": { - "react-native": "cli.js" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "react": "18.2.0" - } - }, - "node_modules/react-native-codegen": { - "version": "0.71.5", - "resolved": "https://registry.npmjs.org/react-native-codegen/-/react-native-codegen-0.71.5.tgz", - "integrity": "sha512-rfsuc0zkuUuMjFnrT55I1mDZ+pBRp2zAiRwxck3m6qeGJBGK5OV5JH66eDQ4aa+3m0of316CqrJDRzVlYufzIg==", - "peer": true, - "dependencies": { - "@babel/parser": "^7.14.0", - "flow-parser": "^0.185.0", - "jscodeshift": "^0.13.1", - "nullthrows": "^1.1.1" - } - }, - "node_modules/react-native-gradle-plugin": { - "version": "0.71.17", - "resolved": "https://registry.npmjs.org/react-native-gradle-plugin/-/react-native-gradle-plugin-0.71.17.tgz", - "integrity": "sha512-OXXYgpISEqERwjSlaCiaQY6cTY5CH6j73gdkWpK0hedxtiWMWgH+i5TOi4hIGYitm9kQBeyDu+wim9fA8ROFJA==", - "peer": true - }, - "node_modules/react-refresh": { - "version": "0.4.3", - "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.4.3.tgz", - "integrity": "sha512-Hwln1VNuGl/6bVwnd0Xdn1e84gT/8T9aYNL+HAKDArLCS7LWjwr7StE30IEYbIkx0Vi3vs+coQxe+SQDbGbbpA==", - "peer": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/react-shallow-renderer": { - "version": "16.15.0", - "resolved": "https://registry.npmjs.org/react-shallow-renderer/-/react-shallow-renderer-16.15.0.tgz", - "integrity": "sha512-oScf2FqQ9LFVQgA73vr86xl2NaOIX73rh+YFqcOp68CWj56tSfgtGKrEbyhCj0rSijyG9M1CYprTh39fBi5hzA==", - "peer": true, - "dependencies": { - "object-assign": "^4.1.1", - "react-is": "^16.12.0 || ^17.0.0 || ^18.0.0" - }, - "peerDependencies": { - "react": "^16.0.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "peer": true, - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/readdirp": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.5.0.tgz", - "integrity": "sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==", - "dev": true, - "dependencies": { - "picomatch": "^2.2.1" - }, - "engines": { - "node": ">=8.10.0" - } - }, - "node_modules/readline": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/readline/-/readline-1.3.0.tgz", - "integrity": "sha512-k2d6ACCkiNYz222Fs/iNze30rRJ1iIicW7JuX/7/cozvih6YCkFZH+J6mAFDVgv0dRBaAyr4jDqC95R2y4IADg==", - "peer": true - }, - "node_modules/recast": { - "version": "0.20.5", - "resolved": "https://registry.npmjs.org/recast/-/recast-0.20.5.tgz", - "integrity": "sha512-E5qICoPoNL4yU0H0NoBDntNB0Q5oMSNh9usFctYniLBluTthi3RsQVBXIJNbApOlvSwW/RGxIuokPcAc59J5fQ==", - "peer": true, - "dependencies": { - "ast-types": "0.14.2", - "esprima": "~4.0.0", - "source-map": "~0.6.1", - "tslib": "^2.0.1" - }, - "engines": { - "node": ">= 4" - } - }, - "node_modules/regenerate": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", - "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", - "peer": true - }, - "node_modules/regenerate-unicode-properties": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz", - "integrity": "sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==", - "peer": true, - "dependencies": { - "regenerate": "^1.4.2" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/regenerator-runtime": { - "version": "0.13.11", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", - "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" - }, - "node_modules/regenerator-transform": { - "version": "0.15.1", - "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.1.tgz", - "integrity": "sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==", - "peer": true, - "dependencies": { - "@babel/runtime": "^7.8.4" - } - }, - "node_modules/regex-not": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", - "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", - "peer": true, - "dependencies": { - "extend-shallow": "^3.0.2", - "safe-regex": "^1.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/regexp.prototype.flags": { - "version": "1.4.3", - "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz", - "integrity": "sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "functions-have-names": "^1.2.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/regexpp": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", - "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", - "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/mysticatea" - } - }, - "node_modules/regexpu-core": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.2.tgz", - "integrity": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==", - "peer": true, - "dependencies": { - "@babel/regjsgen": "^0.8.0", - "regenerate": "^1.4.2", - "regenerate-unicode-properties": "^10.1.0", - "regjsparser": "^0.9.1", - "unicode-match-property-ecmascript": "^2.0.0", - "unicode-match-property-value-ecmascript": "^2.1.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/regjsparser": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", - "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", - "peer": true, - "dependencies": { - "jsesc": "~0.5.0" - }, - "bin": { - "regjsparser": "bin/parser" - } - }, - "node_modules/regjsparser/node_modules/jsesc": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", - "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", - "peer": true, - "bin": { - "jsesc": "bin/jsesc" - } - }, - "node_modules/release-zalgo": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/release-zalgo/-/release-zalgo-1.0.0.tgz", - "integrity": "sha512-gUAyHVHPPC5wdqX/LG4LWtRYtgjxyX78oanFNTMMyFEfOqdC54s3eE82imuWKbOeqYht2CrNf64Qb8vgmmtZGA==", - "dev": true, - "dependencies": { - "es6-error": "^4.0.1" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/repeat-element": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz", - "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==", - "peer": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/repeat-string": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", - "integrity": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==", - "peer": true, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/require-directory": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/require-from-string": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", - "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/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==" - }, - "node_modules/resolve": { - "version": "1.22.2", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz", - "integrity": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==", - "dependencies": { - "is-core-module": "^2.11.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/resolve-url": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", - "integrity": "sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==", - "deprecated": "https://github.com/lydell/resolve-url#deprecated", - "peer": true - }, - "node_modules/restore-cursor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", - "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", - "peer": true, - "dependencies": { - "onetime": "^5.1.0", - "signal-exit": "^3.0.2" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/ret": { - "version": "0.1.15", - "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", - "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", - "peer": true, - "engines": { - "node": ">=0.12" - } - }, - "node_modules/reusify": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", - "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", - "dev": true, - "engines": { - "iojs": ">=1.0.0", - "node": ">=0.10.0" - } - }, - "node_modules/rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/run-parallel": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", - "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "dependencies": { - "queue-microtask": "^1.2.2" - } - }, - "node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - }, - "node_modules/safe-regex": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", - "integrity": "sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==", - "peer": true, - "dependencies": { - "ret": "~0.1.10" - } - }, - "node_modules/safe-regex-test": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", - "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.3", - "is-regex": "^1.1.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/scheduler": { - "version": "0.23.0", - "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", - "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", - "peer": true, - "dependencies": { - "loose-envify": "^1.1.0" - } - }, - "node_modules/schema-utils": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", - "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", - "dev": true, - "peer": true, - "dependencies": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" - }, - "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - } - }, - "node_modules/semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", - "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/semver-compare": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/semver-compare/-/semver-compare-1.0.0.tgz", - "integrity": "sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==", - "dev": true - }, - "node_modules/semver-regex": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/semver-regex/-/semver-regex-3.1.4.tgz", - "integrity": "sha512-6IiqeZNgq01qGf0TId0t3NvKzSvUsjcpdEO3AQNeIjR6A2+ckTnQlDpl4qu1bjRv0RzN3FP9hzFmws3lKqRWkA==", - "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/semver/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/semver/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "node_modules/send": { - "version": "0.18.0", - "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", - "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", - "peer": true, - "dependencies": { - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "mime": "1.6.0", - "ms": "2.1.3", - "on-finished": "2.4.1", - "range-parser": "~1.2.1", - "statuses": "2.0.1" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/send/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "peer": true, - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/send/node_modules/debug/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "peer": true - }, - "node_modules/send/node_modules/mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", - "peer": true, - "bin": { - "mime": "cli.js" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/send/node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "peer": true - }, - "node_modules/send/node_modules/on-finished": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", - "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", - "peer": true, - "dependencies": { - "ee-first": "1.1.1" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/send/node_modules/statuses": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", - "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", - "peer": true, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/serialize-error": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/serialize-error/-/serialize-error-2.1.0.tgz", - "integrity": "sha512-ghgmKt5o4Tly5yEG/UJp8qTd0AN7Xalw4XBtDEKP655B699qMEtra1WlXeE6WIvdEG481JvRxULKsInq/iNysw==", - "peer": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/serialize-javascript": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-5.0.1.tgz", - "integrity": "sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==", - "dev": true, - "dependencies": { - "randombytes": "^2.1.0" - } - }, - "node_modules/serve-static": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", - "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", - "peer": true, - "dependencies": { - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "parseurl": "~1.3.3", - "send": "0.18.0" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/set-blocking": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==" - }, - "node_modules/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==", - "peer": true, - "dependencies": { - "extend-shallow": "^2.0.1", - "is-extendable": "^0.1.1", - "is-plain-object": "^2.0.3", - "split-string": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/set-value/node_modules/extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "peer": true, - "dependencies": { - "is-extendable": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/set-value/node_modules/is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", - "peer": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/setprototypeof": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", - "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", - "peer": true - }, - "node_modules/shallow-clone": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", - "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", - "peer": true, - "dependencies": { - "kind-of": "^6.0.2" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "dev": true, - "dependencies": { - "shebang-regex": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/shell-quote": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.0.tgz", - "integrity": "sha512-QHsz8GgQIGKlRi24yFc6a6lN69Idnx634w49ay6+jA5yFh7a1UY+4Rp6HPx/L/1zcEDPEij8cIsiqR6bQsE5VQ==", - "peer": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/side-channel": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", - "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.0", - "get-intrinsic": "^1.0.2", - "object-inspect": "^1.9.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/signal-exit": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" - }, - "node_modules/sisteransi": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", - "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", - "peer": true - }, - "node_modules/slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", - "engines": { - "node": ">=8" - } - }, - "node_modules/slice-ansi": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-2.1.0.tgz", - "integrity": "sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==", - "peer": true, - "dependencies": { - "ansi-styles": "^3.2.0", - "astral-regex": "^1.0.0", - "is-fullwidth-code-point": "^2.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/slice-ansi/node_modules/ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "peer": true, - "dependencies": { - "color-convert": "^1.9.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/slice-ansi/node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "peer": true, - "dependencies": { - "color-name": "1.1.3" - } - }, - "node_modules/slice-ansi/node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", - "peer": true - }, - "node_modules/snapdragon": { - "version": "0.8.2", - "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", - "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", - "peer": true, - "dependencies": { - "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" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/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==", - "peer": true, - "dependencies": { - "define-property": "^1.0.0", - "isobject": "^3.0.0", - "snapdragon-util": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon-node/node_modules/define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", - "peer": true, - "dependencies": { - "is-descriptor": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon-util": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", - "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", - "peer": true, - "dependencies": { - "kind-of": "^3.2.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon-util/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "peer": true, - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "peer": true, - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/snapdragon/node_modules/define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", - "peer": true, - "dependencies": { - "is-descriptor": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon/node_modules/extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "peer": true, - "dependencies": { - "is-extendable": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon/node_modules/is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", - "peer": true, - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon/node_modules/is-accessor-descriptor/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "peer": true, - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon/node_modules/is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", - "peer": true, - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon/node_modules/is-data-descriptor/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "peer": true, - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon/node_modules/is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "peer": true, - "dependencies": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon/node_modules/is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", - "peer": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon/node_modules/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==", - "peer": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "peer": true - }, - "node_modules/snapdragon/node_modules/source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", - "peer": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/source-map-resolve": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", - "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", - "deprecated": "See https://github.com/lydell/source-map-resolve#deprecated", - "peer": true, - "dependencies": { - "atob": "^2.1.2", - "decode-uri-component": "^0.2.0", - "resolve-url": "^0.2.1", - "source-map-url": "^0.4.0", - "urix": "^0.1.0" - } - }, - "node_modules/source-map-support": { - "version": "0.5.21", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", - "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", - "dependencies": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } - }, - "node_modules/source-map-url": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz", - "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==", - "deprecated": "See https://github.com/lydell/source-map-url#deprecated", - "peer": true - }, - "node_modules/spawn-wrap": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/spawn-wrap/-/spawn-wrap-2.0.0.tgz", - "integrity": "sha512-EeajNjfN9zMnULLwhZZQU3GWBoFNkbngTUPfaawT4RkMiviTxcX0qfhVbGey39mfctfDHkWtuecgQ8NJcyQWHg==", - "dev": true, - "dependencies": { - "foreground-child": "^2.0.0", - "is-windows": "^1.0.2", - "make-dir": "^3.0.0", - "rimraf": "^3.0.0", - "signal-exit": "^3.0.2", - "which": "^2.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/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==", - "peer": true, - "dependencies": { - "extend-shallow": "^3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/sprintf-js": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" - }, - "node_modules/stack-utils": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", - "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", - "peer": true, - "dependencies": { - "escape-string-regexp": "^2.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/stack-utils/node_modules/escape-string-regexp": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", - "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", - "peer": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/stackframe": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.3.4.tgz", - "integrity": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==", - "peer": true - }, - "node_modules/stacktrace-parser": { - "version": "0.1.10", - "resolved": "https://registry.npmjs.org/stacktrace-parser/-/stacktrace-parser-0.1.10.tgz", - "integrity": "sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg==", - "peer": true, - "dependencies": { - "type-fest": "^0.7.1" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/stacktrace-parser/node_modules/type-fest": { - "version": "0.7.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.7.1.tgz", - "integrity": "sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg==", - "peer": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/static-extend": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", - "integrity": "sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==", - "peer": true, - "dependencies": { - "define-property": "^0.2.5", - "object-copy": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/static-extend/node_modules/define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", - "peer": true, - "dependencies": { - "is-descriptor": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/static-extend/node_modules/is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", - "peer": true, - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/static-extend/node_modules/is-accessor-descriptor/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "peer": true, - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/static-extend/node_modules/is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", - "peer": true, - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/static-extend/node_modules/is-data-descriptor/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "peer": true, - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/static-extend/node_modules/is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "peer": true, - "dependencies": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/static-extend/node_modules/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==", - "peer": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/statuses": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", - "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", - "peer": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/stop-iteration-iterator": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz", - "integrity": "sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==", - "dev": true, - "dependencies": { - "internal-slot": "^1.0.4" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", - "peer": true, - "dependencies": { - "safe-buffer": "~5.2.0" - } - }, - "node_modules/string_decoder/node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "peer": true - }, - "node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/string-width/node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" - }, - "node_modules/string-width/node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "engines": { - "node": ">=8" - } - }, - "node_modules/string.prototype.matchall": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz", - "integrity": "sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "get-intrinsic": "^1.1.3", - "has-symbols": "^1.0.3", - "internal-slot": "^1.0.3", - "regexp.prototype.flags": "^1.4.3", - "side-channel": "^1.0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/string.prototype.trim": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz", - "integrity": "sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/string.prototype.trimend": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz", - "integrity": "sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/string.prototype.trimstart": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz", - "integrity": "sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-bom": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", - "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-eof": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", - "integrity": "sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==", - "peer": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/strip-json-comments": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", - "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", - "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/strnum": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/strnum/-/strnum-1.0.5.tgz", - "integrity": "sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==", - "peer": true - }, - "node_modules/sudo-prompt": { - "version": "9.2.1", - "resolved": "https://registry.npmjs.org/sudo-prompt/-/sudo-prompt-9.2.1.tgz", - "integrity": "sha512-Mu7R0g4ig9TUuGSxJavny5Rv0egCEtpZRNMrZaYS1vxkiIxGiGUwoezU3LazIQ+KE04hTrTfNPgxU5gzi7F5Pw==", - "peer": true - }, - "node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/supports-preserve-symlinks-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/table": { - "version": "6.8.1", - "resolved": "https://registry.npmjs.org/table/-/table-6.8.1.tgz", - "integrity": "sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA==", - "dev": true, - "dependencies": { - "ajv": "^8.0.1", - "lodash.truncate": "^4.4.2", - "slice-ansi": "^4.0.0", - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/table/node_modules/ajv": { - "version": "8.12.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", - "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", - "dev": true, - "dependencies": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/table/node_modules/astral-regex": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", - "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/table/node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/table/node_modules/json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", - "dev": true - }, - "node_modules/table/node_modules/slice-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", - "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.0.0", - "astral-regex": "^2.0.0", - "is-fullwidth-code-point": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/slice-ansi?sponsor=1" - } - }, - "node_modules/tapable": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", - "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/temp": { - "version": "0.8.3", - "resolved": "https://registry.npmjs.org/temp/-/temp-0.8.3.tgz", - "integrity": "sha512-jtnWJs6B1cZlHs9wPG7BrowKxZw/rf6+UpGAkr8AaYmiTyTO7zQlLoST8zx/8TcUPnZmeBoB+H8ARuHZaSijVw==", - "engines": [ - "node >=0.8.0" - ], - "peer": true, - "dependencies": { - "os-tmpdir": "^1.0.0", - "rimraf": "~2.2.6" - } - }, - "node_modules/temp/node_modules/rimraf": { - "version": "2.2.8", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.2.8.tgz", - "integrity": "sha512-R5KMKHnPAQaZMqLOsyuyUmcIjSeDm+73eoqQpaXA7AZ22BL+6C+1mcUscgOsNd8WVlJuvlgAPsegcx7pjlV0Dg==", - "peer": true, - "bin": { - "rimraf": "bin.js" - } - }, - "node_modules/terser": { - "version": "5.16.8", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.16.8.tgz", - "integrity": "sha512-QI5g1E/ef7d+PsDifb+a6nnVgC4F22Bg6T0xrBrz6iloVB4PUkkunp6V8nzoOOZJIzjWVdAGqCdlKlhLq/TbIA==", - "peer": true, - "dependencies": { - "@jridgewell/source-map": "^0.3.2", - "acorn": "^8.5.0", - "commander": "^2.20.0", - "source-map-support": "~0.5.20" - }, - "bin": { - "terser": "bin/terser" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/terser-webpack-plugin": { - "version": "5.3.7", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.7.tgz", - "integrity": "sha512-AfKwIktyP7Cu50xNjXF/6Qb5lBNzYaWpU6YfoX3uZicTx0zTy0stDDCsvjDapKsSDvOeWo5MEq4TmdBy2cNoHw==", - "dev": true, - "peer": true, - "dependencies": { - "@jridgewell/trace-mapping": "^0.3.17", - "jest-worker": "^27.4.5", - "schema-utils": "^3.1.1", - "serialize-javascript": "^6.0.1", - "terser": "^5.16.5" - }, - "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^5.1.0" - }, - "peerDependenciesMeta": { - "@swc/core": { - "optional": true - }, - "esbuild": { - "optional": true - }, - "uglify-js": { - "optional": true - } - } - }, - "node_modules/terser-webpack-plugin/node_modules/serialize-javascript": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz", - "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==", - "dev": true, - "peer": true, - "dependencies": { - "randombytes": "^2.1.0" - } - }, - "node_modules/terser/node_modules/acorn": { - "version": "8.8.2", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz", - "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==", - "peer": true, - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/terser/node_modules/commander": { - "version": "2.20.3", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", - "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", - "peer": true - }, - "node_modules/test-exclude": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", - "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", - "dev": true, - "dependencies": { - "@istanbuljs/schema": "^0.1.2", - "glob": "^7.1.4", - "minimatch": "^3.0.4" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/text-table": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", - "dev": true - }, - "node_modules/throat": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/throat/-/throat-5.0.0.tgz", - "integrity": "sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==", - "peer": true - }, - "node_modules/through2": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", - "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", - "peer": true, - "dependencies": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" - } - }, - "node_modules/through2/node_modules/isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", - "peer": true - }, - "node_modules/through2/node_modules/readable-stream": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", - "peer": true, - "dependencies": { - "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" - } - }, - "node_modules/through2/node_modules/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==", - "peer": true, - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, - "node_modules/tmpl": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", - "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", - "peer": true - }, - "node_modules/to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", - "engines": { - "node": ">=4" - } - }, - "node_modules/to-object-path": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", - "integrity": "sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==", - "peer": true, - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/to-object-path/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "peer": true, - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/to-regex": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", - "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", - "peer": true, - "dependencies": { - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "regex-not": "^1.0.2", - "safe-regex": "^1.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dependencies": { - "is-number": "^7.0.0" - }, - "engines": { - "node": ">=8.0" - } - }, - "node_modules/toidentifier": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", - "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", - "peer": true, - "engines": { - "node": ">=0.6" - } - }, - "node_modules/tr46": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", - "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", - "peer": true - }, - "node_modules/ts-loader": { - "version": "9.4.2", - "resolved": "https://registry.npmjs.org/ts-loader/-/ts-loader-9.4.2.tgz", - "integrity": "sha512-OmlC4WVmFv5I0PpaxYb+qGeGOdm5giHU7HwDDUjw59emP2UYMHy9fFSDcYgSNoH8sXcj4hGCSEhlDZ9ULeDraA==", - "dev": true, - "dependencies": { - "chalk": "^4.1.0", - "enhanced-resolve": "^5.0.0", - "micromatch": "^4.0.0", - "semver": "^7.3.4" - }, - "engines": { - "node": ">=12.0.0" - }, - "peerDependencies": { - "typescript": "*", - "webpack": "^5.0.0" - } - }, - "node_modules/ts-node": { - "version": "8.10.2", - "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-8.10.2.tgz", - "integrity": "sha512-ISJJGgkIpDdBhWVu3jufsWpK3Rzo7bdiIXJjQc0ynKxVOVcg2oIrf2H2cejminGrptVc6q6/uynAHNCuWGbpVA==", - "dev": true, - "dependencies": { - "arg": "^4.1.0", - "diff": "^4.0.1", - "make-error": "^1.1.1", - "source-map-support": "^0.5.17", - "yn": "3.1.1" - }, - "bin": { - "ts-node": "dist/bin.js", - "ts-node-script": "dist/bin-script.js", - "ts-node-transpile-only": "dist/bin-transpile.js", - "ts-script": "dist/bin-script-deprecated.js" - }, - "engines": { - "node": ">=6.0.0" - }, - "peerDependencies": { - "typescript": ">=2.7" - } - }, - "node_modules/ts-node/node_modules/diff": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", - "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", - "dev": true, - "engines": { - "node": ">=0.3.1" - } - }, - "node_modules/tsconfig-paths": { - "version": "3.14.2", - "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz", - "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", - "dev": true, - "dependencies": { - "@types/json5": "^0.0.29", - "json5": "^1.0.2", - "minimist": "^1.2.6", - "strip-bom": "^3.0.0" - } - }, - "node_modules/tsconfig-paths/node_modules/json5": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", - "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", - "dev": true, - "dependencies": { - "minimist": "^1.2.0" - }, - "bin": { - "json5": "lib/cli.js" - } - }, - "node_modules/tsconfig-paths/node_modules/strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==", - "peer": true - }, - "node_modules/tsutils": { - "version": "3.21.0", - "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", - "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", - "dev": true, - "dependencies": { - "tslib": "^1.8.1" - }, - "engines": { - "node": ">= 6" - }, - "peerDependencies": { - "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" - } - }, - "node_modules/tsutils/node_modules/tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", - "dev": true - }, - "node_modules/type-check": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", - "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", - "dev": true, - "dependencies": { - "prelude-ls": "^1.2.1" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/type-detect": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", - "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", - "engines": { - "node": ">=4" - } - }, - "node_modules/type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/typed-array-length": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", - "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "is-typed-array": "^1.1.9" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/typedarray-to-buffer": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", - "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", - "dev": true, - "dependencies": { - "is-typedarray": "^1.0.0" - } - }, - "node_modules/typescript": { - "version": "4.9.5", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", - "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==", - "dev": true, - "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" - }, - "engines": { - "node": ">=4.2.0" - } - }, - "node_modules/uglify-es": { - "version": "3.3.9", - "resolved": "https://registry.npmjs.org/uglify-es/-/uglify-es-3.3.9.tgz", - "integrity": "sha512-r+MU0rfv4L/0eeW3xZrd16t4NZfK8Ld4SWVglYBb7ez5uXFWHuVRs6xCTrf1yirs9a4j4Y27nn7SRfO6v67XsQ==", - "deprecated": "support for ECMAScript is superseded by `uglify-js` as of v3.13.0", - "peer": true, - "dependencies": { - "commander": "~2.13.0", - "source-map": "~0.6.1" - }, - "bin": { - "uglifyjs": "bin/uglifyjs" - }, - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/uglify-es/node_modules/commander": { - "version": "2.13.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.13.0.tgz", - "integrity": "sha512-MVuS359B+YzaWqjCL/c+22gfryv+mCBPHAv3zyVI2GN8EY6IRP8VwtasXn8jyyhvvq84R4ImN1OKRtcbIasjYA==", - "peer": true - }, - "node_modules/unbox-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", - "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "has-bigints": "^1.0.2", - "has-symbols": "^1.0.3", - "which-boxed-primitive": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/unicode-canonical-property-names-ecmascript": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", - "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", - "peer": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/unicode-match-property-ecmascript": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", - "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", - "peer": true, - "dependencies": { - "unicode-canonical-property-names-ecmascript": "^2.0.0", - "unicode-property-aliases-ecmascript": "^2.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/unicode-match-property-value-ecmascript": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz", - "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==", - "peer": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/unicode-property-aliases-ecmascript": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", - "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", - "peer": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/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==", - "peer": true, - "dependencies": { - "arr-union": "^3.1.0", - "get-value": "^2.0.6", - "is-extendable": "^0.1.1", - "set-value": "^2.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/union-value/node_modules/is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", - "peer": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", - "peer": true, - "engines": { - "node": ">= 4.0.0" - } - }, - "node_modules/unpipe": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", - "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", - "peer": true, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/unset-value": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", - "integrity": "sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==", - "peer": true, - "dependencies": { - "has-value": "^0.3.1", - "isobject": "^3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/unset-value/node_modules/has-value": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", - "integrity": "sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==", - "peer": true, - "dependencies": { - "get-value": "^2.0.3", - "has-values": "^0.1.4", - "isobject": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/unset-value/node_modules/has-value/node_modules/isobject": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", - "integrity": "sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==", - "peer": true, - "dependencies": { - "isarray": "1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/unset-value/node_modules/has-values": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", - "integrity": "sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==", - "peer": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/unset-value/node_modules/isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", - "peer": true - }, - "node_modules/update-browserslist-db": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz", - "integrity": "sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - } - ], - "dependencies": { - "escalade": "^3.1.1", - "picocolors": "^1.0.0" - }, - "bin": { - "browserslist-lint": "cli.js" - }, - "peerDependencies": { - "browserslist": ">= 4.21.0" - } - }, - "node_modules/uri-js": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", - "dev": true, - "dependencies": { - "punycode": "^2.1.0" - } - }, - "node_modules/urix": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", - "integrity": "sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==", - "deprecated": "Please see https://github.com/lydell/urix#deprecated", - "peer": true - }, - "node_modules/use": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", - "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", - "peer": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/use-sync-external-store": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.2.0.tgz", - "integrity": "sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==", - "peer": true, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", - "peer": true - }, - "node_modules/utils-merge": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", - "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", - "peer": true, - "engines": { - "node": ">= 0.4.0" - } - }, - "node_modules/uuid": { - "version": "8.3.2", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", - "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", - "dev": true, - "bin": { - "uuid": "dist/bin/uuid" - } - }, - "node_modules/v8-compile-cache": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", - "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==", - "dev": true - }, - "node_modules/vary": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", - "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", - "peer": true, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/vlq": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/vlq/-/vlq-1.0.1.tgz", - "integrity": "sha512-gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w==", - "peer": true - }, - "node_modules/walker": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", - "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", - "peer": true, - "dependencies": { - "makeerror": "1.0.12" - } - }, - "node_modules/watchpack": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", - "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", - "dev": true, - "peer": true, - "dependencies": { - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.1.2" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/wcwidth": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", - "integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==", - "peer": true, - "dependencies": { - "defaults": "^1.0.3" - } - }, - "node_modules/webidl-conversions": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", - "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", - "peer": true - }, - "node_modules/webpack": { - "version": "5.78.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.78.0.tgz", - "integrity": "sha512-gT5DP72KInmE/3azEaQrISjTvLYlSM0j1Ezhht/KLVkrqtv10JoP/RXhwmX/frrutOPuSq3o5Vq0ehR/4Vmd1g==", - "dev": true, - "peer": true, - "dependencies": { - "@types/eslint-scope": "^3.7.3", - "@types/estree": "^0.0.51", - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/wasm-edit": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1", - "acorn": "^8.7.1", - "acorn-import-assertions": "^1.7.6", - "browserslist": "^4.14.5", - "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.10.0", - "es-module-lexer": "^0.9.0", - "eslint-scope": "5.1.1", - "events": "^3.2.0", - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.2.9", - "json-parse-even-better-errors": "^2.3.1", - "loader-runner": "^4.2.0", - "mime-types": "^2.1.27", - "neo-async": "^2.6.2", - "schema-utils": "^3.1.0", - "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.1.3", - "watchpack": "^2.4.0", - "webpack-sources": "^3.2.3" - }, - "bin": { - "webpack": "bin/webpack.js" - }, - "engines": { - "node": ">=10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependenciesMeta": { - "webpack-cli": { - "optional": true - } - } - }, - "node_modules/webpack-sources": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", - "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", - "dev": true, - "peer": true, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/webpack/node_modules/acorn": { - "version": "8.8.2", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz", - "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==", - "dev": true, - "peer": true, - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/webpack/node_modules/acorn-import-assertions": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz", - "integrity": "sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==", - "dev": true, - "peer": true, - "peerDependencies": { - "acorn": "^8" - } - }, - "node_modules/whatwg-fetch": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.2.tgz", - "integrity": "sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==", - "peer": true - }, - "node_modules/whatwg-url": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", - "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", - "peer": true, - "dependencies": { - "tr46": "~0.0.3", - "webidl-conversions": "^3.0.0" - } - }, - "node_modules/which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dev": true, - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "node-which": "bin/node-which" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/which-boxed-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", - "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", - "dev": true, - "dependencies": { - "is-bigint": "^1.0.1", - "is-boolean-object": "^1.1.0", - "is-number-object": "^1.0.4", - "is-string": "^1.0.5", - "is-symbol": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/which-collection": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz", - "integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==", - "dev": true, - "dependencies": { - "is-map": "^2.0.1", - "is-set": "^2.0.1", - "is-weakmap": "^2.0.1", - "is-weakset": "^2.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/which-module": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", - "integrity": "sha512-B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q==" - }, - "node_modules/which-pm-runs": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/which-pm-runs/-/which-pm-runs-1.1.0.tgz", - "integrity": "sha512-n1brCuqClxfFfq/Rb0ICg9giSZqCS+pLtccdag6C2HyufBrh3fBOiy9nb6ggRMvWOVH5GrdJskj5iGTZNxd7SA==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/which-typed-array": { - "version": "1.1.9", - "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz", - "integrity": "sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==", - "dev": true, - "dependencies": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-tostringtag": "^1.0.0", - "is-typed-array": "^1.1.10" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/wide-align": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz", - "integrity": "sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==", - "dev": true, - "dependencies": { - "string-width": "^1.0.2 || 2" - } - }, - "node_modules/wide-align/node_modules/ansi-regex": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz", - "integrity": "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/wide-align/node_modules/string-width": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", - "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", - "dev": true, - "dependencies": { - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^4.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/wide-align/node_modules/strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==", - "dev": true, - "dependencies": { - "ansi-regex": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/word-wrap": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", - "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/workerpool": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/workerpool/-/workerpool-6.1.0.tgz", - "integrity": "sha512-toV7q9rWNYha963Pl/qyeZ6wG+3nnsyvolaNUS8+R5Wtw6qJPTxIlOP1ZSvcGhEJw+l3HMMmtiNo9Gl61G4GVg==", - "dev": true - }, - "node_modules/wrap-ansi": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" - }, - "node_modules/write-file-atomic": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", - "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", - "dev": true, - "dependencies": { - "imurmurhash": "^0.1.4", - "is-typedarray": "^1.0.0", - "signal-exit": "^3.0.2", - "typedarray-to-buffer": "^3.1.5" - } - }, - "node_modules/ws": { - "version": "6.2.2", - "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.2.tgz", - "integrity": "sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==", - "peer": true, - "dependencies": { - "async-limiter": "~1.0.0" - } - }, - "node_modules/xtend": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", - "peer": true, - "engines": { - "node": ">=0.4" - } - }, - "node_modules/y18n": { - "version": "5.0.8", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", - "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", - "engines": { - "node": ">=10" - } - }, - "node_modules/yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" - }, - "node_modules/yaml": { - "version": "1.10.2", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", - "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", - "dev": true, - "engines": { - "node": ">= 6" - } - }, - "node_modules/yargs": { - "version": "16.2.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", - "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", - "dev": true, - "dependencies": { - "cliui": "^7.0.2", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.0", - "y18n": "^5.0.5", - "yargs-parser": "^20.2.2" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/yargs-parser": { - "version": "20.2.4", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.4.tgz", - "integrity": "sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==", - "dev": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/yargs-unparser": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-2.0.0.tgz", - "integrity": "sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==", - "dev": true, - "dependencies": { - "camelcase": "^6.0.0", - "decamelize": "^4.0.0", - "flat": "^5.0.2", - "is-plain-obj": "^2.1.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/yargs-unparser/node_modules/camelcase": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", - "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/yargs-unparser/node_modules/decamelize": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-4.0.0.tgz", - "integrity": "sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/yn": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", - "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/yocto-queue": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", - "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - } - } -} diff --git a/package.json b/package.json index 63590373..34ac266b 100644 --- a/package.json +++ b/package.json @@ -8,8 +8,7 @@ "lint-fix": "./node_modules/.bin/eslint --ext .js,.jsx,.ts,.tsx --fix ./", "lint": "./node_modules/.bin/eslint --ext .js,.jsx,.ts,.tsx ./", "test": "./node_modules/.bin/mocha -r ./node_modules/ts-node/register -r tsconfig-paths/register --config .mocharc.js ./tests/**/*.test.ts --exit", - "test-coverage": "./node_modules/.bin/nyc --config ./nyc.config.js npm run test", - "prepare": "npm run build" + "test-coverage": "./node_modules/.bin/nyc --config ./nyc.config.js npm run test" }, "repository": { "type": "git", diff --git a/src/resources/flags/images-original/ad.png b/src/resources/flags/images-original/ad.png new file mode 100755 index 00000000..886752f6 Binary files /dev/null and b/src/resources/flags/images-original/ad.png differ diff --git a/src/resources/flags/images-original/ae.png b/src/resources/flags/images-original/ae.png new file mode 100755 index 00000000..a253cd2d Binary files /dev/null and b/src/resources/flags/images-original/ae.png differ diff --git a/src/resources/flags/images-original/af.png b/src/resources/flags/images-original/af.png new file mode 100755 index 00000000..6ae08810 Binary files /dev/null and b/src/resources/flags/images-original/af.png differ diff --git a/src/resources/flags/images-original/ag.png b/src/resources/flags/images-original/ag.png new file mode 100755 index 00000000..ee529d2b Binary files /dev/null and b/src/resources/flags/images-original/ag.png differ diff --git a/src/resources/flags/images-original/ai.png b/src/resources/flags/images-original/ai.png new file mode 100644 index 00000000..a598c566 Binary files /dev/null and b/src/resources/flags/images-original/ai.png differ diff --git a/src/resources/flags/images-original/al.png b/src/resources/flags/images-original/al.png new file mode 100755 index 00000000..4b59dfbd Binary files /dev/null and b/src/resources/flags/images-original/al.png differ diff --git a/src/resources/flags/images-original/am.png b/src/resources/flags/images-original/am.png new file mode 100755 index 00000000..41b497a3 Binary files /dev/null and b/src/resources/flags/images-original/am.png differ diff --git a/src/resources/flags/images-original/ao.png b/src/resources/flags/images-original/ao.png new file mode 100755 index 00000000..f5ff2374 Binary files /dev/null and b/src/resources/flags/images-original/ao.png differ diff --git a/src/resources/flags/images-original/ar.png b/src/resources/flags/images-original/ar.png new file mode 100755 index 00000000..0b25d9cb Binary files /dev/null and b/src/resources/flags/images-original/ar.png differ diff --git a/src/resources/flags/images-original/as.png b/src/resources/flags/images-original/as.png new file mode 100644 index 00000000..1b571007 Binary files /dev/null and b/src/resources/flags/images-original/as.png differ diff --git a/src/resources/flags/images-original/at.png b/src/resources/flags/images-original/at.png new file mode 100755 index 00000000..75646bab Binary files /dev/null and b/src/resources/flags/images-original/at.png differ diff --git a/src/resources/flags/images-original/au.png b/src/resources/flags/images-original/au.png new file mode 100755 index 00000000..f2572d72 Binary files /dev/null and b/src/resources/flags/images-original/au.png differ diff --git a/src/resources/flags/images-original/aw.png b/src/resources/flags/images-original/aw.png new file mode 100644 index 00000000..a72bfddc Binary files /dev/null and b/src/resources/flags/images-original/aw.png differ diff --git a/src/resources/flags/images-original/ax.png b/src/resources/flags/images-original/ax.png new file mode 100644 index 00000000..d78ff2e3 Binary files /dev/null and b/src/resources/flags/images-original/ax.png differ diff --git a/src/resources/flags/images-original/az.png b/src/resources/flags/images-original/az.png new file mode 100755 index 00000000..f639aefd Binary files /dev/null and b/src/resources/flags/images-original/az.png differ diff --git a/src/resources/flags/images-original/ba.png b/src/resources/flags/images-original/ba.png new file mode 100755 index 00000000..a4ac356d Binary files /dev/null and b/src/resources/flags/images-original/ba.png differ diff --git a/src/resources/flags/images-original/bb.png b/src/resources/flags/images-original/bb.png new file mode 100755 index 00000000..2bf58e69 Binary files /dev/null and b/src/resources/flags/images-original/bb.png differ diff --git a/src/resources/flags/images-original/bd.png b/src/resources/flags/images-original/bd.png new file mode 100755 index 00000000..e9872d15 Binary files /dev/null and b/src/resources/flags/images-original/bd.png differ diff --git a/src/resources/flags/images-original/be.png b/src/resources/flags/images-original/be.png new file mode 100755 index 00000000..5d1b8325 Binary files /dev/null and b/src/resources/flags/images-original/be.png differ diff --git a/src/resources/flags/images-original/bf.png b/src/resources/flags/images-original/bf.png new file mode 100755 index 00000000..5172dbfb Binary files /dev/null and b/src/resources/flags/images-original/bf.png differ diff --git a/src/resources/flags/images-original/bg.png b/src/resources/flags/images-original/bg.png new file mode 100755 index 00000000..d78308df Binary files /dev/null and b/src/resources/flags/images-original/bg.png differ diff --git a/src/resources/flags/images-original/bh.png b/src/resources/flags/images-original/bh.png new file mode 100755 index 00000000..5e247e7a Binary files /dev/null and b/src/resources/flags/images-original/bh.png differ diff --git a/src/resources/flags/images-original/bi.png b/src/resources/flags/images-original/bi.png new file mode 100755 index 00000000..26186437 Binary files /dev/null and b/src/resources/flags/images-original/bi.png differ diff --git a/src/resources/flags/images-original/bj.png b/src/resources/flags/images-original/bj.png new file mode 100755 index 00000000..20e281f2 Binary files /dev/null and b/src/resources/flags/images-original/bj.png differ diff --git a/src/resources/flags/images-original/bl.png b/src/resources/flags/images-original/bl.png new file mode 100644 index 00000000..a4938528 Binary files /dev/null and b/src/resources/flags/images-original/bl.png differ diff --git a/src/resources/flags/images-original/bm.png b/src/resources/flags/images-original/bm.png new file mode 100644 index 00000000..29a8532a Binary files /dev/null and b/src/resources/flags/images-original/bm.png differ diff --git a/src/resources/flags/images-original/bn.png b/src/resources/flags/images-original/bn.png new file mode 100755 index 00000000..b4a3e60e Binary files /dev/null and b/src/resources/flags/images-original/bn.png differ diff --git a/src/resources/flags/images-original/bo.png b/src/resources/flags/images-original/bo.png new file mode 100755 index 00000000..342267cb Binary files /dev/null and b/src/resources/flags/images-original/bo.png differ diff --git a/src/resources/flags/images-original/bq.png b/src/resources/flags/images-original/bq.png new file mode 100755 index 00000000..0386cc3e Binary files /dev/null and b/src/resources/flags/images-original/bq.png differ diff --git a/src/resources/flags/images-original/br.png b/src/resources/flags/images-original/br.png new file mode 100755 index 00000000..43725657 Binary files /dev/null and b/src/resources/flags/images-original/br.png differ diff --git a/src/resources/flags/images-original/bs.png b/src/resources/flags/images-original/bs.png new file mode 100755 index 00000000..1bbb1d8f Binary files /dev/null and b/src/resources/flags/images-original/bs.png differ diff --git a/src/resources/flags/images-original/bt.png b/src/resources/flags/images-original/bt.png new file mode 100755 index 00000000..cd4c8539 Binary files /dev/null and b/src/resources/flags/images-original/bt.png differ diff --git a/src/resources/flags/images-original/bw.png b/src/resources/flags/images-original/bw.png new file mode 100755 index 00000000..555d80b3 Binary files /dev/null and b/src/resources/flags/images-original/bw.png differ diff --git a/src/resources/flags/images-original/by.png b/src/resources/flags/images-original/by.png new file mode 100755 index 00000000..0dc31020 Binary files /dev/null and b/src/resources/flags/images-original/by.png differ diff --git a/src/resources/flags/images-original/bz.png b/src/resources/flags/images-original/bz.png new file mode 100755 index 00000000..3b6c39e6 Binary files /dev/null and b/src/resources/flags/images-original/bz.png differ diff --git a/src/resources/flags/images-original/ca.png b/src/resources/flags/images-original/ca.png new file mode 100755 index 00000000..c939b041 Binary files /dev/null and b/src/resources/flags/images-original/ca.png differ diff --git a/src/resources/flags/images-original/cc.png b/src/resources/flags/images-original/cc.png new file mode 100644 index 00000000..fa52dba8 Binary files /dev/null and b/src/resources/flags/images-original/cc.png differ diff --git a/src/resources/flags/images-original/cd.png b/src/resources/flags/images-original/cd.png new file mode 100755 index 00000000..44043fac Binary files /dev/null and b/src/resources/flags/images-original/cd.png differ diff --git a/src/resources/flags/images-original/cf.png b/src/resources/flags/images-original/cf.png new file mode 100755 index 00000000..5b7cb225 Binary files /dev/null and b/src/resources/flags/images-original/cf.png differ diff --git a/src/resources/flags/images-original/cg.png b/src/resources/flags/images-original/cg.png new file mode 100755 index 00000000..2d7ce4c0 Binary files /dev/null and b/src/resources/flags/images-original/cg.png differ diff --git a/src/resources/flags/images-original/ch.png b/src/resources/flags/images-original/ch.png new file mode 100755 index 00000000..5fe151ca Binary files /dev/null and b/src/resources/flags/images-original/ch.png differ diff --git a/src/resources/flags/images-original/ci.png b/src/resources/flags/images-original/ci.png new file mode 100755 index 00000000..0534124c Binary files /dev/null and b/src/resources/flags/images-original/ci.png differ diff --git a/src/resources/flags/images-original/ck.png b/src/resources/flags/images-original/ck.png new file mode 100644 index 00000000..e45cb390 Binary files /dev/null and b/src/resources/flags/images-original/ck.png differ diff --git a/src/resources/flags/images-original/cl.png b/src/resources/flags/images-original/cl.png new file mode 100755 index 00000000..af74ffc9 Binary files /dev/null and b/src/resources/flags/images-original/cl.png differ diff --git a/src/resources/flags/images-original/cm.png b/src/resources/flags/images-original/cm.png new file mode 100755 index 00000000..b33c8115 Binary files /dev/null and b/src/resources/flags/images-original/cm.png differ diff --git a/src/resources/flags/images-original/cn.png b/src/resources/flags/images-original/cn.png new file mode 100755 index 00000000..d31bab71 Binary files /dev/null and b/src/resources/flags/images-original/cn.png differ diff --git a/src/resources/flags/images-original/co.png b/src/resources/flags/images-original/co.png new file mode 100755 index 00000000..b6aae55c Binary files /dev/null and b/src/resources/flags/images-original/co.png differ diff --git a/src/resources/flags/images-original/cr.png b/src/resources/flags/images-original/cr.png new file mode 100755 index 00000000..9c92f6de Binary files /dev/null and b/src/resources/flags/images-original/cr.png differ diff --git a/src/resources/flags/images-original/cu.png b/src/resources/flags/images-original/cu.png new file mode 100755 index 00000000..f21090e2 Binary files /dev/null and b/src/resources/flags/images-original/cu.png differ diff --git a/src/resources/flags/images-original/cv.png b/src/resources/flags/images-original/cv.png new file mode 100755 index 00000000..6eeae62b Binary files /dev/null and b/src/resources/flags/images-original/cv.png differ diff --git a/src/resources/flags/images-original/cw.png b/src/resources/flags/images-original/cw.png new file mode 100644 index 00000000..c38132ce Binary files /dev/null and b/src/resources/flags/images-original/cw.png differ diff --git a/src/resources/flags/images-original/cx.png b/src/resources/flags/images-original/cx.png new file mode 100644 index 00000000..9a3e367c Binary files /dev/null and b/src/resources/flags/images-original/cx.png differ diff --git a/src/resources/flags/images-original/cy.png b/src/resources/flags/images-original/cy.png new file mode 100755 index 00000000..55446041 Binary files /dev/null and b/src/resources/flags/images-original/cy.png differ diff --git a/src/resources/flags/images-original/cz.png b/src/resources/flags/images-original/cz.png new file mode 100755 index 00000000..4fc3adb5 Binary files /dev/null and b/src/resources/flags/images-original/cz.png differ diff --git a/src/resources/flags/images-original/de.png b/src/resources/flags/images-original/de.png new file mode 100755 index 00000000..eea2e58b Binary files /dev/null and b/src/resources/flags/images-original/de.png differ diff --git a/src/resources/flags/images-original/dj.png b/src/resources/flags/images-original/dj.png new file mode 100755 index 00000000..dbc95d77 Binary files /dev/null and b/src/resources/flags/images-original/dj.png differ diff --git a/src/resources/flags/images-original/dk.png b/src/resources/flags/images-original/dk.png new file mode 100755 index 00000000..e3471d34 Binary files /dev/null and b/src/resources/flags/images-original/dk.png differ diff --git a/src/resources/flags/images-original/dm.png b/src/resources/flags/images-original/dm.png new file mode 100755 index 00000000..a158c88f Binary files /dev/null and b/src/resources/flags/images-original/dm.png differ diff --git a/src/resources/flags/images-original/do.png b/src/resources/flags/images-original/do.png new file mode 100755 index 00000000..81fa5e8b Binary files /dev/null and b/src/resources/flags/images-original/do.png differ diff --git a/src/resources/flags/images-original/dz.png b/src/resources/flags/images-original/dz.png new file mode 100755 index 00000000..b2768bcc Binary files /dev/null and b/src/resources/flags/images-original/dz.png differ diff --git a/src/resources/flags/images-original/ec.png b/src/resources/flags/images-original/ec.png new file mode 100755 index 00000000..27fe8115 Binary files /dev/null and b/src/resources/flags/images-original/ec.png differ diff --git a/src/resources/flags/images-original/ee.png b/src/resources/flags/images-original/ee.png new file mode 100755 index 00000000..21b4b72d Binary files /dev/null and b/src/resources/flags/images-original/ee.png differ diff --git a/src/resources/flags/images-original/eg.png b/src/resources/flags/images-original/eg.png new file mode 100755 index 00000000..d98e5d3a Binary files /dev/null and b/src/resources/flags/images-original/eg.png differ diff --git a/src/resources/flags/images-original/eh.png b/src/resources/flags/images-original/eh.png new file mode 100755 index 00000000..cf451799 Binary files /dev/null and b/src/resources/flags/images-original/eh.png differ diff --git a/src/resources/flags/images-original/er.png b/src/resources/flags/images-original/er.png new file mode 100755 index 00000000..3f88fc52 Binary files /dev/null and b/src/resources/flags/images-original/er.png differ diff --git a/src/resources/flags/images-original/es.png b/src/resources/flags/images-original/es.png new file mode 100755 index 00000000..f589a835 Binary files /dev/null and b/src/resources/flags/images-original/es.png differ diff --git a/src/resources/flags/images-original/et.png b/src/resources/flags/images-original/et.png new file mode 100755 index 00000000..d759c2fd Binary files /dev/null and b/src/resources/flags/images-original/et.png differ diff --git a/src/resources/flags/images-original/fi.png b/src/resources/flags/images-original/fi.png new file mode 100755 index 00000000..2bcb6a55 Binary files /dev/null and b/src/resources/flags/images-original/fi.png differ diff --git a/src/resources/flags/images-original/fj.png b/src/resources/flags/images-original/fj.png new file mode 100755 index 00000000..7aef415f Binary files /dev/null and b/src/resources/flags/images-original/fj.png differ diff --git a/src/resources/flags/images-original/fk.png b/src/resources/flags/images-original/fk.png new file mode 100644 index 00000000..7b59f8c1 Binary files /dev/null and b/src/resources/flags/images-original/fk.png differ diff --git a/src/resources/flags/images-original/fm.png b/src/resources/flags/images-original/fm.png new file mode 100755 index 00000000..1dfbdffe Binary files /dev/null and b/src/resources/flags/images-original/fm.png differ diff --git a/src/resources/flags/images-original/fo.png b/src/resources/flags/images-original/fo.png new file mode 100644 index 00000000..e2ca151a Binary files /dev/null and b/src/resources/flags/images-original/fo.png differ diff --git a/src/resources/flags/images-original/fr.png b/src/resources/flags/images-original/fr.png new file mode 100755 index 00000000..fcfa7caf Binary files /dev/null and b/src/resources/flags/images-original/fr.png differ diff --git a/src/resources/flags/images-original/ga.png b/src/resources/flags/images-original/ga.png new file mode 100755 index 00000000..2dc5f0fc Binary files /dev/null and b/src/resources/flags/images-original/ga.png differ diff --git a/src/resources/flags/images-original/gb.png b/src/resources/flags/images-original/gb.png new file mode 100755 index 00000000..f1e0e126 Binary files /dev/null and b/src/resources/flags/images-original/gb.png differ diff --git a/src/resources/flags/images-original/gd.png b/src/resources/flags/images-original/gd.png new file mode 100755 index 00000000..5e3ed13b Binary files /dev/null and b/src/resources/flags/images-original/gd.png differ diff --git a/src/resources/flags/images-original/ge.png b/src/resources/flags/images-original/ge.png new file mode 100755 index 00000000..cd5b75de Binary files /dev/null and b/src/resources/flags/images-original/ge.png differ diff --git a/src/resources/flags/images-original/gf.png b/src/resources/flags/images-original/gf.png new file mode 100644 index 00000000..fb15b809 Binary files /dev/null and b/src/resources/flags/images-original/gf.png differ diff --git a/src/resources/flags/images-original/gg.png b/src/resources/flags/images-original/gg.png new file mode 100644 index 00000000..1cf113d4 Binary files /dev/null and b/src/resources/flags/images-original/gg.png differ diff --git a/src/resources/flags/images-original/gh.png b/src/resources/flags/images-original/gh.png new file mode 100755 index 00000000..a7b60ce7 Binary files /dev/null and b/src/resources/flags/images-original/gh.png differ diff --git a/src/resources/flags/images-original/gi.png b/src/resources/flags/images-original/gi.png new file mode 100644 index 00000000..74fae09c Binary files /dev/null and b/src/resources/flags/images-original/gi.png differ diff --git a/src/resources/flags/images-original/gl.png b/src/resources/flags/images-original/gl.png new file mode 100644 index 00000000..fbdbf985 Binary files /dev/null and b/src/resources/flags/images-original/gl.png differ diff --git a/src/resources/flags/images-original/gm.png b/src/resources/flags/images-original/gm.png new file mode 100755 index 00000000..ca440bb6 Binary files /dev/null and b/src/resources/flags/images-original/gm.png differ diff --git a/src/resources/flags/images-original/gn.png b/src/resources/flags/images-original/gn.png new file mode 100755 index 00000000..0740a3fc Binary files /dev/null and b/src/resources/flags/images-original/gn.png differ diff --git a/src/resources/flags/images-original/gp.png b/src/resources/flags/images-original/gp.png new file mode 100644 index 00000000..3223f1a3 Binary files /dev/null and b/src/resources/flags/images-original/gp.png differ diff --git a/src/resources/flags/images-original/gq.png b/src/resources/flags/images-original/gq.png new file mode 100755 index 00000000..bc9c8c46 Binary files /dev/null and b/src/resources/flags/images-original/gq.png differ diff --git a/src/resources/flags/images-original/gr.png b/src/resources/flags/images-original/gr.png new file mode 100755 index 00000000..ec65864a Binary files /dev/null and b/src/resources/flags/images-original/gr.png differ diff --git a/src/resources/flags/images-original/gt.png b/src/resources/flags/images-original/gt.png new file mode 100755 index 00000000..3c7cee7d Binary files /dev/null and b/src/resources/flags/images-original/gt.png differ diff --git a/src/resources/flags/images-original/gu.png b/src/resources/flags/images-original/gu.png new file mode 100644 index 00000000..c7e586f3 Binary files /dev/null and b/src/resources/flags/images-original/gu.png differ diff --git a/src/resources/flags/images-original/gw.png b/src/resources/flags/images-original/gw.png new file mode 100755 index 00000000..515d457f Binary files /dev/null and b/src/resources/flags/images-original/gw.png differ diff --git a/src/resources/flags/images-original/gy.png b/src/resources/flags/images-original/gy.png new file mode 100755 index 00000000..6c3e6733 Binary files /dev/null and b/src/resources/flags/images-original/gy.png differ diff --git a/src/resources/flags/images-original/hk.png b/src/resources/flags/images-original/hk.png new file mode 100644 index 00000000..d7bbe5a2 Binary files /dev/null and b/src/resources/flags/images-original/hk.png differ diff --git a/src/resources/flags/images-original/hn.png b/src/resources/flags/images-original/hn.png new file mode 100755 index 00000000..ee1d1028 Binary files /dev/null and b/src/resources/flags/images-original/hn.png differ diff --git a/src/resources/flags/images-original/hr.png b/src/resources/flags/images-original/hr.png new file mode 100755 index 00000000..2dae8a8a Binary files /dev/null and b/src/resources/flags/images-original/hr.png differ diff --git a/src/resources/flags/images-original/ht.png b/src/resources/flags/images-original/ht.png new file mode 100755 index 00000000..2e15f899 Binary files /dev/null and b/src/resources/flags/images-original/ht.png differ diff --git a/src/resources/flags/images-original/hu.png b/src/resources/flags/images-original/hu.png new file mode 100755 index 00000000..c1c028ec Binary files /dev/null and b/src/resources/flags/images-original/hu.png differ diff --git a/src/resources/flags/images-original/id.png b/src/resources/flags/images-original/id.png new file mode 100755 index 00000000..619215da Binary files /dev/null and b/src/resources/flags/images-original/id.png differ diff --git a/src/resources/flags/images-original/ie.png b/src/resources/flags/images-original/ie.png new file mode 100755 index 00000000..3881ba34 Binary files /dev/null and b/src/resources/flags/images-original/ie.png differ diff --git a/src/resources/flags/images-original/il.png b/src/resources/flags/images-original/il.png new file mode 100755 index 00000000..33fc90c2 Binary files /dev/null and b/src/resources/flags/images-original/il.png differ diff --git a/src/resources/flags/images-original/im.png b/src/resources/flags/images-original/im.png new file mode 100644 index 00000000..a7a52cfa Binary files /dev/null and b/src/resources/flags/images-original/im.png differ diff --git a/src/resources/flags/images-original/in.png b/src/resources/flags/images-original/in.png new file mode 100755 index 00000000..2f06567b Binary files /dev/null and b/src/resources/flags/images-original/in.png differ diff --git a/src/resources/flags/images-original/io.png b/src/resources/flags/images-original/io.png new file mode 100644 index 00000000..58a4b9be Binary files /dev/null and b/src/resources/flags/images-original/io.png differ diff --git a/src/resources/flags/images-original/iq.png b/src/resources/flags/images-original/iq.png new file mode 100755 index 00000000..6b5eb22a Binary files /dev/null and b/src/resources/flags/images-original/iq.png differ diff --git a/src/resources/flags/images-original/ir.png b/src/resources/flags/images-original/ir.png new file mode 100755 index 00000000..36f7ec83 Binary files /dev/null and b/src/resources/flags/images-original/ir.png differ diff --git a/src/resources/flags/images-original/is.png b/src/resources/flags/images-original/is.png new file mode 100755 index 00000000..74fef41d Binary files /dev/null and b/src/resources/flags/images-original/is.png differ diff --git a/src/resources/flags/images-original/it.png b/src/resources/flags/images-original/it.png new file mode 100755 index 00000000..ff7ed317 Binary files /dev/null and b/src/resources/flags/images-original/it.png differ diff --git a/src/resources/flags/images-original/je.png b/src/resources/flags/images-original/je.png new file mode 100644 index 00000000..dced1b0b Binary files /dev/null and b/src/resources/flags/images-original/je.png differ diff --git a/src/resources/flags/images-original/jm.png b/src/resources/flags/images-original/jm.png new file mode 100755 index 00000000..68e58fee Binary files /dev/null and b/src/resources/flags/images-original/jm.png differ diff --git a/src/resources/flags/images-original/jo.png b/src/resources/flags/images-original/jo.png new file mode 100755 index 00000000..57bd76a6 Binary files /dev/null and b/src/resources/flags/images-original/jo.png differ diff --git a/src/resources/flags/images-original/jp.png b/src/resources/flags/images-original/jp.png new file mode 100755 index 00000000..33f3a757 Binary files /dev/null and b/src/resources/flags/images-original/jp.png differ diff --git a/src/resources/flags/images-original/ke.png b/src/resources/flags/images-original/ke.png new file mode 100755 index 00000000..9e8373fd Binary files /dev/null and b/src/resources/flags/images-original/ke.png differ diff --git a/src/resources/flags/images-original/kg.png b/src/resources/flags/images-original/kg.png new file mode 100755 index 00000000..3e7d6611 Binary files /dev/null and b/src/resources/flags/images-original/kg.png differ diff --git a/src/resources/flags/images-original/kh.png b/src/resources/flags/images-original/kh.png new file mode 100755 index 00000000..cf76786b Binary files /dev/null and b/src/resources/flags/images-original/kh.png differ diff --git a/src/resources/flags/images-original/ki.png b/src/resources/flags/images-original/ki.png new file mode 100755 index 00000000..ff8e470d Binary files /dev/null and b/src/resources/flags/images-original/ki.png differ diff --git a/src/resources/flags/images-original/km.png b/src/resources/flags/images-original/km.png new file mode 100755 index 00000000..cbd5e1b5 Binary files /dev/null and b/src/resources/flags/images-original/km.png differ diff --git a/src/resources/flags/images-original/kn.png b/src/resources/flags/images-original/kn.png new file mode 100755 index 00000000..fed64fc0 Binary files /dev/null and b/src/resources/flags/images-original/kn.png differ diff --git a/src/resources/flags/images-original/kp.png b/src/resources/flags/images-original/kp.png new file mode 100755 index 00000000..b25aadc3 Binary files /dev/null and b/src/resources/flags/images-original/kp.png differ diff --git a/src/resources/flags/images-original/kr.png b/src/resources/flags/images-original/kr.png new file mode 100755 index 00000000..d035cab9 Binary files /dev/null and b/src/resources/flags/images-original/kr.png differ diff --git a/src/resources/flags/images-original/ks.png b/src/resources/flags/images-original/ks.png new file mode 100755 index 00000000..942e1b58 Binary files /dev/null and b/src/resources/flags/images-original/ks.png differ diff --git a/src/resources/flags/images-original/kw.png b/src/resources/flags/images-original/kw.png new file mode 100755 index 00000000..8c01668d Binary files /dev/null and b/src/resources/flags/images-original/kw.png differ diff --git a/src/resources/flags/images-original/ky.png b/src/resources/flags/images-original/ky.png new file mode 100644 index 00000000..80bf785d Binary files /dev/null and b/src/resources/flags/images-original/ky.png differ diff --git a/src/resources/flags/images-original/kz.png b/src/resources/flags/images-original/kz.png new file mode 100755 index 00000000..436ac8a1 Binary files /dev/null and b/src/resources/flags/images-original/kz.png differ diff --git a/src/resources/flags/images-original/la.png b/src/resources/flags/images-original/la.png new file mode 100755 index 00000000..87d7fb3c Binary files /dev/null and b/src/resources/flags/images-original/la.png differ diff --git a/src/resources/flags/images-original/lb.png b/src/resources/flags/images-original/lb.png new file mode 100755 index 00000000..7d3659ab Binary files /dev/null and b/src/resources/flags/images-original/lb.png differ diff --git a/src/resources/flags/images-original/lc.png b/src/resources/flags/images-original/lc.png new file mode 100755 index 00000000..4bb0487c Binary files /dev/null and b/src/resources/flags/images-original/lc.png differ diff --git a/src/resources/flags/images-original/li.png b/src/resources/flags/images-original/li.png new file mode 100755 index 00000000..b68b433a Binary files /dev/null and b/src/resources/flags/images-original/li.png differ diff --git a/src/resources/flags/images-original/lk.png b/src/resources/flags/images-original/lk.png new file mode 100755 index 00000000..15e45c81 Binary files /dev/null and b/src/resources/flags/images-original/lk.png differ diff --git a/src/resources/flags/images-original/lr.png b/src/resources/flags/images-original/lr.png new file mode 100755 index 00000000..36948eef Binary files /dev/null and b/src/resources/flags/images-original/lr.png differ diff --git a/src/resources/flags/images-original/ls.png b/src/resources/flags/images-original/ls.png new file mode 100755 index 00000000..70cab723 Binary files /dev/null and b/src/resources/flags/images-original/ls.png differ diff --git a/src/resources/flags/images-original/lt.png b/src/resources/flags/images-original/lt.png new file mode 100755 index 00000000..80bc5805 Binary files /dev/null and b/src/resources/flags/images-original/lt.png differ diff --git a/src/resources/flags/images-original/lu.png b/src/resources/flags/images-original/lu.png new file mode 100755 index 00000000..c5c2246c Binary files /dev/null and b/src/resources/flags/images-original/lu.png differ diff --git a/src/resources/flags/images-original/lv.png b/src/resources/flags/images-original/lv.png new file mode 100755 index 00000000..75431d19 Binary files /dev/null and b/src/resources/flags/images-original/lv.png differ diff --git a/src/resources/flags/images-original/ly.png b/src/resources/flags/images-original/ly.png new file mode 100755 index 00000000..2914da29 Binary files /dev/null and b/src/resources/flags/images-original/ly.png differ diff --git a/src/resources/flags/images-original/ma.png b/src/resources/flags/images-original/ma.png new file mode 100755 index 00000000..0f751a1c Binary files /dev/null and b/src/resources/flags/images-original/ma.png differ diff --git a/src/resources/flags/images-original/mc.png b/src/resources/flags/images-original/mc.png new file mode 100755 index 00000000..3f8311b2 Binary files /dev/null and b/src/resources/flags/images-original/mc.png differ diff --git a/src/resources/flags/images-original/md.png b/src/resources/flags/images-original/md.png new file mode 100755 index 00000000..4645ae10 Binary files /dev/null and b/src/resources/flags/images-original/md.png differ diff --git a/src/resources/flags/images-original/me.png b/src/resources/flags/images-original/me.png new file mode 100755 index 00000000..941d51d4 Binary files /dev/null and b/src/resources/flags/images-original/me.png differ diff --git a/src/resources/flags/images-original/mf.png b/src/resources/flags/images-original/mf.png new file mode 100755 index 00000000..fcfa7caf Binary files /dev/null and b/src/resources/flags/images-original/mf.png differ diff --git a/src/resources/flags/images-original/mg.png b/src/resources/flags/images-original/mg.png new file mode 100755 index 00000000..43922054 Binary files /dev/null and b/src/resources/flags/images-original/mg.png differ diff --git a/src/resources/flags/images-original/mh.png b/src/resources/flags/images-original/mh.png new file mode 100755 index 00000000..8438bfa3 Binary files /dev/null and b/src/resources/flags/images-original/mh.png differ diff --git a/src/resources/flags/images-original/mk.png b/src/resources/flags/images-original/mk.png new file mode 100755 index 00000000..3c08615b Binary files /dev/null and b/src/resources/flags/images-original/mk.png differ diff --git a/src/resources/flags/images-original/ml.png b/src/resources/flags/images-original/ml.png new file mode 100755 index 00000000..ce81958a Binary files /dev/null and b/src/resources/flags/images-original/ml.png differ diff --git a/src/resources/flags/images-original/mm.png b/src/resources/flags/images-original/mm.png new file mode 100644 index 00000000..a49a3ced Binary files /dev/null and b/src/resources/flags/images-original/mm.png differ diff --git a/src/resources/flags/images-original/mn.png b/src/resources/flags/images-original/mn.png new file mode 100755 index 00000000..2771b270 Binary files /dev/null and b/src/resources/flags/images-original/mn.png differ diff --git a/src/resources/flags/images-original/mo.png b/src/resources/flags/images-original/mo.png new file mode 100644 index 00000000..2e62a9d8 Binary files /dev/null and b/src/resources/flags/images-original/mo.png differ diff --git a/src/resources/flags/images-original/mp.png b/src/resources/flags/images-original/mp.png new file mode 100644 index 00000000..98ce37bd Binary files /dev/null and b/src/resources/flags/images-original/mp.png differ diff --git a/src/resources/flags/images-original/mq.png b/src/resources/flags/images-original/mq.png new file mode 100644 index 00000000..06466b3b Binary files /dev/null and b/src/resources/flags/images-original/mq.png differ diff --git a/src/resources/flags/images-original/mr.png b/src/resources/flags/images-original/mr.png new file mode 100755 index 00000000..f4dcf1d2 Binary files /dev/null and b/src/resources/flags/images-original/mr.png differ diff --git a/src/resources/flags/images-original/ms.png b/src/resources/flags/images-original/ms.png new file mode 100644 index 00000000..163f5996 Binary files /dev/null and b/src/resources/flags/images-original/ms.png differ diff --git a/src/resources/flags/images-original/mt.png b/src/resources/flags/images-original/mt.png new file mode 100755 index 00000000..950502ab Binary files /dev/null and b/src/resources/flags/images-original/mt.png differ diff --git a/src/resources/flags/images-original/mu.png b/src/resources/flags/images-original/mu.png new file mode 100755 index 00000000..a6349637 Binary files /dev/null and b/src/resources/flags/images-original/mu.png differ diff --git a/src/resources/flags/images-original/mv.png b/src/resources/flags/images-original/mv.png new file mode 100755 index 00000000..565a4083 Binary files /dev/null and b/src/resources/flags/images-original/mv.png differ diff --git a/src/resources/flags/images-original/mw.png b/src/resources/flags/images-original/mw.png new file mode 100755 index 00000000..442dbc58 Binary files /dev/null and b/src/resources/flags/images-original/mw.png differ diff --git a/src/resources/flags/images-original/mx.png b/src/resources/flags/images-original/mx.png new file mode 100755 index 00000000..666424d1 Binary files /dev/null and b/src/resources/flags/images-original/mx.png differ diff --git a/src/resources/flags/images-original/my.png b/src/resources/flags/images-original/my.png new file mode 100755 index 00000000..215448cd Binary files /dev/null and b/src/resources/flags/images-original/my.png differ diff --git a/src/resources/flags/images-original/mz.png b/src/resources/flags/images-original/mz.png new file mode 100755 index 00000000..18e2a949 Binary files /dev/null and b/src/resources/flags/images-original/mz.png differ diff --git a/src/resources/flags/images-original/na.png b/src/resources/flags/images-original/na.png new file mode 100755 index 00000000..ca31b5d2 Binary files /dev/null and b/src/resources/flags/images-original/na.png differ diff --git a/src/resources/flags/images-original/nc.png b/src/resources/flags/images-original/nc.png new file mode 100644 index 00000000..a55d0374 Binary files /dev/null and b/src/resources/flags/images-original/nc.png differ diff --git a/src/resources/flags/images-original/ne.png b/src/resources/flags/images-original/ne.png new file mode 100755 index 00000000..e0097297 Binary files /dev/null and b/src/resources/flags/images-original/ne.png differ diff --git a/src/resources/flags/images-original/nf.png b/src/resources/flags/images-original/nf.png new file mode 100644 index 00000000..8a83dbf4 Binary files /dev/null and b/src/resources/flags/images-original/nf.png differ diff --git a/src/resources/flags/images-original/ng.png b/src/resources/flags/images-original/ng.png new file mode 100755 index 00000000..ee5775a8 Binary files /dev/null and b/src/resources/flags/images-original/ng.png differ diff --git a/src/resources/flags/images-original/ni.png b/src/resources/flags/images-original/ni.png new file mode 100755 index 00000000..2ebe882a Binary files /dev/null and b/src/resources/flags/images-original/ni.png differ diff --git a/src/resources/flags/images-original/nl.png b/src/resources/flags/images-original/nl.png new file mode 100755 index 00000000..0386cc3e Binary files /dev/null and b/src/resources/flags/images-original/nl.png differ diff --git a/src/resources/flags/images-original/no.png b/src/resources/flags/images-original/no.png new file mode 100755 index 00000000..bb2f806b Binary files /dev/null and b/src/resources/flags/images-original/no.png differ diff --git a/src/resources/flags/images-original/np.png b/src/resources/flags/images-original/np.png new file mode 100755 index 00000000..726500cc Binary files /dev/null and b/src/resources/flags/images-original/np.png differ diff --git a/src/resources/flags/images-original/nr.png b/src/resources/flags/images-original/nr.png new file mode 100755 index 00000000..65b58110 Binary files /dev/null and b/src/resources/flags/images-original/nr.png differ diff --git a/src/resources/flags/images-original/nu.png b/src/resources/flags/images-original/nu.png new file mode 100644 index 00000000..4bc2ad23 Binary files /dev/null and b/src/resources/flags/images-original/nu.png differ diff --git a/src/resources/flags/images-original/nz.png b/src/resources/flags/images-original/nz.png new file mode 100755 index 00000000..abe4acf6 Binary files /dev/null and b/src/resources/flags/images-original/nz.png differ diff --git a/src/resources/flags/images-original/om.png b/src/resources/flags/images-original/om.png new file mode 100755 index 00000000..86812676 Binary files /dev/null and b/src/resources/flags/images-original/om.png differ diff --git a/src/resources/flags/images-original/pa.png b/src/resources/flags/images-original/pa.png new file mode 100755 index 00000000..e821dee8 Binary files /dev/null and b/src/resources/flags/images-original/pa.png differ diff --git a/src/resources/flags/images-original/pe.png b/src/resources/flags/images-original/pe.png new file mode 100755 index 00000000..5af51ad7 Binary files /dev/null and b/src/resources/flags/images-original/pe.png differ diff --git a/src/resources/flags/images-original/pf.png b/src/resources/flags/images-original/pf.png new file mode 100644 index 00000000..4ecb31d9 Binary files /dev/null and b/src/resources/flags/images-original/pf.png differ diff --git a/src/resources/flags/images-original/pg.png b/src/resources/flags/images-original/pg.png new file mode 100755 index 00000000..14818457 Binary files /dev/null and b/src/resources/flags/images-original/pg.png differ diff --git a/src/resources/flags/images-original/ph.png b/src/resources/flags/images-original/ph.png new file mode 100755 index 00000000..ffa33a92 Binary files /dev/null and b/src/resources/flags/images-original/ph.png differ diff --git a/src/resources/flags/images-original/pk.png b/src/resources/flags/images-original/pk.png new file mode 100755 index 00000000..645971c5 Binary files /dev/null and b/src/resources/flags/images-original/pk.png differ diff --git a/src/resources/flags/images-original/pl.png b/src/resources/flags/images-original/pl.png new file mode 100755 index 00000000..9d4e6925 Binary files /dev/null and b/src/resources/flags/images-original/pl.png differ diff --git a/src/resources/flags/images-original/pm.png b/src/resources/flags/images-original/pm.png new file mode 100644 index 00000000..336cb210 Binary files /dev/null and b/src/resources/flags/images-original/pm.png differ diff --git a/src/resources/flags/images-original/pr.png b/src/resources/flags/images-original/pr.png new file mode 100644 index 00000000..3fc7a074 Binary files /dev/null and b/src/resources/flags/images-original/pr.png differ diff --git a/src/resources/flags/images-original/ps.png b/src/resources/flags/images-original/ps.png new file mode 100644 index 00000000..ffc7621a Binary files /dev/null and b/src/resources/flags/images-original/ps.png differ diff --git a/src/resources/flags/images-original/pt.png b/src/resources/flags/images-original/pt.png new file mode 100755 index 00000000..6526f8c1 Binary files /dev/null and b/src/resources/flags/images-original/pt.png differ diff --git a/src/resources/flags/images-original/pw.png b/src/resources/flags/images-original/pw.png new file mode 100755 index 00000000..0a91ea56 Binary files /dev/null and b/src/resources/flags/images-original/pw.png differ diff --git a/src/resources/flags/images-original/py.png b/src/resources/flags/images-original/py.png new file mode 100755 index 00000000..40dffa49 Binary files /dev/null and b/src/resources/flags/images-original/py.png differ diff --git a/src/resources/flags/images-original/qa.png b/src/resources/flags/images-original/qa.png new file mode 100755 index 00000000..9cf00683 Binary files /dev/null and b/src/resources/flags/images-original/qa.png differ diff --git a/src/resources/flags/images-original/re.png b/src/resources/flags/images-original/re.png new file mode 100644 index 00000000..1dc648e7 Binary files /dev/null and b/src/resources/flags/images-original/re.png differ diff --git a/src/resources/flags/images-original/ro.png b/src/resources/flags/images-original/ro.png new file mode 100755 index 00000000..0bee8d1a Binary files /dev/null and b/src/resources/flags/images-original/ro.png differ diff --git a/src/resources/flags/images-original/rs.png b/src/resources/flags/images-original/rs.png new file mode 100755 index 00000000..19fd38a6 Binary files /dev/null and b/src/resources/flags/images-original/rs.png differ diff --git a/src/resources/flags/images-original/ru.png b/src/resources/flags/images-original/ru.png new file mode 100755 index 00000000..66741a4d Binary files /dev/null and b/src/resources/flags/images-original/ru.png differ diff --git a/src/resources/flags/images-original/rw.png b/src/resources/flags/images-original/rw.png new file mode 100755 index 00000000..24080d6d Binary files /dev/null and b/src/resources/flags/images-original/rw.png differ diff --git a/src/resources/flags/images-original/sa.png b/src/resources/flags/images-original/sa.png new file mode 100755 index 00000000..66dadb5b Binary files /dev/null and b/src/resources/flags/images-original/sa.png differ diff --git a/src/resources/flags/images-original/sb.png b/src/resources/flags/images-original/sb.png new file mode 100755 index 00000000..97e0fc7c Binary files /dev/null and b/src/resources/flags/images-original/sb.png differ diff --git a/src/resources/flags/images-original/sc.png b/src/resources/flags/images-original/sc.png new file mode 100755 index 00000000..76863735 Binary files /dev/null and b/src/resources/flags/images-original/sc.png differ diff --git a/src/resources/flags/images-original/sd.png b/src/resources/flags/images-original/sd.png new file mode 100755 index 00000000..9a6f886d Binary files /dev/null and b/src/resources/flags/images-original/sd.png differ diff --git a/src/resources/flags/images-original/se.png b/src/resources/flags/images-original/se.png new file mode 100755 index 00000000..59595199 Binary files /dev/null and b/src/resources/flags/images-original/se.png differ diff --git a/src/resources/flags/images-original/sg.png b/src/resources/flags/images-original/sg.png new file mode 100755 index 00000000..8ba42209 Binary files /dev/null and b/src/resources/flags/images-original/sg.png differ diff --git a/src/resources/flags/images-original/sh.png b/src/resources/flags/images-original/sh.png new file mode 100644 index 00000000..d4c97406 Binary files /dev/null and b/src/resources/flags/images-original/sh.png differ diff --git a/src/resources/flags/images-original/si.png b/src/resources/flags/images-original/si.png new file mode 100755 index 00000000..3b751344 Binary files /dev/null and b/src/resources/flags/images-original/si.png differ diff --git a/src/resources/flags/images-original/sj.png b/src/resources/flags/images-original/sj.png new file mode 100755 index 00000000..bb2f806b Binary files /dev/null and b/src/resources/flags/images-original/sj.png differ diff --git a/src/resources/flags/images-original/sk.png b/src/resources/flags/images-original/sk.png new file mode 100755 index 00000000..0769397a Binary files /dev/null and b/src/resources/flags/images-original/sk.png differ diff --git a/src/resources/flags/images-original/sl.png b/src/resources/flags/images-original/sl.png new file mode 100755 index 00000000..96cddd4f Binary files /dev/null and b/src/resources/flags/images-original/sl.png differ diff --git a/src/resources/flags/images-original/sm.png b/src/resources/flags/images-original/sm.png new file mode 100755 index 00000000..4ee071c2 Binary files /dev/null and b/src/resources/flags/images-original/sm.png differ diff --git a/src/resources/flags/images-original/sn.png b/src/resources/flags/images-original/sn.png new file mode 100755 index 00000000..9415c60e Binary files /dev/null and b/src/resources/flags/images-original/sn.png differ diff --git a/src/resources/flags/images-original/so.png b/src/resources/flags/images-original/so.png new file mode 100755 index 00000000..93a7fdc9 Binary files /dev/null and b/src/resources/flags/images-original/so.png differ diff --git a/src/resources/flags/images-original/sr.png b/src/resources/flags/images-original/sr.png new file mode 100755 index 00000000..47092d9e Binary files /dev/null and b/src/resources/flags/images-original/sr.png differ diff --git a/src/resources/flags/images-original/ss.png b/src/resources/flags/images-original/ss.png new file mode 100644 index 00000000..e5f2259d Binary files /dev/null and b/src/resources/flags/images-original/ss.png differ diff --git a/src/resources/flags/images-original/st.png b/src/resources/flags/images-original/st.png new file mode 100755 index 00000000..85f7d386 Binary files /dev/null and b/src/resources/flags/images-original/st.png differ diff --git a/src/resources/flags/images-original/sv.png b/src/resources/flags/images-original/sv.png new file mode 100755 index 00000000..97795729 Binary files /dev/null and b/src/resources/flags/images-original/sv.png differ diff --git a/src/resources/flags/images-original/sx.png b/src/resources/flags/images-original/sx.png new file mode 100644 index 00000000..ec17c244 Binary files /dev/null and b/src/resources/flags/images-original/sx.png differ diff --git a/src/resources/flags/images-original/sy.png b/src/resources/flags/images-original/sy.png new file mode 100755 index 00000000..a80b6b11 Binary files /dev/null and b/src/resources/flags/images-original/sy.png differ diff --git a/src/resources/flags/images-original/sz.png b/src/resources/flags/images-original/sz.png new file mode 100755 index 00000000..89337677 Binary files /dev/null and b/src/resources/flags/images-original/sz.png differ diff --git a/src/resources/flags/images-original/tc.png b/src/resources/flags/images-original/tc.png new file mode 100644 index 00000000..5f5c2449 Binary files /dev/null and b/src/resources/flags/images-original/tc.png differ diff --git a/src/resources/flags/images-original/td.png b/src/resources/flags/images-original/td.png new file mode 100755 index 00000000..41f123b5 Binary files /dev/null and b/src/resources/flags/images-original/td.png differ diff --git a/src/resources/flags/images-original/tg.png b/src/resources/flags/images-original/tg.png new file mode 100755 index 00000000..a4a1d9f9 Binary files /dev/null and b/src/resources/flags/images-original/tg.png differ diff --git a/src/resources/flags/images-original/th.png b/src/resources/flags/images-original/th.png new file mode 100755 index 00000000..f0f7207d Binary files /dev/null and b/src/resources/flags/images-original/th.png differ diff --git a/src/resources/flags/images-original/tj.png b/src/resources/flags/images-original/tj.png new file mode 100755 index 00000000..682b5e0f Binary files /dev/null and b/src/resources/flags/images-original/tj.png differ diff --git a/src/resources/flags/images-original/tk.png b/src/resources/flags/images-original/tk.png new file mode 100644 index 00000000..24b93302 Binary files /dev/null and b/src/resources/flags/images-original/tk.png differ diff --git a/src/resources/flags/images-original/tl.png b/src/resources/flags/images-original/tl.png new file mode 100755 index 00000000..8a98e900 Binary files /dev/null and b/src/resources/flags/images-original/tl.png differ diff --git a/src/resources/flags/images-original/tm.png b/src/resources/flags/images-original/tm.png new file mode 100755 index 00000000..58567c81 Binary files /dev/null and b/src/resources/flags/images-original/tm.png differ diff --git a/src/resources/flags/images-original/tn.png b/src/resources/flags/images-original/tn.png new file mode 100755 index 00000000..db4951a6 Binary files /dev/null and b/src/resources/flags/images-original/tn.png differ diff --git a/src/resources/flags/images-original/to.png b/src/resources/flags/images-original/to.png new file mode 100755 index 00000000..95b78ce2 Binary files /dev/null and b/src/resources/flags/images-original/to.png differ diff --git a/src/resources/flags/images-original/tr.png b/src/resources/flags/images-original/tr.png new file mode 100755 index 00000000..95d0c871 Binary files /dev/null and b/src/resources/flags/images-original/tr.png differ diff --git a/src/resources/flags/images-original/tt.png b/src/resources/flags/images-original/tt.png new file mode 100755 index 00000000..39a4af42 Binary files /dev/null and b/src/resources/flags/images-original/tt.png differ diff --git a/src/resources/flags/images-original/tv.png b/src/resources/flags/images-original/tv.png new file mode 100755 index 00000000..6bfe412e Binary files /dev/null and b/src/resources/flags/images-original/tv.png differ diff --git a/src/resources/flags/images-original/tw.png b/src/resources/flags/images-original/tw.png new file mode 100755 index 00000000..80e07d81 Binary files /dev/null and b/src/resources/flags/images-original/tw.png differ diff --git a/src/resources/flags/images-original/tz.png b/src/resources/flags/images-original/tz.png new file mode 100755 index 00000000..446ecb4f Binary files /dev/null and b/src/resources/flags/images-original/tz.png differ diff --git a/src/resources/flags/images-original/ua.png b/src/resources/flags/images-original/ua.png new file mode 100755 index 00000000..00234794 Binary files /dev/null and b/src/resources/flags/images-original/ua.png differ diff --git a/src/resources/flags/images-original/ug.png b/src/resources/flags/images-original/ug.png new file mode 100755 index 00000000..cdcab6a1 Binary files /dev/null and b/src/resources/flags/images-original/ug.png differ diff --git a/src/resources/flags/images-original/us.png b/src/resources/flags/images-original/us.png new file mode 100755 index 00000000..5b96ff24 Binary files /dev/null and b/src/resources/flags/images-original/us.png differ diff --git a/src/resources/flags/images-original/uy.png b/src/resources/flags/images-original/uy.png new file mode 100755 index 00000000..219ef44a Binary files /dev/null and b/src/resources/flags/images-original/uy.png differ diff --git a/src/resources/flags/images-original/uz.png b/src/resources/flags/images-original/uz.png new file mode 100755 index 00000000..80e0a446 Binary files /dev/null and b/src/resources/flags/images-original/uz.png differ diff --git a/src/resources/flags/images-original/va.png b/src/resources/flags/images-original/va.png new file mode 100755 index 00000000..c94c81dd Binary files /dev/null and b/src/resources/flags/images-original/va.png differ diff --git a/src/resources/flags/images-original/vc.png b/src/resources/flags/images-original/vc.png new file mode 100755 index 00000000..77196ed9 Binary files /dev/null and b/src/resources/flags/images-original/vc.png differ diff --git a/src/resources/flags/images-original/ve.png b/src/resources/flags/images-original/ve.png new file mode 100755 index 00000000..40ae68eb Binary files /dev/null and b/src/resources/flags/images-original/ve.png differ diff --git a/src/resources/flags/images-original/vg.png b/src/resources/flags/images-original/vg.png new file mode 100644 index 00000000..4de2078b Binary files /dev/null and b/src/resources/flags/images-original/vg.png differ diff --git a/src/resources/flags/images-original/vi.png b/src/resources/flags/images-original/vi.png new file mode 100644 index 00000000..a4bd67cb Binary files /dev/null and b/src/resources/flags/images-original/vi.png differ diff --git a/src/resources/flags/images-original/vn.png b/src/resources/flags/images-original/vn.png new file mode 100755 index 00000000..d6838523 Binary files /dev/null and b/src/resources/flags/images-original/vn.png differ diff --git a/src/resources/flags/images-original/vu.png b/src/resources/flags/images-original/vu.png new file mode 100755 index 00000000..e1ad764e Binary files /dev/null and b/src/resources/flags/images-original/vu.png differ diff --git a/src/resources/flags/images-original/wf.png b/src/resources/flags/images-original/wf.png new file mode 100644 index 00000000..c3c5a9e8 Binary files /dev/null and b/src/resources/flags/images-original/wf.png differ diff --git a/src/resources/flags/images-original/ws.png b/src/resources/flags/images-original/ws.png new file mode 100755 index 00000000..71db01fa Binary files /dev/null and b/src/resources/flags/images-original/ws.png differ diff --git a/src/resources/flags/images-original/xk.png b/src/resources/flags/images-original/xk.png new file mode 100644 index 00000000..b330fdf5 Binary files /dev/null and b/src/resources/flags/images-original/xk.png differ diff --git a/src/resources/flags/images-original/ye.png b/src/resources/flags/images-original/ye.png new file mode 100755 index 00000000..3a2e0a2b Binary files /dev/null and b/src/resources/flags/images-original/ye.png differ diff --git a/src/resources/flags/images-original/yt.png b/src/resources/flags/images-original/yt.png new file mode 100755 index 00000000..fcfa7caf Binary files /dev/null and b/src/resources/flags/images-original/yt.png differ diff --git a/src/resources/flags/images-original/za.png b/src/resources/flags/images-original/za.png new file mode 100755 index 00000000..535fe710 Binary files /dev/null and b/src/resources/flags/images-original/za.png differ diff --git a/src/resources/flags/images-original/zm.png b/src/resources/flags/images-original/zm.png new file mode 100755 index 00000000..7b0246a8 Binary files /dev/null and b/src/resources/flags/images-original/zm.png differ diff --git a/src/resources/flags/images-original/zw.png b/src/resources/flags/images-original/zw.png new file mode 100755 index 00000000..abf13869 Binary files /dev/null and b/src/resources/flags/images-original/zw.png differ diff --git a/src/resources/flags/images/ad.png b/src/resources/flags/images/ad.png old mode 100755 new mode 100644 index 886752f6..966a5046 Binary files a/src/resources/flags/images/ad.png and b/src/resources/flags/images/ad.png differ diff --git a/src/resources/flags/images/ae.png b/src/resources/flags/images/ae.png old mode 100755 new mode 100644 index a253cd2d..8d839a97 Binary files a/src/resources/flags/images/ae.png and b/src/resources/flags/images/ae.png differ diff --git a/src/resources/flags/images/af.png b/src/resources/flags/images/af.png old mode 100755 new mode 100644 index 6ae08810..2751b7c2 Binary files a/src/resources/flags/images/af.png and b/src/resources/flags/images/af.png differ diff --git a/src/resources/flags/images/ag.png b/src/resources/flags/images/ag.png old mode 100755 new mode 100644 index ee529d2b..1e5df7b2 Binary files a/src/resources/flags/images/ag.png and b/src/resources/flags/images/ag.png differ diff --git a/src/resources/flags/images/ai.png b/src/resources/flags/images/ai.png index a598c566..e80f1dc8 100644 Binary files a/src/resources/flags/images/ai.png and b/src/resources/flags/images/ai.png differ diff --git a/src/resources/flags/images/al.png b/src/resources/flags/images/al.png old mode 100755 new mode 100644 index 4b59dfbd..2551d3d6 Binary files a/src/resources/flags/images/al.png and b/src/resources/flags/images/al.png differ diff --git a/src/resources/flags/images/am.png b/src/resources/flags/images/am.png old mode 100755 new mode 100644 index 41b497a3..8438429a Binary files a/src/resources/flags/images/am.png and b/src/resources/flags/images/am.png differ diff --git a/src/resources/flags/images/ao.png b/src/resources/flags/images/ao.png old mode 100755 new mode 100644 index f5ff2374..2b55ade4 Binary files a/src/resources/flags/images/ao.png and b/src/resources/flags/images/ao.png differ diff --git a/src/resources/flags/images/ar.png b/src/resources/flags/images/ar.png old mode 100755 new mode 100644 index 0b25d9cb..510cc20d Binary files a/src/resources/flags/images/ar.png and b/src/resources/flags/images/ar.png differ diff --git a/src/resources/flags/images/as.png b/src/resources/flags/images/as.png index 1b571007..9daf765a 100644 Binary files a/src/resources/flags/images/as.png and b/src/resources/flags/images/as.png differ diff --git a/src/resources/flags/images/at.png b/src/resources/flags/images/at.png old mode 100755 new mode 100644 index 75646bab..11727aa4 Binary files a/src/resources/flags/images/at.png and b/src/resources/flags/images/at.png differ diff --git a/src/resources/flags/images/au.png b/src/resources/flags/images/au.png old mode 100755 new mode 100644 index f2572d72..af786d93 Binary files a/src/resources/flags/images/au.png and b/src/resources/flags/images/au.png differ diff --git a/src/resources/flags/images/aw.png b/src/resources/flags/images/aw.png index a72bfddc..c5ca2bd5 100644 Binary files a/src/resources/flags/images/aw.png and b/src/resources/flags/images/aw.png differ diff --git a/src/resources/flags/images/ax.png b/src/resources/flags/images/ax.png index d78ff2e3..1eed3b63 100644 Binary files a/src/resources/flags/images/ax.png and b/src/resources/flags/images/ax.png differ diff --git a/src/resources/flags/images/az.png b/src/resources/flags/images/az.png old mode 100755 new mode 100644 index f639aefd..ea70b978 Binary files a/src/resources/flags/images/az.png and b/src/resources/flags/images/az.png differ diff --git a/src/resources/flags/images/ba.png b/src/resources/flags/images/ba.png old mode 100755 new mode 100644 index a4ac356d..3ea10eb0 Binary files a/src/resources/flags/images/ba.png and b/src/resources/flags/images/ba.png differ diff --git a/src/resources/flags/images/bb.png b/src/resources/flags/images/bb.png old mode 100755 new mode 100644 index 2bf58e69..5237aa69 Binary files a/src/resources/flags/images/bb.png and b/src/resources/flags/images/bb.png differ diff --git a/src/resources/flags/images/bd.png b/src/resources/flags/images/bd.png old mode 100755 new mode 100644 index e9872d15..fdd7e369 Binary files a/src/resources/flags/images/bd.png and b/src/resources/flags/images/bd.png differ diff --git a/src/resources/flags/images/be.png b/src/resources/flags/images/be.png old mode 100755 new mode 100644 index 5d1b8325..9c23ab3e Binary files a/src/resources/flags/images/be.png and b/src/resources/flags/images/be.png differ diff --git a/src/resources/flags/images/bf.png b/src/resources/flags/images/bf.png old mode 100755 new mode 100644 index 5172dbfb..8633da8e Binary files a/src/resources/flags/images/bf.png and b/src/resources/flags/images/bf.png differ diff --git a/src/resources/flags/images/bg.png b/src/resources/flags/images/bg.png old mode 100755 new mode 100644 index d78308df..df33a4bc Binary files a/src/resources/flags/images/bg.png and b/src/resources/flags/images/bg.png differ diff --git a/src/resources/flags/images/bh.png b/src/resources/flags/images/bh.png old mode 100755 new mode 100644 index 5e247e7a..4a7eb323 Binary files a/src/resources/flags/images/bh.png and b/src/resources/flags/images/bh.png differ diff --git a/src/resources/flags/images/bi.png b/src/resources/flags/images/bi.png old mode 100755 new mode 100644 index 26186437..d76590a4 Binary files a/src/resources/flags/images/bi.png and b/src/resources/flags/images/bi.png differ diff --git a/src/resources/flags/images/bj.png b/src/resources/flags/images/bj.png old mode 100755 new mode 100644 index 20e281f2..1c4a69c1 Binary files a/src/resources/flags/images/bj.png and b/src/resources/flags/images/bj.png differ diff --git a/src/resources/flags/images/bl.png b/src/resources/flags/images/bl.png index a4938528..038b9d2f 100644 Binary files a/src/resources/flags/images/bl.png and b/src/resources/flags/images/bl.png differ diff --git a/src/resources/flags/images/bm.png b/src/resources/flags/images/bm.png index 29a8532a..f39d440b 100644 Binary files a/src/resources/flags/images/bm.png and b/src/resources/flags/images/bm.png differ diff --git a/src/resources/flags/images/bn.png b/src/resources/flags/images/bn.png old mode 100755 new mode 100644 index b4a3e60e..a6f333e3 Binary files a/src/resources/flags/images/bn.png and b/src/resources/flags/images/bn.png differ diff --git a/src/resources/flags/images/bo.png b/src/resources/flags/images/bo.png old mode 100755 new mode 100644 index 342267cb..274bc165 Binary files a/src/resources/flags/images/bo.png and b/src/resources/flags/images/bo.png differ diff --git a/src/resources/flags/images/bq.png b/src/resources/flags/images/bq.png old mode 100755 new mode 100644 index 0386cc3e..0930cce1 Binary files a/src/resources/flags/images/bq.png and b/src/resources/flags/images/bq.png differ diff --git a/src/resources/flags/images/br.png b/src/resources/flags/images/br.png old mode 100755 new mode 100644 index 43725657..34ccb941 Binary files a/src/resources/flags/images/br.png and b/src/resources/flags/images/br.png differ diff --git a/src/resources/flags/images/bs.png b/src/resources/flags/images/bs.png old mode 100755 new mode 100644 index 1bbb1d8f..2934f7df Binary files a/src/resources/flags/images/bs.png and b/src/resources/flags/images/bs.png differ diff --git a/src/resources/flags/images/bt.png b/src/resources/flags/images/bt.png old mode 100755 new mode 100644 index cd4c8539..6372182e Binary files a/src/resources/flags/images/bt.png and b/src/resources/flags/images/bt.png differ diff --git a/src/resources/flags/images/bw.png b/src/resources/flags/images/bw.png old mode 100755 new mode 100644 index 555d80b3..c1f71c0d Binary files a/src/resources/flags/images/bw.png and b/src/resources/flags/images/bw.png differ diff --git a/src/resources/flags/images/by.png b/src/resources/flags/images/by.png old mode 100755 new mode 100644 index 0dc31020..5b06d5cc Binary files a/src/resources/flags/images/by.png and b/src/resources/flags/images/by.png differ diff --git a/src/resources/flags/images/bz.png b/src/resources/flags/images/bz.png old mode 100755 new mode 100644 index 3b6c39e6..6abd9aa7 Binary files a/src/resources/flags/images/bz.png and b/src/resources/flags/images/bz.png differ diff --git a/src/resources/flags/images/ca.png b/src/resources/flags/images/ca.png old mode 100755 new mode 100644 index c939b041..aa8de065 Binary files a/src/resources/flags/images/ca.png and b/src/resources/flags/images/ca.png differ diff --git a/src/resources/flags/images/cc.png b/src/resources/flags/images/cc.png index fa52dba8..25fb9eeb 100644 Binary files a/src/resources/flags/images/cc.png and b/src/resources/flags/images/cc.png differ diff --git a/src/resources/flags/images/cd.png b/src/resources/flags/images/cd.png old mode 100755 new mode 100644 index 44043fac..86172bfe Binary files a/src/resources/flags/images/cd.png and b/src/resources/flags/images/cd.png differ diff --git a/src/resources/flags/images/cf.png b/src/resources/flags/images/cf.png old mode 100755 new mode 100644 index 5b7cb225..9d075b11 Binary files a/src/resources/flags/images/cf.png and b/src/resources/flags/images/cf.png differ diff --git a/src/resources/flags/images/cg.png b/src/resources/flags/images/cg.png old mode 100755 new mode 100644 index 2d7ce4c0..be569ec6 Binary files a/src/resources/flags/images/cg.png and b/src/resources/flags/images/cg.png differ diff --git a/src/resources/flags/images/ch.png b/src/resources/flags/images/ch.png old mode 100755 new mode 100644 index 5fe151ca..05c7d148 Binary files a/src/resources/flags/images/ch.png and b/src/resources/flags/images/ch.png differ diff --git a/src/resources/flags/images/ci.png b/src/resources/flags/images/ci.png old mode 100755 new mode 100644 index 0534124c..9a72b2f9 Binary files a/src/resources/flags/images/ci.png and b/src/resources/flags/images/ci.png differ diff --git a/src/resources/flags/images/ck.png b/src/resources/flags/images/ck.png index e45cb390..58273709 100644 Binary files a/src/resources/flags/images/ck.png and b/src/resources/flags/images/ck.png differ diff --git a/src/resources/flags/images/cl.png b/src/resources/flags/images/cl.png old mode 100755 new mode 100644 index af74ffc9..cf739e77 Binary files a/src/resources/flags/images/cl.png and b/src/resources/flags/images/cl.png differ diff --git a/src/resources/flags/images/cm.png b/src/resources/flags/images/cm.png old mode 100755 new mode 100644 index b33c8115..60dbd98d Binary files a/src/resources/flags/images/cm.png and b/src/resources/flags/images/cm.png differ diff --git a/src/resources/flags/images/cn.png b/src/resources/flags/images/cn.png old mode 100755 new mode 100644 index d31bab71..6be2c29a Binary files a/src/resources/flags/images/cn.png and b/src/resources/flags/images/cn.png differ diff --git a/src/resources/flags/images/co.png b/src/resources/flags/images/co.png old mode 100755 new mode 100644 index b6aae55c..525f48e9 Binary files a/src/resources/flags/images/co.png and b/src/resources/flags/images/co.png differ diff --git a/src/resources/flags/images/cr.png b/src/resources/flags/images/cr.png old mode 100755 new mode 100644 index 9c92f6de..444a3d46 Binary files a/src/resources/flags/images/cr.png and b/src/resources/flags/images/cr.png differ diff --git a/src/resources/flags/images/cu.png b/src/resources/flags/images/cu.png old mode 100755 new mode 100644 index f21090e2..1fdc31ac Binary files a/src/resources/flags/images/cu.png and b/src/resources/flags/images/cu.png differ diff --git a/src/resources/flags/images/cv.png b/src/resources/flags/images/cv.png old mode 100755 new mode 100644 index 6eeae62b..44dfeacf Binary files a/src/resources/flags/images/cv.png and b/src/resources/flags/images/cv.png differ diff --git a/src/resources/flags/images/cw.png b/src/resources/flags/images/cw.png index c38132ce..0ff72ba7 100644 Binary files a/src/resources/flags/images/cw.png and b/src/resources/flags/images/cw.png differ diff --git a/src/resources/flags/images/cx.png b/src/resources/flags/images/cx.png index 9a3e367c..2af3dead 100644 Binary files a/src/resources/flags/images/cx.png and b/src/resources/flags/images/cx.png differ diff --git a/src/resources/flags/images/cy.png b/src/resources/flags/images/cy.png old mode 100755 new mode 100644 index 55446041..a1a306b7 Binary files a/src/resources/flags/images/cy.png and b/src/resources/flags/images/cy.png differ diff --git a/src/resources/flags/images/cz.png b/src/resources/flags/images/cz.png old mode 100755 new mode 100644 index 4fc3adb5..35d8e7a5 Binary files a/src/resources/flags/images/cz.png and b/src/resources/flags/images/cz.png differ diff --git a/src/resources/flags/images/de.png b/src/resources/flags/images/de.png old mode 100755 new mode 100644 index eea2e58b..5ba6a693 Binary files a/src/resources/flags/images/de.png and b/src/resources/flags/images/de.png differ diff --git a/src/resources/flags/images/dj.png b/src/resources/flags/images/dj.png old mode 100755 new mode 100644 index dbc95d77..2f4cb447 Binary files a/src/resources/flags/images/dj.png and b/src/resources/flags/images/dj.png differ diff --git a/src/resources/flags/images/dk.png b/src/resources/flags/images/dk.png old mode 100755 new mode 100644 index e3471d34..ba318b02 Binary files a/src/resources/flags/images/dk.png and b/src/resources/flags/images/dk.png differ diff --git a/src/resources/flags/images/dm.png b/src/resources/flags/images/dm.png old mode 100755 new mode 100644 index a158c88f..f404b705 Binary files a/src/resources/flags/images/dm.png and b/src/resources/flags/images/dm.png differ diff --git a/src/resources/flags/images/do.png b/src/resources/flags/images/do.png old mode 100755 new mode 100644 index 81fa5e8b..3812a5b9 Binary files a/src/resources/flags/images/do.png and b/src/resources/flags/images/do.png differ diff --git a/src/resources/flags/images/dz.png b/src/resources/flags/images/dz.png old mode 100755 new mode 100644 index b2768bcc..e412b2a9 Binary files a/src/resources/flags/images/dz.png and b/src/resources/flags/images/dz.png differ diff --git a/src/resources/flags/images/ec.png b/src/resources/flags/images/ec.png old mode 100755 new mode 100644 index 27fe8115..26ff5c8b Binary files a/src/resources/flags/images/ec.png and b/src/resources/flags/images/ec.png differ diff --git a/src/resources/flags/images/ee.png b/src/resources/flags/images/ee.png old mode 100755 new mode 100644 index 21b4b72d..e5a05ae3 Binary files a/src/resources/flags/images/ee.png and b/src/resources/flags/images/ee.png differ diff --git a/src/resources/flags/images/eg.png b/src/resources/flags/images/eg.png old mode 100755 new mode 100644 index d98e5d3a..c5f6a888 Binary files a/src/resources/flags/images/eg.png and b/src/resources/flags/images/eg.png differ diff --git a/src/resources/flags/images/eh.png b/src/resources/flags/images/eh.png old mode 100755 new mode 100644 index cf451799..f51c9c5c Binary files a/src/resources/flags/images/eh.png and b/src/resources/flags/images/eh.png differ diff --git a/src/resources/flags/images/er.png b/src/resources/flags/images/er.png old mode 100755 new mode 100644 index 3f88fc52..e9b30fb2 Binary files a/src/resources/flags/images/er.png and b/src/resources/flags/images/er.png differ diff --git a/src/resources/flags/images/es.png b/src/resources/flags/images/es.png old mode 100755 new mode 100644 index f589a835..4769014c Binary files a/src/resources/flags/images/es.png and b/src/resources/flags/images/es.png differ diff --git a/src/resources/flags/images/et.png b/src/resources/flags/images/et.png old mode 100755 new mode 100644 index d759c2fd..408fd474 Binary files a/src/resources/flags/images/et.png and b/src/resources/flags/images/et.png differ diff --git a/src/resources/flags/images/fi.png b/src/resources/flags/images/fi.png old mode 100755 new mode 100644 index 2bcb6a55..f3c72c9b Binary files a/src/resources/flags/images/fi.png and b/src/resources/flags/images/fi.png differ diff --git a/src/resources/flags/images/fj.png b/src/resources/flags/images/fj.png old mode 100755 new mode 100644 index 7aef415f..557e2055 Binary files a/src/resources/flags/images/fj.png and b/src/resources/flags/images/fj.png differ diff --git a/src/resources/flags/images/fk.png b/src/resources/flags/images/fk.png index 7b59f8c1..596b9b11 100644 Binary files a/src/resources/flags/images/fk.png and b/src/resources/flags/images/fk.png differ diff --git a/src/resources/flags/images/fm.png b/src/resources/flags/images/fm.png old mode 100755 new mode 100644 index 1dfbdffe..6c9e2dc3 Binary files a/src/resources/flags/images/fm.png and b/src/resources/flags/images/fm.png differ diff --git a/src/resources/flags/images/fo.png b/src/resources/flags/images/fo.png index e2ca151a..ab44751e 100644 Binary files a/src/resources/flags/images/fo.png and b/src/resources/flags/images/fo.png differ diff --git a/src/resources/flags/images/fr.png b/src/resources/flags/images/fr.png old mode 100755 new mode 100644 index fcfa7caf..aefc38f9 Binary files a/src/resources/flags/images/fr.png and b/src/resources/flags/images/fr.png differ diff --git a/src/resources/flags/images/ga.png b/src/resources/flags/images/ga.png old mode 100755 new mode 100644 index 2dc5f0fc..b6db7ed4 Binary files a/src/resources/flags/images/ga.png and b/src/resources/flags/images/ga.png differ diff --git a/src/resources/flags/images/gb.png b/src/resources/flags/images/gb.png old mode 100755 new mode 100644 index f1e0e126..86a314e7 Binary files a/src/resources/flags/images/gb.png and b/src/resources/flags/images/gb.png differ diff --git a/src/resources/flags/images/gd.png b/src/resources/flags/images/gd.png old mode 100755 new mode 100644 index 5e3ed13b..20775207 Binary files a/src/resources/flags/images/gd.png and b/src/resources/flags/images/gd.png differ diff --git a/src/resources/flags/images/ge.png b/src/resources/flags/images/ge.png old mode 100755 new mode 100644 index cd5b75de..f10f8400 Binary files a/src/resources/flags/images/ge.png and b/src/resources/flags/images/ge.png differ diff --git a/src/resources/flags/images/gf.png b/src/resources/flags/images/gf.png index fb15b809..4c468c0d 100644 Binary files a/src/resources/flags/images/gf.png and b/src/resources/flags/images/gf.png differ diff --git a/src/resources/flags/images/gg.png b/src/resources/flags/images/gg.png index 1cf113d4..5163f438 100644 Binary files a/src/resources/flags/images/gg.png and b/src/resources/flags/images/gg.png differ diff --git a/src/resources/flags/images/gh.png b/src/resources/flags/images/gh.png old mode 100755 new mode 100644 index a7b60ce7..17b08ddd Binary files a/src/resources/flags/images/gh.png and b/src/resources/flags/images/gh.png differ diff --git a/src/resources/flags/images/gi.png b/src/resources/flags/images/gi.png index 74fae09c..29374ffb 100644 Binary files a/src/resources/flags/images/gi.png and b/src/resources/flags/images/gi.png differ diff --git a/src/resources/flags/images/gl.png b/src/resources/flags/images/gl.png index fbdbf985..7c00af0f 100644 Binary files a/src/resources/flags/images/gl.png and b/src/resources/flags/images/gl.png differ diff --git a/src/resources/flags/images/gm.png b/src/resources/flags/images/gm.png old mode 100755 new mode 100644 index ca440bb6..83ac1b22 Binary files a/src/resources/flags/images/gm.png and b/src/resources/flags/images/gm.png differ diff --git a/src/resources/flags/images/gn.png b/src/resources/flags/images/gn.png old mode 100755 new mode 100644 index 0740a3fc..cbb10341 Binary files a/src/resources/flags/images/gn.png and b/src/resources/flags/images/gn.png differ diff --git a/src/resources/flags/images/gp.png b/src/resources/flags/images/gp.png index 3223f1a3..6b2fa7f8 100644 Binary files a/src/resources/flags/images/gp.png and b/src/resources/flags/images/gp.png differ diff --git a/src/resources/flags/images/gq.png b/src/resources/flags/images/gq.png old mode 100755 new mode 100644 index bc9c8c46..4a56ece3 Binary files a/src/resources/flags/images/gq.png and b/src/resources/flags/images/gq.png differ diff --git a/src/resources/flags/images/gr.png b/src/resources/flags/images/gr.png old mode 100755 new mode 100644 index ec65864a..d5a54d27 Binary files a/src/resources/flags/images/gr.png and b/src/resources/flags/images/gr.png differ diff --git a/src/resources/flags/images/gt.png b/src/resources/flags/images/gt.png old mode 100755 new mode 100644 index 3c7cee7d..fb6523e4 Binary files a/src/resources/flags/images/gt.png and b/src/resources/flags/images/gt.png differ diff --git a/src/resources/flags/images/gu.png b/src/resources/flags/images/gu.png index c7e586f3..9161bf9d 100644 Binary files a/src/resources/flags/images/gu.png and b/src/resources/flags/images/gu.png differ diff --git a/src/resources/flags/images/gw.png b/src/resources/flags/images/gw.png old mode 100755 new mode 100644 index 515d457f..8c49c10d Binary files a/src/resources/flags/images/gw.png and b/src/resources/flags/images/gw.png differ diff --git a/src/resources/flags/images/gy.png b/src/resources/flags/images/gy.png old mode 100755 new mode 100644 index 6c3e6733..db9332a2 Binary files a/src/resources/flags/images/gy.png and b/src/resources/flags/images/gy.png differ diff --git a/src/resources/flags/images/hk.png b/src/resources/flags/images/hk.png index d7bbe5a2..1f407c74 100644 Binary files a/src/resources/flags/images/hk.png and b/src/resources/flags/images/hk.png differ diff --git a/src/resources/flags/images/hn.png b/src/resources/flags/images/hn.png old mode 100755 new mode 100644 index ee1d1028..696a6995 Binary files a/src/resources/flags/images/hn.png and b/src/resources/flags/images/hn.png differ diff --git a/src/resources/flags/images/hr.png b/src/resources/flags/images/hr.png old mode 100755 new mode 100644 index 2dae8a8a..8e605203 Binary files a/src/resources/flags/images/hr.png and b/src/resources/flags/images/hr.png differ diff --git a/src/resources/flags/images/ht.png b/src/resources/flags/images/ht.png old mode 100755 new mode 100644 index 2e15f899..e3c5d4aa Binary files a/src/resources/flags/images/ht.png and b/src/resources/flags/images/ht.png differ diff --git a/src/resources/flags/images/hu.png b/src/resources/flags/images/hu.png old mode 100755 new mode 100644 index c1c028ec..237e7b52 Binary files a/src/resources/flags/images/hu.png and b/src/resources/flags/images/hu.png differ diff --git a/src/resources/flags/images/id.png b/src/resources/flags/images/id.png old mode 100755 new mode 100644 index 619215da..2cb99619 Binary files a/src/resources/flags/images/id.png and b/src/resources/flags/images/id.png differ diff --git a/src/resources/flags/images/ie.png b/src/resources/flags/images/ie.png old mode 100755 new mode 100644 index 3881ba34..3789bc7f Binary files a/src/resources/flags/images/ie.png and b/src/resources/flags/images/ie.png differ diff --git a/src/resources/flags/images/il.png b/src/resources/flags/images/il.png old mode 100755 new mode 100644 index 33fc90c2..f76d2cb9 Binary files a/src/resources/flags/images/il.png and b/src/resources/flags/images/il.png differ diff --git a/src/resources/flags/images/im.png b/src/resources/flags/images/im.png index a7a52cfa..b04213b5 100644 Binary files a/src/resources/flags/images/im.png and b/src/resources/flags/images/im.png differ diff --git a/src/resources/flags/images/in.png b/src/resources/flags/images/in.png old mode 100755 new mode 100644 index 2f06567b..ca1652bb Binary files a/src/resources/flags/images/in.png and b/src/resources/flags/images/in.png differ diff --git a/src/resources/flags/images/io.png b/src/resources/flags/images/io.png index 58a4b9be..0abfec4d 100644 Binary files a/src/resources/flags/images/io.png and b/src/resources/flags/images/io.png differ diff --git a/src/resources/flags/images/iq.png b/src/resources/flags/images/iq.png old mode 100755 new mode 100644 index 6b5eb22a..a0446f1e Binary files a/src/resources/flags/images/iq.png and b/src/resources/flags/images/iq.png differ diff --git a/src/resources/flags/images/ir.png b/src/resources/flags/images/ir.png old mode 100755 new mode 100644 index 36f7ec83..abced494 Binary files a/src/resources/flags/images/ir.png and b/src/resources/flags/images/ir.png differ diff --git a/src/resources/flags/images/is.png b/src/resources/flags/images/is.png old mode 100755 new mode 100644 index 74fef41d..3f3d35e4 Binary files a/src/resources/flags/images/is.png and b/src/resources/flags/images/is.png differ diff --git a/src/resources/flags/images/it.png b/src/resources/flags/images/it.png old mode 100755 new mode 100644 index ff7ed317..058b3775 Binary files a/src/resources/flags/images/it.png and b/src/resources/flags/images/it.png differ diff --git a/src/resources/flags/images/je.png b/src/resources/flags/images/je.png index dced1b0b..1431db65 100644 Binary files a/src/resources/flags/images/je.png and b/src/resources/flags/images/je.png differ diff --git a/src/resources/flags/images/jm.png b/src/resources/flags/images/jm.png old mode 100755 new mode 100644 index 68e58fee..abf88be0 Binary files a/src/resources/flags/images/jm.png and b/src/resources/flags/images/jm.png differ diff --git a/src/resources/flags/images/jo.png b/src/resources/flags/images/jo.png old mode 100755 new mode 100644 index 57bd76a6..e2bcf81a Binary files a/src/resources/flags/images/jo.png and b/src/resources/flags/images/jo.png differ diff --git a/src/resources/flags/images/jp.png b/src/resources/flags/images/jp.png old mode 100755 new mode 100644 index 33f3a757..a4b207bc Binary files a/src/resources/flags/images/jp.png and b/src/resources/flags/images/jp.png differ diff --git a/src/resources/flags/images/ke.png b/src/resources/flags/images/ke.png old mode 100755 new mode 100644 index 9e8373fd..f2ce6689 Binary files a/src/resources/flags/images/ke.png and b/src/resources/flags/images/ke.png differ diff --git a/src/resources/flags/images/kg.png b/src/resources/flags/images/kg.png old mode 100755 new mode 100644 index 3e7d6611..248f52cc Binary files a/src/resources/flags/images/kg.png and b/src/resources/flags/images/kg.png differ diff --git a/src/resources/flags/images/kh.png b/src/resources/flags/images/kh.png old mode 100755 new mode 100644 index cf76786b..de297a88 Binary files a/src/resources/flags/images/kh.png and b/src/resources/flags/images/kh.png differ diff --git a/src/resources/flags/images/ki.png b/src/resources/flags/images/ki.png old mode 100755 new mode 100644 index ff8e470d..56068f89 Binary files a/src/resources/flags/images/ki.png and b/src/resources/flags/images/ki.png differ diff --git a/src/resources/flags/images/km.png b/src/resources/flags/images/km.png old mode 100755 new mode 100644 index cbd5e1b5..b8d803a2 Binary files a/src/resources/flags/images/km.png and b/src/resources/flags/images/km.png differ diff --git a/src/resources/flags/images/kn.png b/src/resources/flags/images/kn.png old mode 100755 new mode 100644 index fed64fc0..af198fc8 Binary files a/src/resources/flags/images/kn.png and b/src/resources/flags/images/kn.png differ diff --git a/src/resources/flags/images/kp.png b/src/resources/flags/images/kp.png old mode 100755 new mode 100644 index b25aadc3..e6dd4381 Binary files a/src/resources/flags/images/kp.png and b/src/resources/flags/images/kp.png differ diff --git a/src/resources/flags/images/kr.png b/src/resources/flags/images/kr.png old mode 100755 new mode 100644 index d035cab9..7e910a0a Binary files a/src/resources/flags/images/kr.png and b/src/resources/flags/images/kr.png differ diff --git a/src/resources/flags/images/ks.png b/src/resources/flags/images/ks.png old mode 100755 new mode 100644 index 942e1b58..bb3a1c29 Binary files a/src/resources/flags/images/ks.png and b/src/resources/flags/images/ks.png differ diff --git a/src/resources/flags/images/kw.png b/src/resources/flags/images/kw.png old mode 100755 new mode 100644 index 8c01668d..d000f309 Binary files a/src/resources/flags/images/kw.png and b/src/resources/flags/images/kw.png differ diff --git a/src/resources/flags/images/ky.png b/src/resources/flags/images/ky.png index 80bf785d..9f24de94 100644 Binary files a/src/resources/flags/images/ky.png and b/src/resources/flags/images/ky.png differ diff --git a/src/resources/flags/images/kz.png b/src/resources/flags/images/kz.png old mode 100755 new mode 100644 index 436ac8a1..92f88291 Binary files a/src/resources/flags/images/kz.png and b/src/resources/flags/images/kz.png differ diff --git a/src/resources/flags/images/la.png b/src/resources/flags/images/la.png old mode 100755 new mode 100644 index 87d7fb3c..921ce12f Binary files a/src/resources/flags/images/la.png and b/src/resources/flags/images/la.png differ diff --git a/src/resources/flags/images/lb.png b/src/resources/flags/images/lb.png old mode 100755 new mode 100644 index 7d3659ab..fa4839e9 Binary files a/src/resources/flags/images/lb.png and b/src/resources/flags/images/lb.png differ diff --git a/src/resources/flags/images/lc.png b/src/resources/flags/images/lc.png old mode 100755 new mode 100644 index 4bb0487c..25850de1 Binary files a/src/resources/flags/images/lc.png and b/src/resources/flags/images/lc.png differ diff --git a/src/resources/flags/images/li.png b/src/resources/flags/images/li.png old mode 100755 new mode 100644 index b68b433a..1f78d1f3 Binary files a/src/resources/flags/images/li.png and b/src/resources/flags/images/li.png differ diff --git a/src/resources/flags/images/lk.png b/src/resources/flags/images/lk.png old mode 100755 new mode 100644 index 15e45c81..561f34bc Binary files a/src/resources/flags/images/lk.png and b/src/resources/flags/images/lk.png differ diff --git a/src/resources/flags/images/lr.png b/src/resources/flags/images/lr.png old mode 100755 new mode 100644 index 36948eef..e11e5fd2 Binary files a/src/resources/flags/images/lr.png and b/src/resources/flags/images/lr.png differ diff --git a/src/resources/flags/images/ls.png b/src/resources/flags/images/ls.png old mode 100755 new mode 100644 index 70cab723..5dfd06a8 Binary files a/src/resources/flags/images/ls.png and b/src/resources/flags/images/ls.png differ diff --git a/src/resources/flags/images/lt.png b/src/resources/flags/images/lt.png old mode 100755 new mode 100644 index 80bc5805..df2b55d4 Binary files a/src/resources/flags/images/lt.png and b/src/resources/flags/images/lt.png differ diff --git a/src/resources/flags/images/lu.png b/src/resources/flags/images/lu.png old mode 100755 new mode 100644 index c5c2246c..6b9cfcde Binary files a/src/resources/flags/images/lu.png and b/src/resources/flags/images/lu.png differ diff --git a/src/resources/flags/images/lv.png b/src/resources/flags/images/lv.png old mode 100755 new mode 100644 index 75431d19..e7fac330 Binary files a/src/resources/flags/images/lv.png and b/src/resources/flags/images/lv.png differ diff --git a/src/resources/flags/images/ly.png b/src/resources/flags/images/ly.png old mode 100755 new mode 100644 index 2914da29..c1cbaf05 Binary files a/src/resources/flags/images/ly.png and b/src/resources/flags/images/ly.png differ diff --git a/src/resources/flags/images/ma.png b/src/resources/flags/images/ma.png old mode 100755 new mode 100644 index 0f751a1c..c7fb7125 Binary files a/src/resources/flags/images/ma.png and b/src/resources/flags/images/ma.png differ diff --git a/src/resources/flags/images/mc.png b/src/resources/flags/images/mc.png old mode 100755 new mode 100644 index 3f8311b2..fdbadbea Binary files a/src/resources/flags/images/mc.png and b/src/resources/flags/images/mc.png differ diff --git a/src/resources/flags/images/md.png b/src/resources/flags/images/md.png old mode 100755 new mode 100644 index 4645ae10..3401d9dc Binary files a/src/resources/flags/images/md.png and b/src/resources/flags/images/md.png differ diff --git a/src/resources/flags/images/me.png b/src/resources/flags/images/me.png old mode 100755 new mode 100644 index 941d51d4..5473446e Binary files a/src/resources/flags/images/me.png and b/src/resources/flags/images/me.png differ diff --git a/src/resources/flags/images/mf.png b/src/resources/flags/images/mf.png old mode 100755 new mode 100644 index fcfa7caf..aefc38f9 Binary files a/src/resources/flags/images/mf.png and b/src/resources/flags/images/mf.png differ diff --git a/src/resources/flags/images/mg.png b/src/resources/flags/images/mg.png old mode 100755 new mode 100644 index 43922054..dc0d6b9e Binary files a/src/resources/flags/images/mg.png and b/src/resources/flags/images/mg.png differ diff --git a/src/resources/flags/images/mh.png b/src/resources/flags/images/mh.png old mode 100755 new mode 100644 index 8438bfa3..59e4b941 Binary files a/src/resources/flags/images/mh.png and b/src/resources/flags/images/mh.png differ diff --git a/src/resources/flags/images/mk.png b/src/resources/flags/images/mk.png old mode 100755 new mode 100644 index 3c08615b..4d95a15c Binary files a/src/resources/flags/images/mk.png and b/src/resources/flags/images/mk.png differ diff --git a/src/resources/flags/images/ml.png b/src/resources/flags/images/ml.png old mode 100755 new mode 100644 index ce81958a..57959717 Binary files a/src/resources/flags/images/ml.png and b/src/resources/flags/images/ml.png differ diff --git a/src/resources/flags/images/mm.png b/src/resources/flags/images/mm.png index a49a3ced..6253828f 100644 Binary files a/src/resources/flags/images/mm.png and b/src/resources/flags/images/mm.png differ diff --git a/src/resources/flags/images/mn.png b/src/resources/flags/images/mn.png old mode 100755 new mode 100644 index 2771b270..dbbf1949 Binary files a/src/resources/flags/images/mn.png and b/src/resources/flags/images/mn.png differ diff --git a/src/resources/flags/images/mo.png b/src/resources/flags/images/mo.png index 2e62a9d8..6553417a 100644 Binary files a/src/resources/flags/images/mo.png and b/src/resources/flags/images/mo.png differ diff --git a/src/resources/flags/images/mp.png b/src/resources/flags/images/mp.png index 98ce37bd..556911a9 100644 Binary files a/src/resources/flags/images/mp.png and b/src/resources/flags/images/mp.png differ diff --git a/src/resources/flags/images/mq.png b/src/resources/flags/images/mq.png index 06466b3b..e6a4b806 100644 Binary files a/src/resources/flags/images/mq.png and b/src/resources/flags/images/mq.png differ diff --git a/src/resources/flags/images/mr.png b/src/resources/flags/images/mr.png old mode 100755 new mode 100644 index f4dcf1d2..4a9d1ae2 Binary files a/src/resources/flags/images/mr.png and b/src/resources/flags/images/mr.png differ diff --git a/src/resources/flags/images/ms.png b/src/resources/flags/images/ms.png index 163f5996..d8a429aa 100644 Binary files a/src/resources/flags/images/ms.png and b/src/resources/flags/images/ms.png differ diff --git a/src/resources/flags/images/mt.png b/src/resources/flags/images/mt.png old mode 100755 new mode 100644 index 950502ab..c0f67e2c Binary files a/src/resources/flags/images/mt.png and b/src/resources/flags/images/mt.png differ diff --git a/src/resources/flags/images/mu.png b/src/resources/flags/images/mu.png old mode 100755 new mode 100644 index a6349637..864df2de Binary files a/src/resources/flags/images/mu.png and b/src/resources/flags/images/mu.png differ diff --git a/src/resources/flags/images/mv.png b/src/resources/flags/images/mv.png old mode 100755 new mode 100644 index 565a4083..4955fc19 Binary files a/src/resources/flags/images/mv.png and b/src/resources/flags/images/mv.png differ diff --git a/src/resources/flags/images/mw.png b/src/resources/flags/images/mw.png old mode 100755 new mode 100644 index 442dbc58..2d0b4dd1 Binary files a/src/resources/flags/images/mw.png and b/src/resources/flags/images/mw.png differ diff --git a/src/resources/flags/images/mx.png b/src/resources/flags/images/mx.png old mode 100755 new mode 100644 index 666424d1..b7836bb3 Binary files a/src/resources/flags/images/mx.png and b/src/resources/flags/images/mx.png differ diff --git a/src/resources/flags/images/my.png b/src/resources/flags/images/my.png old mode 100755 new mode 100644 index 215448cd..061acba1 Binary files a/src/resources/flags/images/my.png and b/src/resources/flags/images/my.png differ diff --git a/src/resources/flags/images/mz.png b/src/resources/flags/images/mz.png old mode 100755 new mode 100644 index 18e2a949..3078a752 Binary files a/src/resources/flags/images/mz.png and b/src/resources/flags/images/mz.png differ diff --git a/src/resources/flags/images/na.png b/src/resources/flags/images/na.png old mode 100755 new mode 100644 index ca31b5d2..4728bbb5 Binary files a/src/resources/flags/images/na.png and b/src/resources/flags/images/na.png differ diff --git a/src/resources/flags/images/nc.png b/src/resources/flags/images/nc.png index a55d0374..10bcc179 100644 Binary files a/src/resources/flags/images/nc.png and b/src/resources/flags/images/nc.png differ diff --git a/src/resources/flags/images/ne.png b/src/resources/flags/images/ne.png old mode 100755 new mode 100644 index e0097297..aea6291b Binary files a/src/resources/flags/images/ne.png and b/src/resources/flags/images/ne.png differ diff --git a/src/resources/flags/images/nf.png b/src/resources/flags/images/nf.png index 8a83dbf4..34737644 100644 Binary files a/src/resources/flags/images/nf.png and b/src/resources/flags/images/nf.png differ diff --git a/src/resources/flags/images/ng.png b/src/resources/flags/images/ng.png old mode 100755 new mode 100644 index ee5775a8..524ca2e2 Binary files a/src/resources/flags/images/ng.png and b/src/resources/flags/images/ng.png differ diff --git a/src/resources/flags/images/ni.png b/src/resources/flags/images/ni.png old mode 100755 new mode 100644 index 2ebe882a..efc0ab04 Binary files a/src/resources/flags/images/ni.png and b/src/resources/flags/images/ni.png differ diff --git a/src/resources/flags/images/nl.png b/src/resources/flags/images/nl.png old mode 100755 new mode 100644 index 0386cc3e..0930cce1 Binary files a/src/resources/flags/images/nl.png and b/src/resources/flags/images/nl.png differ diff --git a/src/resources/flags/images/no.png b/src/resources/flags/images/no.png old mode 100755 new mode 100644 index bb2f806b..e70498f8 Binary files a/src/resources/flags/images/no.png and b/src/resources/flags/images/no.png differ diff --git a/src/resources/flags/images/np.png b/src/resources/flags/images/np.png old mode 100755 new mode 100644 index 726500cc..6e46b8c0 Binary files a/src/resources/flags/images/np.png and b/src/resources/flags/images/np.png differ diff --git a/src/resources/flags/images/nr.png b/src/resources/flags/images/nr.png old mode 100755 new mode 100644 index 65b58110..6e3b27d3 Binary files a/src/resources/flags/images/nr.png and b/src/resources/flags/images/nr.png differ diff --git a/src/resources/flags/images/nu.png b/src/resources/flags/images/nu.png index 4bc2ad23..22854b73 100644 Binary files a/src/resources/flags/images/nu.png and b/src/resources/flags/images/nu.png differ diff --git a/src/resources/flags/images/nz.png b/src/resources/flags/images/nz.png old mode 100755 new mode 100644 index abe4acf6..6d7d9c5c Binary files a/src/resources/flags/images/nz.png and b/src/resources/flags/images/nz.png differ diff --git a/src/resources/flags/images/om.png b/src/resources/flags/images/om.png old mode 100755 new mode 100644 index 86812676..9203cca1 Binary files a/src/resources/flags/images/om.png and b/src/resources/flags/images/om.png differ diff --git a/src/resources/flags/images/pa.png b/src/resources/flags/images/pa.png old mode 100755 new mode 100644 index e821dee8..1aa5fdc0 Binary files a/src/resources/flags/images/pa.png and b/src/resources/flags/images/pa.png differ diff --git a/src/resources/flags/images/pe.png b/src/resources/flags/images/pe.png old mode 100755 new mode 100644 index 5af51ad7..c8b1845f Binary files a/src/resources/flags/images/pe.png and b/src/resources/flags/images/pe.png differ diff --git a/src/resources/flags/images/pf.png b/src/resources/flags/images/pf.png index 4ecb31d9..03b9505b 100644 Binary files a/src/resources/flags/images/pf.png and b/src/resources/flags/images/pf.png differ diff --git a/src/resources/flags/images/pg.png b/src/resources/flags/images/pg.png old mode 100755 new mode 100644 index 14818457..65b46d87 Binary files a/src/resources/flags/images/pg.png and b/src/resources/flags/images/pg.png differ diff --git a/src/resources/flags/images/ph.png b/src/resources/flags/images/ph.png old mode 100755 new mode 100644 index ffa33a92..784f7e62 Binary files a/src/resources/flags/images/ph.png and b/src/resources/flags/images/ph.png differ diff --git a/src/resources/flags/images/pk.png b/src/resources/flags/images/pk.png old mode 100755 new mode 100644 index 645971c5..f58e3be4 Binary files a/src/resources/flags/images/pk.png and b/src/resources/flags/images/pk.png differ diff --git a/src/resources/flags/images/pl.png b/src/resources/flags/images/pl.png old mode 100755 new mode 100644 index 9d4e6925..d884f6be Binary files a/src/resources/flags/images/pl.png and b/src/resources/flags/images/pl.png differ diff --git a/src/resources/flags/images/pm.png b/src/resources/flags/images/pm.png index 336cb210..10b2fe99 100644 Binary files a/src/resources/flags/images/pm.png and b/src/resources/flags/images/pm.png differ diff --git a/src/resources/flags/images/pr.png b/src/resources/flags/images/pr.png index 3fc7a074..5b2a1df4 100644 Binary files a/src/resources/flags/images/pr.png and b/src/resources/flags/images/pr.png differ diff --git a/src/resources/flags/images/ps.png b/src/resources/flags/images/ps.png index ffc7621a..564440e2 100644 Binary files a/src/resources/flags/images/ps.png and b/src/resources/flags/images/ps.png differ diff --git a/src/resources/flags/images/pt.png b/src/resources/flags/images/pt.png old mode 100755 new mode 100644 index 6526f8c1..2210a868 Binary files a/src/resources/flags/images/pt.png and b/src/resources/flags/images/pt.png differ diff --git a/src/resources/flags/images/pw.png b/src/resources/flags/images/pw.png old mode 100755 new mode 100644 index 0a91ea56..75d43206 Binary files a/src/resources/flags/images/pw.png and b/src/resources/flags/images/pw.png differ diff --git a/src/resources/flags/images/py.png b/src/resources/flags/images/py.png old mode 100755 new mode 100644 index 40dffa49..7f5fd442 Binary files a/src/resources/flags/images/py.png and b/src/resources/flags/images/py.png differ diff --git a/src/resources/flags/images/qa.png b/src/resources/flags/images/qa.png old mode 100755 new mode 100644 index 9cf00683..fffb109e Binary files a/src/resources/flags/images/qa.png and b/src/resources/flags/images/qa.png differ diff --git a/src/resources/flags/images/re.png b/src/resources/flags/images/re.png index 1dc648e7..6e90a31c 100644 Binary files a/src/resources/flags/images/re.png and b/src/resources/flags/images/re.png differ diff --git a/src/resources/flags/images/ro.png b/src/resources/flags/images/ro.png old mode 100755 new mode 100644 index 0bee8d1a..5f5dd2d8 Binary files a/src/resources/flags/images/ro.png and b/src/resources/flags/images/ro.png differ diff --git a/src/resources/flags/images/rs.png b/src/resources/flags/images/rs.png old mode 100755 new mode 100644 index 19fd38a6..ab5e5416 Binary files a/src/resources/flags/images/rs.png and b/src/resources/flags/images/rs.png differ diff --git a/src/resources/flags/images/ru.png b/src/resources/flags/images/ru.png old mode 100755 new mode 100644 index 66741a4d..d759af1c Binary files a/src/resources/flags/images/ru.png and b/src/resources/flags/images/ru.png differ diff --git a/src/resources/flags/images/rw.png b/src/resources/flags/images/rw.png old mode 100755 new mode 100644 index 24080d6d..bfca4022 Binary files a/src/resources/flags/images/rw.png and b/src/resources/flags/images/rw.png differ diff --git a/src/resources/flags/images/sa.png b/src/resources/flags/images/sa.png old mode 100755 new mode 100644 index 66dadb5b..e6e4453c Binary files a/src/resources/flags/images/sa.png and b/src/resources/flags/images/sa.png differ diff --git a/src/resources/flags/images/sb.png b/src/resources/flags/images/sb.png old mode 100755 new mode 100644 index 97e0fc7c..81ad815b Binary files a/src/resources/flags/images/sb.png and b/src/resources/flags/images/sb.png differ diff --git a/src/resources/flags/images/sc.png b/src/resources/flags/images/sc.png old mode 100755 new mode 100644 index 76863735..868a6f18 Binary files a/src/resources/flags/images/sc.png and b/src/resources/flags/images/sc.png differ diff --git a/src/resources/flags/images/sd.png b/src/resources/flags/images/sd.png old mode 100755 new mode 100644 index 9a6f886d..a5423825 Binary files a/src/resources/flags/images/sd.png and b/src/resources/flags/images/sd.png differ diff --git a/src/resources/flags/images/se.png b/src/resources/flags/images/se.png old mode 100755 new mode 100644 index 59595199..481075d2 Binary files a/src/resources/flags/images/se.png and b/src/resources/flags/images/se.png differ diff --git a/src/resources/flags/images/sg.png b/src/resources/flags/images/sg.png old mode 100755 new mode 100644 index 8ba42209..91c54ec0 Binary files a/src/resources/flags/images/sg.png and b/src/resources/flags/images/sg.png differ diff --git a/src/resources/flags/images/sh.png b/src/resources/flags/images/sh.png index d4c97406..ebf499b7 100644 Binary files a/src/resources/flags/images/sh.png and b/src/resources/flags/images/sh.png differ diff --git a/src/resources/flags/images/si.png b/src/resources/flags/images/si.png old mode 100755 new mode 100644 index 3b751344..0a4660fb Binary files a/src/resources/flags/images/si.png and b/src/resources/flags/images/si.png differ diff --git a/src/resources/flags/images/sj.png b/src/resources/flags/images/sj.png old mode 100755 new mode 100644 index bb2f806b..e70498f8 Binary files a/src/resources/flags/images/sj.png and b/src/resources/flags/images/sj.png differ diff --git a/src/resources/flags/images/sk.png b/src/resources/flags/images/sk.png old mode 100755 new mode 100644 index 0769397a..41130ced Binary files a/src/resources/flags/images/sk.png and b/src/resources/flags/images/sk.png differ diff --git a/src/resources/flags/images/sl.png b/src/resources/flags/images/sl.png old mode 100755 new mode 100644 index 96cddd4f..2b565ebe Binary files a/src/resources/flags/images/sl.png and b/src/resources/flags/images/sl.png differ diff --git a/src/resources/flags/images/sm.png b/src/resources/flags/images/sm.png old mode 100755 new mode 100644 index 4ee071c2..8d0104c4 Binary files a/src/resources/flags/images/sm.png and b/src/resources/flags/images/sm.png differ diff --git a/src/resources/flags/images/sn.png b/src/resources/flags/images/sn.png old mode 100755 new mode 100644 index 9415c60e..d001fa48 Binary files a/src/resources/flags/images/sn.png and b/src/resources/flags/images/sn.png differ diff --git a/src/resources/flags/images/so.png b/src/resources/flags/images/so.png old mode 100755 new mode 100644 index 93a7fdc9..748f598d Binary files a/src/resources/flags/images/so.png and b/src/resources/flags/images/so.png differ diff --git a/src/resources/flags/images/sr.png b/src/resources/flags/images/sr.png old mode 100755 new mode 100644 index 47092d9e..e0f1a055 Binary files a/src/resources/flags/images/sr.png and b/src/resources/flags/images/sr.png differ diff --git a/src/resources/flags/images/ss.png b/src/resources/flags/images/ss.png index e5f2259d..ea52ec5b 100644 Binary files a/src/resources/flags/images/ss.png and b/src/resources/flags/images/ss.png differ diff --git a/src/resources/flags/images/st.png b/src/resources/flags/images/st.png old mode 100755 new mode 100644 index 85f7d386..f29af982 Binary files a/src/resources/flags/images/st.png and b/src/resources/flags/images/st.png differ diff --git a/src/resources/flags/images/sv.png b/src/resources/flags/images/sv.png old mode 100755 new mode 100644 index 97795729..2df47fcc Binary files a/src/resources/flags/images/sv.png and b/src/resources/flags/images/sv.png differ diff --git a/src/resources/flags/images/sx.png b/src/resources/flags/images/sx.png index ec17c244..548a7538 100644 Binary files a/src/resources/flags/images/sx.png and b/src/resources/flags/images/sx.png differ diff --git a/src/resources/flags/images/sy.png b/src/resources/flags/images/sy.png old mode 100755 new mode 100644 index a80b6b11..71b82a2d Binary files a/src/resources/flags/images/sy.png and b/src/resources/flags/images/sy.png differ diff --git a/src/resources/flags/images/sz.png b/src/resources/flags/images/sz.png old mode 100755 new mode 100644 index 89337677..6e0827ad Binary files a/src/resources/flags/images/sz.png and b/src/resources/flags/images/sz.png differ diff --git a/src/resources/flags/images/tc.png b/src/resources/flags/images/tc.png index 5f5c2449..77957913 100644 Binary files a/src/resources/flags/images/tc.png and b/src/resources/flags/images/tc.png differ diff --git a/src/resources/flags/images/td.png b/src/resources/flags/images/td.png old mode 100755 new mode 100644 index 41f123b5..7e7f4178 Binary files a/src/resources/flags/images/td.png and b/src/resources/flags/images/td.png differ diff --git a/src/resources/flags/images/tg.png b/src/resources/flags/images/tg.png old mode 100755 new mode 100644 index a4a1d9f9..905af396 Binary files a/src/resources/flags/images/tg.png and b/src/resources/flags/images/tg.png differ diff --git a/src/resources/flags/images/th.png b/src/resources/flags/images/th.png old mode 100755 new mode 100644 index f0f7207d..2cae6ad9 Binary files a/src/resources/flags/images/th.png and b/src/resources/flags/images/th.png differ diff --git a/src/resources/flags/images/tj.png b/src/resources/flags/images/tj.png old mode 100755 new mode 100644 index 682b5e0f..2dfb5586 Binary files a/src/resources/flags/images/tj.png and b/src/resources/flags/images/tj.png differ diff --git a/src/resources/flags/images/tk.png b/src/resources/flags/images/tk.png index 24b93302..77e92398 100644 Binary files a/src/resources/flags/images/tk.png and b/src/resources/flags/images/tk.png differ diff --git a/src/resources/flags/images/tl.png b/src/resources/flags/images/tl.png old mode 100755 new mode 100644 index 8a98e900..68fbd65a Binary files a/src/resources/flags/images/tl.png and b/src/resources/flags/images/tl.png differ diff --git a/src/resources/flags/images/tm.png b/src/resources/flags/images/tm.png old mode 100755 new mode 100644 index 58567c81..d0d9f6b2 Binary files a/src/resources/flags/images/tm.png and b/src/resources/flags/images/tm.png differ diff --git a/src/resources/flags/images/tn.png b/src/resources/flags/images/tn.png old mode 100755 new mode 100644 index db4951a6..20178557 Binary files a/src/resources/flags/images/tn.png and b/src/resources/flags/images/tn.png differ diff --git a/src/resources/flags/images/to.png b/src/resources/flags/images/to.png old mode 100755 new mode 100644 index 95b78ce2..9f708dbc Binary files a/src/resources/flags/images/to.png and b/src/resources/flags/images/to.png differ diff --git a/src/resources/flags/images/tr.png b/src/resources/flags/images/tr.png old mode 100755 new mode 100644 index 95d0c871..2f3898b1 Binary files a/src/resources/flags/images/tr.png and b/src/resources/flags/images/tr.png differ diff --git a/src/resources/flags/images/tt.png b/src/resources/flags/images/tt.png old mode 100755 new mode 100644 index 39a4af42..4ea7bca0 Binary files a/src/resources/flags/images/tt.png and b/src/resources/flags/images/tt.png differ diff --git a/src/resources/flags/images/tv.png b/src/resources/flags/images/tv.png old mode 100755 new mode 100644 index 6bfe412e..036f4075 Binary files a/src/resources/flags/images/tv.png and b/src/resources/flags/images/tv.png differ diff --git a/src/resources/flags/images/tw.png b/src/resources/flags/images/tw.png old mode 100755 new mode 100644 index 80e07d81..5855095e Binary files a/src/resources/flags/images/tw.png and b/src/resources/flags/images/tw.png differ diff --git a/src/resources/flags/images/tz.png b/src/resources/flags/images/tz.png old mode 100755 new mode 100644 index 446ecb4f..65ed9eb2 Binary files a/src/resources/flags/images/tz.png and b/src/resources/flags/images/tz.png differ diff --git a/src/resources/flags/images/ua.png b/src/resources/flags/images/ua.png old mode 100755 new mode 100644 index 00234794..67548907 Binary files a/src/resources/flags/images/ua.png and b/src/resources/flags/images/ua.png differ diff --git a/src/resources/flags/images/ug.png b/src/resources/flags/images/ug.png old mode 100755 new mode 100644 index cdcab6a1..6a2671b6 Binary files a/src/resources/flags/images/ug.png and b/src/resources/flags/images/ug.png differ diff --git a/src/resources/flags/images/us.png b/src/resources/flags/images/us.png old mode 100755 new mode 100644 index 5b96ff24..335d33e0 Binary files a/src/resources/flags/images/us.png and b/src/resources/flags/images/us.png differ diff --git a/src/resources/flags/images/uy.png b/src/resources/flags/images/uy.png old mode 100755 new mode 100644 index 219ef44a..9eb069c0 Binary files a/src/resources/flags/images/uy.png and b/src/resources/flags/images/uy.png differ diff --git a/src/resources/flags/images/uz.png b/src/resources/flags/images/uz.png old mode 100755 new mode 100644 index 80e0a446..16697d68 Binary files a/src/resources/flags/images/uz.png and b/src/resources/flags/images/uz.png differ diff --git a/src/resources/flags/images/va.png b/src/resources/flags/images/va.png old mode 100755 new mode 100644 index c94c81dd..6c6bf533 Binary files a/src/resources/flags/images/va.png and b/src/resources/flags/images/va.png differ diff --git a/src/resources/flags/images/vc.png b/src/resources/flags/images/vc.png old mode 100755 new mode 100644 index 77196ed9..1a206993 Binary files a/src/resources/flags/images/vc.png and b/src/resources/flags/images/vc.png differ diff --git a/src/resources/flags/images/ve.png b/src/resources/flags/images/ve.png old mode 100755 new mode 100644 index 40ae68eb..44d5724d Binary files a/src/resources/flags/images/ve.png and b/src/resources/flags/images/ve.png differ diff --git a/src/resources/flags/images/vg.png b/src/resources/flags/images/vg.png index 4de2078b..a6f232c5 100644 Binary files a/src/resources/flags/images/vg.png and b/src/resources/flags/images/vg.png differ diff --git a/src/resources/flags/images/vi.png b/src/resources/flags/images/vi.png index a4bd67cb..d74e3593 100644 Binary files a/src/resources/flags/images/vi.png and b/src/resources/flags/images/vi.png differ diff --git a/src/resources/flags/images/vn.png b/src/resources/flags/images/vn.png old mode 100755 new mode 100644 index d6838523..5d73248e Binary files a/src/resources/flags/images/vn.png and b/src/resources/flags/images/vn.png differ diff --git a/src/resources/flags/images/vu.png b/src/resources/flags/images/vu.png old mode 100755 new mode 100644 index e1ad764e..97574b1f Binary files a/src/resources/flags/images/vu.png and b/src/resources/flags/images/vu.png differ diff --git a/src/resources/flags/images/wf.png b/src/resources/flags/images/wf.png index c3c5a9e8..c64dd8aa 100644 Binary files a/src/resources/flags/images/wf.png and b/src/resources/flags/images/wf.png differ diff --git a/src/resources/flags/images/ws.png b/src/resources/flags/images/ws.png old mode 100755 new mode 100644 index 71db01fa..250f3e86 Binary files a/src/resources/flags/images/ws.png and b/src/resources/flags/images/ws.png differ diff --git a/src/resources/flags/images/xk.png b/src/resources/flags/images/xk.png index b330fdf5..32891509 100644 Binary files a/src/resources/flags/images/xk.png and b/src/resources/flags/images/xk.png differ diff --git a/src/resources/flags/images/ye.png b/src/resources/flags/images/ye.png old mode 100755 new mode 100644 index 3a2e0a2b..1ab766c5 Binary files a/src/resources/flags/images/ye.png and b/src/resources/flags/images/ye.png differ diff --git a/src/resources/flags/images/yt.png b/src/resources/flags/images/yt.png old mode 100755 new mode 100644 index fcfa7caf..aefc38f9 Binary files a/src/resources/flags/images/yt.png and b/src/resources/flags/images/yt.png differ diff --git a/src/resources/flags/images/za.png b/src/resources/flags/images/za.png old mode 100755 new mode 100644 index 535fe710..4eec606d Binary files a/src/resources/flags/images/za.png and b/src/resources/flags/images/za.png differ diff --git a/src/resources/flags/images/zm.png b/src/resources/flags/images/zm.png old mode 100755 new mode 100644 index 7b0246a8..0206f0eb Binary files a/src/resources/flags/images/zm.png and b/src/resources/flags/images/zm.png differ diff --git a/src/resources/flags/images/zw.png b/src/resources/flags/images/zw.png old mode 100755 new mode 100644 index abf13869..bb7180ff Binary files a/src/resources/flags/images/zw.png and b/src/resources/flags/images/zw.png differ