diff --git a/cypress/component/ChartSelector/ChartSelector.cy.js b/cypress/component/ChartSelector/ChartSelector.cy.js index 03886a4..8508a36 100644 --- a/cypress/component/ChartSelector/ChartSelector.cy.js +++ b/cypress/component/ChartSelector/ChartSelector.cy.js @@ -1,7 +1,7 @@ import React, { useState, useEffect } from 'react'; import { useChartDataForGender } from '../../../src/utils/DataFetching/Sorting/useChartDataForGender'; import { ChartSelector } from '../../../src/components/GrowthChart/GrowthChartSelector'; -import { chartData as chartDataWHO } from '../../../src/DataSets/WhoStandardDataSets/ChartDataZscores'; +import { chartData as chartDataWHO } from '../../../src/DataSets/WhoStandardDataSets/ChartData'; describe('ChartSelector', () => { const TestComponent = () => { diff --git a/d2.config.js b/d2.config.js index 3e6198b..23cee57 100644 --- a/d2.config.js +++ b/d2.config.js @@ -1,5 +1,6 @@ const config = { type: 'app', + name: 'capture-growth-chart', entryPoints: { plugin: './src/Plugin.tsx' }, }; diff --git a/docs/resources/images/tracked_entity_type_attributes.png b/docs/resources/images/tracked_entity_type_attributes.png new file mode 100644 index 0000000..b02a3ee Binary files /dev/null and b/docs/resources/images/tracked_entity_type_attributes.png differ diff --git a/docs/using-capture-growth-charts.md b/docs/using-capture-growth-charts.md index 5a63d30..19c5426 100644 --- a/docs/using-capture-growth-charts.md +++ b/docs/using-capture-growth-charts.md @@ -2,60 +2,263 @@ ## About Capture Growth Charts { #about_capture_growth_charts } -Capture growth charts is a web application that allows users to capture and view growth data for children under the age of 5. The application is designed to be used by health workers in the field to capture growth data for children and to view growth charts for children in their care. The application is designed to be used on a tablet or computer device and is optimized for data entry and visualization of growth charts for efficient monitoring of child development. +Capture growth charts is a web application that allows users to capture and view growth data for children under the age of 5. The application is designed to be used by health workers to capture growth data for children and to view growth charts for children in their care. The application is designed to be used on a tablet or computer device and is optimized for data entry and visualization of growth charts for efficient monitoring of child development. -## Register an event { #capture_register_event } +# Plugin Implementation { #implement_plugin } +Plugins allows developers to extend the functionality on DHIS2. These plugins enable users to customize form fields and sections within the Capture app, potentially enhancing data entry and user experience. The Growth Chart is using the plugin functionality to be implemented in the Capture app. -1. Open the **Capture** app. +## Prerequisites { #prerequisites } +- DHIS2 version 2.38 or later +- Capture app version v100.53.0 or later (Can be updated in the **App Management** app). +- Access to the Maintenance app. +- Access to the Datastore Management app. +- Access to the App Management app. -2. Select an organisation unit. +## Implementation { #implementation } +### Datastore Management app +The plugin is implemented using the Datastore Management app. -3. Select an event program. +#### capture namespace +- Create a new namespace `capture` with key `useNewDashboard`. + - Add the following code to the namespace. Make sure to change `programId` to the id of the program you want to use the plugin for. + ```json + { + "": true + } + ``` - You will only see programs associated with the selected organisation unit and programs you have access to, and that are shared with your user group through data level sharing. +- Create a new key `enrollmentOverviewLayout` in the `capture` namespace. + - Add the following code to the key. This will be the new layout for the Capture app. Again, change the `programId` Make sure to change the contents of `leftColumn` and `rightColumn` to fit your needs. + ```json + { + "": { + "leftColumn": [ + { + "name": "QuickActions", + "type": "component" + }, + { + "name": "StagesAndEvents", + "type": "component" + } + ], + "rightColumn": [ + { + "name": "TrackedEntityRelationship", + "type": "component" + }, + { + "name": "ErrorWidget", + "type": "component" + }, + { + "name": "WarningWidget", + "type": "component" + }, + { + "name": "FeedbackWidget", + "type": "component" + }, + { + "name": "IndicatorWidget", + "type": "component" + }, + { + "name": "Notes", + "type": "component" + }, + { + "name": "ProfileWidget", + "settings": { + "readOnlyMode": true + }, + "type": "component" + }, + { + "name": "EnrollmentWidget", + "settings": { + "readOnlyMode": false + }, + "type": "component" + } + ], + "title": "Growth Monitoring" + } + } + ``` -4. If the program has a category combination set the category option will have to be selected. +# Growth chart plugin upload +## Clone the repository +Clone the repository to your local machine by running the following command in your terminal: +```bash +git clone https://github.com/dev-otta/dhis2-who-growth-chart.git +``` -5. Click **Create new event**. +## Build the plugin +Run `yarn build` in the root of the project to build the plugin. The build can then be found in `/build/bundle`, and is a compressed file (`.zip`). - ![create new event](resources/images/create_new_event.png) +Upload the compressed file to the DHIS2 instance using the `manuall install` funciton in the **App Management** app. Now the plugin should be an available app on the instance and you can find it on this url: +- `/api/apps/capture-growth-chart/plugin.html` -6. Fill in the required information. If the programs program stage is configured to capture a location: +> **Note:** The growth chart will display a warning if it's missing the configuration file. The steps to complete this configuration file will be covered later in this guide. - - If the field is a coordinate field you can either enter the coordinates - directly or you can click the **map** icon to the left of the coordinate field. - The latter one will open a map where you can search for a location or set on - directly by clicking on the map. - - If the field is a polygon field you can click the **map** icon to the left of - the field. This will open a map where you can search for a location and capture - a polygon (button in the upper right corner of the map). +Make sure to alter `` with the actual url of you instance. -7. If desired you can add a comment by clicking the **Write comment** button at the bottom of the form. Note that Event comments are attributed to a user and cannot be deleted. +# Configuration { #configuration } +## Maintenance app { #maintenance } +The following steps can be made in the **Maintenance** app on DHIS2. -8. If desired you can add a relationship by clicking the **Add relationship** button at the bottom of the form. - See the section about **Adding a relationship** for more information. +### Data element +Data elements needed to support full functionality in for the growth chart are; **Weight**, **Height** and **Head circumference**. **Weight** can be in either `gram` or `kg`, but **Height** and **Head circumference** should be in `cm`. If one of the data elements are missing, growth charts using that data element will not be displayed. -9. Click **Save and exit** or click the arrow next to the button to select **Save and add another**. +### Program +#### Tracked entity attribute +Tracked entity attribues needed for the Growth chart plugin is `Date of birth` and `Gender`. - - **Save and add another** will save the current event and clear the form. - All the events that you have captured will be displayed in a list at the bottom of the page. - When you want to finish capturing events you can, if the form is blank, - click the finish button or if your form contains data click the arrow - next to **Save and add another** and select **Save and exit**. +> **Tip:** `First Name` and `Last Name` are also utilized in additional functionality, but not necessary for using the growth chart itself. + +#### Tracked entity type +Navigate to the tracked entity type for **Person**. This type needs to be assigned the same attributes as those created in the [Tracked Entity Attributes](#tracked-entity-attributes) step. Make sure `Display in list` for the attributes is active, like the image below. +![Tracked entity type](resources/images/tracked_entity_type_attributes.png) -> **Note** -> -> Some data elements in an event might be mandatory (marked with a red star next to the data element label). -> All mandatory data elements must be filled in before the user is allowed to complete the event. -> The exception to this is if the user has the authority called __"Ignore validation of required fields in Tracker and Event Capture".__ -> If the user has this authority, the mandatory data elements will not be required and -> the red star will not be displayed next to the data element label. Note that super user that have the __"ALL"__ authority automatically -> have this authority. +#### Program +Select your preffered program for storing the growth variables and displaying the Growth Chart. +##### Attributes +The program should have the following attributes: +- `First name` +- `Last name` +- `Date of birth` +- `Gender` + -> **Tip** -> -> The data entry form can also be displayed in **row view**. In this mode the data elements are arranged horizontally. This can be -> achieved by clicking the **Switch to row view** button on the top right of the data entry form. If you are currently in **row view** you -> can switch to the default form view by clicking the **Switch to form view** button on the top right of the data entry form. +##### Program stages +Select stage where growth variables currently are or will be stored. +The program stage should have the following data elements: +- `Weight` (g or kg) +- `Height` (cm) +- `Head circumference` (cm) + + +## Datastore Manangement app { #datastore_management } +### Capture namespace +In namespace `capture`, enter the file with key `enrollmentOverviewLayout` +Add new section for the growth chart under `leftColumn`. You can choose where on the left column to place it. Add the following code, but remember to change out `` with the url of your instance. +```json +{ + "source": "http:///api/apps/capture-growth-chart/plugin.html", + "type": "plugin" +} +``` +### Capture-growth-chart namespace +#### Config +Create new namespace `capture-growth-chart` with key `config` +The growth chart plugin needs this config to work. Keep in mind that all Id's should be changed, and will be specific for each implementation. + +##### Metadata +The `metadata` object contains the following keys: +- `attributes` - Contains the attribute IDs for **dateOfBirth**, **gender**, **firstName**, **lastName**, **femaleOptionCode** and **maleOptionCode**. All of these attribute IDs can be found in the **Maintenance** app under `Tracked entity attributes`, except for the **femaleOptionCode** and **maleOptionCode** which can be found in `Option set` under **Other** in the **Maintenance** app. +- `dataElements` - Contains the data element IDs for **headCircumference**, **height** and **weight**. All of these data element IDs can be found in the **Maintenance** app under **Data elements**. +- `program` - Contains the program stage ID for the program stage where the growth data is stored. This ID can be found in the **Maintenance** app under **Programs** and **Program stages**. + +##### Settings +The `settings` object contains the following keys: +- `usePercentiles` - A boolean value that determines if the growth chart should use percentiles or z-scores. If `true`, the growth chart will use percentiles. If `false`, the growth chart will use z-scores +- `weightInGrams` - A boolean value that determines if the weight should be in grams or kg. + +The structure of the config has to be the same as the one in the example below; +```json +{ + "metadata": { + "attributes": { + "dateOfBirth": "AMl8BkN8Lyq", + "gender": "tyNlJWNnEbs", + "firstName": "Sx5Gd4JfPrL", + "lastName": "sljlq9XtqaA", + "femaleOptionCode": "CGC_Female", + "maleOptionCode": "CGC_Male" + }, + "dataElements": { + "headCircumference": "GfchA70xtmP", + "height": "wWCSulSdUgd", + "weight": "yZwKJdYXTZF" + }, + "program": { + "programStageId": "h3gT08Et4sC" + } + }, + "settings": { + "usePercentiles": false, + "weightInGrams": false + } +} +``` + +#### Custom references (Future functionality) +##### Create custom references +1. Create a new key in the `capture-growth-chart` namespace with the key `customReferences` +2. Add the custom references you want to use. The structure of the custom references has to be the same as the one in the example below. But the **datasetValues** should be changed to fit your own references. +```json +{ + "hcfa_b": { + "categoryMetadata": { + "gender": "Boy", + "label": "Head circumference for age" + }, + "datasets": { + "0 to 13 weeks": { + "datasetValues": [ + { + "SD0": 34.5, + "SD1": 35.7, + "SD1neg": 33.2, + "SD2": 37, + "SD2neg": 31.9, + "SD3": 38.3, + "SD3neg": 30.7 + }, + // ... more data points ... + ], + "metadata": { + "chartLabel": "0 to 13 weeks", + "range": { + "end": 13, + "start": 0 + }, + "xAxisLabel": "Weeks", + "yAxisLabel": "Head circumference (cm)" + } + }, + "0 to 5 years": { + "datasetValues": [ + { + "SD0": 34.5, + "SD1": 35.7, + "SD1neg": 33.2, + "SD2": 37, + "SD2neg": 31.9, + "SD3": 38.3, + "SD3neg": 30.7 + }, + // ... more data points ... + ], + "metadata": { + "chartLabel": "0 to 5 years", + "range": { + "end": 5, + "start": 0 + }, + "xAxisLabel": "Years", + "yAxisLabel": "Head circumference (cm)" + } + } + } + } +} +``` + + +##### Use custom references + +Now you can set `customReferences` to `true` in the config. This will make the plugin use the custom references you have created. If you want to use the default references, you can set `customReferences` to `false` in the config. This will make the plugin use the WHO references. \ No newline at end of file diff --git a/i18n/en.pot b/i18n/en.pot index 31e5f9c..3c358fe 100644 --- a/i18n/en.pot +++ b/i18n/en.pot @@ -5,8 +5,8 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -"POT-Creation-Date: 2024-03-22T16:48:14.724Z\n" -"PO-Revision-Date: 2024-03-22T16:48:14.724Z\n" +"POT-Creation-Date: 2024-04-23T10:55:58.423Z\n" +"PO-Revision-Date: 2024-04-23T10:55:58.423Z\n" msgid "Growth Chart" msgstr "Growth Chart" @@ -20,11 +20,11 @@ msgstr "Please check the configuration in Datastore Management and try again." msgid "Date" msgstr "Date" -msgid "Height" -msgstr "Height" +msgid "Age" +msgstr "Age" -msgid "Weight" -msgstr "Weight" +msgid "Years" +msgstr "Years" msgid "Months" msgstr "Months" @@ -32,12 +32,36 @@ msgstr "Months" msgid "Weeks" msgstr "Weeks" +msgid "year" +msgstr "year" + +msgid "years" +msgstr "years" + +msgid "month" +msgstr "month" + +msgid "months" +msgstr "months" + +msgid "week" +msgstr "week" + +msgid "weeks" +msgstr "weeks" + msgid "Head circumference" msgstr "Head circumference" msgid "Length" msgstr "Length" +msgid "Height" +msgstr "Height" + +msgid "Weight" +msgstr "Weight" + msgid "Head circumference for age" msgstr "Head circumference for age" @@ -67,12 +91,3 @@ msgstr "Boy" msgid "Girl" msgstr "Girl" - -msgid "Year" -msgstr "Year" - -msgid "Years" -msgstr "Years" - -msgid "Month" -msgstr "Month" diff --git a/src/DataSets/WhoStandardDataSets/ChartDataZscores.ts b/src/DataSets/WhoStandardDataSets/ChartData.ts similarity index 76% rename from src/DataSets/WhoStandardDataSets/ChartDataZscores.ts rename to src/DataSets/WhoStandardDataSets/ChartData.ts index 9baed92..db70eac 100644 --- a/src/DataSets/WhoStandardDataSets/ChartDataZscores.ts +++ b/src/DataSets/WhoStandardDataSets/ChartData.ts @@ -6,6 +6,14 @@ import { wfa_b_0_5_y_z, wfa_b_0_13_w_z } from './ZScores/wfa-boys'; import { wfa_g_0_5_y_z, wfa_g_0_13_w_z } from './ZScores/wfa-girls'; import { wfh_g_2_5_y_z, wfl_g_0_2_y_z } from './ZScores/wfhl-girls'; import { wfh_b_2_5_y_z, wfl_b_0_2_y_z } from './ZScores/wfhl-boys'; +import { hcfa_b_0_5_y_p, hcfa_b_0_13_w_p } from './Percentiles/hcfa-boys'; +import { hcfa_g_0_5_y_p, hcfa_g_0_13_w_p } from './Percentiles/hcfa-girls'; +import { lhfa_b_0_2_y_p, lhfa_b_0_13_w_p, lhfa_b_2_5_y_p } from './Percentiles/lhfa-boys'; +import { lhfa_g_0_2_y_p, lhfa_g_0_13_w_p, lhfa_g_2_5_y_p } from './Percentiles/lhfa-girls'; +import { wfa_b_0_5_y_p, wfa_b_0_13_w_p } from './Percentiles/wfa-boys'; +import { wfa_g_0_5_y_p, wfa_g_0_13_w_p } from './Percentiles/wfa-girls'; +import { wfh_g_2_5_y_p, wfl_g_0_2_y_p } from './Percentiles/wfhl-girls'; +import { wfh_b_2_5_y_p, wfl_b_0_2_y_p } from './Percentiles/wfhl-boys'; import { ChartCodes, CategoryCodes, MeasurementTypeCodesLabel, @@ -22,7 +30,8 @@ export const chartData: ChartData = { }, datasets: { [ChartCodes.hcfa_b_0_13_w_z]: { - datasetValues: hcfa_b_0_13_w_z, + zScoreDatasetValues: hcfa_b_0_13_w_z, + percentileDatasetValues: hcfa_b_0_13_w_p, metadata: { chartLabel: ChartCodes.hcfa_b_0_13_w_z, xAxisLabel: TimeUnitCodes.weeks, @@ -31,7 +40,8 @@ export const chartData: ChartData = { }, }, [ChartCodes.hcfa_b_0_5_y_z]: { - datasetValues: hcfa_b_0_5_y_z, + zScoreDatasetValues: hcfa_b_0_5_y_z, + percentileDatasetValues: hcfa_b_0_5_y_p, metadata: { chartLabel: ChartCodes.hcfa_b_0_5_y_z.label, xAxisLabel: TimeUnitCodes.months, @@ -48,7 +58,8 @@ export const chartData: ChartData = { }, datasets: { [ChartCodes.hcfa_g_0_13_w_z]: { - datasetValues: hcfa_g_0_13_w_z, + zScoreDatasetValues: hcfa_g_0_13_w_z, + percentileDatasetValues: hcfa_g_0_13_w_p, metadata: { chartLabel: ChartCodes.hcfa_g_0_13_w_z, xAxisLabel: TimeUnitCodes.weeks, @@ -57,7 +68,8 @@ export const chartData: ChartData = { }, }, [ChartCodes.hcfa_g_0_5_y_z]: { - datasetValues: hcfa_g_0_5_y_z, + zScoreDatasetValues: hcfa_g_0_5_y_z, + percentileDatasetValues: hcfa_g_0_5_y_p, metadata: { chartLabel: ChartCodes.hcfa_g_0_5_y_z, xAxisLabel: TimeUnitCodes.months, @@ -74,7 +86,8 @@ export const chartData: ChartData = { }, datasets: { [ChartCodes.lhfa_b_0_13_w_z]: { - datasetValues: lhfa_b_0_13_w_z, + zScoreDatasetValues: lhfa_b_0_13_w_z, + percentileDatasetValues: lhfa_b_0_13_w_p, metadata: { chartLabel: ChartCodes.lhfa_b_0_13_w_z, xAxisLabel: TimeUnitCodes.weeks, @@ -83,7 +96,8 @@ export const chartData: ChartData = { }, }, [ChartCodes.lhfa_b_0_2_y_z]: { - datasetValues: lhfa_b_0_2_y_z, + zScoreDatasetValues: lhfa_b_0_2_y_z, + percentileDatasetValues: lhfa_b_0_2_y_p, metadata: { chartLabel: ChartCodes.lhfa_b_0_2_y_z, xAxisLabel: TimeUnitCodes.months, @@ -92,7 +106,8 @@ export const chartData: ChartData = { }, }, [ChartCodes.lhfa_b_2_5_y_z]: { - datasetValues: lhfa_b_2_5_y_z, + zScoreDatasetValues: lhfa_b_2_5_y_z, + percentileDatasetValues: lhfa_b_2_5_y_p, metadata: { chartLabel: ChartCodes.lhfa_b_2_5_y_z, xAxisLabel: TimeUnitCodes.months, @@ -109,7 +124,8 @@ export const chartData: ChartData = { }, datasets: { [ChartCodes.lhfa_g_0_13_w_z]: { - datasetValues: lhfa_g_0_13_w_z, + zScoreDatasetValues: lhfa_g_0_13_w_z, + percentileDatasetValues: lhfa_g_0_13_w_p, metadata: { chartLabel: ChartCodes.lhfa_g_0_13_w_z, xAxisLabel: TimeUnitCodes.weeks, @@ -118,7 +134,8 @@ export const chartData: ChartData = { }, }, [ChartCodes.lhfa_g_0_2_y_z]: { - datasetValues: lhfa_g_0_2_y_z, + zScoreDatasetValues: lhfa_g_0_2_y_z, + percentileDatasetValues: lhfa_g_0_2_y_p, metadata: { chartLabel: ChartCodes.lhfa_g_0_2_y_z.label, xAxisLabel: TimeUnitCodes.months, @@ -127,7 +144,8 @@ export const chartData: ChartData = { }, }, [ChartCodes.lhfa_g_2_5_y_z]: { - datasetValues: lhfa_g_2_5_y_z, + zScoreDatasetValues: lhfa_g_2_5_y_z, + percentileDatasetValues: lhfa_g_2_5_y_p, metadata: { chartLabel: ChartCodes.lhfa_g_2_5_y_z, xAxisLabel: TimeUnitCodes.months, @@ -144,7 +162,8 @@ export const chartData: ChartData = { }, datasets: { [ChartCodes.wfa_b_0_13_w_z]: { - datasetValues: wfa_b_0_13_w_z, + zScoreDatasetValues: wfa_b_0_13_w_z, + percentileDatasetValues: wfa_b_0_13_w_p, metadata: { chartLabel: ChartCodes.wfa_b_0_13_w_z, xAxisLabel: TimeUnitCodes.weeks, @@ -153,7 +172,8 @@ export const chartData: ChartData = { }, }, [ChartCodes.wfa_b_0_5_y_z]: { - datasetValues: wfa_b_0_5_y_z, + zScoreDatasetValues: wfa_b_0_5_y_z, + percentileDatasetValues: wfa_b_0_5_y_p, metadata: { chartLabel: ChartCodes.wfa_b_0_5_y_z.label, xAxisLabel: TimeUnitCodes.months, @@ -170,7 +190,8 @@ export const chartData: ChartData = { }, datasets: { [ChartCodes.wfa_g_0_13_w_z]: { - datasetValues: wfa_g_0_13_w_z, + zScoreDatasetValues: wfa_g_0_13_w_z, + percentileDatasetValues: wfa_g_0_13_w_p, metadata: { chartLabel: ChartCodes.wfa_g_0_13_w_z, xAxisLabel: TimeUnitCodes.weeks, @@ -179,7 +200,8 @@ export const chartData: ChartData = { }, }, [ChartCodes.wfa_g_0_5_y_z]: { - datasetValues: wfa_g_0_5_y_z, + zScoreDatasetValues: wfa_g_0_5_y_z, + percentileDatasetValues: wfa_g_0_5_y_p, metadata: { chartLabel: ChartCodes.wfa_g_0_5_y_z.label, xAxisLabel: TimeUnitCodes.months, @@ -196,7 +218,8 @@ export const chartData: ChartData = { }, datasets: { [ChartCodes.wfl_b_0_2_y_z]: { - datasetValues: wfl_b_0_2_y_z, + zScoreDatasetValues: wfl_b_0_2_y_z, + percentileDatasetValues: wfl_b_0_2_y_p, metadata: { chartLabel: ChartCodes.wfl_b_0_2_y_z.label, xAxisLabel: MeasurementTypeCodesLabel.length, @@ -205,7 +228,8 @@ export const chartData: ChartData = { }, }, [ChartCodes.wfh_b_2_5_y_z]: { - datasetValues: wfh_b_2_5_y_z, + zScoreDatasetValues: wfh_b_2_5_y_z, + percentileDatasetValues: wfh_b_2_5_y_p, metadata: { chartLabel: ChartCodes.wfh_b_2_5_y_z, xAxisLabel: MeasurementTypeCodesLabel.height, @@ -222,7 +246,8 @@ export const chartData: ChartData = { }, datasets: { [ChartCodes.wfl_g_0_2_y_z]: { - datasetValues: wfl_g_0_2_y_z, + zScoreDatasetValues: wfl_g_0_2_y_z, + percentileDatasetValues: wfl_g_0_2_y_p, metadata: { chartLabel: ChartCodes.wfl_g_0_2_y_z.label, xAxisLabel: MeasurementTypeCodesLabel.length, @@ -231,7 +256,8 @@ export const chartData: ChartData = { }, }, [ChartCodes.wfh_g_2_5_y_z]: { - datasetValues: wfh_g_2_5_y_z, + zScoreDatasetValues: wfh_g_2_5_y_z, + percentileDatasetValues: wfh_g_2_5_y_p, metadata: { chartLabel: ChartCodes.wfh_g_2_5_y_z, xAxisLabel: MeasurementTypeCodesLabel.height, diff --git a/src/DataSets/WhoStandardDataSets/Percentiles/wfhl-boys/wfh_boys_2-to-5-years_percentiles.json b/src/DataSets/WhoStandardDataSets/Percentiles/wfhl-boys/wfh_boys_2-to-5-years_percentiles.json index a387bd9..48dfa20 100644 --- a/src/DataSets/WhoStandardDataSets/Percentiles/wfhl-boys/wfh_boys_2-to-5-years_percentiles.json +++ b/src/DataSets/WhoStandardDataSets/Percentiles/wfhl-boys/wfh_boys_2-to-5-years_percentiles.json @@ -1,667 +1,394 @@ -[{ - "P3": 6.4, - "P15": 6.8, - "P50": 7.4, - "P85": 8.1, - "P97": 8.7 -}, { - "P3": 6.5, - "P15": 6.9, - "P50": 7.6, - "P85": 8.2, - "P97": 8.9 -}, { - "P3": 6.6, - "P15": 7.1, - "P50": 7.7, - "P85": 8.4, - "P97": 9.0 -}, { - "P3": 6.7, - "P15": 7.2, - "P50": 7.8, - "P85": 8.5, - "P97": 9.1 -}, { - "P3": 6.8, - "P15": 7.3, - "P50": 7.9, - "P85": 8.6, - "P97": 9.3 -}, { - "P3": 6.9, - "P15": 7.4, - "P50": 8.0, - "P85": 8.7, - "P97": 9.4 -}, { - "P3": 7.0, - "P15": 7.5, - "P50": 8.1, - "P85": 8.9, - "P97": 9.5 -}, { - "P3": 7.1, - "P15": 7.6, - "P50": 8.2, - "P85": 9.0, - "P97": 9.7 -}, { - "P3": 7.2, - "P15": 7.7, - "P50": 8.4, - "P85": 9.1, - "P97": 9.8 -}, { - "P3": 7.3, - "P15": 7.8, - "P50": 8.5, - "P85": 9.2, - "P97": 9.9 -}, { - "P3": 7.4, - "P15": 7.9, - "P50": 8.6, - "P85": 9.4, - "P97": 10.1 -}, { - "P3": 7.5, - "P15": 8.0, - "P50": 8.7, - "P85": 9.5, - "P97": 10.2 -}, { - "P3": 7.6, - "P15": 8.1, - "P50": 8.8, - "P85": 9.6, - "P97": 10.3 -}, { - "P3": 7.7, - "P15": 8.2, - "P50": 8.9, - "P85": 9.7, - "P97": 10.5 -}, { - "P3": 7.8, - "P15": 8.3, - "P50": 9.0, - "P85": 9.8, - "P97": 10.6 -}, { - "P3": 7.8, - "P15": 8.4, - "P50": 9.1, - "P85": 10.0, - "P97": 10.7 -}, { - "P3": 7.9, - "P15": 8.5, - "P50": 9.2, - "P85": 10.1, - "P97": 10.8 -}, { - "P3": 8.0, - "P15": 8.6, - "P50": 9.3, - "P85": 10.2, - "P97": 11.0 -}, { - "P3": 8.1, - "P15": 8.7, - "P50": 9.4, - "P85": 10.3, - "P97": 11.1 -}, { - "P3": 8.2, - "P15": 8.8, - "P50": 9.5, - "P85": 10.4, - "P97": 11.2 -}, { - "P3": 8.3, - "P15": 8.9, - "P50": 9.6, - "P85": 10.5, - "P97": 11.3 -}, { - "P3": 8.4, - "P15": 9.0, - "P50": 9.7, - "P85": 10.6, - "P97": 11.4 -}, { - "P3": 8.5, - "P15": 9.0, - "P50": 9.8, - "P85": 10.7, - "P97": 11.6 -}, { - "P3": 8.5, - "P15": 9.1, - "P50": 9.9, - "P85": 10.8, - "P97": 11.7 -}, { - "P3": 8.6, - "P15": 9.2, - "P50": 10.0, - "P85": 10.9, - "P97": 11.8 -}, { - "P3": 8.7, - "P15": 9.3, - "P50": 10.1, - "P85": 11.0, - "P97": 11.9 -}, { - "P3": 8.8, - "P15": 9.4, - "P50": 10.2, - "P85": 11.1, - "P97": 12.0 -}, { - "P3": 8.8, - "P15": 9.5, - "P50": 10.3, - "P85": 11.2, - "P97": 12.1 -}, { - "P3": 8.9, - "P15": 9.5, - "P50": 10.4, - "P85": 11.3, - "P97": 12.2 -}, { - "P3": 9.0, - "P15": 9.6, - "P50": 10.5, - "P85": 11.4, - "P97": 12.3 -}, { - "P3": 9.1, - "P15": 9.7, - "P50": 10.6, - "P85": 11.5, - "P97": 12.4 -}, { - "P3": 9.2, - "P15": 9.8, - "P50": 10.7, - "P85": 11.6, - "P97": 12.5 -}, { - "P3": 9.3, - "P15": 9.9, - "P50": 10.8, - "P85": 11.8, - "P97": 12.6 -}, { - "P3": 9.3, - "P15": 10.0, - "P50": 10.9, - "P85": 11.9, - "P97": 12.8 -}, { - "P3": 9.4, - "P15": 10.1, - "P50": 11.0, - "P85": 12.0, - "P97": 12.9 -}, { - "P3": 9.5, - "P15": 10.2, - "P50": 11.1, - "P85": 12.1, - "P97": 13.0 -}, { - "P3": 9.6, - "P15": 10.3, - "P50": 11.2, - "P85": 12.2, - "P97": 13.1 -}, { - "P3": 9.7, - "P15": 10.4, - "P50": 11.3, - "P85": 12.3, - "P97": 13.3 -}, { - "P3": 9.8, - "P15": 10.5, - "P50": 11.4, - "P85": 12.5, - "P97": 13.4 -}, { - "P3": 9.9, - "P15": 10.6, - "P50": 11.5, - "P85": 12.6, - "P97": 13.5 -}, { - "P3": 10.1, - "P15": 10.7, - "P50": 11.7, - "P85": 12.7, - "P97": 13.7 -}, { - "P3": 10.2, - "P15": 10.9, - "P50": 11.8, - "P85": 12.8, - "P97": 13.8 -}, { - "P3": 10.3, - "P15": 11.0, - "P50": 11.9, - "P85": 13.0, - "P97": 13.9 -}, { - "P3": 10.4, - "P15": 11.1, - "P50": 12.0, - "P85": 13.1, - "P97": 14.1 -}, { - "P3": 10.5, - "P15": 11.2, - "P50": 12.2, - "P85": 13.2, - "P97": 14.2 -}, { - "P3": 10.6, - "P15": 11.3, - "P50": 12.3, - "P85": 13.4, - "P97": 14.4 -}, { - "P3": 10.7, - "P15": 11.4, - "P50": 12.4, - "P85": 13.5, - "P97": 14.5 -}, { - "P3": 10.8, - "P15": 11.5, - "P50": 12.5, - "P85": 13.6, - "P97": 14.6 -}, { - "P3": 10.9, - "P15": 11.7, - "P50": 12.6, - "P85": 13.8, - "P97": 14.8 -}, { - "P3": 11.0, - "P15": 11.8, - "P50": 12.8, - "P85": 13.9, - "P97": 14.9 -}, { - "P3": 11.1, - "P15": 11.9, - "P50": 12.9, - "P85": 14.0, - "P97": 15.1 -}, { - "P3": 11.2, - "P15": 12.0, - "P50": 13.0, - "P85": 14.1, - "P97": 15.2 -}, { - "P3": 11.3, - "P15": 12.1, - "P50": 13.1, - "P85": 14.3, - "P97": 15.3 -}, { - "P3": 11.4, - "P15": 12.2, - "P50": 13.2, - "P85": 14.4, - "P97": 15.5 -}, { - "P3": 11.5, - "P15": 12.3, - "P50": 13.4, - "P85": 14.5, - "P97": 15.6 -}, { - "P3": 11.6, - "P15": 12.4, - "P50": 13.5, - "P85": 14.7, - "P97": 15.7 -}, { - "P3": 11.7, - "P15": 12.5, - "P50": 13.6, - "P85": 14.8, - "P97": 15.9 -}, { - "P3": 11.8, - "P15": 12.6, - "P50": 13.7, - "P85": 14.9, - "P97": 16.0 -}, { - "P3": 11.9, - "P15": 12.7, - "P50": 13.8, - "P85": 15.0, - "P97": 16.1 -}, { - "P3": 12.0, - "P15": 12.8, - "P50": 13.9, - "P85": 15.2, - "P97": 16.3 -}, { - "P3": 12.1, - "P15": 12.9, - "P50": 14.1, - "P85": 15.3, - "P97": 16.4 -}, { - "P3": 12.2, - "P15": 13.1, - "P50": 14.2, - "P85": 15.4, - "P97": 16.6 -}, { - "P3": 12.3, - "P15": 13.2, - "P50": 14.3, - "P85": 15.6, - "P97": 16.7 -}, { - "P3": 12.4, - "P15": 13.3, - "P50": 14.4, - "P85": 15.7, - "P97": 16.9 -}, { - "P3": 12.5, - "P15": 13.4, - "P50": 14.6, - "P85": 15.9, - "P97": 17.0 -}, { - "P3": 12.7, - "P15": 13.5, - "P50": 14.7, - "P85": 16.0, - "P97": 17.2 -}, { - "P3": 12.8, - "P15": 13.6, - "P50": 14.8, - "P85": 16.1, - "P97": 17.3 -}, { - "P3": 12.9, - "P15": 13.8, - "P50": 14.9, - "P85": 16.3, - "P97": 17.5 -}, { - "P3": 13.0, - "P15": 13.9, - "P50": 15.1, - "P85": 16.4, - "P97": 17.7 -}, { - "P3": 13.1, - "P15": 14.0, - "P50": 15.2, - "P85": 16.6, - "P97": 17.8 -}, { - "P3": 13.2, - "P15": 14.1, - "P50": 15.4, - "P85": 16.7, - "P97": 18.0 -}, { - "P3": 13.3, - "P15": 14.2, - "P50": 15.5, - "P85": 16.9, - "P97": 18.2 -}, { - "P3": 13.4, - "P15": 14.4, - "P50": 15.6, - "P85": 17.1, - "P97": 18.4 -}, { - "P3": 13.6, - "P15": 14.5, - "P50": 15.8, - "P85": 17.2, - "P97": 18.5 -}, { - "P3": 13.7, - "P15": 14.6, - "P50": 15.9, - "P85": 17.4, - "P97": 18.7 -}, { - "P3": 13.8, - "P15": 14.8, - "P50": 16.1, - "P85": 17.6, - "P97": 18.9 -}, { - "P3": 13.9, - "P15": 14.9, - "P50": 16.2, - "P85": 17.7, - "P97": 19.1 -}, { - "P3": 14.0, - "P15": 15.0, - "P50": 16.4, - "P85": 17.9, - "P97": 19.3 -}, { - "P3": 14.2, - "P15": 15.2, - "P50": 16.5, - "P85": 18.1, - "P97": 19.5 -}, { - "P3": 14.3, - "P15": 15.3, - "P50": 16.7, - "P85": 18.2, - "P97": 19.7 -}, { - "P3": 14.4, - "P15": 15.4, - "P50": 16.8, - "P85": 18.4, - "P97": 19.9 -}, { - "P3": 14.5, - "P15": 15.6, - "P50": 17.0, - "P85": 18.6, - "P97": 20.1 -}, { - "P3": 14.7, - "P15": 15.7, - "P50": 17.2, - "P85": 18.8, - "P97": 20.3 -}, { - "P3": 14.8, - "P15": 15.9, - "P50": 17.3, - "P85": 19.0, - "P97": 20.5 -}, { - "P3": 14.9, - "P15": 16.0, - "P50": 17.5, - "P85": 19.1, - "P97": 20.7 -}, { - "P3": 15.1, - "P15": 16.2, - "P50": 17.7, - "P85": 19.3, - "P97": 20.9 -}, { - "P3": 15.2, - "P15": 16.3, - "P50": 17.8, - "P85": 19.5, - "P97": 21.1 -}, { - "P3": 15.3, - "P15": 16.5, - "P50": 18.0, - "P85": 19.7, - "P97": 21.3 -}, { - "P3": 15.5, - "P15": 16.6, - "P50": 18.2, - "P85": 19.9, - "P97": 21.5 -}, { - "P3": 15.6, - "P15": 16.8, - "P50": 18.3, - "P85": 20.1, - "P97": 21.7 -}, { - "P3": 15.8, - "P15": 16.9, - "P50": 18.5, - "P85": 20.3, - "P97": 22.0 -}, { - "P3": 15.9, - "P15": 17.1, - "P50": 18.7, - "P85": 20.5, - "P97": 22.2 -}, { - "P3": 16.1, - "P15": 17.2, - "P50": 18.9, - "P85": 20.7, - "P97": 22.4 -}, { - "P3": 16.2, - "P15": 17.4, - "P50": 19.1, - "P85": 20.9, - "P97": 22.6 -}, { - "P3": 16.3, - "P15": 17.6, - "P50": 19.2, - "P85": 21.1, - "P97": 22.9 -}, { - "P3": 16.5, - "P15": 17.7, - "P50": 19.4, - "P85": 21.4, - "P97": 23.1 -}, { - "P3": 16.6, - "P15": 17.9, - "P50": 19.6, - "P85": 21.6, - "P97": 23.4 -}, { - "P3": 16.8, - "P15": 18.1, - "P50": 19.8, - "P85": 21.8, - "P97": 23.6 -}, { - "P3": 17.0, - "P15": 18.2, - "P50": 20.0, - "P85": 22.0, - "P97": 23.8 -}, { - "P3": 17.1, - "P15": 18.4, - "P50": 20.2, - "P85": 22.2, - "P97": 24.1 -}, { - "P3": 17.3, - "P15": 18.6, - "P50": 20.4, - "P85": 22.4, - "P97": 24.3 -}, { - "P3": 17.4, - "P15": 18.7, - "P50": 20.6, - "P85": 22.7, - "P97": 24.6 -}, { - "P3": 17.6, - "P15": 18.9, - "P50": 20.8, - "P85": 22.9, - "P97": 24.8 -}, { - "P3": 17.7, - "P15": 19.1, - "P50": 21.0, - "P85": 23.1, - "P97": 25.1 -}, { - "P3": 17.9, - "P15": 19.3, - "P50": 21.2, - "P85": 23.3, - "P97": 25.3 -}, { - "P3": 18.0, - "P15": 19.4, - "P50": 21.4, - "P85": 23.6, - "P97": 25.6 -}, { - "P3": 18.2, - "P15": 19.6, - "P50": 21.6, - "P85": 23.8, - "P97": 25.8 -}, { - "P3": 18.4, - "P15": 19.8, - "P50": 21.8, - "P85": 24.0, - "P97": 26.1 -}, { - "P3": 18.5, - "P15": 20.0, - "P50": 22.0, - "P85": 24.2, - "P97": 26.3 -}, { - "P3": 18.7, - "P15": 20.1, - "P50": 22.2, - "P85": 24.5, - "P97": 26.6 -}, { - "P3": 18.8, - "P15": 20.3, - "P50": 22.4, - "P85": 24.7, - "P97": 26.8 -}] \ No newline at end of file +[ + { + "P3": 6.4, + "P15": 6.8, + "P50": 7.4, + "P85": 8.1, + "P97": 8.7 + }, + { + "P3": 6.6, + "P15": 7.1, + "P50": 7.7, + "P85": 8.4, + "P97": 9.0 + }, + { + "P3": 6.8, + "P15": 7.3, + "P50": 7.9, + "P85": 8.6, + "P97": 9.3 + }, + { + "P3": 7.0, + "P15": 7.5, + "P50": 8.1, + "P85": 8.9, + "P97": 9.5 + }, + { + "P3": 7.2, + "P15": 7.7, + "P50": 8.4, + "P85": 9.1, + "P97": 9.8 + }, + { + "P3": 7.4, + "P15": 7.9, + "P50": 8.6, + "P85": 9.4, + "P97": 10.1 + }, + { + "P3": 7.6, + "P15": 8.1, + "P50": 8.8, + "P85": 9.6, + "P97": 10.3 + }, + { + "P3": 7.8, + "P15": 8.3, + "P50": 9.0, + "P85": 9.8, + "P97": 10.6 + }, + { + "P3": 7.9, + "P15": 8.5, + "P50": 9.2, + "P85": 10.1, + "P97": 10.8 + }, + { + "P3": 8.1, + "P15": 8.7, + "P50": 9.4, + "P85": 10.3, + "P97": 11.1 + }, + { + "P3": 8.3, + "P15": 8.9, + "P50": 9.6, + "P85": 10.5, + "P97": 11.3 + }, + { + "P3": 8.5, + "P15": 9.0, + "P50": 9.8, + "P85": 10.7, + "P97": 11.6 + }, + { + "P3": 8.6, + "P15": 9.2, + "P50": 10.0, + "P85": 10.9, + "P97": 11.8 + }, + { + "P3": 8.8, + "P15": 9.4, + "P50": 10.2, + "P85": 11.1, + "P97": 12.0 + }, + { + "P3": 8.9, + "P15": 9.5, + "P50": 10.4, + "P85": 11.3, + "P97": 12.2 + }, + { + "P3": 9.1, + "P15": 9.7, + "P50": 10.6, + "P85": 11.5, + "P97": 12.4 + }, + { + "P3": 9.3, + "P15": 9.9, + "P50": 10.8, + "P85": 11.8, + "P97": 12.6 + }, + { + "P3": 9.4, + "P15": 10.1, + "P50": 11.0, + "P85": 12.0, + "P97": 12.9 + }, + { + "P3": 9.6, + "P15": 10.3, + "P50": 11.2, + "P85": 12.2, + "P97": 13.1 + }, + { + "P3": 9.8, + "P15": 10.5, + "P50": 11.4, + "P85": 12.5, + "P97": 13.4 + }, + { + "P3": 10.1, + "P15": 10.7, + "P50": 11.7, + "P85": 12.7, + "P97": 13.7 + }, + { + "P3": 10.3, + "P15": 11.0, + "P50": 11.9, + "P85": 13.0, + "P97": 13.9 + }, + { + "P3": 10.5, + "P15": 11.2, + "P50": 12.2, + "P85": 13.2, + "P97": 14.2 + }, + { + "P3": 10.7, + "P15": 11.4, + "P50": 12.4, + "P85": 13.5, + "P97": 14.5 + }, + { + "P3": 10.9, + "P15": 11.7, + "P50": 12.6, + "P85": 13.8, + "P97": 14.8 + }, + { + "P3": 11.1, + "P15": 11.9, + "P50": 12.9, + "P85": 14.0, + "P97": 15.1 + }, + { + "P3": 11.3, + "P15": 12.1, + "P50": 13.1, + "P85": 14.3, + "P97": 15.3 + }, + { + "P3": 11.5, + "P15": 12.3, + "P50": 13.4, + "P85": 14.5, + "P97": 15.6 + }, + { + "P3": 11.7, + "P15": 12.5, + "P50": 13.6, + "P85": 14.8, + "P97": 15.9 + }, + { + "P3": 11.9, + "P15": 12.7, + "P50": 13.8, + "P85": 15.0, + "P97": 16.1 + }, + { + "P3": 12.1, + "P15": 12.9, + "P50": 14.1, + "P85": 15.3, + "P97": 16.4 + }, + { + "P3": 12.3, + "P15": 13.2, + "P50": 14.3, + "P85": 15.6, + "P97": 16.7 + }, + { + "P3": 12.5, + "P15": 13.4, + "P50": 14.6, + "P85": 15.9, + "P97": 17.0 + }, + { + "P3": 12.8, + "P15": 13.6, + "P50": 14.8, + "P85": 16.1, + "P97": 17.3 + }, + { + "P3": 13.0, + "P15": 13.9, + "P50": 15.1, + "P85": 16.4, + "P97": 17.7 + }, + { + "P3": 13.2, + "P15": 14.1, + "P50": 15.4, + "P85": 16.7, + "P97": 18.0 + }, + { + "P3": 13.4, + "P15": 14.4, + "P50": 15.6, + "P85": 17.1, + "P97": 18.4 + }, + { + "P3": 13.7, + "P15": 14.6, + "P50": 15.9, + "P85": 17.4, + "P97": 18.7 + }, + { + "P3": 13.9, + "P15": 14.9, + "P50": 16.2, + "P85": 17.7, + "P97": 19.1 + }, + { + "P3": 14.2, + "P15": 15.2, + "P50": 16.5, + "P85": 18.1, + "P97": 19.5 + }, + { + "P3": 14.4, + "P15": 15.4, + "P50": 16.8, + "P85": 18.4, + "P97": 19.9 + }, + { + "P3": 14.7, + "P15": 15.7, + "P50": 17.2, + "P85": 18.8, + "P97": 20.3 + }, + { + "P3": 14.9, + "P15": 16.0, + "P50": 17.5, + "P85": 19.1, + "P97": 20.7 + }, + { + "P3": 15.2, + "P15": 16.3, + "P50": 17.8, + "P85": 19.5, + "P97": 21.1 + }, + { + "P3": 15.5, + "P15": 16.6, + "P50": 18.2, + "P85": 19.9, + "P97": 21.5 + }, + { + "P3": 15.8, + "P15": 16.9, + "P50": 18.5, + "P85": 20.3, + "P97": 22.0 + }, + { + "P3": 16.1, + "P15": 17.2, + "P50": 18.9, + "P85": 20.7, + "P97": 22.4 + }, + { + "P3": 16.3, + "P15": 17.6, + "P50": 19.2, + "P85": 21.1, + "P97": 22.9 + }, + { + "P3": 16.6, + "P15": 17.9, + "P50": 19.6, + "P85": 21.6, + "P97": 23.4 + }, + { + "P3": 17.0, + "P15": 18.2, + "P50": 20.0, + "P85": 22.0, + "P97": 23.8 + }, + { + "P3": 17.3, + "P15": 18.6, + "P50": 20.4, + "P85": 22.4, + "P97": 24.3 + }, + { + "P3": 17.6, + "P15": 18.9, + "P50": 20.8, + "P85": 22.9, + "P97": 24.8 + }, + { + "P3": 17.9, + "P15": 19.3, + "P50": 21.2, + "P85": 23.3, + "P97": 25.3 + }, + { + "P3": 18.2, + "P15": 19.6, + "P50": 21.6, + "P85": 23.8, + "P97": 25.8 + }, + { + "P3": 18.5, + "P15": 20.0, + "P50": 22.0, + "P85": 24.2, + "P97": 26.3 + }, + { + "P3": 18.8, + "P15": 20.3, + "P50": 22.4, + "P85": 24.7, + "P97": 26.8 + } + ] \ No newline at end of file diff --git a/src/DataSets/WhoStandardDataSets/Percentiles/wfhl-boys/wfl_boys_0-to-2-years_percentiles.json b/src/DataSets/WhoStandardDataSets/Percentiles/wfhl-boys/wfl_boys_0-to-2-years_percentiles.json index ad0074e..cc68746 100644 --- a/src/DataSets/WhoStandardDataSets/Percentiles/wfhl-boys/wfl_boys_0-to-2-years_percentiles.json +++ b/src/DataSets/WhoStandardDataSets/Percentiles/wfhl-boys/wfl_boys_0-to-2-years_percentiles.json @@ -1,787 +1,464 @@ -[{ - "P3": 2.1, - "P15": 2.2, - "P50": 2.4, - "P85": 2.7, - "P97": 2.9 -}, { - "P3": 2.1, - "P15": 2.3, - "P50": 2.5, - "P85": 2.8, - "P97": 3.0 -}, { - "P3": 2.2, - "P15": 2.4, - "P50": 2.6, - "P85": 2.9, - "P97": 3.1 -}, { - "P3": 2.3, - "P15": 2.5, - "P50": 2.7, - "P85": 3.0, - "P97": 3.2 -}, { - "P3": 2.4, - "P15": 2.5, - "P50": 2.8, - "P85": 3.1, - "P97": 3.3 -}, { - "P3": 2.4, - "P15": 2.6, - "P50": 2.9, - "P85": 3.1, - "P97": 3.4 -}, { - "P3": 2.5, - "P15": 2.7, - "P50": 2.9, - "P85": 3.2, - "P97": 3.5 -}, { - "P3": 2.6, - "P15": 2.8, - "P50": 3.0, - "P85": 3.3, - "P97": 3.6 -}, { - "P3": 2.7, - "P15": 2.9, - "P50": 3.1, - "P85": 3.4, - "P97": 3.7 -}, { - "P3": 2.7, - "P15": 2.9, - "P50": 3.2, - "P85": 3.5, - "P97": 3.8 -}, { - "P3": 2.8, - "P15": 3.0, - "P50": 3.3, - "P85": 3.7, - "P97": 4.0 -}, { - "P3": 2.9, - "P15": 3.1, - "P50": 3.4, - "P85": 3.8, - "P97": 4.1 -}, { - "P3": 3.0, - "P15": 3.2, - "P50": 3.5, - "P85": 3.9, - "P97": 4.2 -}, { - "P3": 3.1, - "P15": 3.3, - "P50": 3.6, - "P85": 4.0, - "P97": 4.3 -}, { - "P3": 3.2, - "P15": 3.4, - "P50": 3.8, - "P85": 4.1, - "P97": 4.5 -}, { - "P3": 3.3, - "P15": 3.6, - "P50": 3.9, - "P85": 4.3, - "P97": 4.6 -}, { - "P3": 3.4, - "P15": 3.7, - "P50": 4.0, - "P85": 4.4, - "P97": 4.7 -}, { - "P3": 3.5, - "P15": 3.8, - "P50": 4.1, - "P85": 4.5, - "P97": 4.9 -}, { - "P3": 3.6, - "P15": 3.9, - "P50": 4.3, - "P85": 4.7, - "P97": 5.0 -}, { - "P3": 3.8, - "P15": 4.0, - "P50": 4.4, - "P85": 4.8, - "P97": 5.2 -}, { - "P3": 3.9, - "P15": 4.2, - "P50": 4.5, - "P85": 5.0, - "P97": 5.4 -}, { - "P3": 4.0, - "P15": 4.3, - "P50": 4.7, - "P85": 5.1, - "P97": 5.5 -}, { - "P3": 4.1, - "P15": 4.4, - "P50": 4.8, - "P85": 5.3, - "P97": 5.7 -}, { - "P3": 4.3, - "P15": 4.6, - "P50": 5.0, - "P85": 5.4, - "P97": 5.9 -}, { - "P3": 4.4, - "P15": 4.7, - "P50": 5.1, - "P85": 5.6, - "P97": 6.0 -}, { - "P3": 4.5, - "P15": 4.8, - "P50": 5.3, - "P85": 5.8, - "P97": 6.2 -}, { - "P3": 4.6, - "P15": 5.0, - "P50": 5.4, - "P85": 5.9, - "P97": 6.4 -}, { - "P3": 4.8, - "P15": 5.1, - "P50": 5.6, - "P85": 6.1, - "P97": 6.5 -}, { - "P3": 4.9, - "P15": 5.2, - "P50": 5.7, - "P85": 6.2, - "P97": 6.7 -}, { - "P3": 5.0, - "P15": 5.4, - "P50": 5.9, - "P85": 6.4, - "P97": 6.9 -}, { - "P3": 5.1, - "P15": 5.5, - "P50": 6.0, - "P85": 6.5, - "P97": 7.0 -}, { - "P3": 5.3, - "P15": 5.6, - "P50": 6.1, - "P85": 6.7, - "P97": 7.2 -}, { - "P3": 5.4, - "P15": 5.8, - "P50": 6.3, - "P85": 6.8, - "P97": 7.4 -}, { - "P3": 5.5, - "P15": 5.9, - "P50": 6.4, - "P85": 7.0, - "P97": 7.5 -}, { - "P3": 5.6, - "P15": 6.0, - "P50": 6.5, - "P85": 7.1, - "P97": 7.7 -}, { - "P3": 5.7, - "P15": 6.1, - "P50": 6.7, - "P85": 7.3, - "P97": 7.8 -}, { - "P3": 5.8, - "P15": 6.2, - "P50": 6.8, - "P85": 7.4, - "P97": 8.0 -}, { - "P3": 5.9, - "P15": 6.3, - "P50": 6.9, - "P85": 7.5, - "P97": 8.1 -}, { - "P3": 6.0, - "P15": 6.5, - "P50": 7.0, - "P85": 7.7, - "P97": 8.2 -}, { - "P3": 6.1, - "P15": 6.6, - "P50": 7.1, - "P85": 7.8, - "P97": 8.4 -}, { - "P3": 6.3, - "P15": 6.7, - "P50": 7.3, - "P85": 7.9, - "P97": 8.5 -}, { - "P3": 6.4, - "P15": 6.8, - "P50": 7.4, - "P85": 8.1, - "P97": 8.7 -}, { - "P3": 6.5, - "P15": 6.9, - "P50": 7.5, - "P85": 8.2, - "P97": 8.8 -}, { - "P3": 6.6, - "P15": 7.0, - "P50": 7.6, - "P85": 8.3, - "P97": 8.9 -}, { - "P3": 6.7, - "P15": 7.1, - "P50": 7.7, - "P85": 8.4, - "P97": 9.1 -}, { - "P3": 6.8, - "P15": 7.2, - "P50": 7.9, - "P85": 8.6, - "P97": 9.2 -}, { - "P3": 6.9, - "P15": 7.3, - "P50": 8.0, - "P85": 8.7, - "P97": 9.3 -}, { - "P3": 7.0, - "P15": 7.4, - "P50": 8.1, - "P85": 8.8, - "P97": 9.5 -}, { - "P3": 7.1, - "P15": 7.5, - "P50": 8.2, - "P85": 8.9, - "P97": 9.6 -}, { - "P3": 7.1, - "P15": 7.6, - "P50": 8.3, - "P85": 9.1, - "P97": 9.7 -}, { - "P3": 7.2, - "P15": 7.7, - "P50": 8.4, - "P85": 9.2, - "P97": 9.9 -}, { - "P3": 7.3, - "P15": 7.8, - "P50": 8.5, - "P85": 9.3, - "P97": 10.0 -}, { - "P3": 7.4, - "P15": 8.0, - "P50": 8.6, - "P85": 9.4, - "P97": 10.1 -}, { - "P3": 7.5, - "P15": 8.1, - "P50": 8.8, - "P85": 9.6, - "P97": 10.3 -}, { - "P3": 7.6, - "P15": 8.2, - "P50": 8.9, - "P85": 9.7, - "P97": 10.4 -}, { - "P3": 7.7, - "P15": 8.3, - "P50": 9.0, - "P85": 9.8, - "P97": 10.5 -}, { - "P3": 7.8, - "P15": 8.4, - "P50": 9.1, - "P85": 9.9, - "P97": 10.7 -}, { - "P3": 7.9, - "P15": 8.4, - "P50": 9.2, - "P85": 10.0, - "P97": 10.8 -}, { - "P3": 8.0, - "P15": 8.5, - "P50": 9.3, - "P85": 10.1, - "P97": 10.9 -}, { - "P3": 8.1, - "P15": 8.6, - "P50": 9.4, - "P85": 10.3, - "P97": 11.0 -}, { - "P3": 8.2, - "P15": 8.7, - "P50": 9.5, - "P85": 10.4, - "P97": 11.2 -}, { - "P3": 8.2, - "P15": 8.8, - "P50": 9.6, - "P85": 10.5, - "P97": 11.3 -}, { - "P3": 8.3, - "P15": 8.9, - "P50": 9.7, - "P85": 10.6, - "P97": 11.4 -}, { - "P3": 8.4, - "P15": 9.0, - "P50": 9.8, - "P85": 10.7, - "P97": 11.5 -}, { - "P3": 8.5, - "P15": 9.1, - "P50": 9.9, - "P85": 10.8, - "P97": 11.6 -}, { - "P3": 8.6, - "P15": 9.2, - "P50": 10.0, - "P85": 10.9, - "P97": 11.7 -}, { - "P3": 8.7, - "P15": 9.3, - "P50": 10.1, - "P85": 11.0, - "P97": 11.8 -}, { - "P3": 8.7, - "P15": 9.3, - "P50": 10.2, - "P85": 11.1, - "P97": 12.0 -}, { - "P3": 8.8, - "P15": 9.4, - "P50": 10.3, - "P85": 11.2, - "P97": 12.1 -}, { - "P3": 8.9, - "P15": 9.5, - "P50": 10.4, - "P85": 11.3, - "P97": 12.2 -}, { - "P3": 9.0, - "P15": 9.6, - "P50": 10.4, - "P85": 11.4, - "P97": 12.3 -}, { - "P3": 9.1, - "P15": 9.7, - "P50": 10.5, - "P85": 11.5, - "P97": 12.4 -}, { - "P3": 9.1, - "P15": 9.8, - "P50": 10.6, - "P85": 11.6, - "P97": 12.5 -}, { - "P3": 9.2, - "P15": 9.9, - "P50": 10.7, - "P85": 11.7, - "P97": 12.6 -}, { - "P3": 9.3, - "P15": 10.0, - "P50": 10.8, - "P85": 11.8, - "P97": 12.7 -}, { - "P3": 9.4, - "P15": 10.1, - "P50": 10.9, - "P85": 11.9, - "P97": 12.8 -}, { - "P3": 9.5, - "P15": 10.1, - "P50": 11.0, - "P85": 12.0, - "P97": 13.0 -}, { - "P3": 9.6, - "P15": 10.3, - "P50": 11.2, - "P85": 12.2, - "P97": 13.1 -}, { - "P3": 9.7, - "P15": 10.4, - "P50": 11.3, - "P85": 12.3, - "P97": 13.2 -}, { - "P3": 9.8, - "P15": 10.5, - "P50": 11.4, - "P85": 12.4, - "P97": 13.3 -}, { - "P3": 9.9, - "P15": 10.6, - "P50": 11.5, - "P85": 12.5, - "P97": 13.5 -}, { - "P3": 10.0, - "P15": 10.7, - "P50": 11.6, - "P85": 12.7, - "P97": 13.6 -}, { - "P3": 10.1, - "P15": 10.8, - "P50": 11.7, - "P85": 12.8, - "P97": 13.7 -}, { - "P3": 10.2, - "P15": 10.9, - "P50": 11.9, - "P85": 12.9, - "P97": 13.9 -}, { - "P3": 10.3, - "P15": 11.0, - "P50": 12.0, - "P85": 13.1, - "P97": 14.0 -}, { - "P3": 10.4, - "P15": 11.2, - "P50": 12.1, - "P85": 13.2, - "P97": 14.2 -}, { - "P3": 10.6, - "P15": 11.3, - "P50": 12.2, - "P85": 13.3, - "P97": 14.3 -}, { - "P3": 10.7, - "P15": 11.4, - "P50": 12.4, - "P85": 13.5, - "P97": 14.4 -}, { - "P3": 10.8, - "P15": 11.5, - "P50": 12.5, - "P85": 13.6, - "P97": 14.6 -}, { - "P3": 10.9, - "P15": 11.6, - "P50": 12.6, - "P85": 13.7, - "P97": 14.7 -}, { - "P3": 11.0, - "P15": 11.7, - "P50": 12.7, - "P85": 13.8, - "P97": 14.9 -}, { - "P3": 11.1, - "P15": 11.8, - "P50": 12.8, - "P85": 14.0, - "P97": 15.0 -}, { - "P3": 11.2, - "P15": 11.9, - "P50": 13.0, - "P85": 14.1, - "P97": 15.1 -}, { - "P3": 11.3, - "P15": 12.0, - "P50": 13.1, - "P85": 14.2, - "P97": 15.3 -}, { - "P3": 11.4, - "P15": 12.2, - "P50": 13.2, - "P85": 14.4, - "P97": 15.4 -}, { - "P3": 11.5, - "P15": 12.3, - "P50": 13.3, - "P85": 14.5, - "P97": 15.5 -}, { - "P3": 11.6, - "P15": 12.4, - "P50": 13.4, - "P85": 14.6, - "P97": 15.7 -}, { - "P3": 11.7, - "P15": 12.5, - "P50": 13.5, - "P85": 14.7, - "P97": 15.8 -}, { - "P3": 11.8, - "P15": 12.6, - "P50": 13.7, - "P85": 14.9, - "P97": 16.0 -}, { - "P3": 11.9, - "P15": 12.7, - "P50": 13.8, - "P85": 15.0, - "P97": 16.1 -}, { - "P3": 12.0, - "P15": 12.8, - "P50": 13.9, - "P85": 15.1, - "P97": 16.2 -}, { - "P3": 12.1, - "P15": 12.9, - "P50": 14.0, - "P85": 15.3, - "P97": 16.4 -}, { - "P3": 12.2, - "P15": 13.0, - "P50": 14.1, - "P85": 15.4, - "P97": 16.5 -}, { - "P3": 12.3, - "P15": 13.1, - "P50": 14.3, - "P85": 15.5, - "P97": 16.7 -}, { - "P3": 12.4, - "P15": 13.2, - "P50": 14.4, - "P85": 15.7, - "P97": 16.8 -}, { - "P3": 12.5, - "P15": 13.4, - "P50": 14.5, - "P85": 15.8, - "P97": 17.0 -}, { - "P3": 12.6, - "P15": 13.5, - "P50": 14.6, - "P85": 15.9, - "P97": 17.1 -}, { - "P3": 12.7, - "P15": 13.6, - "P50": 14.8, - "P85": 16.1, - "P97": 17.3 -}, { - "P3": 12.8, - "P15": 13.7, - "P50": 14.9, - "P85": 16.2, - "P97": 17.4 -}, { - "P3": 12.9, - "P15": 13.8, - "P50": 15.0, - "P85": 16.4, - "P97": 17.6 -}, { - "P3": 13.0, - "P15": 13.9, - "P50": 15.2, - "P85": 16.5, - "P97": 17.8 -}, { - "P3": 13.2, - "P15": 14.1, - "P50": 15.3, - "P85": 16.7, - "P97": 17.9 -}, { - "P3": 13.3, - "P15": 14.2, - "P50": 15.4, - "P85": 16.8, - "P97": 18.1 -}, { - "P3": 13.4, - "P15": 14.3, - "P50": 15.6, - "P85": 17.0, - "P97": 18.3 -}, { - "P3": 13.5, - "P15": 14.5, - "P50": 15.7, - "P85": 17.2, - "P97": 18.5 -}, { - "P3": 13.6, - "P15": 14.6, - "P50": 15.9, - "P85": 17.3, - "P97": 18.6 -}, { - "P3": 13.8, - "P15": 14.7, - "P50": 16.0, - "P85": 17.5, - "P97": 18.8 -}, { - "P3": 13.9, - "P15": 14.8, - "P50": 16.2, - "P85": 17.7, - "P97": 19.0 -}, { - "P3": 14.0, - "P15": 15.0, - "P50": 16.3, - "P85": 17.8, - "P97": 19.2 -}, { - "P3": 14.1, - "P15": 15.1, - "P50": 16.5, - "P85": 18.0, - "P97": 19.4 -}, { - "P3": 14.2, - "P15": 15.3, - "P50": 16.6, - "P85": 18.2, - "P97": 19.6 -}, { - "P3": 14.4, - "P15": 15.4, - "P50": 16.8, - "P85": 18.4, - "P97": 19.8 -}, { - "P3": 14.5, - "P15": 15.5, - "P50": 16.9, - "P85": 18.5, - "P97": 20.0 -}, { - "P3": 14.6, - "P15": 15.7, - "P50": 17.1, - "P85": 18.7, - "P97": 20.2 -}, { - "P3": 14.8, - "P15": 15.8, - "P50": 17.3, - "P85": 18.9, - "P97": 20.4 -}, { - "P3": 14.9, - "P15": 16.0, - "P50": 17.4, - "P85": 19.1, - "P97": 20.6 -}, { - "P3": 15.0, - "P15": 16.1, - "P50": 17.6, - "P85": 19.3, - "P97": 20.8 -}, { - "P3": 15.2, - "P15": 16.3, - "P50": 17.8, - "P85": 19.5, - "P97": 21.0 -}, { - "P3": 15.3, - "P15": 16.4, - "P50": 17.9, - "P85": 19.6, - "P97": 21.2 -}, { - "P3": 15.4, - "P15": 16.6, - "P50": 18.1, - "P85": 19.8, - "P97": 21.4 -}, { - "P3": 15.6, - "P15": 16.7, - "P50": 18.3, - "P85": 20.0, - "P97": 21.6 -}] \ No newline at end of file +[ + { + "P3": 2.1, + "P15": 2.2, + "P50": 2.4, + "P85": 2.7, + "P97": 2.9 + }, + { + "P3": 2.2, + "P15": 2.4, + "P50": 2.6, + "P85": 2.9, + "P97": 3.1 + }, + { + "P3": 2.4, + "P15": 2.5, + "P50": 2.8, + "P85": 3.1, + "P97": 3.3 + }, + { + "P3": 2.5, + "P15": 2.7, + "P50": 2.9, + "P85": 3.2, + "P97": 3.5 + }, + { + "P3": 2.7, + "P15": 2.9, + "P50": 3.1, + "P85": 3.4, + "P97": 3.7 + }, + { + "P3": 2.8, + "P15": 3.0, + "P50": 3.3, + "P85": 3.7, + "P97": 4.0 + }, + { + "P3": 3.0, + "P15": 3.2, + "P50": 3.5, + "P85": 3.9, + "P97": 4.2 + }, + { + "P3": 3.2, + "P15": 3.4, + "P50": 3.8, + "P85": 4.1, + "P97": 4.5 + }, + { + "P3": 3.4, + "P15": 3.7, + "P50": 4.0, + "P85": 4.4, + "P97": 4.7 + }, + { + "P3": 3.6, + "P15": 3.9, + "P50": 4.3, + "P85": 4.7, + "P97": 5.0 + }, + { + "P3": 3.9, + "P15": 4.2, + "P50": 4.5, + "P85": 5.0, + "P97": 5.4 + }, + { + "P3": 4.1, + "P15": 4.4, + "P50": 4.8, + "P85": 5.3, + "P97": 5.7 + }, + { + "P3": 4.4, + "P15": 4.7, + "P50": 5.1, + "P85": 5.6, + "P97": 6.0 + }, + { + "P3": 4.6, + "P15": 5.0, + "P50": 5.4, + "P85": 5.9, + "P97": 6.4 + }, + { + "P3": 4.9, + "P15": 5.2, + "P50": 5.7, + "P85": 6.2, + "P97": 6.7 + }, + { + "P3": 5.1, + "P15": 5.5, + "P50": 6.0, + "P85": 6.5, + "P97": 7.0 + }, + { + "P3": 5.4, + "P15": 5.8, + "P50": 6.3, + "P85": 6.8, + "P97": 7.4 + }, + { + "P3": 5.6, + "P15": 6.0, + "P50": 6.5, + "P85": 7.1, + "P97": 7.7 + }, + { + "P3": 5.8, + "P15": 6.2, + "P50": 6.8, + "P85": 7.4, + "P97": 8.0 + }, + { + "P3": 6.0, + "P15": 6.5, + "P50": 7.0, + "P85": 7.7, + "P97": 8.2 + }, + { + "P3": 6.3, + "P15": 6.7, + "P50": 7.3, + "P85": 7.9, + "P97": 8.5 + }, + { + "P3": 6.5, + "P15": 6.9, + "P50": 7.5, + "P85": 8.2, + "P97": 8.8 + }, + { + "P3": 6.7, + "P15": 7.1, + "P50": 7.7, + "P85": 8.4, + "P97": 9.1 + }, + { + "P3": 6.9, + "P15": 7.3, + "P50": 8.0, + "P85": 8.7, + "P97": 9.3 + }, + { + "P3": 7.1, + "P15": 7.5, + "P50": 8.2, + "P85": 8.9, + "P97": 9.6 + }, + { + "P3": 7.2, + "P15": 7.7, + "P50": 8.4, + "P85": 9.2, + "P97": 9.9 + }, + { + "P3": 7.4, + "P15": 8.0, + "P50": 8.6, + "P85": 9.4, + "P97": 10.1 + }, + { + "P3": 7.6, + "P15": 8.2, + "P50": 8.9, + "P85": 9.7, + "P97": 10.4 + }, + { + "P3": 7.8, + "P15": 8.4, + "P50": 9.1, + "P85": 9.9, + "P97": 10.7 + }, + { + "P3": 8.0, + "P15": 8.5, + "P50": 9.3, + "P85": 10.1, + "P97": 10.9 + }, + { + "P3": 8.2, + "P15": 8.7, + "P50": 9.5, + "P85": 10.4, + "P97": 11.2 + }, + { + "P3": 8.3, + "P15": 8.9, + "P50": 9.7, + "P85": 10.6, + "P97": 11.4 + }, + { + "P3": 8.5, + "P15": 9.1, + "P50": 9.9, + "P85": 10.8, + "P97": 11.6 + }, + { + "P3": 8.7, + "P15": 9.3, + "P50": 10.1, + "P85": 11.0, + "P97": 11.8 + }, + { + "P3": 8.8, + "P15": 9.4, + "P50": 10.3, + "P85": 11.2, + "P97": 12.1 + }, + { + "P3": 9.0, + "P15": 9.6, + "P50": 10.4, + "P85": 11.4, + "P97": 12.3 + }, + { + "P3": 9.1, + "P15": 9.8, + "P50": 10.6, + "P85": 11.6, + "P97": 12.5 + }, + { + "P3": 9.3, + "P15": 10.0, + "P50": 10.8, + "P85": 11.8, + "P97": 12.7 + }, + { + "P3": 9.5, + "P15": 10.1, + "P50": 11.0, + "P85": 12.0, + "P97": 13.0 + }, + { + "P3": 9.7, + "P15": 10.4, + "P50": 11.3, + "P85": 12.3, + "P97": 13.2 + }, + { + "P3": 9.9, + "P15": 10.6, + "P50": 11.5, + "P85": 12.5, + "P97": 13.5 + }, + { + "P3": 10.1, + "P15": 10.8, + "P50": 11.7, + "P85": 12.8, + "P97": 13.7 + }, + { + "P3": 10.3, + "P15": 11.0, + "P50": 12.0, + "P85": 13.1, + "P97": 14.0 + }, + { + "P3": 10.6, + "P15": 11.3, + "P50": 12.2, + "P85": 13.3, + "P97": 14.3 + }, + { + "P3": 10.8, + "P15": 11.5, + "P50": 12.5, + "P85": 13.6, + "P97": 14.6 + }, + { + "P3": 11.0, + "P15": 11.7, + "P50": 12.7, + "P85": 13.8, + "P97": 14.9 + }, + { + "P3": 11.2, + "P15": 11.9, + "P50": 13.0, + "P85": 14.1, + "P97": 15.1 + }, + { + "P3": 11.4, + "P15": 12.2, + "P50": 13.2, + "P85": 14.4, + "P97": 15.4 + }, + { + "P3": 11.6, + "P15": 12.4, + "P50": 13.4, + "P85": 14.6, + "P97": 15.7 + }, + { + "P3": 11.8, + "P15": 12.6, + "P50": 13.7, + "P85": 14.9, + "P97": 16.0 + }, + { + "P3": 12.0, + "P15": 12.8, + "P50": 13.9, + "P85": 15.1, + "P97": 16.2 + }, + { + "P3": 12.2, + "P15": 13.0, + "P50": 14.1, + "P85": 15.4, + "P97": 16.5 + }, + { + "P3": 12.4, + "P15": 13.2, + "P50": 14.4, + "P85": 15.7, + "P97": 16.8 + }, + { + "P3": 12.6, + "P15": 13.5, + "P50": 14.6, + "P85": 15.9, + "P97": 17.1 + }, + { + "P3": 12.8, + "P15": 13.7, + "P50": 14.9, + "P85": 16.2, + "P97": 17.4 + }, + { + "P3": 13.0, + "P15": 13.9, + "P50": 15.2, + "P85": 16.5, + "P97": 17.8 + }, + { + "P3": 13.3, + "P15": 14.2, + "P50": 15.4, + "P85": 16.8, + "P97": 18.1 + }, + { + "P3": 13.5, + "P15": 14.5, + "P50": 15.7, + "P85": 17.2, + "P97": 18.5 + }, + { + "P3": 13.8, + "P15": 14.7, + "P50": 16.0, + "P85": 17.5, + "P97": 18.8 + }, + { + "P3": 14.0, + "P15": 15.0, + "P50": 16.3, + "P85": 17.8, + "P97": 19.2 + }, + { + "P3": 14.2, + "P15": 15.3, + "P50": 16.6, + "P85": 18.2, + "P97": 19.6 + }, + { + "P3": 14.5, + "P15": 15.5, + "P50": 16.9, + "P85": 18.5, + "P97": 20.0 + }, + { + "P3": 14.8, + "P15": 15.8, + "P50": 17.3, + "P85": 18.9, + "P97": 20.4 + }, + { + "P3": 15.0, + "P15": 16.1, + "P50": 17.6, + "P85": 19.3, + "P97": 20.8 + }, + { + "P3": 15.3, + "P15": 16.4, + "P50": 17.9, + "P85": 19.6, + "P97": 21.2 + }, + { + "P3": 15.6, + "P15": 16.7, + "P50": 18.3, + "P85": 20.0, + "P97": 21.6 + } + ] \ No newline at end of file diff --git a/src/DataSets/WhoStandardDataSets/Percentiles/wfhl-girls/wfh_girls_2-to-5-years_percentiles.json b/src/DataSets/WhoStandardDataSets/Percentiles/wfhl-girls/wfh_girls_2-to-5-years_percentiles.json index 3cc9f53..cf414e4 100644 --- a/src/DataSets/WhoStandardDataSets/Percentiles/wfhl-girls/wfh_girls_2-to-5-years_percentiles.json +++ b/src/DataSets/WhoStandardDataSets/Percentiles/wfhl-girls/wfh_girls_2-to-5-years_percentiles.json @@ -1,667 +1,394 @@ -[{ - "P3": 6.1, - "P15": 6.6, - "P50": 7.2, - "P85": 8.0, - "P97": 8.6 -}, { - "P3": 6.2, - "P15": 6.7, - "P50": 7.4, - "P85": 8.1, - "P97": 8.8 -}, { - "P3": 6.3, - "P15": 6.8, - "P50": 7.5, - "P85": 8.2, - "P97": 8.9 -}, { - "P3": 6.4, - "P15": 6.9, - "P50": 7.6, - "P85": 8.3, - "P97": 9.0 -}, { - "P3": 6.5, - "P15": 7.0, - "P50": 7.7, - "P85": 8.5, - "P97": 9.2 -}, { - "P3": 6.6, - "P15": 7.1, - "P50": 7.8, - "P85": 8.6, - "P97": 9.3 -}, { - "P3": 6.7, - "P15": 7.2, - "P50": 7.9, - "P85": 8.7, - "P97": 9.4 -}, { - "P3": 6.8, - "P15": 7.3, - "P50": 8.0, - "P85": 8.8, - "P97": 9.5 -}, { - "P3": 6.9, - "P15": 7.4, - "P50": 8.1, - "P85": 8.9, - "P97": 9.7 -}, { - "P3": 7.0, - "P15": 7.5, - "P50": 8.2, - "P85": 9.0, - "P97": 9.8 -}, { - "P3": 7.0, - "P15": 7.6, - "P50": 8.3, - "P85": 9.1, - "P97": 9.9 -}, { - "P3": 7.1, - "P15": 7.7, - "P50": 8.4, - "P85": 9.3, - "P97": 10.0 -}, { - "P3": 7.2, - "P15": 7.8, - "P50": 8.5, - "P85": 9.4, - "P97": 10.1 -}, { - "P3": 7.3, - "P15": 7.9, - "P50": 8.6, - "P85": 9.5, - "P97": 10.3 -}, { - "P3": 7.4, - "P15": 7.9, - "P50": 8.7, - "P85": 9.6, - "P97": 10.4 -}, { - "P3": 7.5, - "P15": 8.0, - "P50": 8.8, - "P85": 9.7, - "P97": 10.5 -}, { - "P3": 7.6, - "P15": 8.1, - "P50": 8.9, - "P85": 9.8, - "P97": 10.6 -}, { - "P3": 7.6, - "P15": 8.2, - "P50": 9.0, - "P85": 9.9, - "P97": 10.7 -}, { - "P3": 7.7, - "P15": 8.3, - "P50": 9.1, - "P85": 10.0, - "P97": 10.8 -}, { - "P3": 7.8, - "P15": 8.4, - "P50": 9.2, - "P85": 10.1, - "P97": 10.9 -}, { - "P3": 7.9, - "P15": 8.5, - "P50": 9.3, - "P85": 10.2, - "P97": 11.1 -}, { - "P3": 8.0, - "P15": 8.6, - "P50": 9.4, - "P85": 10.3, - "P97": 11.2 -}, { - "P3": 8.0, - "P15": 8.6, - "P50": 9.5, - "P85": 10.4, - "P97": 11.3 -}, { - "P3": 8.1, - "P15": 8.7, - "P50": 9.6, - "P85": 10.5, - "P97": 11.4 -}, { - "P3": 8.2, - "P15": 8.8, - "P50": 9.6, - "P85": 10.6, - "P97": 11.5 -}, { - "P3": 8.3, - "P15": 8.9, - "P50": 9.7, - "P85": 10.7, - "P97": 11.6 -}, { - "P3": 8.4, - "P15": 9.0, - "P50": 9.8, - "P85": 10.8, - "P97": 11.7 -}, { - "P3": 8.4, - "P15": 9.1, - "P50": 9.9, - "P85": 10.9, - "P97": 11.8 -}, { - "P3": 8.5, - "P15": 9.2, - "P50": 10.0, - "P85": 11.0, - "P97": 11.9 -}, { - "P3": 8.6, - "P15": 9.2, - "P50": 10.1, - "P85": 11.1, - "P97": 12.1 -}, { - "P3": 8.7, - "P15": 9.3, - "P50": 10.2, - "P85": 11.2, - "P97": 12.2 -}, { - "P3": 8.8, - "P15": 9.4, - "P50": 10.3, - "P85": 11.4, - "P97": 12.3 -}, { - "P3": 8.9, - "P15": 9.5, - "P50": 10.4, - "P85": 11.5, - "P97": 12.4 -}, { - "P3": 9.0, - "P15": 9.6, - "P50": 10.6, - "P85": 11.6, - "P97": 12.6 -}, { - "P3": 9.1, - "P15": 9.7, - "P50": 10.7, - "P85": 11.7, - "P97": 12.7 -}, { - "P3": 9.2, - "P15": 9.9, - "P50": 10.8, - "P85": 11.9, - "P97": 12.8 -}, { - "P3": 9.3, - "P15": 10.0, - "P50": 10.9, - "P85": 12.0, - "P97": 13.0 -}, { - "P3": 9.4, - "P15": 10.1, - "P50": 11.0, - "P85": 12.1, - "P97": 13.1 -}, { - "P3": 9.5, - "P15": 10.2, - "P50": 11.1, - "P85": 12.2, - "P97": 13.3 -}, { - "P3": 9.6, - "P15": 10.3, - "P50": 11.3, - "P85": 12.4, - "P97": 13.4 -}, { - "P3": 9.7, - "P15": 10.4, - "P50": 11.4, - "P85": 12.5, - "P97": 13.5 -}, { - "P3": 9.8, - "P15": 10.5, - "P50": 11.5, - "P85": 12.7, - "P97": 13.7 -}, { - "P3": 9.9, - "P15": 10.6, - "P50": 11.6, - "P85": 12.8, - "P97": 13.8 -}, { - "P3": 10.0, - "P15": 10.8, - "P50": 11.8, - "P85": 12.9, - "P97": 14.0 -}, { - "P3": 10.1, - "P15": 10.9, - "P50": 11.9, - "P85": 13.1, - "P97": 14.1 -}, { - "P3": 10.2, - "P15": 11.0, - "P50": 12.0, - "P85": 13.2, - "P97": 14.3 -}, { - "P3": 10.3, - "P15": 11.1, - "P50": 12.1, - "P85": 13.3, - "P97": 14.4 -}, { - "P3": 10.4, - "P15": 11.2, - "P50": 12.3, - "P85": 13.5, - "P97": 14.6 -}, { - "P3": 10.5, - "P15": 11.3, - "P50": 12.4, - "P85": 13.6, - "P97": 14.7 -}, { - "P3": 10.6, - "P15": 11.4, - "P50": 12.5, - "P85": 13.8, - "P97": 14.9 -}, { - "P3": 10.8, - "P15": 11.5, - "P50": 12.6, - "P85": 13.9, - "P97": 15.0 -}, { - "P3": 10.9, - "P15": 11.7, - "P50": 12.8, - "P85": 14.0, - "P97": 15.2 -}, { - "P3": 11.0, - "P15": 11.8, - "P50": 12.9, - "P85": 14.2, - "P97": 15.3 -}, { - "P3": 11.1, - "P15": 11.9, - "P50": 13.0, - "P85": 14.3, - "P97": 15.5 -}, { - "P3": 11.2, - "P15": 12.0, - "P50": 13.1, - "P85": 14.4, - "P97": 15.6 -}, { - "P3": 11.3, - "P15": 12.1, - "P50": 13.3, - "P85": 14.6, - "P97": 15.8 -}, { - "P3": 11.4, - "P15": 12.2, - "P50": 13.4, - "P85": 14.7, - "P97": 15.9 -}, { - "P3": 11.5, - "P15": 12.3, - "P50": 13.5, - "P85": 14.9, - "P97": 16.1 -}, { - "P3": 11.6, - "P15": 12.4, - "P50": 13.6, - "P85": 15.0, - "P97": 16.2 -}, { - "P3": 11.7, - "P15": 12.6, - "P50": 13.8, - "P85": 15.1, - "P97": 16.4 -}, { - "P3": 11.8, - "P15": 12.7, - "P50": 13.9, - "P85": 15.3, - "P97": 16.5 -}, { - "P3": 11.9, - "P15": 12.8, - "P50": 14.0, - "P85": 15.4, - "P97": 16.7 -}, { - "P3": 12.0, - "P15": 12.9, - "P50": 14.1, - "P85": 15.6, - "P97": 16.9 -}, { - "P3": 12.1, - "P15": 13.0, - "P50": 14.3, - "P85": 15.7, - "P97": 17.0 -}, { - "P3": 12.2, - "P15": 13.1, - "P50": 14.4, - "P85": 15.8, - "P97": 17.2 -}, { - "P3": 12.3, - "P15": 13.3, - "P50": 14.5, - "P85": 16.0, - "P97": 17.3 -}, { - "P3": 12.4, - "P15": 13.4, - "P50": 14.7, - "P85": 16.1, - "P97": 17.5 -}, { - "P3": 12.6, - "P15": 13.5, - "P50": 14.8, - "P85": 16.3, - "P97": 17.7 -}, { - "P3": 12.7, - "P15": 13.6, - "P50": 14.9, - "P85": 16.4, - "P97": 17.8 -}, { - "P3": 12.8, - "P15": 13.8, - "P50": 15.1, - "P85": 16.6, - "P97": 18.0 -}, { - "P3": 12.9, - "P15": 13.9, - "P50": 15.2, - "P85": 16.8, - "P97": 18.2 -}, { - "P3": 13.0, - "P15": 14.0, - "P50": 15.4, - "P85": 16.9, - "P97": 18.3 -}, { - "P3": 13.1, - "P15": 14.1, - "P50": 15.5, - "P85": 17.1, - "P97": 18.5 -}, { - "P3": 13.3, - "P15": 14.3, - "P50": 15.7, - "P85": 17.2, - "P97": 18.7 -}, { - "P3": 13.4, - "P15": 14.4, - "P50": 15.8, - "P85": 17.4, - "P97": 18.9 -}, { - "P3": 13.5, - "P15": 14.5, - "P50": 16.0, - "P85": 17.6, - "P97": 19.1 -}, { - "P3": 13.6, - "P15": 14.7, - "P50": 16.1, - "P85": 17.8, - "P97": 19.3 -}, { - "P3": 13.8, - "P15": 14.8, - "P50": 16.3, - "P85": 17.9, - "P97": 19.5 -}, { - "P3": 13.9, - "P15": 15.0, - "P50": 16.4, - "P85": 18.1, - "P97": 19.7 -}, { - "P3": 14.0, - "P15": 15.1, - "P50": 16.6, - "P85": 18.3, - "P97": 19.9 -}, { - "P3": 14.2, - "P15": 15.3, - "P50": 16.8, - "P85": 18.5, - "P97": 20.1 -}, { - "P3": 14.3, - "P15": 15.4, - "P50": 16.9, - "P85": 18.7, - "P97": 20.3 -}, { - "P3": 14.5, - "P15": 15.6, - "P50": 17.1, - "P85": 18.9, - "P97": 20.5 -}, { - "P3": 14.6, - "P15": 15.7, - "P50": 17.3, - "P85": 19.1, - "P97": 20.7 -}, { - "P3": 14.7, - "P15": 15.9, - "P50": 17.5, - "P85": 19.3, - "P97": 21.0 -}, { - "P3": 14.9, - "P15": 16.1, - "P50": 17.7, - "P85": 19.5, - "P97": 21.2 -}, { - "P3": 15.0, - "P15": 16.2, - "P50": 17.8, - "P85": 19.7, - "P97": 21.4 -}, { - "P3": 15.2, - "P15": 16.4, - "P50": 18.0, - "P85": 19.9, - "P97": 21.6 -}, { - "P3": 15.4, - "P15": 16.6, - "P50": 18.2, - "P85": 20.1, - "P97": 21.9 -}, { - "P3": 15.5, - "P15": 16.7, - "P50": 18.4, - "P85": 20.3, - "P97": 22.1 -}, { - "P3": 15.7, - "P15": 16.9, - "P50": 18.6, - "P85": 20.6, - "P97": 22.4 -}, { - "P3": 15.8, - "P15": 17.1, - "P50": 18.8, - "P85": 20.8, - "P97": 22.6 -}, { - "P3": 16.0, - "P15": 17.3, - "P50": 19.0, - "P85": 21.0, - "P97": 22.8 -}, { - "P3": 16.2, - "P15": 17.4, - "P50": 19.2, - "P85": 21.2, - "P97": 23.1 -}, { - "P3": 16.3, - "P15": 17.6, - "P50": 19.4, - "P85": 21.5, - "P97": 23.4 -}, { - "P3": 16.5, - "P15": 17.8, - "P50": 19.6, - "P85": 21.7, - "P97": 23.6 -}, { - "P3": 16.7, - "P15": 18.0, - "P50": 19.8, - "P85": 21.9, - "P97": 23.9 -}, { - "P3": 16.8, - "P15": 18.2, - "P50": 20.0, - "P85": 22.2, - "P97": 24.1 -}, { - "P3": 17.0, - "P15": 18.4, - "P50": 20.2, - "P85": 22.4, - "P97": 24.4 -}, { - "P3": 17.2, - "P15": 18.5, - "P50": 20.5, - "P85": 22.6, - "P97": 24.7 -}, { - "P3": 17.3, - "P15": 18.7, - "P50": 20.7, - "P85": 22.9, - "P97": 24.9 -}, { - "P3": 17.5, - "P15": 18.9, - "P50": 20.9, - "P85": 23.1, - "P97": 25.2 -}, { - "P3": 17.7, - "P15": 19.1, - "P50": 21.1, - "P85": 23.4, - "P97": 25.5 -}, { - "P3": 17.9, - "P15": 19.3, - "P50": 21.3, - "P85": 23.6, - "P97": 25.7 -}, { - "P3": 18.0, - "P15": 19.5, - "P50": 21.5, - "P85": 23.8, - "P97": 26.0 -}, { - "P3": 18.2, - "P15": 19.7, - "P50": 21.7, - "P85": 24.1, - "P97": 26.3 -}, { - "P3": 18.4, - "P15": 19.9, - "P50": 22.0, - "P85": 24.3, - "P97": 26.5 -}, { - "P3": 18.6, - "P15": 20.1, - "P50": 22.2, - "P85": 24.6, - "P97": 26.8 -}, { - "P3": 18.7, - "P15": 20.3, - "P50": 22.4, - "P85": 24.8, - "P97": 27.1 -}, { - "P3": 18.9, - "P15": 20.5, - "P50": 22.6, - "P85": 25.1, - "P97": 27.4 -}, { - "P3": 19.1, - "P15": 20.6, - "P50": 22.8, - "P85": 25.3, - "P97": 27.6 -}] \ No newline at end of file +[ + { + "P3": 6.1, + "P15": 6.6, + "P50": 7.2, + "P85": 8.0, + "P97": 8.6 + }, + { + "P3": 6.3, + "P15": 6.8, + "P50": 7.5, + "P85": 8.2, + "P97": 8.9 + }, + { + "P3": 6.5, + "P15": 7.0, + "P50": 7.7, + "P85": 8.5, + "P97": 9.2 + }, + { + "P3": 6.7, + "P15": 7.2, + "P50": 7.9, + "P85": 8.7, + "P97": 9.4 + }, + { + "P3": 6.9, + "P15": 7.4, + "P50": 8.1, + "P85": 8.9, + "P97": 9.7 + }, + { + "P3": 7.0, + "P15": 7.6, + "P50": 8.3, + "P85": 9.1, + "P97": 9.9 + }, + { + "P3": 7.2, + "P15": 7.8, + "P50": 8.5, + "P85": 9.4, + "P97": 10.1 + }, + { + "P3": 7.4, + "P15": 7.9, + "P50": 8.7, + "P85": 9.6, + "P97": 10.4 + }, + { + "P3": 7.6, + "P15": 8.1, + "P50": 8.9, + "P85": 9.8, + "P97": 10.6 + }, + { + "P3": 7.7, + "P15": 8.3, + "P50": 9.1, + "P85": 10.0, + "P97": 10.8 + }, + { + "P3": 7.9, + "P15": 8.5, + "P50": 9.3, + "P85": 10.2, + "P97": 11.1 + }, + { + "P3": 8.0, + "P15": 8.6, + "P50": 9.5, + "P85": 10.4, + "P97": 11.3 + }, + { + "P3": 8.2, + "P15": 8.8, + "P50": 9.6, + "P85": 10.6, + "P97": 11.5 + }, + { + "P3": 8.4, + "P15": 9.0, + "P50": 9.8, + "P85": 10.8, + "P97": 11.7 + }, + { + "P3": 8.5, + "P15": 9.2, + "P50": 10.0, + "P85": 11.0, + "P97": 11.9 + }, + { + "P3": 8.7, + "P15": 9.3, + "P50": 10.2, + "P85": 11.2, + "P97": 12.2 + }, + { + "P3": 8.9, + "P15": 9.5, + "P50": 10.4, + "P85": 11.5, + "P97": 12.4 + }, + { + "P3": 9.1, + "P15": 9.7, + "P50": 10.7, + "P85": 11.7, + "P97": 12.7 + }, + { + "P3": 9.3, + "P15": 10.0, + "P50": 10.9, + "P85": 12.0, + "P97": 13.0 + }, + { + "P3": 9.5, + "P15": 10.2, + "P50": 11.1, + "P85": 12.2, + "P97": 13.3 + }, + { + "P3": 9.7, + "P15": 10.4, + "P50": 11.4, + "P85": 12.5, + "P97": 13.5 + }, + { + "P3": 9.9, + "P15": 10.6, + "P50": 11.6, + "P85": 12.8, + "P97": 13.8 + }, + { + "P3": 10.1, + "P15": 10.9, + "P50": 11.9, + "P85": 13.1, + "P97": 14.1 + }, + { + "P3": 10.3, + "P15": 11.1, + "P50": 12.1, + "P85": 13.3, + "P97": 14.4 + }, + { + "P3": 10.5, + "P15": 11.3, + "P50": 12.4, + "P85": 13.6, + "P97": 14.7 + }, + { + "P3": 10.8, + "P15": 11.5, + "P50": 12.6, + "P85": 13.9, + "P97": 15.0 + }, + { + "P3": 11.0, + "P15": 11.8, + "P50": 12.9, + "P85": 14.2, + "P97": 15.3 + }, + { + "P3": 11.2, + "P15": 12.0, + "P50": 13.1, + "P85": 14.4, + "P97": 15.6 + }, + { + "P3": 11.4, + "P15": 12.2, + "P50": 13.4, + "P85": 14.7, + "P97": 15.9 + }, + { + "P3": 11.6, + "P15": 12.4, + "P50": 13.6, + "P85": 15.0, + "P97": 16.2 + }, + { + "P3": 11.8, + "P15": 12.7, + "P50": 13.9, + "P85": 15.3, + "P97": 16.5 + }, + { + "P3": 12.0, + "P15": 12.9, + "P50": 14.1, + "P85": 15.6, + "P97": 16.9 + }, + { + "P3": 12.2, + "P15": 13.1, + "P50": 14.4, + "P85": 15.8, + "P97": 17.2 + }, + { + "P3": 12.4, + "P15": 13.4, + "P50": 14.7, + "P85": 16.1, + "P97": 17.5 + }, + { + "P3": 12.7, + "P15": 13.6, + "P50": 14.9, + "P85": 16.4, + "P97": 17.8 + }, + { + "P3": 12.9, + "P15": 13.9, + "P50": 15.2, + "P85": 16.8, + "P97": 18.2 + }, + { + "P3": 13.1, + "P15": 14.1, + "P50": 15.5, + "P85": 17.1, + "P97": 18.5 + }, + { + "P3": 13.4, + "P15": 14.4, + "P50": 15.8, + "P85": 17.4, + "P97": 18.9 + }, + { + "P3": 13.6, + "P15": 14.7, + "P50": 16.1, + "P85": 17.8, + "P97": 19.3 + }, + { + "P3": 13.9, + "P15": 15.0, + "P50": 16.4, + "P85": 18.1, + "P97": 19.7 + }, + { + "P3": 14.2, + "P15": 15.3, + "P50": 16.8, + "P85": 18.5, + "P97": 20.1 + }, + { + "P3": 14.5, + "P15": 15.6, + "P50": 17.1, + "P85": 18.9, + "P97": 20.5 + }, + { + "P3": 14.7, + "P15": 15.9, + "P50": 17.5, + "P85": 19.3, + "P97": 21.0 + }, + { + "P3": 15.0, + "P15": 16.2, + "P50": 17.8, + "P85": 19.7, + "P97": 21.4 + }, + { + "P3": 15.4, + "P15": 16.6, + "P50": 18.2, + "P85": 20.1, + "P97": 21.9 + }, + { + "P3": 15.7, + "P15": 16.9, + "P50": 18.6, + "P85": 20.6, + "P97": 22.4 + }, + { + "P3": 16.0, + "P15": 17.3, + "P50": 19.0, + "P85": 21.0, + "P97": 22.8 + }, + { + "P3": 16.3, + "P15": 17.6, + "P50": 19.4, + "P85": 21.5, + "P97": 23.4 + }, + { + "P3": 16.7, + "P15": 18.0, + "P50": 19.8, + "P85": 21.9, + "P97": 23.9 + }, + { + "P3": 17.0, + "P15": 18.4, + "P50": 20.2, + "P85": 22.4, + "P97": 24.4 + }, + { + "P3": 17.3, + "P15": 18.7, + "P50": 20.7, + "P85": 22.9, + "P97": 24.9 + }, + { + "P3": 17.7, + "P15": 19.1, + "P50": 21.1, + "P85": 23.4, + "P97": 25.5 + }, + { + "P3": 18.0, + "P15": 19.5, + "P50": 21.5, + "P85": 23.8, + "P97": 26.0 + }, + { + "P3": 18.4, + "P15": 19.9, + "P50": 22.0, + "P85": 24.3, + "P97": 26.5 + }, + { + "P3": 18.7, + "P15": 20.3, + "P50": 22.4, + "P85": 24.8, + "P97": 27.1 + }, + { + "P3": 19.1, + "P15": 20.6, + "P50": 22.8, + "P85": 25.3, + "P97": 27.6 + } + ] \ No newline at end of file diff --git a/src/DataSets/WhoStandardDataSets/Percentiles/wfhl-girls/wfl_girls_0-to-2-years_percentiles.json b/src/DataSets/WhoStandardDataSets/Percentiles/wfhl-girls/wfl_girls_0-to-2-years_percentiles.json index f09aa7f..f90493b 100644 --- a/src/DataSets/WhoStandardDataSets/Percentiles/wfhl-girls/wfl_girls_0-to-2-years_percentiles.json +++ b/src/DataSets/WhoStandardDataSets/Percentiles/wfhl-girls/wfl_girls_0-to-2-years_percentiles.json @@ -1,787 +1,464 @@ -[{ - "P3": 2.1, - "P15": 2.2, - "P50": 2.5, - "P85": 2.7, - "P97": 2.9 -}, { - "P3": 2.2, - "P15": 2.3, - "P50": 2.5, - "P85": 2.8, - "P97": 3.0 -}, { - "P3": 2.2, - "P15": 2.4, - "P50": 2.6, - "P85": 2.9, - "P97": 3.1 -}, { - "P3": 2.3, - "P15": 2.5, - "P50": 2.7, - "P85": 3.0, - "P97": 3.2 -}, { - "P3": 2.4, - "P15": 2.6, - "P50": 2.8, - "P85": 3.1, - "P97": 3.3 -}, { - "P3": 2.4, - "P15": 2.6, - "P50": 2.9, - "P85": 3.2, - "P97": 3.4 -}, { - "P3": 2.5, - "P15": 2.7, - "P50": 3.0, - "P85": 3.3, - "P97": 3.5 -}, { - "P3": 2.6, - "P15": 2.8, - "P50": 3.1, - "P85": 3.4, - "P97": 3.7 -}, { - "P3": 2.7, - "P15": 2.9, - "P50": 3.2, - "P85": 3.5, - "P97": 3.8 -}, { - "P3": 2.8, - "P15": 3.0, - "P50": 3.3, - "P85": 3.6, - "P97": 3.9 -}, { - "P3": 2.8, - "P15": 3.1, - "P50": 3.4, - "P85": 3.7, - "P97": 4.0 -}, { - "P3": 2.9, - "P15": 3.2, - "P50": 3.5, - "P85": 3.8, - "P97": 4.1 -}, { - "P3": 3.0, - "P15": 3.2, - "P50": 3.6, - "P85": 3.9, - "P97": 4.3 -}, { - "P3": 3.1, - "P15": 3.4, - "P50": 3.7, - "P85": 4.0, - "P97": 4.4 -}, { - "P3": 3.2, - "P15": 3.5, - "P50": 3.8, - "P85": 4.2, - "P97": 4.5 -}, { - "P3": 3.3, - "P15": 3.6, - "P50": 3.9, - "P85": 4.3, - "P97": 4.7 -}, { - "P3": 3.4, - "P15": 3.7, - "P50": 4.0, - "P85": 4.4, - "P97": 4.8 -}, { - "P3": 3.5, - "P15": 3.8, - "P50": 4.2, - "P85": 4.6, - "P97": 5.0 -}, { - "P3": 3.6, - "P15": 3.9, - "P50": 4.3, - "P85": 4.7, - "P97": 5.1 -}, { - "P3": 3.7, - "P15": 4.0, - "P50": 4.4, - "P85": 4.9, - "P97": 5.3 -}, { - "P3": 3.9, - "P15": 4.1, - "P50": 4.5, - "P85": 5.0, - "P97": 5.4 -}, { - "P3": 4.0, - "P15": 4.3, - "P50": 4.7, - "P85": 5.2, - "P97": 5.6 -}, { - "P3": 4.1, - "P15": 4.4, - "P50": 4.8, - "P85": 5.3, - "P97": 5.8 -}, { - "P3": 4.2, - "P15": 4.5, - "P50": 5.0, - "P85": 5.5, - "P97": 5.9 -}, { - "P3": 4.3, - "P15": 4.6, - "P50": 5.1, - "P85": 5.6, - "P97": 6.1 -}, { - "P3": 4.4, - "P15": 4.8, - "P50": 5.2, - "P85": 5.7, - "P97": 6.2 -}, { - "P3": 4.5, - "P15": 4.9, - "P50": 5.4, - "P85": 5.9, - "P97": 6.4 -}, { - "P3": 4.6, - "P15": 5.0, - "P50": 5.5, - "P85": 6.0, - "P97": 6.5 -}, { - "P3": 4.8, - "P15": 5.1, - "P50": 5.6, - "P85": 6.2, - "P97": 6.7 -}, { - "P3": 4.9, - "P15": 5.2, - "P50": 5.7, - "P85": 6.3, - "P97": 6.9 -}, { - "P3": 5.0, - "P15": 5.4, - "P50": 5.9, - "P85": 6.5, - "P97": 7.0 -}, { - "P3": 5.1, - "P15": 5.5, - "P50": 6.0, - "P85": 6.6, - "P97": 7.2 -}, { - "P3": 5.2, - "P15": 5.6, - "P50": 6.1, - "P85": 6.7, - "P97": 7.3 -}, { - "P3": 5.3, - "P15": 5.7, - "P50": 6.3, - "P85": 6.9, - "P97": 7.5 -}, { - "P3": 5.4, - "P15": 5.8, - "P50": 6.4, - "P85": 7.0, - "P97": 7.6 -}, { - "P3": 5.5, - "P15": 5.9, - "P50": 6.5, - "P85": 7.2, - "P97": 7.8 -}, { - "P3": 5.6, - "P15": 6.0, - "P50": 6.6, - "P85": 7.3, - "P97": 7.9 -}, { - "P3": 5.7, - "P15": 6.1, - "P50": 6.7, - "P85": 7.4, - "P97": 8.0 -}, { - "P3": 5.8, - "P15": 6.2, - "P50": 6.9, - "P85": 7.5, - "P97": 8.2 -}, { - "P3": 5.9, - "P15": 6.3, - "P50": 7.0, - "P85": 7.7, - "P97": 8.3 -}, { - "P3": 6.0, - "P15": 6.5, - "P50": 7.1, - "P85": 7.8, - "P97": 8.5 -}, { - "P3": 6.1, - "P15": 6.6, - "P50": 7.2, - "P85": 7.9, - "P97": 8.6 -}, { - "P3": 6.2, - "P15": 6.7, - "P50": 7.3, - "P85": 8.0, - "P97": 8.7 -}, { - "P3": 6.3, - "P15": 6.8, - "P50": 7.4, - "P85": 8.2, - "P97": 8.9 -}, { - "P3": 6.4, - "P15": 6.9, - "P50": 7.5, - "P85": 8.3, - "P97": 9.0 -}, { - "P3": 6.5, - "P15": 7.0, - "P50": 7.6, - "P85": 8.4, - "P97": 9.1 -}, { - "P3": 6.6, - "P15": 7.1, - "P50": 7.7, - "P85": 8.5, - "P97": 9.2 -}, { - "P3": 6.7, - "P15": 7.2, - "P50": 7.9, - "P85": 8.6, - "P97": 9.4 -}, { - "P3": 6.7, - "P15": 7.3, - "P50": 8.0, - "P85": 8.8, - "P97": 9.5 -}, { - "P3": 6.8, - "P15": 7.3, - "P50": 8.1, - "P85": 8.9, - "P97": 9.6 -}, { - "P3": 6.9, - "P15": 7.4, - "P50": 8.2, - "P85": 9.0, - "P97": 9.7 -}, { - "P3": 7.0, - "P15": 7.5, - "P50": 8.3, - "P85": 9.1, - "P97": 9.9 -}, { - "P3": 7.1, - "P15": 7.6, - "P50": 8.4, - "P85": 9.2, - "P97": 10.0 -}, { - "P3": 7.2, - "P15": 7.7, - "P50": 8.5, - "P85": 9.3, - "P97": 10.1 -}, { - "P3": 7.3, - "P15": 7.8, - "P50": 8.6, - "P85": 9.4, - "P97": 10.2 -}, { - "P3": 7.4, - "P15": 7.9, - "P50": 8.7, - "P85": 9.5, - "P97": 10.3 -}, { - "P3": 7.4, - "P15": 8.0, - "P50": 8.8, - "P85": 9.6, - "P97": 10.4 -}, { - "P3": 7.5, - "P15": 8.1, - "P50": 8.9, - "P85": 9.7, - "P97": 10.6 -}, { - "P3": 7.6, - "P15": 8.2, - "P50": 9.0, - "P85": 9.9, - "P97": 10.7 -}, { - "P3": 7.7, - "P15": 8.3, - "P50": 9.1, - "P85": 10.0, - "P97": 10.8 -}, { - "P3": 7.8, - "P15": 8.3, - "P50": 9.1, - "P85": 10.1, - "P97": 10.9 -}, { - "P3": 7.8, - "P15": 8.4, - "P50": 9.2, - "P85": 10.2, - "P97": 11.0 -}, { - "P3": 7.9, - "P15": 8.5, - "P50": 9.3, - "P85": 10.3, - "P97": 11.1 -}, { - "P3": 8.0, - "P15": 8.6, - "P50": 9.4, - "P85": 10.4, - "P97": 11.2 -}, { - "P3": 8.1, - "P15": 8.7, - "P50": 9.5, - "P85": 10.5, - "P97": 11.3 -}, { - "P3": 8.2, - "P15": 8.8, - "P50": 9.6, - "P85": 10.6, - "P97": 11.4 -}, { - "P3": 8.2, - "P15": 8.9, - "P50": 9.7, - "P85": 10.7, - "P97": 11.5 -}, { - "P3": 8.3, - "P15": 8.9, - "P50": 9.8, - "P85": 10.8, - "P97": 11.7 -}, { - "P3": 8.4, - "P15": 9.0, - "P50": 9.9, - "P85": 10.9, - "P97": 11.8 -}, { - "P3": 8.5, - "P15": 9.1, - "P50": 10.0, - "P85": 11.0, - "P97": 11.9 -}, { - "P3": 8.6, - "P15": 9.2, - "P50": 10.1, - "P85": 11.1, - "P97": 12.0 -}, { - "P3": 8.7, - "P15": 9.3, - "P50": 10.2, - "P85": 11.2, - "P97": 12.1 -}, { - "P3": 8.8, - "P15": 9.4, - "P50": 10.3, - "P85": 11.3, - "P97": 12.2 -}, { - "P3": 8.8, - "P15": 9.5, - "P50": 10.4, - "P85": 11.4, - "P97": 12.4 -}, { - "P3": 8.9, - "P15": 9.6, - "P50": 10.5, - "P85": 11.6, - "P97": 12.5 -}, { - "P3": 9.0, - "P15": 9.7, - "P50": 10.6, - "P85": 11.7, - "P97": 12.6 -}, { - "P3": 9.1, - "P15": 9.8, - "P50": 10.7, - "P85": 11.8, - "P97": 12.8 -}, { - "P3": 9.2, - "P15": 9.9, - "P50": 10.9, - "P85": 11.9, - "P97": 12.9 -}, { - "P3": 9.3, - "P15": 10.0, - "P50": 11.0, - "P85": 12.1, - "P97": 13.1 -}, { - "P3": 9.4, - "P15": 10.1, - "P50": 11.1, - "P85": 12.2, - "P97": 13.2 -}, { - "P3": 9.5, - "P15": 10.2, - "P50": 11.2, - "P85": 12.3, - "P97": 13.3 -}, { - "P3": 9.6, - "P15": 10.4, - "P50": 11.3, - "P85": 12.5, - "P97": 13.5 -}, { - "P3": 9.8, - "P15": 10.5, - "P50": 11.5, - "P85": 12.6, - "P97": 13.6 -}, { - "P3": 9.9, - "P15": 10.6, - "P50": 11.6, - "P85": 12.7, - "P97": 13.8 -}, { - "P3": 10.0, - "P15": 10.7, - "P50": 11.7, - "P85": 12.9, - "P97": 13.9 -}, { - "P3": 10.1, - "P15": 10.8, - "P50": 11.8, - "P85": 13.0, - "P97": 14.1 -}, { - "P3": 10.2, - "P15": 10.9, - "P50": 12.0, - "P85": 13.2, - "P97": 14.2 -}, { - "P3": 10.3, - "P15": 11.0, - "P50": 12.1, - "P85": 13.3, - "P97": 14.4 -}, { - "P3": 10.4, - "P15": 11.2, - "P50": 12.2, - "P85": 13.4, - "P97": 14.5 -}, { - "P3": 10.5, - "P15": 11.3, - "P50": 12.3, - "P85": 13.6, - "P97": 14.7 -}, { - "P3": 10.6, - "P15": 11.4, - "P50": 12.5, - "P85": 13.7, - "P97": 14.8 -}, { - "P3": 10.7, - "P15": 11.5, - "P50": 12.6, - "P85": 13.8, - "P97": 15.0 -}, { - "P3": 10.8, - "P15": 11.6, - "P50": 12.7, - "P85": 14.0, - "P97": 15.1 -}, { - "P3": 10.9, - "P15": 11.7, - "P50": 12.8, - "P85": 14.1, - "P97": 15.3 -}, { - "P3": 11.0, - "P15": 11.8, - "P50": 13.0, - "P85": 14.2, - "P97": 15.4 -}, { - "P3": 11.1, - "P15": 12.0, - "P50": 13.1, - "P85": 14.4, - "P97": 15.6 -}, { - "P3": 11.2, - "P15": 12.1, - "P50": 13.2, - "P85": 14.5, - "P97": 15.7 -}, { - "P3": 11.3, - "P15": 12.2, - "P50": 13.3, - "P85": 14.7, - "P97": 15.9 -}, { - "P3": 11.4, - "P15": 12.3, - "P50": 13.5, - "P85": 14.8, - "P97": 16.0 -}, { - "P3": 11.5, - "P15": 12.4, - "P50": 13.6, - "P85": 14.9, - "P97": 16.2 -}, { - "P3": 11.6, - "P15": 12.5, - "P50": 13.7, - "P85": 15.1, - "P97": 16.3 -}, { - "P3": 11.8, - "P15": 12.6, - "P50": 13.8, - "P85": 15.2, - "P97": 16.5 -}, { - "P3": 11.9, - "P15": 12.7, - "P50": 14.0, - "P85": 15.4, - "P97": 16.6 -}, { - "P3": 12.0, - "P15": 12.9, - "P50": 14.1, - "P85": 15.5, - "P97": 16.8 -}, { - "P3": 12.1, - "P15": 13.0, - "P50": 14.2, - "P85": 15.6, - "P97": 16.9 -}, { - "P3": 12.2, - "P15": 13.1, - "P50": 14.4, - "P85": 15.8, - "P97": 17.1 -}, { - "P3": 12.3, - "P15": 13.2, - "P50": 14.5, - "P85": 15.9, - "P97": 17.3 -}, { - "P3": 12.4, - "P15": 13.3, - "P50": 14.6, - "P85": 16.1, - "P97": 17.4 -}, { - "P3": 12.5, - "P15": 13.5, - "P50": 14.8, - "P85": 16.2, - "P97": 17.6 -}, { - "P3": 12.6, - "P15": 13.6, - "P50": 14.9, - "P85": 16.4, - "P97": 17.8 -}, { - "P3": 12.7, - "P15": 13.7, - "P50": 15.0, - "P85": 16.5, - "P97": 17.9 -}, { - "P3": 12.9, - "P15": 13.8, - "P50": 15.2, - "P85": 16.7, - "P97": 18.1 -}, { - "P3": 13.0, - "P15": 14.0, - "P50": 15.3, - "P85": 16.9, - "P97": 18.3 -}, { - "P3": 13.1, - "P15": 14.1, - "P50": 15.5, - "P85": 17.0, - "P97": 18.5 -}, { - "P3": 13.2, - "P15": 14.2, - "P50": 15.6, - "P85": 17.2, - "P97": 18.6 -}, { - "P3": 13.3, - "P15": 14.4, - "P50": 15.8, - "P85": 17.4, - "P97": 18.8 -}, { - "P3": 13.5, - "P15": 14.5, - "P50": 15.9, - "P85": 17.5, - "P97": 19.0 -}, { - "P3": 13.6, - "P15": 14.6, - "P50": 16.1, - "P85": 17.7, - "P97": 19.2 -}, { - "P3": 13.7, - "P15": 14.8, - "P50": 16.2, - "P85": 17.9, - "P97": 19.4 -}, { - "P3": 13.9, - "P15": 14.9, - "P50": 16.4, - "P85": 18.1, - "P97": 19.6 -}, { - "P3": 14.0, - "P15": 15.1, - "P50": 16.5, - "P85": 18.2, - "P97": 19.8 -}, { - "P3": 14.1, - "P15": 15.2, - "P50": 16.7, - "P85": 18.4, - "P97": 20.0 -}, { - "P3": 14.3, - "P15": 15.4, - "P50": 16.9, - "P85": 18.6, - "P97": 20.2 -}, { - "P3": 14.4, - "P15": 15.5, - "P50": 17.1, - "P85": 18.8, - "P97": 20.4 -}, { - "P3": 14.5, - "P15": 15.7, - "P50": 17.2, - "P85": 19.0, - "P97": 20.6 -}, { - "P3": 14.7, - "P15": 15.8, - "P50": 17.4, - "P85": 19.2, - "P97": 20.9 -}, { - "P3": 14.8, - "P15": 16.0, - "P50": 17.6, - "P85": 19.4, - "P97": 21.1 -}, { - "P3": 15.0, - "P15": 16.2, - "P50": 17.8, - "P85": 19.6, - "P97": 21.3 -}, { - "P3": 15.1, - "P15": 16.3, - "P50": 18.0, - "P85": 19.8, - "P97": 21.5 -}, { - "P3": 15.3, - "P15": 16.5, - "P50": 18.1, - "P85": 20.0, - "P97": 21.8 -}, { - "P3": 15.4, - "P15": 16.7, - "P50": 18.3, - "P85": 20.2, - "P97": 22.0 -}] \ No newline at end of file +[ + { + "P3": 2.1, + "P15": 2.2, + "P50": 2.5, + "P85": 2.7, + "P97": 2.9 + }, + { + "P3": 2.2, + "P15": 2.4, + "P50": 2.6, + "P85": 2.9, + "P97": 3.1 + }, + { + "P3": 2.4, + "P15": 2.6, + "P50": 2.8, + "P85": 3.1, + "P97": 3.3 + }, + { + "P3": 2.5, + "P15": 2.7, + "P50": 3.0, + "P85": 3.3, + "P97": 3.5 + }, + { + "P3": 2.7, + "P15": 2.9, + "P50": 3.2, + "P85": 3.5, + "P97": 3.8 + }, + { + "P3": 2.8, + "P15": 3.1, + "P50": 3.4, + "P85": 3.7, + "P97": 4.0 + }, + { + "P3": 3.0, + "P15": 3.2, + "P50": 3.6, + "P85": 3.9, + "P97": 4.3 + }, + { + "P3": 3.2, + "P15": 3.5, + "P50": 3.8, + "P85": 4.2, + "P97": 4.5 + }, + { + "P3": 3.4, + "P15": 3.7, + "P50": 4.0, + "P85": 4.4, + "P97": 4.8 + }, + { + "P3": 3.6, + "P15": 3.9, + "P50": 4.3, + "P85": 4.7, + "P97": 5.1 + }, + { + "P3": 3.9, + "P15": 4.1, + "P50": 4.5, + "P85": 5.0, + "P97": 5.4 + }, + { + "P3": 4.1, + "P15": 4.4, + "P50": 4.8, + "P85": 5.3, + "P97": 5.8 + }, + { + "P3": 4.3, + "P15": 4.6, + "P50": 5.1, + "P85": 5.6, + "P97": 6.1 + }, + { + "P3": 4.5, + "P15": 4.9, + "P50": 5.4, + "P85": 5.9, + "P97": 6.4 + }, + { + "P3": 4.8, + "P15": 5.1, + "P50": 5.6, + "P85": 6.2, + "P97": 6.7 + }, + { + "P3": 5.0, + "P15": 5.4, + "P50": 5.9, + "P85": 6.5, + "P97": 7.0 + }, + { + "P3": 5.2, + "P15": 5.6, + "P50": 6.1, + "P85": 6.7, + "P97": 7.3 + }, + { + "P3": 5.4, + "P15": 5.8, + "P50": 6.4, + "P85": 7.0, + "P97": 7.6 + }, + { + "P3": 5.6, + "P15": 6.0, + "P50": 6.6, + "P85": 7.3, + "P97": 7.9 + }, + { + "P3": 5.8, + "P15": 6.2, + "P50": 6.9, + "P85": 7.5, + "P97": 8.2 + }, + { + "P3": 6.0, + "P15": 6.5, + "P50": 7.1, + "P85": 7.8, + "P97": 8.5 + }, + { + "P3": 6.2, + "P15": 6.7, + "P50": 7.3, + "P85": 8.0, + "P97": 8.7 + }, + { + "P3": 6.4, + "P15": 6.9, + "P50": 7.5, + "P85": 8.3, + "P97": 9.0 + }, + { + "P3": 6.6, + "P15": 7.1, + "P50": 7.7, + "P85": 8.5, + "P97": 9.2 + }, + { + "P3": 6.7, + "P15": 7.3, + "P50": 8.0, + "P85": 8.8, + "P97": 9.5 + }, + { + "P3": 6.9, + "P15": 7.4, + "P50": 8.2, + "P85": 9.0, + "P97": 9.7 + }, + { + "P3": 7.1, + "P15": 7.6, + "P50": 8.4, + "P85": 9.2, + "P97": 10.0 + }, + { + "P3": 7.3, + "P15": 7.8, + "P50": 8.6, + "P85": 9.4, + "P97": 10.2 + }, + { + "P3": 7.4, + "P15": 8.0, + "P50": 8.8, + "P85": 9.6, + "P97": 10.4 + }, + { + "P3": 7.6, + "P15": 8.2, + "P50": 9.0, + "P85": 9.9, + "P97": 10.7 + }, + { + "P3": 7.8, + "P15": 8.3, + "P50": 9.1, + "P85": 10.1, + "P97": 10.9 + }, + { + "P3": 7.9, + "P15": 8.5, + "P50": 9.3, + "P85": 10.3, + "P97": 11.1 + }, + { + "P3": 8.1, + "P15": 8.7, + "P50": 9.5, + "P85": 10.5, + "P97": 11.3 + }, + { + "P3": 8.2, + "P15": 8.9, + "P50": 9.7, + "P85": 10.7, + "P97": 11.5 + }, + { + "P3": 8.4, + "P15": 9.0, + "P50": 9.9, + "P85": 10.9, + "P97": 11.8 + }, + { + "P3": 8.6, + "P15": 9.2, + "P50": 10.1, + "P85": 11.1, + "P97": 12.0 + }, + { + "P3": 8.8, + "P15": 9.4, + "P50": 10.3, + "P85": 11.3, + "P97": 12.2 + }, + { + "P3": 8.9, + "P15": 9.6, + "P50": 10.5, + "P85": 11.6, + "P97": 12.5 + }, + { + "P3": 9.1, + "P15": 9.8, + "P50": 10.7, + "P85": 11.8, + "P97": 12.8 + }, + { + "P3": 9.3, + "P15": 10.0, + "P50": 11.0, + "P85": 12.1, + "P97": 13.1 + }, + { + "P3": 9.5, + "P15": 10.2, + "P50": 11.2, + "P85": 12.3, + "P97": 13.3 + }, + { + "P3": 9.8, + "P15": 10.5, + "P50": 11.5, + "P85": 12.6, + "P97": 13.6 + }, + { + "P3": 10.0, + "P15": 10.7, + "P50": 11.7, + "P85": 12.9, + "P97": 13.9 + }, + { + "P3": 10.2, + "P15": 10.9, + "P50": 12.0, + "P85": 13.2, + "P97": 14.2 + }, + { + "P3": 10.4, + "P15": 11.2, + "P50": 12.2, + "P85": 13.4, + "P97": 14.5 + }, + { + "P3": 10.6, + "P15": 11.4, + "P50": 12.5, + "P85": 13.7, + "P97": 14.8 + }, + { + "P3": 10.8, + "P15": 11.6, + "P50": 12.7, + "P85": 14.0, + "P97": 15.1 + }, + { + "P3": 11.0, + "P15": 11.8, + "P50": 13.0, + "P85": 14.2, + "P97": 15.4 + }, + { + "P3": 11.2, + "P15": 12.1, + "P50": 13.2, + "P85": 14.5, + "P97": 15.7 + }, + { + "P3": 11.4, + "P15": 12.3, + "P50": 13.5, + "P85": 14.8, + "P97": 16.0 + }, + { + "P3": 11.6, + "P15": 12.5, + "P50": 13.7, + "P85": 15.1, + "P97": 16.3 + }, + { + "P3": 11.9, + "P15": 12.7, + "P50": 14.0, + "P85": 15.4, + "P97": 16.6 + }, + { + "P3": 12.1, + "P15": 13.0, + "P50": 14.2, + "P85": 15.6, + "P97": 16.9 + }, + { + "P3": 12.3, + "P15": 13.2, + "P50": 14.5, + "P85": 15.9, + "P97": 17.3 + }, + { + "P3": 12.5, + "P15": 13.5, + "P50": 14.8, + "P85": 16.2, + "P97": 17.6 + }, + { + "P3": 12.7, + "P15": 13.7, + "P50": 15.0, + "P85": 16.5, + "P97": 17.9 + }, + { + "P3": 13.0, + "P15": 14.0, + "P50": 15.3, + "P85": 16.9, + "P97": 18.3 + }, + { + "P3": 13.2, + "P15": 14.2, + "P50": 15.6, + "P85": 17.2, + "P97": 18.6 + }, + { + "P3": 13.5, + "P15": 14.5, + "P50": 15.9, + "P85": 17.5, + "P97": 19.0 + }, + { + "P3": 13.7, + "P15": 14.8, + "P50": 16.2, + "P85": 17.9, + "P97": 19.4 + }, + { + "P3": 14.0, + "P15": 15.1, + "P50": 16.5, + "P85": 18.2, + "P97": 19.8 + }, + { + "P3": 14.3, + "P15": 15.4, + "P50": 16.9, + "P85": 18.6, + "P97": 20.2 + }, + { + "P3": 14.5, + "P15": 15.7, + "P50": 17.2, + "P85": 19.0, + "P97": 20.6 + }, + { + "P3": 14.8, + "P15": 16.0, + "P50": 17.6, + "P85": 19.4, + "P97": 21.1 + }, + { + "P3": 15.1, + "P15": 16.3, + "P50": 18.0, + "P85": 19.8, + "P97": 21.5 + }, + { + "P3": 15.4, + "P15": 16.7, + "P50": 18.3, + "P85": 20.2, + "P97": 22.0 + } + ] \ No newline at end of file diff --git a/src/DataSets/WhoStandardDataSets/ZScores/wfhl-boys/wfh_boys_2-to-5-years_zscores.json b/src/DataSets/WhoStandardDataSets/ZScores/wfhl-boys/wfh_boys_2-to-5-years_zscores.json index d9cf919..dc7d973 100644 --- a/src/DataSets/WhoStandardDataSets/ZScores/wfhl-boys/wfh_boys_2-to-5-years_zscores.json +++ b/src/DataSets/WhoStandardDataSets/ZScores/wfhl-boys/wfh_boys_2-to-5-years_zscores.json @@ -1,506 +1,449 @@ -[ - { - "SD0": 7.4, - "SD1": 8.1, - "SD2": 8.8, - "SD3": 9.6, - "SD1neg": 6.9, - "SD2neg": 6.3, - "SD3neg": 5.9 - }, - { - "SD0": 7.7, - "SD1": 8.3, - "SD2": 9.1, - "SD3": 9.9, - "SD1neg": 7.1, - "SD2neg": 6.5, - "SD3neg": 6.1 - }, - { - "SD0": 7.9, - "SD1": 8.6, - "SD2": 9.4, - "SD3": 10.2, - "SD1neg": 7.3, - "SD2neg": 6.7, - "SD3neg": 6.2 - }, - { - "SD0": 8.1, - "SD1": 8.8, - "SD2": 9.6, - "SD3": 10.5, - "SD1neg": 7.5, - "SD2neg": 6.9, - "SD3neg": 6.4 - }, - { - "SD0": 8.4, - "SD1": 9.1, - "SD2": 9.9, - "SD3": 10.8, - "SD1neg": 7.7, - "SD2neg": 7.1, - "SD3neg": 6.6 - }, - { - "SD0": 8.6, - "SD1": 9.3, - "SD2": 10.2, - "SD3": 11.1, - "SD1neg": 7.9, - "SD2neg": 7.3, - "SD3neg": 6.8 - }, - { - "SD0": 8.8, - "SD1": 9.6, - "SD2": 10.4, - "SD3": 11.4, - "SD1neg": 8.1, - "SD2neg": 7.5, - "SD3neg": 6.9 - }, - { - "SD0": 9, - "SD1": 9.8, - "SD2": 10.7, - "SD3": 11.7, - "SD1neg": 8.3, - "SD2neg": 7.7, - "SD3neg": 7.1 - }, - { - "SD0": 9.2, - "SD1": 10, - "SD2": 11, - "SD3": 12, - "SD1neg": 8.5, - "SD2neg": 7.9, - "SD3neg": 7.3 - }, - { - "SD0": 9.4, - "SD1": 10.3, - "SD2": 11.2, - "SD3": 12.2, - "SD1neg": 8.7, - "SD2neg": 8, - "SD3neg": 7.4 - }, - { - "SD0": 9.6, - "SD1": 10.5, - "SD2": 11.4, - "SD3": 12.5, - "SD1neg": 8.9, - "SD2neg": 8.2, - "SD3neg": 7.6 - }, - { - "SD0": 9.8, - "SD1": 10.7, - "SD2": 11.7, - "SD3": 12.8, - "SD1neg": 9.1, - "SD2neg": 8.4, - "SD3neg": 7.7 - }, - { - "SD0": 10, - "SD1": 10.9, - "SD2": 11.9, - "SD3": 13, - "SD1neg": 9.2, - "SD2neg": 8.5, - "SD3neg": 7.9 - }, - { - "SD0": 10.2, - "SD1": 11.1, - "SD2": 12.1, - "SD3": 13.3, - "SD1neg": 9.4, - "SD2neg": 8.7, - "SD3neg": 8 - }, - { - "SD0": 10.4, - "SD1": 11.3, - "SD2": 12.3, - "SD3": 13.5, - "SD1neg": 9.6, - "SD2neg": 8.8, - "SD3neg": 8.2 - }, - { - "SD0": 10.6, - "SD1": 11.5, - "SD2": 12.6, - "SD3": 13.7, - "SD1neg": 9.7, - "SD2neg": 9, - "SD3neg": 8.3 - }, - { - "SD0": 10.8, - "SD1": 11.7, - "SD2": 12.8, - "SD3": 14, - "SD1neg": 9.9, - "SD2neg": 9.2, - "SD3neg": 8.5 - }, - { - "SD0": 11, - "SD1": 11.9, - "SD2": 13, - "SD3": 14.2, - "SD1neg": 10.1, - "SD2neg": 9.3, - "SD3neg": 8.7 - }, - { - "SD0": 11.2, - "SD1": 12.2, - "SD2": 13.3, - "SD3": 14.5, - "SD1neg": 10.3, - "SD2neg": 9.5, - "SD3neg": 8.8 - }, - { - "SD0": 11.4, - "SD1": 12.4, - "SD2": 13.5, - "SD3": 14.8, - "SD1neg": 10.5, - "SD2neg": 9.7, - "SD3neg": 9 - }, - { - "SD0": 11.7, - "SD1": 12.7, - "SD2": 13.8, - "SD3": 15.1, - "SD1neg": 10.8, - "SD2neg": 9.9, - "SD3neg": 9.2 - }, - { - "SD0": 11.9, - "SD1": 12.9, - "SD2": 14.1, - "SD3": 15.4, - "SD1neg": 11, - "SD2neg": 10.2, - "SD3neg": 9.4 - }, - { - "SD0": 12.2, - "SD1": 13.2, - "SD2": 14.4, - "SD3": 15.7, - "SD1neg": 11.2, - "SD2neg": 10.4, - "SD3neg": 9.6 - }, - { - "SD0": 12.4, - "SD1": 13.5, - "SD2": 14.7, - "SD3": 16, - "SD1neg": 11.5, - "SD2neg": 10.6, - "SD3neg": 9.8 - }, - { - "SD0": 12.6, - "SD1": 13.7, - "SD2": 14.9, - "SD3": 16.3, - "SD1neg": 11.7, - "SD2neg": 10.8, - "SD3neg": 10 - }, - { - "SD0": 12.9, - "SD1": 14, - "SD2": 15.2, - "SD3": 16.6, - "SD1neg": 11.9, - "SD2neg": 11, - "SD3neg": 10.2 - }, - { - "SD0": 13.1, - "SD1": 14.2, - "SD2": 15.5, - "SD3": 16.9, - "SD1neg": 12.1, - "SD2neg": 11.2, - "SD3neg": 10.4 - }, - { - "SD0": 13.4, - "SD1": 14.5, - "SD2": 15.8, - "SD3": 17.2, - "SD1neg": 12.3, - "SD2neg": 11.4, - "SD3neg": 10.6 - }, - { - "SD0": 13.6, - "SD1": 14.7, - "SD2": 16, - "SD3": 17.5, - "SD1neg": 12.6, - "SD2neg": 11.6, - "SD3neg": 10.8 - }, - { - "SD0": 13.8, - "SD1": 15, - "SD2": 16.3, - "SD3": 17.8, - "SD1neg": 12.8, - "SD2neg": 11.8, - "SD3neg": 11 - }, - { - "SD0": 14.1, - "SD1": 15.3, - "SD2": 16.6, - "SD3": 18.1, - "SD1neg": 13, - "SD2neg": 12, - "SD3neg": 11.1 - }, - { - "SD0": 14.3, - "SD1": 15.5, - "SD2": 16.9, - "SD3": 18.4, - "SD1neg": 13.2, - "SD2neg": 12.2, - "SD3neg": 11.3 - }, - { - "SD0": 14.6, - "SD1": 15.8, - "SD2": 17.2, - "SD3": 18.8, - "SD1neg": 13.4, - "SD2neg": 12.4, - "SD3neg": 11.5 - }, - { - "SD0": 14.8, - "SD1": 16.1, - "SD2": 17.5, - "SD3": 19.1, - "SD1neg": 13.7, - "SD2neg": 12.6, - "SD3neg": 11.7 - }, - { - "SD0": 15.1, - "SD1": 16.4, - "SD2": 17.9, - "SD3": 19.5, - "SD1neg": 13.9, - "SD2neg": 12.9, - "SD3neg": 11.9 - }, - { - "SD0": 15.4, - "SD1": 16.7, - "SD2": 18.2, - "SD3": 19.9, - "SD1neg": 14.2, - "SD2neg": 13.1, - "SD3neg": 12.1 - }, - { - "SD0": 15.6, - "SD1": 17, - "SD2": 18.5, - "SD3": 20.3, - "SD1neg": 14.4, - "SD2neg": 13.3, - "SD3neg": 12.3 - }, - { - "SD0": 15.9, - "SD1": 17.3, - "SD2": 18.9, - "SD3": 20.7, - "SD1neg": 14.7, - "SD2neg": 13.6, - "SD3neg": 12.5 - }, - { - "SD0": 16.2, - "SD1": 17.7, - "SD2": 19.3, - "SD3": 21.1, - "SD1neg": 14.9, - "SD2neg": 13.8, - "SD3neg": 12.8 - }, - { - "SD0": 16.5, - "SD1": 18, - "SD2": 19.7, - "SD3": 21.6, - "SD1neg": 15.2, - "SD2neg": 14, - "SD3neg": 13 - }, - { - "SD0": 16.8, - "SD1": 18.4, - "SD2": 20.1, - "SD3": 22, - "SD1neg": 15.5, - "SD2neg": 14.3, - "SD3neg": 13.2 - }, - { - "SD0": 17.2, - "SD1": 18.7, - "SD2": 20.5, - "SD3": 22.5, - "SD1neg": 15.8, - "SD2neg": 14.5, - "SD3neg": 13.4 - }, - { - "SD0": 17.5, - "SD1": 19.1, - "SD2": 20.9, - "SD3": 22.9, - "SD1neg": 16.1, - "SD2neg": 14.8, - "SD3neg": 13.7 - }, - { - "SD0": 17.8, - "SD1": 19.5, - "SD2": 21.3, - "SD3": 23.4, - "SD1neg": 16.4, - "SD2neg": 15.1, - "SD3neg": 13.9 - }, - { - "SD0": 18.2, - "SD1": 19.8, - "SD2": 21.8, - "SD3": 23.9, - "SD1neg": 16.7, - "SD2neg": 15.3, - "SD3neg": 14.1 - }, - { - "SD0": 18.5, - "SD1": 20.2, - "SD2": 22.2, - "SD3": 24.4, - "SD1neg": 17, - "SD2neg": 15.6, - "SD3neg": 14.4 - }, - { - "SD0": 18.9, - "SD1": 20.7, - "SD2": 22.7, - "SD3": 25, - "SD1neg": 17.3, - "SD2neg": 15.9, - "SD3neg": 14.6 - }, - { - "SD0": 19.2, - "SD1": 21.1, - "SD2": 23.1, - "SD3": 25.5, - "SD1neg": 17.6, - "SD2neg": 16.2, - "SD3neg": 14.9 - }, - { - "SD0": 19.6, - "SD1": 21.5, - "SD2": 23.6, - "SD3": 26, - "SD1neg": 17.9, - "SD2neg": 16.5, - "SD3neg": 15.2 - }, - { - "SD0": 20, - "SD1": 21.9, - "SD2": 24.1, - "SD3": 26.6, - "SD1neg": 18.3, - "SD2neg": 16.8, - "SD3neg": 15.4 - }, - { - "SD0": 20.4, - "SD1": 22.4, - "SD2": 24.6, - "SD3": 27.2, - "SD1neg": 18.6, - "SD2neg": 17.1, - "SD3neg": 15.7 - }, - { - "SD0": 20.8, - "SD1": 22.8, - "SD2": 25.1, - "SD3": 27.8, - "SD1neg": 19, - "SD2neg": 17.4, - "SD3neg": 16 - }, - { - "SD0": 21.2, - "SD1": 23.3, - "SD2": 25.6, - "SD3": 28.3, - "SD1neg": 19.3, - "SD2neg": 17.7, - "SD3neg": 16.2 - }, - { - "SD0": 21.6, - "SD1": 23.7, - "SD2": 26.1, - "SD3": 28.9, - "SD1neg": 19.7, - "SD2neg": 18, - "SD3neg": 16.5 - }, - { - "SD0": 22, - "SD1": 24.1, - "SD2": 26.6, - "SD3": 29.5, - "SD1neg": 20, - "SD2neg": 18.3, - "SD3neg": 16.8 - }, - { - "SD0": 22.4, - "SD1": 24.6, - "SD2": 27.2, - "SD3": 30.1, - "SD1neg": 20.4, - "SD2neg": 18.6, - "SD3neg": 17.1 - } -] \ No newline at end of file +[{ + "SD3": 9.6, + "SD2": 8.8, + "SD1": 8.1, + "SD0": 7.4, + "SD1neg": 6.9, + "SD2neg": 6.3, + "SD3neg": 5.9 +}, { + "SD3": 9.9, + "SD2": 9.1, + "SD1": 8.3, + "SD0": 7.7, + "SD1neg": 7.1, + "SD2neg": 6.5, + "SD3neg": 6.1 +}, { + "SD3": 10.2, + "SD2": 9.4, + "SD1": 8.6, + "SD0": 7.9, + "SD1neg": 7.3, + "SD2neg": 6.7, + "SD3neg": 6.2 +}, { + "SD3": 10.5, + "SD2": 9.6, + "SD1": 8.8, + "SD0": 8.1, + "SD1neg": 7.5, + "SD2neg": 6.9, + "SD3neg": 6.4 +}, { + "SD3": 10.8, + "SD2": 9.9, + "SD1": 9.1, + "SD0": 8.4, + "SD1neg": 7.7, + "SD2neg": 7.1, + "SD3neg": 6.6 +}, { + "SD3": 11.1, + "SD2": 10.2, + "SD1": 9.3, + "SD0": 8.6, + "SD1neg": 7.9, + "SD2neg": 7.3, + "SD3neg": 6.8 +}, { + "SD3": 11.4, + "SD2": 10.4, + "SD1": 9.6, + "SD0": 8.8, + "SD1neg": 8.1, + "SD2neg": 7.5, + "SD3neg": 6.9 +}, { + "SD3": 11.7, + "SD2": 10.7, + "SD1": 9.8, + "SD0": 9.0, + "SD1neg": 8.3, + "SD2neg": 7.7, + "SD3neg": 7.1 +}, { + "SD3": 12.0, + "SD2": 11.0, + "SD1": 10.0, + "SD0": 9.2, + "SD1neg": 8.5, + "SD2neg": 7.9, + "SD3neg": 7.3 +}, { + "SD3": 12.2, + "SD2": 11.2, + "SD1": 10.3, + "SD0": 9.4, + "SD1neg": 8.7, + "SD2neg": 8.0, + "SD3neg": 7.4 +}, { + "SD3": 12.5, + "SD2": 11.4, + "SD1": 10.5, + "SD0": 9.6, + "SD1neg": 8.9, + "SD2neg": 8.2, + "SD3neg": 7.6 +}, { + "SD3": 12.8, + "SD2": 11.7, + "SD1": 10.7, + "SD0": 9.8, + "SD1neg": 9.1, + "SD2neg": 8.4, + "SD3neg": 7.7 +}, { + "SD3": 13.0, + "SD2": 11.9, + "SD1": 10.9, + "SD0": 10.0, + "SD1neg": 9.2, + "SD2neg": 8.5, + "SD3neg": 7.9 +}, { + "SD3": 13.3, + "SD2": 12.1, + "SD1": 11.1, + "SD0": 10.2, + "SD1neg": 9.4, + "SD2neg": 8.7, + "SD3neg": 8.0 +}, { + "SD3": 13.5, + "SD2": 12.3, + "SD1": 11.3, + "SD0": 10.4, + "SD1neg": 9.6, + "SD2neg": 8.8, + "SD3neg": 8.2 +}, { + "SD3": 13.7, + "SD2": 12.6, + "SD1": 11.5, + "SD0": 10.6, + "SD1neg": 9.7, + "SD2neg": 9.0, + "SD3neg": 8.3 +}, { + "SD3": 14.0, + "SD2": 12.8, + "SD1": 11.7, + "SD0": 10.8, + "SD1neg": 9.9, + "SD2neg": 9.2, + "SD3neg": 8.5 +}, { + "SD3": 14.2, + "SD2": 13.0, + "SD1": 11.9, + "SD0": 11.0, + "SD1neg": 10.1, + "SD2neg": 9.3, + "SD3neg": 8.7 +}, { + "SD3": 14.5, + "SD2": 13.3, + "SD1": 12.2, + "SD0": 11.2, + "SD1neg": 10.3, + "SD2neg": 9.5, + "SD3neg": 8.8 +}, { + "SD3": 14.8, + "SD2": 13.5, + "SD1": 12.4, + "SD0": 11.4, + "SD1neg": 10.5, + "SD2neg": 9.7, + "SD3neg": 9.0 +}, { + "SD3": 15.1, + "SD2": 13.8, + "SD1": 12.7, + "SD0": 11.7, + "SD1neg": 10.8, + "SD2neg": 10.0, + "SD3neg": 9.2 +}, { + "SD3": 15.4, + "SD2": 14.1, + "SD1": 12.9, + "SD0": 11.9, + "SD1neg": 11.0, + "SD2neg": 10.2, + "SD3neg": 9.4 +}, { + "SD3": 15.7, + "SD2": 14.4, + "SD1": 13.2, + "SD0": 12.2, + "SD1neg": 11.2, + "SD2neg": 10.4, + "SD3neg": 9.6 +}, { + "SD3": 16.0, + "SD2": 14.7, + "SD1": 13.5, + "SD0": 12.4, + "SD1neg": 11.5, + "SD2neg": 10.6, + "SD3neg": 9.8 +}, { + "SD3": 16.3, + "SD2": 14.9, + "SD1": 13.7, + "SD0": 12.6, + "SD1neg": 11.7, + "SD2neg": 10.8, + "SD3neg": 10.0 +}, { + "SD3": 16.6, + "SD2": 15.2, + "SD1": 14.0, + "SD0": 12.9, + "SD1neg": 11.9, + "SD2neg": 11.0, + "SD3neg": 10.2 +}, { + "SD3": 16.9, + "SD2": 15.5, + "SD1": 14.2, + "SD0": 13.1, + "SD1neg": 12.1, + "SD2neg": 11.2, + "SD3neg": 10.4 +}, { + "SD3": 17.2, + "SD2": 15.8, + "SD1": 14.5, + "SD0": 13.4, + "SD1neg": 12.3, + "SD2neg": 11.4, + "SD3neg": 10.6 +}, { + "SD3": 17.5, + "SD2": 16.0, + "SD1": 14.7, + "SD0": 13.6, + "SD1neg": 12.6, + "SD2neg": 11.6, + "SD3neg": 10.8 +}, { + "SD3": 17.8, + "SD2": 16.3, + "SD1": 15.0, + "SD0": 13.8, + "SD1neg": 12.8, + "SD2neg": 11.8, + "SD3neg": 11.0 +}, { + "SD3": 18.1, + "SD2": 16.6, + "SD1": 15.3, + "SD0": 14.1, + "SD1neg": 13.0, + "SD2neg": 12.0, + "SD3neg": 11.1 +}, { + "SD3": 18.4, + "SD2": 16.9, + "SD1": 15.5, + "SD0": 14.3, + "SD1neg": 13.2, + "SD2neg": 12.2, + "SD3neg": 11.3 +}, { + "SD3": 18.8, + "SD2": 17.2, + "SD1": 15.8, + "SD0": 14.6, + "SD1neg": 13.4, + "SD2neg": 12.4, + "SD3neg": 11.5 +}, { + "SD3": 19.1, + "SD2": 17.5, + "SD1": 16.1, + "SD0": 14.8, + "SD1neg": 13.7, + "SD2neg": 12.6, + "SD3neg": 11.7 +}, { + "SD3": 19.5, + "SD2": 17.9, + "SD1": 16.4, + "SD0": 15.1, + "SD1neg": 13.9, + "SD2neg": 12.9, + "SD3neg": 11.9 +}, { + "SD3": 19.9, + "SD2": 18.2, + "SD1": 16.7, + "SD0": 15.4, + "SD1neg": 14.2, + "SD2neg": 13.1, + "SD3neg": 12.1 +}, { + "SD3": 20.3, + "SD2": 18.5, + "SD1": 17.0, + "SD0": 15.6, + "SD1neg": 14.4, + "SD2neg": 13.3, + "SD3neg": 12.3 +}, { + "SD3": 20.7, + "SD2": 18.9, + "SD1": 17.3, + "SD0": 15.9, + "SD1neg": 14.7, + "SD2neg": 13.6, + "SD3neg": 12.5 +}, { + "SD3": 21.1, + "SD2": 19.3, + "SD1": 17.7, + "SD0": 16.2, + "SD1neg": 14.9, + "SD2neg": 13.8, + "SD3neg": 12.8 +}, { + "SD3": 21.6, + "SD2": 19.7, + "SD1": 18.0, + "SD0": 16.5, + "SD1neg": 15.2, + "SD2neg": 14.0, + "SD3neg": 13.0 +}, { + "SD3": 22.0, + "SD2": 20.1, + "SD1": 18.4, + "SD0": 16.8, + "SD1neg": 15.5, + "SD2neg": 14.3, + "SD3neg": 13.2 +}, { + "SD3": 22.5, + "SD2": 20.5, + "SD1": 18.7, + "SD0": 17.2, + "SD1neg": 15.8, + "SD2neg": 14.5, + "SD3neg": 13.4 +}, { + "SD3": 22.9, + "SD2": 20.9, + "SD1": 19.1, + "SD0": 17.5, + "SD1neg": 16.1, + "SD2neg": 14.8, + "SD3neg": 13.7 +}, { + "SD3": 23.4, + "SD2": 21.3, + "SD1": 19.5, + "SD0": 17.8, + "SD1neg": 16.4, + "SD2neg": 15.1, + "SD3neg": 13.9 +}, { + "SD3": 23.9, + "SD2": 21.8, + "SD1": 19.8, + "SD0": 18.2, + "SD1neg": 16.7, + "SD2neg": 15.3, + "SD3neg": 14.1 +}, { + "SD3": 24.4, + "SD2": 22.2, + "SD1": 20.2, + "SD0": 18.5, + "SD1neg": 17.0, + "SD2neg": 15.6, + "SD3neg": 14.4 +}, { + "SD3": 25.0, + "SD2": 22.7, + "SD1": 20.7, + "SD0": 18.9, + "SD1neg": 17.3, + "SD2neg": 15.9, + "SD3neg": 14.6 +}, { + "SD3": 25.5, + "SD2": 23.1, + "SD1": 21.1, + "SD0": 19.2, + "SD1neg": 17.6, + "SD2neg": 16.2, + "SD3neg": 14.9 +}, { + "SD3": 26.0, + "SD2": 23.6, + "SD1": 21.5, + "SD0": 19.6, + "SD1neg": 18.0, + "SD2neg": 16.5, + "SD3neg": 15.2 +}, { + "SD3": 26.6, + "SD2": 24.1, + "SD1": 21.9, + "SD0": 20.0, + "SD1neg": 18.3, + "SD2neg": 16.8, + "SD3neg": 15.4 +}, { + "SD3": 27.2, + "SD2": 24.6, + "SD1": 22.4, + "SD0": 20.4, + "SD1neg": 18.6, + "SD2neg": 17.1, + "SD3neg": 15.7 +}, { + "SD3": 27.8, + "SD2": 25.1, + "SD1": 22.8, + "SD0": 20.8, + "SD1neg": 19.0, + "SD2neg": 17.4, + "SD3neg": 16.0 +}, { + "SD3": 28.3, + "SD2": 25.6, + "SD1": 23.3, + "SD0": 21.2, + "SD1neg": 19.3, + "SD2neg": 17.7, + "SD3neg": 16.2 +}, { + "SD3": 28.9, + "SD2": 26.1, + "SD1": 23.7, + "SD0": 21.6, + "SD1neg": 19.7, + "SD2neg": 18.0, + "SD3neg": 16.5 +}, { + "SD3": 29.5, + "SD2": 26.6, + "SD1": 24.1, + "SD0": 22.0, + "SD1neg": 20.0, + "SD2neg": 18.3, + "SD3neg": 16.8 +}, { + "SD3": 30.1, + "SD2": 27.2, + "SD1": 24.6, + "SD0": 22.4, + "SD1neg": 20.4, + "SD2neg": 18.6, + "SD3neg": 17.1 +}] \ No newline at end of file diff --git a/src/DataSets/WhoStandardDataSets/ZScores/wfhl-boys/wfl_boys_0-to-2-years_zscores.json b/src/DataSets/WhoStandardDataSets/ZScores/wfhl-boys/wfl_boys_0-to-2-years_zscores.json index 21af43c..7b15d48 100644 --- a/src/DataSets/WhoStandardDataSets/ZScores/wfhl-boys/wfl_boys_0-to-2-years_zscores.json +++ b/src/DataSets/WhoStandardDataSets/ZScores/wfhl-boys/wfl_boys_0-to-2-years_zscores.json @@ -1,596 +1,596 @@ [ - { - "SD0": 2.4, - "SD1": 2.7, - "SD2": 3, - "SD3": 3.3, - "SD1neg": 1.9, - "SD2neg": 2, - "SD3neg": 2.2 - }, - { - "SD0": 2.6, - "SD1": 2.9, - "SD2": 3.1, - "SD3": 3.5, - "SD1neg": 2, - "SD2neg": 2.2, - "SD3neg": 2.4 - }, - { - "SD0": 2.8, - "SD1": 3, - "SD2": 3.3, - "SD3": 3.7, - "SD1neg": 2.1, - "SD2neg": 2.3, - "SD3neg": 2.5 - }, - { - "SD0": 2.9, - "SD1": 3.2, - "SD2": 3.6, - "SD3": 3.9, - "SD1neg": 2.3, - "SD2neg": 2.5, - "SD3neg": 2.7 - }, - { - "SD0": 3.1, - "SD1": 3.4, - "SD2": 3.8, - "SD3": 4.2, - "SD1neg": 2.4, - "SD2neg": 2.6, - "SD3neg": 2.9 - }, - { - "SD0": 3.3, - "SD1": 3.6, - "SD2": 4, - "SD3": 4.4, - "SD1neg": 2.6, - "SD2neg": 2.8, - "SD3neg": 3 - }, - { - "SD0": 3.5, - "SD1": 3.9, - "SD2": 4.2, - "SD3": 4.7, - "SD1neg": 2.7, - "SD2neg": 3, - "SD3neg": 3.2 - }, - { - "SD0": 3.8, - "SD1": 4.1, - "SD2": 4.5, - "SD3": 5, - "SD1neg": 2.9, - "SD2neg": 3.2, - "SD3neg": 3.5 - }, - { - "SD0": 4, - "SD1": 4.4, - "SD2": 4.8, - "SD3": 5.3, - "SD1neg": 3.1, - "SD2neg": 3.4, - "SD3neg": 3.7 - }, - { - "SD0": 4.3, - "SD1": 4.7, - "SD2": 5.1, - "SD3": 5.6, - "SD1neg": 3.3, - "SD2neg": 3.6, - "SD3neg": 3.9 - }, - { - "SD0": 4.5, - "SD1": 5, - "SD2": 5.4, - "SD3": 6, - "SD1neg": 3.6, - "SD2neg": 3.8, - "SD3neg": 4.2 - }, - { - "SD0": 4.8, - "SD1": 5.3, - "SD2": 5.8, - "SD3": 6.3, - "SD1neg": 3.8, - "SD2neg": 4.1, - "SD3neg": 4.4 - }, - { - "SD0": 5.1, - "SD1": 5.6, - "SD2": 6.1, - "SD3": 6.7, - "SD1neg": 4, - "SD2neg": 4.3, - "SD3neg": 4.7 - }, - { - "SD0": 5.4, - "SD1": 5.9, - "SD2": 6.4, - "SD3": 7.1, - "SD1neg": 4.3, - "SD2neg": 4.6, - "SD3neg": 5 - }, - { - "SD0": 5.7, - "SD1": 6.2, - "SD2": 6.8, - "SD3": 7.4, - "SD1neg": 4.5, - "SD2neg": 4.8, - "SD3neg": 5.3 - }, - { - "SD0": 6, - "SD1": 6.5, - "SD2": 7.1, - "SD3": 7.8, - "SD1neg": 4.7, - "SD2neg": 5.1, - "SD3neg": 5.5 - }, - { - "SD0": 6.3, - "SD1": 6.8, - "SD2": 7.4, - "SD3": 8.1, - "SD1neg": 4.9, - "SD2neg": 5.3, - "SD3neg": 5.8 - }, - { - "SD0": 6.5, - "SD1": 7.1, - "SD2": 7.7, - "SD3": 8.5, - "SD1neg": 5.1, - "SD2neg": 5.6, - "SD3neg": 6 - }, - { - "SD0": 6.8, - "SD1": 7.4, - "SD2": 8, - "SD3": 8.8, - "SD1neg": 5.3, - "SD2neg": 5.8, - "SD3neg": 6.2 - }, - { - "SD0": 7, - "SD1": 7.6, - "SD2": 8.3, - "SD3": 9.1, - "SD1neg": 5.5, - "SD2neg": 6, - "SD3neg": 6.5 - }, - { - "SD0": 7.3, - "SD1": 7.9, - "SD2": 8.6, - "SD3": 9.4, - "SD1neg": 5.7, - "SD2neg": 6.2, - "SD3neg": 6.7 - }, - { - "SD0": 7.5, - "SD1": 8.2, - "SD2": 8.9, - "SD3": 9.7, - "SD1neg": 5.9, - "SD2neg": 6.4, - "SD3neg": 6.9 - }, - { - "SD0": 7.7, - "SD1": 8.4, - "SD2": 9.2, - "SD3": 10, - "SD1neg": 6.1, - "SD2neg": 6.6, - "SD3neg": 7.1 - }, - { - "SD0": 8, - "SD1": 8.7, - "SD2": 9.4, - "SD3": 10.3, - "SD1neg": 6.3, - "SD2neg": 6.8, - "SD3neg": 7.3 - }, - { - "SD0": 8.2, - "SD1": 8.9, - "SD2": 9.7, - "SD3": 10.6, - "SD1neg": 6.5, - "SD2neg": 7, - "SD3neg": 7.6 - }, - { - "SD0": 8.4, - "SD1": 9.2, - "SD2": 10, - "SD3": 10.9, - "SD1neg": 6.6, - "SD2neg": 7.2, - "SD3neg": 7.8 - }, - { - "SD0": 8.6, - "SD1": 9.4, - "SD2": 10.2, - "SD3": 11.2, - "SD1neg": 6.8, - "SD2neg": 7.4, - "SD3neg": 8 - }, - { - "SD0": 8.9, - "SD1": 9.6, - "SD2": 10.5, - "SD3": 11.5, - "SD1neg": 7, - "SD2neg": 7.6, - "SD3neg": 8.2 - }, - { - "SD0": 9.1, - "SD1": 9.9, - "SD2": 10.8, - "SD3": 11.8, - "SD1neg": 7.2, - "SD2neg": 7.7, - "SD3neg": 8.4 - }, - { - "SD0": 9.3, - "SD1": 10.1, - "SD2": 11, - "SD3": 12.1, - "SD1neg": 7.3, - "SD2neg": 7.9, - "SD3neg": 8.6 - }, - { - "SD0": 9.5, - "SD1": 10.3, - "SD2": 11.3, - "SD3": 12.3, - "SD1neg": 7.5, - "SD2neg": 8.1, - "SD3neg": 8.8 - }, - { - "SD0": 9.7, - "SD1": 10.6, - "SD2": 11.5, - "SD3": 12.6, - "SD1neg": 7.6, - "SD2neg": 8.3, - "SD3neg": 8.9 - }, - { - "SD0": 9.9, - "SD1": 10.8, - "SD2": 11.7, - "SD3": 12.8, - "SD1neg": 7.8, - "SD2neg": 8.4, - "SD3neg": 9.1 - }, - { - "SD0": 10.1, - "SD1": 11, - "SD2": 12, - "SD3": 13.1, - "SD1neg": 7.9, - "SD2neg": 8.6, - "SD3neg": 9.3 - }, - { - "SD0": 10.3, - "SD1": 11.2, - "SD2": 12.2, - "SD3": 13.3, - "SD1neg": 8.1, - "SD2neg": 8.7, - "SD3neg": 9.5 - }, - { - "SD0": 10.4, - "SD1": 11.4, - "SD2": 12.4, - "SD3": 13.6, - "SD1neg": 8.2, - "SD2neg": 8.9, - "SD3neg": 9.6 - }, - { - "SD0": 10.6, - "SD1": 11.6, - "SD2": 12.6, - "SD3": 13.8, - "SD1neg": 8.4, - "SD2neg": 9.1, - "SD3neg": 9.8 - }, - { - "SD0": 10.8, - "SD1": 11.8, - "SD2": 12.8, - "SD3": 14, - "SD1neg": 8.5, - "SD2neg": 9.2, - "SD3neg": 10 - }, - { - "SD0": 11, - "SD1": 12, - "SD2": 13.1, - "SD3": 14.3, - "SD1neg": 8.7, - "SD2neg": 9.4, - "SD3neg": 10.2 - }, - { - "SD0": 11.3, - "SD1": 12.2, - "SD2": 13.3, - "SD3": 14.6, - "SD1neg": 8.9, - "SD2neg": 9.6, - "SD3neg": 10.4 - }, - { - "SD0": 11.5, - "SD1": 12.5, - "SD2": 13.6, - "SD3": 14.9, - "SD1neg": 9.1, - "SD2neg": 9.8, - "SD3neg": 10.6 - }, - { - "SD0": 11.7, - "SD1": 12.8, - "SD2": 13.9, - "SD3": 15.2, - "SD1neg": 9.3, - "SD2neg": 10, - "SD3neg": 10.8 - }, - { - "SD0": 11.9, - "SD1": 13, - "SD2": 14.2, - "SD3": 15.5, - "SD1neg": 9.5, - "SD2neg": 10.2, - "SD3neg": 11.1 - }, - { - "SD0": 12.1, - "SD1": 13.3, - "SD2": 14.5, - "SD3": 15.8, - "SD1neg": 9.7, - "SD2neg": 10.5, - "SD3neg": 11.3 - }, - { - "SD0": 12.5, - "SD1": 13.5, - "SD2": 14.7, - "SD3": 16.1, - "SD1neg": 9.9, - "SD2neg": 10.7, - "SD3neg": 11.5 - }, - { - "SD0": 12.7, - "SD1": 13.8, - "SD2": 15, - "SD3": 16.4, - "SD1neg": 10.1, - "SD2neg": 10.9, - "SD3neg": 11.8 - }, - { - "SD0": 13, - "SD1": 14.1, - "SD2": 15.3, - "SD3": 16.7, - "SD1neg": 10.3, - "SD2neg": 11.1, - "SD3neg": 12 - }, - { - "SD0": 13.2, - "SD1": 14.3, - "SD2": 15.6, - "SD3": 17, - "SD1neg": 10.5, - "SD2neg": 11.3, - "SD3neg": 12.2 - }, - { - "SD0": 13.4, - "SD1": 14.6, - "SD2": 15.8, - "SD3": 17.3, - "SD1neg": 10.7, - "SD2neg": 11.5, - "SD3neg": 12.4 - }, - { - "SD0": 13.7, - "SD1": 14.8, - "SD2": 16.1, - "SD3": 17.6, - "SD1neg": 10.8, - "SD2neg": 11.7, - "SD3neg": 12.6 - }, - { - "SD0": 13.9, - "SD1": 15.1, - "SD2": 16.4, - "SD3": 17.9, - "SD1neg": 11, - "SD2neg": 11.9, - "SD3neg": 12.8 - }, - { - "SD0": 14.1, - "SD1": 15.3, - "SD2": 16.7, - "SD3": 18.2, - "SD1neg": 11.2, - "SD2neg": 12.1, - "SD3neg": 13.1 - }, - { - "SD0": 14.4, - "SD1": 15.6, - "SD2": 17, - "SD3": 18.5, - "SD1neg": 11.4, - "SD2neg": 12.3, - "SD3neg": 13.3 - }, - { - "SD0": 14.6, - "SD1": 15.9, - "SD2": 17.3, - "SD3": 18.9, - "SD1neg": 11.6, - "SD2neg": 12.5, - "SD3neg": 13.5 - }, - { - "SD0": 14.9, - "SD1": 16.2, - "SD2": 17.6, - "SD3": 19.2, - "SD1neg": 11.8, - "SD2neg": 12.7, - "SD3neg": 13.7 - }, - { - "SD0": 15.2, - "SD1": 16.5, - "SD2": 18, - "SD3": 19.6, - "SD1neg": 12, - "SD2neg": 12.9, - "SD3neg": 14 - }, - { - "SD0": 15.4, - "SD1": 16.8, - "SD2": 18.3, - "SD3": 20, - "SD1neg": 12.2, - "SD2neg": 13.2, - "SD3neg": 14.2 - }, - { - "SD0": 15.7, - "SD1": 17.1, - "SD2": 18.7, - "SD3": 20.4, - "SD1neg": 12.4, - "SD2neg": 13.4, - "SD3neg": 14.5 - }, - { - "SD0": 16, - "SD1": 17.4, - "SD2": 19, - "SD3": 20.8, - "SD1neg": 12.6, - "SD2neg": 13.6, - "SD3neg": 14.8 - }, - { - "SD0": 16.3, - "SD1": 17.8, - "SD2": 19.4, - "SD3": 21.2, - "SD1neg": 12.8, - "SD2neg": 13.9, - "SD3neg": 15 - }, - { - "SD0": 16.6, - "SD1": 18.1, - "SD2": 19.8, - "SD3": 21.7, - "SD1neg": 13, - "SD2neg": 14.1, - "SD3neg": 15.3 - }, - { - "SD0": 16.9, - "SD1": 18.5, - "SD2": 20.2, - "SD3": 22.1, - "SD1neg": 13.3, - "SD2neg": 14.4, - "SD3neg": 15.6 - }, - { - "SD0": 17.3, - "SD1": 18.8, - "SD2": 20.6, - "SD3": 22.6, - "SD1neg": 13.5, - "SD2neg": 14.6, - "SD3neg": 15.9 - }, - { - "SD0": 17.6, - "SD1": 19.2, - "SD2": 21, - "SD3": 23.1, - "SD1neg": 13.7, - "SD2neg": 14.9, - "SD3neg": 16.2 - }, - { - "SD0": 17.9, - "SD1": 19.6, - "SD2": 21.4, - "SD3": 23.6, - "SD1neg": 14, - "SD2neg": 15.1, - "SD3neg": 16.5 - }, - { - "SD0": 18.3, - "SD1": 20, - "SD2": 21.9, - "SD3": 24.1, - "SD1neg": 14.2, - "SD2neg": 15.4, - "SD3neg": 16.8 - } -] + { + "SD3": 3.3, + "SD2": 3, + "SD1": 2.7, + "SD0": 2.4, + "SD1neg": 2.2, + "SD2neg": 2, + "SD3neg": 1.9 + }, + { + "SD3": 3.5, + "SD2": 3.1, + "SD1": 2.9, + "SD0": 2.6, + "SD1neg": 2.4, + "SD2neg": 2.2, + "SD3neg": 2 + }, + { + "SD3": 3.7, + "SD2": 3.3, + "SD1": 3, + "SD0": 2.8, + "SD1neg": 2.5, + "SD2neg": 2.3, + "SD3neg": 2.1 + }, + { + "SD3": 3.9, + "SD2": 3.6, + "SD1": 3.2, + "SD0": 2.9, + "SD1neg": 2.7, + "SD2neg": 2.5, + "SD3neg": 2.3 + }, + { + "SD3": 4.2, + "SD2": 3.8, + "SD1": 3.4, + "SD0": 3.1, + "SD1neg": 2.9, + "SD2neg": 2.6, + "SD3neg": 2.4 + }, + { + "SD3": 4.4, + "SD2": 4, + "SD1": 3.6, + "SD0": 3.3, + "SD1neg": 3, + "SD2neg": 2.8, + "SD3neg": 2.6 + }, + { + "SD3": 4.7, + "SD2": 4.2, + "SD1": 3.9, + "SD0": 3.5, + "SD1neg": 3.2, + "SD2neg": 3, + "SD3neg": 2.7 + }, + { + "SD3": 5, + "SD2": 4.5, + "SD1": 4.1, + "SD0": 3.8, + "SD1neg": 3.5, + "SD2neg": 3.2, + "SD3neg": 2.9 + }, + { + "SD3": 5.3, + "SD2": 4.8, + "SD1": 4.4, + "SD0": 4, + "SD1neg": 3.7, + "SD2neg": 3.4, + "SD3neg": 3.1 + }, + { + "SD3": 5.6, + "SD2": 5.1, + "SD1": 4.7, + "SD0": 4.3, + "SD1neg": 3.9, + "SD2neg": 3.6, + "SD3neg": 3.3 + }, + { + "SD3": 6, + "SD2": 5.4, + "SD1": 5, + "SD0": 4.5, + "SD1neg": 4.2, + "SD2neg": 3.8, + "SD3neg": 3.6 + }, + { + "SD3": 6.3, + "SD2": 5.8, + "SD1": 5.3, + "SD0": 4.8, + "SD1neg": 4.4, + "SD2neg": 4.1, + "SD3neg": 3.8 + }, + { + "SD3": 6.7, + "SD2": 6.1, + "SD1": 5.6, + "SD0": 5.1, + "SD1neg": 4.7, + "SD2neg": 4.3, + "SD3neg": 4 + }, + { + "SD3": 7.1, + "SD2": 6.4, + "SD1": 5.9, + "SD0": 5.4, + "SD1neg": 5, + "SD2neg": 4.6, + "SD3neg": 4.3 + }, + { + "SD3": 7.4, + "SD2": 6.8, + "SD1": 6.2, + "SD0": 5.7, + "SD1neg": 5.3, + "SD2neg": 4.8, + "SD3neg": 4.5 + }, + { + "SD3": 7.8, + "SD2": 7.1, + "SD1": 6.5, + "SD0": 6, + "SD1neg": 5.5, + "SD2neg": 5.1, + "SD3neg": 4.7 + }, + { + "SD3": 8.1, + "SD2": 7.4, + "SD1": 6.8, + "SD0": 6.3, + "SD1neg": 5.8, + "SD2neg": 5.3, + "SD3neg": 4.9 + }, + { + "SD3": 8.5, + "SD2": 7.7, + "SD1": 7.1, + "SD0": 6.5, + "SD1neg": 6, + "SD2neg": 5.6, + "SD3neg": 5.1 + }, + { + "SD3": 8.8, + "SD2": 8, + "SD1": 7.4, + "SD0": 6.8, + "SD1neg": 6.2, + "SD2neg": 5.8, + "SD3neg": 5.3 + }, + { + "SD3": 9.1, + "SD2": 8.3, + "SD1": 7.6, + "SD0": 7, + "SD1neg": 6.5, + "SD2neg": 6, + "SD3neg": 5.5 + }, + { + "SD3": 9.4, + "SD2": 8.6, + "SD1": 7.9, + "SD0": 7.3, + "SD1neg": 6.7, + "SD2neg": 6.2, + "SD3neg": 5.7 + }, + { + "SD3": 9.7, + "SD2": 8.9, + "SD1": 8.2, + "SD0": 7.5, + "SD1neg": 6.9, + "SD2neg": 6.4, + "SD3neg": 5.9 + }, + { + "SD3": 10, + "SD2": 9.2, + "SD1": 8.4, + "SD0": 7.7, + "SD1neg": 7.1, + "SD2neg": 6.6, + "SD3neg": 6.1 + }, + { + "SD3": 10.3, + "SD2": 9.4, + "SD1": 8.7, + "SD0": 8, + "SD1neg": 7.3, + "SD2neg": 6.8, + "SD3neg": 6.3 + }, + { + "SD3": 10.6, + "SD2": 9.7, + "SD1": 8.9, + "SD0": 8.2, + "SD1neg": 7.6, + "SD2neg": 7, + "SD3neg": 6.5 + }, + { + "SD3": 10.9, + "SD2": 10, + "SD1": 9.2, + "SD0": 8.4, + "SD1neg": 7.8, + "SD2neg": 7.2, + "SD3neg": 6.6 + }, + { + "SD3": 11.2, + "SD2": 10.2, + "SD1": 9.4, + "SD0": 8.6, + "SD1neg": 8, + "SD2neg": 7.4, + "SD3neg": 6.8 + }, + { + "SD3": 11.5, + "SD2": 10.5, + "SD1": 9.6, + "SD0": 8.9, + "SD1neg": 8.2, + "SD2neg": 7.6, + "SD3neg": 7 + }, + { + "SD3": 11.8, + "SD2": 10.8, + "SD1": 9.9, + "SD0": 9.1, + "SD1neg": 8.4, + "SD2neg": 7.7, + "SD3neg": 7.2 + }, + { + "SD3": 12.1, + "SD2": 11, + "SD1": 10.1, + "SD0": 9.3, + "SD1neg": 8.6, + "SD2neg": 7.9, + "SD3neg": 7.3 + }, + { + "SD3": 12.3, + "SD2": 11.3, + "SD1": 10.3, + "SD0": 9.5, + "SD1neg": 8.8, + "SD2neg": 8.1, + "SD3neg": 7.5 + }, + { + "SD3": 12.6, + "SD2": 11.5, + "SD1": 10.6, + "SD0": 9.7, + "SD1neg": 8.9, + "SD2neg": 8.3, + "SD3neg": 7.6 + }, + { + "SD3": 12.8, + "SD2": 11.7, + "SD1": 10.8, + "SD0": 9.9, + "SD1neg": 9.1, + "SD2neg": 8.4, + "SD3neg": 7.8 + }, + { + "SD3": 13.1, + "SD2": 12, + "SD1": 11, + "SD0": 10.1, + "SD1neg": 9.3, + "SD2neg": 8.6, + "SD3neg": 7.9 + }, + { + "SD3": 13.3, + "SD2": 12.2, + "SD1": 11.2, + "SD0": 10.3, + "SD1neg": 9.5, + "SD2neg": 8.7, + "SD3neg": 8.1 + }, + { + "SD3": 13.6, + "SD2": 12.4, + "SD1": 11.4, + "SD0": 10.4, + "SD1neg": 9.6, + "SD2neg": 8.9, + "SD3neg": 8.2 + }, + { + "SD3": 13.8, + "SD2": 12.6, + "SD1": 11.6, + "SD0": 10.6, + "SD1neg": 9.8, + "SD2neg": 9.1, + "SD3neg": 8.4 + }, + { + "SD3": 14, + "SD2": 12.8, + "SD1": 11.8, + "SD0": 10.8, + "SD1neg": 10, + "SD2neg": 9.2, + "SD3neg": 8.5 + }, + { + "SD3": 14.3, + "SD2": 13.1, + "SD1": 12, + "SD0": 11, + "SD1neg": 10.2, + "SD2neg": 9.4, + "SD3neg": 8.7 + }, + { + "SD3": 14.6, + "SD2": 13.3, + "SD1": 12.2, + "SD0": 11.3, + "SD1neg": 10.4, + "SD2neg": 9.6, + "SD3neg": 8.9 + }, + { + "SD3": 14.9, + "SD2": 13.6, + "SD1": 12.5, + "SD0": 11.5, + "SD1neg": 10.6, + "SD2neg": 9.8, + "SD3neg": 9.1 + }, + { + "SD3": 15.2, + "SD2": 13.9, + "SD1": 12.8, + "SD0": 11.7, + "SD1neg": 10.8, + "SD2neg": 10, + "SD3neg": 9.3 + }, + { + "SD3": 15.5, + "SD2": 14.2, + "SD1": 13, + "SD0": 12, + "SD1neg": 11.1, + "SD2neg": 10.2, + "SD3neg": 9.5 + }, + { + "SD3": 15.8, + "SD2": 14.5, + "SD1": 13.3, + "SD0": 12.2, + "SD1neg": 11.3, + "SD2neg": 10.5, + "SD3neg": 9.7 + }, + { + "SD3": 16.1, + "SD2": 14.7, + "SD1": 13.5, + "SD0": 12.5, + "SD1neg": 11.5, + "SD2neg": 10.7, + "SD3neg": 9.9 + }, + { + "SD3": 16.4, + "SD2": 15, + "SD1": 13.8, + "SD0": 12.7, + "SD1neg": 11.8, + "SD2neg": 10.9, + "SD3neg": 10.1 + }, + { + "SD3": 16.7, + "SD2": 15.3, + "SD1": 14.1, + "SD0": 13, + "SD1neg": 12, + "SD2neg": 11.1, + "SD3neg": 10.3 + }, + { + "SD3": 17, + "SD2": 15.6, + "SD1": 14.3, + "SD0": 13.2, + "SD1neg": 12.2, + "SD2neg": 11.3, + "SD3neg": 10.5 + }, + { + "SD3": 17.3, + "SD2": 15.8, + "SD1": 14.6, + "SD0": 13.4, + "SD1neg": 12.4, + "SD2neg": 11.5, + "SD3neg": 10.7 + }, + { + "SD3": 17.6, + "SD2": 16.1, + "SD1": 14.8, + "SD0": 13.7, + "SD1neg": 12.6, + "SD2neg": 11.7, + "SD3neg": 10.8 + }, + { + "SD3": 17.9, + "SD2": 16.4, + "SD1": 15.1, + "SD0": 13.9, + "SD1neg": 12.8, + "SD2neg": 11.9, + "SD3neg": 11 + }, + { + "SD3": 18.2, + "SD2": 16.7, + "SD1": 15.3, + "SD0": 14.1, + "SD1neg": 13.1, + "SD2neg": 12.1, + "SD3neg": 11.2 + }, + { + "SD3": 18.5, + "SD2": 17, + "SD1": 15.6, + "SD0": 14.4, + "SD1neg": 13.3, + "SD2neg": 12.3, + "SD3neg": 11.4 + }, + { + "SD3": 18.9, + "SD2": 17.3, + "SD1": 15.9, + "SD0": 14.6, + "SD1neg": 13.5, + "SD2neg": 12.5, + "SD3neg": 11.6 + }, + { + "SD3": 19.2, + "SD2": 17.6, + "SD1": 16.2, + "SD0": 14.9, + "SD1neg": 13.7, + "SD2neg": 12.7, + "SD3neg": 11.8 + }, + { + "SD3": 19.6, + "SD2": 18, + "SD1": 16.5, + "SD0": 15.2, + "SD1neg": 14, + "SD2neg": 12.9, + "SD3neg": 12 + }, + { + "SD3": 20, + "SD2": 18.3, + "SD1": 16.8, + "SD0": 15.4, + "SD1neg": 14.2, + "SD2neg": 13.2, + "SD3neg": 12.2 + }, + { + "SD3": 20.4, + "SD2": 18.7, + "SD1": 17.1, + "SD0": 15.7, + "SD1neg": 14.5, + "SD2neg": 13.4, + "SD3neg": 12.4 + }, + { + "SD3": 20.8, + "SD2": 19, + "SD1": 17.4, + "SD0": 16, + "SD1neg": 14.8, + "SD2neg": 13.6, + "SD3neg": 12.6 + }, + { + "SD3": 21.2, + "SD2": 19.4, + "SD1": 17.8, + "SD0": 16.3, + "SD1neg": 15, + "SD2neg": 13.9, + "SD3neg": 12.8 + }, + { + "SD3": 21.7, + "SD2": 19.8, + "SD1": 18.1, + "SD0": 16.6, + "SD1neg": 15.3, + "SD2neg": 14.1, + "SD3neg": 13 + }, + { + "SD3": 22.1, + "SD2": 20.2, + "SD1": 18.5, + "SD0": 16.9, + "SD1neg": 15.6, + "SD2neg": 14.4, + "SD3neg": 13.3 + }, + { + "SD3": 22.6, + "SD2": 20.6, + "SD1": 18.8, + "SD0": 17.3, + "SD1neg": 15.9, + "SD2neg": 14.6, + "SD3neg": 13.5 + }, + { + "SD3": 23.1, + "SD2": 21, + "SD1": 19.2, + "SD0": 17.6, + "SD1neg": 16.2, + "SD2neg": 14.9, + "SD3neg": 13.7 + }, + { + "SD3": 23.6, + "SD2": 21.4, + "SD1": 19.6, + "SD0": 17.9, + "SD1neg": 16.5, + "SD2neg": 15.1, + "SD3neg": 14 + }, + { + "SD3": 24.1, + "SD2": 21.9, + "SD1": 20, + "SD0": 18.3, + "SD1neg": 16.8, + "SD2neg": 15.4, + "SD3neg": 14.2 + } +] \ No newline at end of file diff --git a/src/DataSets/WhoStandardDataSets/ZScores/wfhl-girls/wfh_girls_2-to-5-years_zscores.json b/src/DataSets/WhoStandardDataSets/ZScores/wfhl-girls/wfh_girls_2-to-5-years_zscores.json index 536a0d5..3f2fe34 100644 --- a/src/DataSets/WhoStandardDataSets/ZScores/wfhl-girls/wfh_girls_2-to-5-years_zscores.json +++ b/src/DataSets/WhoStandardDataSets/ZScores/wfhl-girls/wfh_girls_2-to-5-years_zscores.json @@ -1,506 +1,449 @@ -[ - { - "SD0": 7.2, - "SD1": 7.9, - "SD2": 8.7, - "SD3": 9.7, - "SD1neg": 6.6, - "SD2neg": 6.1, - "SD3neg": 5.6 - }, - { - "SD0": 7.5, - "SD1": 8.2, - "SD2": 9, - "SD3": 10, - "SD1neg": 6.8, - "SD2neg": 6.3, - "SD3neg": 5.8 - }, - { - "SD0": 7.7, - "SD1": 8.4, - "SD2": 9.3, - "SD3": 10.2, - "SD1neg": 7, - "SD2neg": 6.4, - "SD3neg": 5.9 - }, - { - "SD0": 7.9, - "SD1": 8.7, - "SD2": 9.5, - "SD3": 10.5, - "SD1neg": 7.2, - "SD2neg": 6.6, - "SD3neg": 6.1 - }, - { - "SD0": 8.1, - "SD1": 8.9, - "SD2": 9.8, - "SD3": 10.8, - "SD1neg": 7.4, - "SD2neg": 6.8, - "SD3neg": 6.3 - }, - { - "SD0": 8.3, - "SD1": 9.1, - "SD2": 10, - "SD3": 11.1, - "SD1neg": 7.6, - "SD2neg": 7, - "SD3neg": 6.4 - }, - { - "SD0": 8.5, - "SD1": 9.3, - "SD2": 10.3, - "SD3": 11.3, - "SD1neg": 7.8, - "SD2neg": 7.1, - "SD3neg": 6.6 - }, - { - "SD0": 8.7, - "SD1": 9.5, - "SD2": 10.5, - "SD3": 11.6, - "SD1neg": 8, - "SD2neg": 7.3, - "SD3neg": 6.7 - }, - { - "SD0": 8.9, - "SD1": 9.8, - "SD2": 10.7, - "SD3": 11.8, - "SD1neg": 8.1, - "SD2neg": 7.5, - "SD3neg": 6.9 - }, - { - "SD0": 9.1, - "SD1": 10, - "SD2": 11, - "SD3": 12.1, - "SD1neg": 8.3, - "SD2neg": 7.6, - "SD3neg": 7 - }, - { - "SD0": 9.3, - "SD1": 10.2, - "SD2": 11.2, - "SD3": 12.3, - "SD1neg": 8.5, - "SD2neg": 7.8, - "SD3neg": 7.2 - }, - { - "SD0": 9.5, - "SD1": 10.4, - "SD2": 11.4, - "SD3": 12.6, - "SD1neg": 8.7, - "SD2neg": 8, - "SD3neg": 7.3 - }, - { - "SD0": 9.6, - "SD1": 10.6, - "SD2": 11.6, - "SD3": 12.8, - "SD1neg": 8.8, - "SD2neg": 8.1, - "SD3neg": 7.5 - }, - { - "SD0": 9.8, - "SD1": 10.8, - "SD2": 11.8, - "SD3": 13.1, - "SD1neg": 9, - "SD2neg": 8.3, - "SD3neg": 7.6 - }, - { - "SD0": 10, - "SD1": 11, - "SD2": 12.1, - "SD3": 13.3, - "SD1neg": 9.2, - "SD2neg": 8.4, - "SD3neg": 7.8 - }, - { - "SD0": 10.2, - "SD1": 11.2, - "SD2": 12.3, - "SD3": 13.6, - "SD1neg": 9.4, - "SD2neg": 8.6, - "SD3neg": 7.9 - }, - { - "SD0": 10.4, - "SD1": 11.4, - "SD2": 12.6, - "SD3": 13.9, - "SD1neg": 9.6, - "SD2neg": 8.8, - "SD3neg": 8.1 - }, - { - "SD0": 10.7, - "SD1": 11.7, - "SD2": 12.8, - "SD3": 14.1, - "SD1neg": 9.8, - "SD2neg": 9, - "SD3neg": 8.3 - }, - { - "SD0": 10.9, - "SD1": 11.9, - "SD2": 13.1, - "SD3": 14.5, - "SD1neg": 10, - "SD2neg": 9.2, - "SD3neg": 8.5 - }, - { - "SD0": 11.1, - "SD1": 12.2, - "SD2": 13.4, - "SD3": 14.8, - "SD1neg": 10.2, - "SD2neg": 9.4, - "SD3neg": 8.6 - }, - { - "SD0": 11.4, - "SD1": 12.5, - "SD2": 13.7, - "SD3": 15.1, - "SD1neg": 10.4, - "SD2neg": 9.6, - "SD3neg": 8.8 - }, - { - "SD0": 11.6, - "SD1": 12.7, - "SD2": 14, - "SD3": 15.4, - "SD1neg": 10.7, - "SD2neg": 9.8, - "SD3neg": 9 - }, - { - "SD0": 11.9, - "SD1": 13, - "SD2": 14.3, - "SD3": 15.8, - "SD1neg": 10.9, - "SD2neg": 10, - "SD3neg": 9.2 - }, - { - "SD0": 12.1, - "SD1": 13.3, - "SD2": 14.6, - "SD3": 16.1, - "SD1neg": 11.1, - "SD2neg": 10.2, - "SD3neg": 9.4 - }, - { - "SD0": 12.4, - "SD1": 13.6, - "SD2": 14.9, - "SD3": 16.4, - "SD1neg": 11.4, - "SD2neg": 10.4, - "SD3neg": 9.6 - }, - { - "SD0": 12.6, - "SD1": 13.8, - "SD2": 15.2, - "SD3": 16.8, - "SD1neg": 11.6, - "SD2neg": 10.6, - "SD3neg": 9.8 - }, - { - "SD0": 12.9, - "SD1": 14.1, - "SD2": 15.5, - "SD3": 17.1, - "SD1neg": 11.8, - "SD2neg": 10.9, - "SD3neg": 10 - }, - { - "SD0": 13.1, - "SD1": 14.4, - "SD2": 15.8, - "SD3": 17.4, - "SD1neg": 12, - "SD2neg": 11.1, - "SD3neg": 10.2 - }, - { - "SD0": 13.4, - "SD1": 14.7, - "SD2": 16.1, - "SD3": 17.8, - "SD1neg": 12.3, - "SD2neg": 11.3, - "SD3neg": 10.4 - }, - { - "SD0": 13.6, - "SD1": 14.9, - "SD2": 16.4, - "SD3": 18.1, - "SD1neg": 12.5, - "SD2neg": 11.5, - "SD3neg": 10.6 - }, - { - "SD0": 13.9, - "SD1": 15.2, - "SD2": 16.7, - "SD3": 18.5, - "SD1neg": 12.7, - "SD2neg": 11.7, - "SD3neg": 10.8 - }, - { - "SD0": 14.1, - "SD1": 15.5, - "SD2": 17, - "SD3": 18.8, - "SD1neg": 12.9, - "SD2neg": 11.9, - "SD3neg": 10.9 - }, - { - "SD0": 14.4, - "SD1": 15.8, - "SD2": 17.4, - "SD3": 19.2, - "SD1neg": 13.2, - "SD2neg": 12.1, - "SD3neg": 11.1 - }, - { - "SD0": 14.7, - "SD1": 16.1, - "SD2": 17.7, - "SD3": 19.5, - "SD1neg": 13.4, - "SD2neg": 12.3, - "SD3neg": 11.3 - }, - { - "SD0": 14.9, - "SD1": 16.4, - "SD2": 18, - "SD3": 19.9, - "SD1neg": 13.7, - "SD2neg": 12.5, - "SD3neg": 11.5 - }, - { - "SD0": 15.2, - "SD1": 16.7, - "SD2": 18.4, - "SD3": 20.3, - "SD1neg": 13.9, - "SD2neg": 12.8, - "SD3neg": 11.7 - }, - { - "SD0": 15.5, - "SD1": 17, - "SD2": 18.7, - "SD3": 20.7, - "SD1neg": 14.2, - "SD2neg": 13, - "SD3neg": 12 - }, - { - "SD0": 15.8, - "SD1": 17.4, - "SD2": 19.1, - "SD3": 21.1, - "SD1neg": 14.5, - "SD2neg": 13.3, - "SD3neg": 12.2 - }, - { - "SD0": 16.1, - "SD1": 17.7, - "SD2": 19.5, - "SD3": 21.6, - "SD1neg": 14.7, - "SD2neg": 13.5, - "SD3neg": 12.4 - }, - { - "SD0": 16.4, - "SD1": 18.1, - "SD2": 19.9, - "SD3": 22, - "SD1neg": 15, - "SD2neg": 13.8, - "SD3neg": 12.6 - }, - { - "SD0": 16.8, - "SD1": 18.4, - "SD2": 20.3, - "SD3": 22.5, - "SD1neg": 15.3, - "SD2neg": 14, - "SD3neg": 12.9 - }, - { - "SD0": 17.1, - "SD1": 18.8, - "SD2": 20.8, - "SD3": 23, - "SD1neg": 15.6, - "SD2neg": 14.3, - "SD3neg": 13.1 - }, - { - "SD0": 17.5, - "SD1": 19.2, - "SD2": 21.2, - "SD3": 23.5, - "SD1neg": 15.9, - "SD2neg": 14.6, - "SD3neg": 13.4 - }, - { - "SD0": 17.8, - "SD1": 19.6, - "SD2": 21.7, - "SD3": 24, - "SD1neg": 16.3, - "SD2neg": 14.9, - "SD3neg": 13.7 - }, - { - "SD0": 18.2, - "SD1": 20, - "SD2": 22.1, - "SD3": 24.5, - "SD1neg": 16.6, - "SD2neg": 15.2, - "SD3neg": 13.9 - }, - { - "SD0": 18.6, - "SD1": 20.5, - "SD2": 22.6, - "SD3": 25.1, - "SD1neg": 17, - "SD2neg": 15.5, - "SD3neg": 14.2 - }, - { - "SD0": 19, - "SD1": 20.9, - "SD2": 23.1, - "SD3": 25.7, - "SD1neg": 17.3, - "SD2neg": 15.8, - "SD3neg": 14.5 - }, - { - "SD0": 19.4, - "SD1": 21.4, - "SD2": 23.6, - "SD3": 26.2, - "SD1neg": 17.7, - "SD2neg": 16.2, - "SD3neg": 14.8 - }, - { - "SD0": 19.8, - "SD1": 21.8, - "SD2": 24.2, - "SD3": 26.8, - "SD1neg": 18, - "SD2neg": 16.5, - "SD3neg": 15.1 - }, - { - "SD0": 20.2, - "SD1": 22.3, - "SD2": 24.7, - "SD3": 27.4, - "SD1neg": 18.4, - "SD2neg": 16.8, - "SD3neg": 15.4 - }, - { - "SD0": 20.7, - "SD1": 22.8, - "SD2": 25.2, - "SD3": 28.1, - "SD1neg": 18.8, - "SD2neg": 17.2, - "SD3neg": 15.7 - }, - { - "SD0": 21.1, - "SD1": 23.3, - "SD2": 25.8, - "SD3": 28.7, - "SD1neg": 19.2, - "SD2neg": 17.5, - "SD3neg": 16 - }, - { - "SD0": 21.5, - "SD1": 23.8, - "SD2": 26.3, - "SD3": 29.3, - "SD1neg": 19.6, - "SD2neg": 17.8, - "SD3neg": 16.3 - }, - { - "SD0": 22, - "SD1": 24.2, - "SD2": 26.9, - "SD3": 29.9, - "SD1neg": 19.9, - "SD2neg": 18.2, - "SD3neg": 16.6 - }, - { - "SD0": 22.4, - "SD1": 24.7, - "SD2": 27.4, - "SD3": 30.6, - "SD1neg": 20.3, - "SD2neg": 18.5, - "SD3neg": 16.9 - }, - { - "SD0": 22.8, - "SD1": 25.2, - "SD2": 28, - "SD3": 31.2, - "SD1neg": 20.7, - "SD2neg": 18.9, - "SD3neg": 17.3 - } -] \ No newline at end of file +[{ + "SD3": 9.7, + "SD2": 8.7, + "SD1": 7.9, + "SD0": 7.2, + "SD1neg": 6.6, + "SD2neg": 6.1, + "SD3neg": 5.6 +}, { + "SD3": 10.0, + "SD2": 9.0, + "SD1": 8.2, + "SD0": 7.5, + "SD1neg": 6.8, + "SD2neg": 6.3, + "SD3neg": 5.8 +}, { + "SD3": 10.2, + "SD2": 9.3, + "SD1": 8.4, + "SD0": 7.7, + "SD1neg": 7.0, + "SD2neg": 6.4, + "SD3neg": 5.9 +}, { + "SD3": 10.5, + "SD2": 9.5, + "SD1": 8.7, + "SD0": 7.9, + "SD1neg": 7.2, + "SD2neg": 6.6, + "SD3neg": 6.1 +}, { + "SD3": 10.8, + "SD2": 9.8, + "SD1": 8.9, + "SD0": 8.1, + "SD1neg": 7.4, + "SD2neg": 6.8, + "SD3neg": 6.3 +}, { + "SD3": 11.1, + "SD2": 10.0, + "SD1": 9.1, + "SD0": 8.3, + "SD1neg": 7.6, + "SD2neg": 7.0, + "SD3neg": 6.4 +}, { + "SD3": 11.3, + "SD2": 10.3, + "SD1": 9.3, + "SD0": 8.5, + "SD1neg": 7.8, + "SD2neg": 7.1, + "SD3neg": 6.6 +}, { + "SD3": 11.6, + "SD2": 10.5, + "SD1": 9.5, + "SD0": 8.7, + "SD1neg": 8.0, + "SD2neg": 7.3, + "SD3neg": 6.7 +}, { + "SD3": 11.8, + "SD2": 10.7, + "SD1": 9.8, + "SD0": 8.9, + "SD1neg": 8.1, + "SD2neg": 7.5, + "SD3neg": 6.9 +}, { + "SD3": 12.1, + "SD2": 11.0, + "SD1": 10.0, + "SD0": 9.1, + "SD1neg": 8.3, + "SD2neg": 7.6, + "SD3neg": 7.0 +}, { + "SD3": 12.3, + "SD2": 11.2, + "SD1": 10.2, + "SD0": 9.3, + "SD1neg": 8.5, + "SD2neg": 7.8, + "SD3neg": 7.2 +}, { + "SD3": 12.6, + "SD2": 11.4, + "SD1": 10.4, + "SD0": 9.5, + "SD1neg": 8.7, + "SD2neg": 8.0, + "SD3neg": 7.3 +}, { + "SD3": 12.8, + "SD2": 11.6, + "SD1": 10.6, + "SD0": 9.6, + "SD1neg": 8.8, + "SD2neg": 8.1, + "SD3neg": 7.5 +}, { + "SD3": 13.1, + "SD2": 11.8, + "SD1": 10.8, + "SD0": 9.8, + "SD1neg": 9.0, + "SD2neg": 8.3, + "SD3neg": 7.6 +}, { + "SD3": 13.3, + "SD2": 12.1, + "SD1": 11.0, + "SD0": 10.0, + "SD1neg": 9.2, + "SD2neg": 8.4, + "SD3neg": 7.8 +}, { + "SD3": 13.6, + "SD2": 12.3, + "SD1": 11.2, + "SD0": 10.2, + "SD1neg": 9.4, + "SD2neg": 8.6, + "SD3neg": 7.9 +}, { + "SD3": 13.9, + "SD2": 12.6, + "SD1": 11.4, + "SD0": 10.4, + "SD1neg": 9.6, + "SD2neg": 8.8, + "SD3neg": 8.1 +}, { + "SD3": 14.1, + "SD2": 12.8, + "SD1": 11.7, + "SD0": 10.7, + "SD1neg": 9.8, + "SD2neg": 9.0, + "SD3neg": 8.3 +}, { + "SD3": 14.5, + "SD2": 13.1, + "SD1": 11.9, + "SD0": 10.9, + "SD1neg": 10.0, + "SD2neg": 9.2, + "SD3neg": 8.5 +}, { + "SD3": 14.8, + "SD2": 13.4, + "SD1": 12.2, + "SD0": 11.1, + "SD1neg": 10.2, + "SD2neg": 9.4, + "SD3neg": 8.6 +}, { + "SD3": 15.1, + "SD2": 13.7, + "SD1": 12.5, + "SD0": 11.4, + "SD1neg": 10.4, + "SD2neg": 9.6, + "SD3neg": 8.8 +}, { + "SD3": 15.4, + "SD2": 14.0, + "SD1": 12.7, + "SD0": 11.6, + "SD1neg": 10.7, + "SD2neg": 9.8, + "SD3neg": 9.0 +}, { + "SD3": 15.8, + "SD2": 14.3, + "SD1": 13.0, + "SD0": 11.9, + "SD1neg": 10.9, + "SD2neg": 10.0, + "SD3neg": 9.2 +}, { + "SD3": 16.1, + "SD2": 14.6, + "SD1": 13.3, + "SD0": 12.1, + "SD1neg": 11.1, + "SD2neg": 10.2, + "SD3neg": 9.4 +}, { + "SD3": 16.4, + "SD2": 14.9, + "SD1": 13.6, + "SD0": 12.4, + "SD1neg": 11.4, + "SD2neg": 10.4, + "SD3neg": 9.6 +}, { + "SD3": 16.8, + "SD2": 15.2, + "SD1": 13.8, + "SD0": 12.6, + "SD1neg": 11.6, + "SD2neg": 10.6, + "SD3neg": 9.8 +}, { + "SD3": 17.1, + "SD2": 15.5, + "SD1": 14.1, + "SD0": 12.9, + "SD1neg": 11.8, + "SD2neg": 10.9, + "SD3neg": 10.0 +}, { + "SD3": 17.4, + "SD2": 15.8, + "SD1": 14.4, + "SD0": 13.1, + "SD1neg": 12.0, + "SD2neg": 11.1, + "SD3neg": 10.2 +}, { + "SD3": 17.8, + "SD2": 16.1, + "SD1": 14.7, + "SD0": 13.4, + "SD1neg": 12.3, + "SD2neg": 11.3, + "SD3neg": 10.4 +}, { + "SD3": 18.1, + "SD2": 16.4, + "SD1": 14.9, + "SD0": 13.6, + "SD1neg": 12.5, + "SD2neg": 11.5, + "SD3neg": 10.6 +}, { + "SD3": 18.5, + "SD2": 16.7, + "SD1": 15.2, + "SD0": 13.9, + "SD1neg": 12.7, + "SD2neg": 11.7, + "SD3neg": 10.8 +}, { + "SD3": 18.8, + "SD2": 17.0, + "SD1": 15.5, + "SD0": 14.1, + "SD1neg": 12.9, + "SD2neg": 11.9, + "SD3neg": 10.9 +}, { + "SD3": 19.2, + "SD2": 17.4, + "SD1": 15.8, + "SD0": 14.4, + "SD1neg": 13.2, + "SD2neg": 12.1, + "SD3neg": 11.1 +}, { + "SD3": 19.5, + "SD2": 17.7, + "SD1": 16.1, + "SD0": 14.7, + "SD1neg": 13.4, + "SD2neg": 12.3, + "SD3neg": 11.3 +}, { + "SD3": 19.9, + "SD2": 18.0, + "SD1": 16.4, + "SD0": 14.9, + "SD1neg": 13.7, + "SD2neg": 12.5, + "SD3neg": 11.5 +}, { + "SD3": 20.3, + "SD2": 18.4, + "SD1": 16.7, + "SD0": 15.2, + "SD1neg": 13.9, + "SD2neg": 12.8, + "SD3neg": 11.7 +}, { + "SD3": 20.7, + "SD2": 18.7, + "SD1": 17.0, + "SD0": 15.5, + "SD1neg": 14.2, + "SD2neg": 13.0, + "SD3neg": 12.0 +}, { + "SD3": 21.1, + "SD2": 19.1, + "SD1": 17.4, + "SD0": 15.8, + "SD1neg": 14.5, + "SD2neg": 13.3, + "SD3neg": 12.2 +}, { + "SD3": 21.6, + "SD2": 19.5, + "SD1": 17.7, + "SD0": 16.1, + "SD1neg": 14.7, + "SD2neg": 13.5, + "SD3neg": 12.4 +}, { + "SD3": 22.0, + "SD2": 19.9, + "SD1": 18.1, + "SD0": 16.4, + "SD1neg": 15.0, + "SD2neg": 13.8, + "SD3neg": 12.6 +}, { + "SD3": 22.5, + "SD2": 20.3, + "SD1": 18.4, + "SD0": 16.8, + "SD1neg": 15.3, + "SD2neg": 14.0, + "SD3neg": 12.9 +}, { + "SD3": 23.0, + "SD2": 20.8, + "SD1": 18.8, + "SD0": 17.1, + "SD1neg": 15.6, + "SD2neg": 14.3, + "SD3neg": 13.1 +}, { + "SD3": 23.5, + "SD2": 21.2, + "SD1": 19.2, + "SD0": 17.5, + "SD1neg": 15.9, + "SD2neg": 14.6, + "SD3neg": 13.4 +}, { + "SD3": 24.0, + "SD2": 21.7, + "SD1": 19.6, + "SD0": 17.8, + "SD1neg": 16.3, + "SD2neg": 14.9, + "SD3neg": 13.7 +}, { + "SD3": 24.5, + "SD2": 22.1, + "SD1": 20.0, + "SD0": 18.2, + "SD1neg": 16.6, + "SD2neg": 15.2, + "SD3neg": 13.9 +}, { + "SD3": 25.1, + "SD2": 22.6, + "SD1": 20.5, + "SD0": 18.6, + "SD1neg": 17.0, + "SD2neg": 15.5, + "SD3neg": 14.2 +}, { + "SD3": 25.7, + "SD2": 23.1, + "SD1": 20.9, + "SD0": 19.0, + "SD1neg": 17.3, + "SD2neg": 15.8, + "SD3neg": 14.5 +}, { + "SD3": 26.2, + "SD2": 23.6, + "SD1": 21.4, + "SD0": 19.4, + "SD1neg": 17.7, + "SD2neg": 16.2, + "SD3neg": 14.8 +}, { + "SD3": 26.8, + "SD2": 24.2, + "SD1": 21.8, + "SD0": 19.8, + "SD1neg": 18.0, + "SD2neg": 16.5, + "SD3neg": 15.1 +}, { + "SD3": 27.4, + "SD2": 24.7, + "SD1": 22.3, + "SD0": 20.2, + "SD1neg": 18.4, + "SD2neg": 16.8, + "SD3neg": 15.4 +}, { + "SD3": 28.1, + "SD2": 25.2, + "SD1": 22.8, + "SD0": 20.7, + "SD1neg": 18.8, + "SD2neg": 17.2, + "SD3neg": 15.7 +}, { + "SD3": 28.7, + "SD2": 25.8, + "SD1": 23.3, + "SD0": 21.1, + "SD1neg": 19.2, + "SD2neg": 17.5, + "SD3neg": 16.0 +}, { + "SD3": 29.3, + "SD2": 26.3, + "SD1": 23.8, + "SD0": 21.5, + "SD1neg": 19.6, + "SD2neg": 17.8, + "SD3neg": 16.3 +}, { + "SD3": 29.9, + "SD2": 26.9, + "SD1": 24.2, + "SD0": 22.0, + "SD1neg": 19.9, + "SD2neg": 18.2, + "SD3neg": 16.6 +}, { + "SD3": 30.6, + "SD2": 27.4, + "SD1": 24.7, + "SD0": 22.4, + "SD1neg": 20.3, + "SD2neg": 18.5, + "SD3neg": 16.9 +}, { + "SD3": 31.2, + "SD2": 28.0, + "SD1": 25.2, + "SD0": 22.8, + "SD1neg": 20.7, + "SD2neg": 18.9, + "SD3neg": 17.3 +}] \ No newline at end of file diff --git a/src/DataSets/WhoStandardDataSets/ZScores/wfhl-girls/wfl_girls_0-to-2-years_zscores.json b/src/DataSets/WhoStandardDataSets/ZScores/wfhl-girls/wfl_girls_0-to-2-years_zscores.json index 4ea7ae6..8fdfaf9 100644 --- a/src/DataSets/WhoStandardDataSets/ZScores/wfhl-girls/wfl_girls_0-to-2-years_zscores.json +++ b/src/DataSets/WhoStandardDataSets/ZScores/wfhl-girls/wfl_girls_0-to-2-years_zscores.json @@ -1,596 +1,529 @@ -[ - { - "SD0": 2.5, - "SD1": 2.7, - "SD2": 3, - "SD3": 3.3, - "SD1neg": 2.3, - "SD2neg": 2.1, - "SD3neg": 1.9 - }, - { - "SD0": 2.6, - "SD1": 2.9, - "SD2": 3.2, - "SD3": 3.5, - "SD1neg": 2.4, - "SD2neg": 2.2, - "SD3neg": 2 - }, - { - "SD0": 2.8, - "SD1": 3.1, - "SD2": 3.4, - "SD3": 3.7, - "SD1neg": 2.6, - "SD2neg": 2.4, - "SD3neg": 2.2 - }, - { - "SD0": 3, - "SD1": 3.3, - "SD2": 3.6, - "SD3": 4, - "SD1neg": 2.7, - "SD2neg": 2.5, - "SD3neg": 2.3 - }, - { - "SD0": 3.2, - "SD1": 3.5, - "SD2": 3.8, - "SD3": 4.2, - "SD1neg": 2.9, - "SD2neg": 2.6, - "SD3neg": 2.4 - }, - { - "SD0": 3.4, - "SD1": 3.7, - "SD2": 4, - "SD3": 4.5, - "SD1neg": 3.1, - "SD2neg": 2.8, - "SD3neg": 2.6 - }, - { - "SD0": 3.6, - "SD1": 3.9, - "SD2": 4.3, - "SD3": 4.8, - "SD1neg": 3.3, - "SD2neg": 3, - "SD3neg": 2.8 - }, - { - "SD0": 3.8, - "SD1": 4.2, - "SD2": 4.6, - "SD3": 5.1, - "SD1neg": 3.5, - "SD2neg": 3.2, - "SD3neg": 2.9 - }, - { - "SD0": 4, - "SD1": 4.4, - "SD2": 4.9, - "SD3": 5.4, - "SD1neg": 3.7, - "SD2neg": 3.4, - "SD3neg": 3.1 - }, - { - "SD0": 4.3, - "SD1": 4.7, - "SD2": 5.2, - "SD3": 5.7, - "SD1neg": 3.9, - "SD2neg": 3.6, - "SD3neg": 3.3 - }, - { - "SD0": 4.5, - "SD1": 5, - "SD2": 5.5, - "SD3": 6.1, - "SD1neg": 4.2, - "SD2neg": 3.8, - "SD3neg": 3.5 - }, - { - "SD0": 4.8, - "SD1": 5.3, - "SD2": 5.8, - "SD3": 6.4, - "SD1neg": 4.4, - "SD2neg": 4, - "SD3neg": 3.7 - }, - { - "SD0": 5.1, - "SD1": 5.6, - "SD2": 6.1, - "SD3": 6.8, - "SD1neg": 4.6, - "SD2neg": 4.3, - "SD3neg": 3.9 - }, - { - "SD0": 5.4, - "SD1": 5.9, - "SD2": 6.5, - "SD3": 7.1, - "SD1neg": 4.9, - "SD2neg": 4.5, - "SD3neg": 4.1 - }, - { - "SD0": 5.6, - "SD1": 6.2, - "SD2": 6.8, - "SD3": 7.5, - "SD1neg": 5.1, - "SD2neg": 4.7, - "SD3neg": 4.3 - }, - { - "SD0": 5.9, - "SD1": 6.4, - "SD2": 7.1, - "SD3": 7.8, - "SD1neg": 5.4, - "SD2neg": 4.9, - "SD3neg": 4.5 - }, - { - "SD0": 6.1, - "SD1": 6.7, - "SD2": 7.4, - "SD3": 8.2, - "SD1neg": 5.6, - "SD2neg": 5.1, - "SD3neg": 4.7 - }, - { - "SD0": 6.4, - "SD1": 7, - "SD2": 7.7, - "SD3": 8.5, - "SD1neg": 5.8, - "SD2neg": 5.3, - "SD3neg": 4.9 - }, - { - "SD0": 6.6, - "SD1": 7.3, - "SD2": 8, - "SD3": 8.8, - "SD1neg": 6, - "SD2neg": 5.5, - "SD3neg": 5.1 - }, - { - "SD0": 6.9, - "SD1": 7.5, - "SD2": 8.3, - "SD3": 9.1, - "SD1neg": 6.3, - "SD2neg": 5.7, - "SD3neg": 5.3 - }, - { - "SD0": 7.1, - "SD1": 7.8, - "SD2": 8.6, - "SD3": 9.5, - "SD1neg": 6.5, - "SD2neg": 5.9, - "SD3neg": 5.5 - }, - { - "SD0": 7.3, - "SD1": 8, - "SD2": 8.8, - "SD3": 9.8, - "SD1neg": 6.7, - "SD2neg": 6.1, - "SD3neg": 5.6 - }, - { - "SD0": 7.5, - "SD1": 8.3, - "SD2": 9.1, - "SD3": 10, - "SD1neg": 6.9, - "SD2neg": 6.3, - "SD3neg": 5.8 - }, - { - "SD0": 7.7, - "SD1": 8.5, - "SD2": 9.4, - "SD3": 10.3, - "SD1neg": 7.1, - "SD2neg": 6.5, - "SD3neg": 6 - }, - { - "SD0": 8, - "SD1": 8.7, - "SD2": 9.6, - "SD3": 10.6, - "SD1neg": 7.3, - "SD2neg": 6.7, - "SD3neg": 6.1 - }, - { - "SD0": 8.2, - "SD1": 9, - "SD2": 9.9, - "SD3": 10.9, - "SD1neg": 7.5, - "SD2neg": 6.9, - "SD3neg": 6.3 - }, - { - "SD0": 8.4, - "SD1": 9.2, - "SD2": 10.1, - "SD3": 11.1, - "SD1neg": 7.7, - "SD2neg": 7, - "SD3neg": 6.5 - }, - { - "SD0": 8.6, - "SD1": 9.4, - "SD2": 10.3, - "SD3": 11.4, - "SD1neg": 7.8, - "SD2neg": 7.2, - "SD3neg": 6.6 - }, - { - "SD0": 8.8, - "SD1": 9.6, - "SD2": 10.6, - "SD3": 11.7, - "SD1neg": 8, - "SD2neg": 7.4, - "SD3neg": 6.8 - }, - { - "SD0": 9, - "SD1": 9.8, - "SD2": 10.8, - "SD3": 11.9, - "SD1neg": 8.2, - "SD2neg": 7.5, - "SD3neg": 6.9 - }, - { - "SD0": 9.1, - "SD1": 10, - "SD2": 11, - "SD3": 12.2, - "SD1neg": 8.4, - "SD2neg": 7.7, - "SD3neg": 7.1 - }, - { - "SD0": 9.3, - "SD1": 10.2, - "SD2": 11.2, - "SD3": 12.4, - "SD1neg": 8.5, - "SD2neg": 7.8, - "SD3neg": 7.2 - }, - { - "SD0": 9.5, - "SD1": 10.4, - "SD2": 11.5, - "SD3": 12.6, - "SD1neg": 8.7, - "SD2neg": 8, - "SD3neg": 7.4 - }, - { - "SD0": 9.7, - "SD1": 10.6, - "SD2": 11.7, - "SD3": 12.9, - "SD1neg": 8.9, - "SD2neg": 8.2, - "SD3neg": 7.5 - }, - { - "SD0": 9.9, - "SD1": 10.8, - "SD2": 11.9, - "SD3": 13.1, - "SD1neg": 9.1, - "SD2neg": 8.3, - "SD3neg": 7.7 - }, - { - "SD0": 10.1, - "SD1": 11, - "SD2": 12.1, - "SD3": 13.4, - "SD1neg": 9.2, - "SD2neg": 8.5, - "SD3neg": 7.8 - }, - { - "SD0": 10.3, - "SD1": 11.3, - "SD2": 12.4, - "SD3": 13.7, - "SD1neg": 9.4, - "SD2neg": 8.7, - "SD3neg": 8 - }, - { - "SD0": 10.5, - "SD1": 11.5, - "SD2": 12.6, - "SD3": 13.9, - "SD1neg": 9.6, - "SD2neg": 8.8, - "SD3neg": 8.1 - }, - { - "SD0": 10.7, - "SD1": 11.8, - "SD2": 12.9, - "SD3": 14.2, - "SD1neg": 9.8, - "SD2neg": 9, - "SD3neg": 8.3 - }, - { - "SD0": 11, - "SD1": 12, - "SD2": 13.2, - "SD3": 14.5, - "SD1neg": 10.1, - "SD2neg": 9.2, - "SD3neg": 8.5 - }, - { - "SD0": 11.2, - "SD1": 12.3, - "SD2": 13.5, - "SD3": 14.9, - "SD1neg": 10.3, - "SD2neg": 9.4, - "SD3neg": 8.7 - }, - { - "SD0": 11.5, - "SD1": 12.6, - "SD2": 13.8, - "SD3": 15.2, - "SD1neg": 10.5, - "SD2neg": 9.7, - "SD3neg": 8.9 - }, - { - "SD0": 11.7, - "SD1": 12.8, - "SD2": 14.1, - "SD3": 15.5, - "SD1neg": 10.7, - "SD2neg": 9.9, - "SD3neg": 9.1 - }, - { - "SD0": 12, - "SD1": 13.1, - "SD2": 14.4, - "SD3": 15.9, - "SD1neg": 11, - "SD2neg": 10.1, - "SD3neg": 9.3 - }, - { - "SD0": 12.2, - "SD1": 13.4, - "SD2": 14.7, - "SD3": 16.2, - "SD1neg": 11.2, - "SD2neg": 10.3, - "SD3neg": 9.5 - }, - { - "SD0": 12.5, - "SD1": 13.7, - "SD2": 15, - "SD3": 16.5, - "SD1neg": 11.4, - "SD2neg": 10.5, - "SD3neg": 9.7 - }, - { - "SD0": 12.7, - "SD1": 13.9, - "SD2": 15.3, - "SD3": 16.9, - "SD1neg": 11.7, - "SD2neg": 10.7, - "SD3neg": 9.9 - }, - { - "SD0": 13, - "SD1": 14.2, - "SD2": 15.6, - "SD3": 17.2, - "SD1neg": 11.9, - "SD2neg": 10.9, - "SD3neg": 10.1 - }, - { - "SD0": 13.2, - "SD1": 14.5, - "SD2": 15.9, - "SD3": 17.5, - "SD1neg": 12.1, - "SD2neg": 11.1, - "SD3neg": 10.2 - }, - { - "SD0": 13.5, - "SD1": 14.7, - "SD2": 16.2, - "SD3": 17.9, - "SD1neg": 12.3, - "SD2neg": 11.3, - "SD3neg": 10.4 - }, - { - "SD0": 13.7, - "SD1": 15, - "SD2": 16.5, - "SD3": 18.2, - "SD1neg": 12.6, - "SD2neg": 11.5, - "SD3neg": 10.6 - }, - { - "SD0": 14, - "SD1": 15.3, - "SD2": 16.8, - "SD3": 18.6, - "SD1neg": 12.8, - "SD2neg": 11.7, - "SD3neg": 10.8 - }, - { - "SD0": 14.2, - "SD1": 15.6, - "SD2": 17.1, - "SD3": 18.9, - "SD1neg": 13, - "SD2neg": 12, - "SD3neg": 11 - }, - { - "SD0": 14.5, - "SD1": 15.9, - "SD2": 17.5, - "SD3": 19.3, - "SD1neg": 13.3, - "SD2neg": 12.2, - "SD3neg": 11.2 - }, - { - "SD0": 14.8, - "SD1": 16.2, - "SD2": 17.8, - "SD3": 19.6, - "SD1neg": 13.5, - "SD2neg": 12.4, - "SD3neg": 11.4 - }, - { - "SD0": 15, - "SD1": 16.5, - "SD2": 18.1, - "SD3": 20, - "SD1neg": 13.7, - "SD2neg": 12.6, - "SD3neg": 11.6 - }, - { - "SD0": 15.3, - "SD1": 16.8, - "SD2": 18.5, - "SD3": 20.4, - "SD1neg": 14, - "SD2neg": 12.8, - "SD3neg": 11.8 - }, - { - "SD0": 15.6, - "SD1": 17.1, - "SD2": 18.9, - "SD3": 20.8, - "SD1neg": 14.3, - "SD2neg": 13.1, - "SD3neg": 12 - }, - { - "SD0": 15.9, - "SD1": 17.5, - "SD2": 19.2, - "SD3": 21.3, - "SD1neg": 14.5, - "SD2neg": 13.3, - "SD3neg": 12.3 - }, - { - "SD0": 16.2, - "SD1": 17.8, - "SD2": 19.6, - "SD3": 21.7, - "SD1neg": 14.8, - "SD2neg": 13.6, - "SD3neg": 12.5 - }, - { - "SD0": 16.5, - "SD1": 18.2, - "SD2": 20, - "SD3": 22.2, - "SD1neg": 15.1, - "SD2neg": 13.8, - "SD3neg": 12.7 - }, - { - "SD0": 16.9, - "SD1": 18.5, - "SD2": 20.5, - "SD3": 22.6, - "SD1neg": 15.4, - "SD2neg": 14.1, - "SD3neg": 13 - }, - { - "SD0": 17.2, - "SD1": 18.9, - "SD2": 20.9, - "SD3": 23.1, - "SD1neg": 15.7, - "SD2neg": 14.4, - "SD3neg": 13.2 - }, - { - "SD0": 17.6, - "SD1": 19.3, - "SD2": 21.3, - "SD3": 23.6, - "SD1neg": 16, - "SD2neg": 14.7, - "SD3neg": 13.5 - }, - { - "SD0": 18, - "SD1": 19.7, - "SD2": 21.8, - "SD3": 24.2, - "SD1neg": 16.4, - "SD2neg": 15, - "SD3neg": 13.7 - }, - { - "SD0": 18.3, - "SD1": 20.2, - "SD2": 22.3, - "SD3": 24.7, - "SD1neg": 16.7, - "SD2neg": 15.3, - "SD3neg": 14 - } -] \ No newline at end of file +[{ + "SD3": 3.3, + "SD2": 3.0, + "SD1": 2.7, + "SD0": 2.5, + "SD1neg": 2.3, + "SD2neg": 2.1, + "SD3neg": 1.9 +}, { + "SD3": 3.5, + "SD2": 3.2, + "SD1": 2.9, + "SD0": 2.6, + "SD1neg": 2.4, + "SD2neg": 2.2, + "SD3neg": 2.0 +}, { + "SD3": 3.7, + "SD2": 3.4, + "SD1": 3.1, + "SD0": 2.8, + "SD1neg": 2.6, + "SD2neg": 2.4, + "SD3neg": 2.2 +}, { + "SD3": 4.0, + "SD2": 3.6, + "SD1": 3.3, + "SD0": 3.0, + "SD1neg": 2.7, + "SD2neg": 2.5, + "SD3neg": 2.3 +}, { + "SD3": 4.2, + "SD2": 3.8, + "SD1": 3.5, + "SD0": 3.2, + "SD1neg": 2.9, + "SD2neg": 2.6, + "SD3neg": 2.4 +}, { + "SD3": 4.5, + "SD2": 4.0, + "SD1": 3.7, + "SD0": 3.4, + "SD1neg": 3.1, + "SD2neg": 2.8, + "SD3neg": 2.6 +}, { + "SD3": 4.8, + "SD2": 4.3, + "SD1": 3.9, + "SD0": 3.6, + "SD1neg": 3.3, + "SD2neg": 3.0, + "SD3neg": 2.8 +}, { + "SD3": 5.1, + "SD2": 4.6, + "SD1": 4.2, + "SD0": 3.8, + "SD1neg": 3.5, + "SD2neg": 3.2, + "SD3neg": 2.9 +}, { + "SD3": 5.4, + "SD2": 4.9, + "SD1": 4.4, + "SD0": 4.0, + "SD1neg": 3.7, + "SD2neg": 3.4, + "SD3neg": 3.1 +}, { + "SD3": 5.7, + "SD2": 5.2, + "SD1": 4.7, + "SD0": 4.3, + "SD1neg": 3.9, + "SD2neg": 3.6, + "SD3neg": 3.3 +}, { + "SD3": 6.1, + "SD2": 5.5, + "SD1": 5.0, + "SD0": 4.5, + "SD1neg": 4.2, + "SD2neg": 3.8, + "SD3neg": 3.5 +}, { + "SD3": 6.4, + "SD2": 5.8, + "SD1": 5.3, + "SD0": 4.8, + "SD1neg": 4.4, + "SD2neg": 4.0, + "SD3neg": 3.7 +}, { + "SD3": 6.8, + "SD2": 6.1, + "SD1": 5.6, + "SD0": 5.1, + "SD1neg": 4.6, + "SD2neg": 4.3, + "SD3neg": 3.9 +}, { + "SD3": 7.1, + "SD2": 6.5, + "SD1": 5.9, + "SD0": 5.4, + "SD1neg": 4.9, + "SD2neg": 4.5, + "SD3neg": 4.1 +}, { + "SD3": 7.5, + "SD2": 6.8, + "SD1": 6.2, + "SD0": 5.6, + "SD1neg": 5.1, + "SD2neg": 4.7, + "SD3neg": 4.3 +}, { + "SD3": 7.8, + "SD2": 7.1, + "SD1": 6.4, + "SD0": 5.9, + "SD1neg": 5.4, + "SD2neg": 4.9, + "SD3neg": 4.5 +}, { + "SD3": 8.2, + "SD2": 7.4, + "SD1": 6.7, + "SD0": 6.1, + "SD1neg": 5.6, + "SD2neg": 5.1, + "SD3neg": 4.7 +}, { + "SD3": 8.5, + "SD2": 7.7, + "SD1": 7.0, + "SD0": 6.4, + "SD1neg": 5.8, + "SD2neg": 5.3, + "SD3neg": 4.9 +}, { + "SD3": 8.8, + "SD2": 8.0, + "SD1": 7.3, + "SD0": 6.6, + "SD1neg": 6.0, + "SD2neg": 5.5, + "SD3neg": 5.1 +}, { + "SD3": 9.1, + "SD2": 8.3, + "SD1": 7.5, + "SD0": 6.9, + "SD1neg": 6.3, + "SD2neg": 5.7, + "SD3neg": 5.3 +}, { + "SD3": 9.5, + "SD2": 8.6, + "SD1": 7.8, + "SD0": 7.1, + "SD1neg": 6.5, + "SD2neg": 5.9, + "SD3neg": 5.5 +}, { + "SD3": 9.8, + "SD2": 8.8, + "SD1": 8.0, + "SD0": 7.3, + "SD1neg": 6.7, + "SD2neg": 6.1, + "SD3neg": 5.6 +}, { + "SD3": 10.0, + "SD2": 9.1, + "SD1": 8.3, + "SD0": 7.5, + "SD1neg": 6.9, + "SD2neg": 6.3, + "SD3neg": 5.8 +}, { + "SD3": 10.3, + "SD2": 9.4, + "SD1": 8.5, + "SD0": 7.7, + "SD1neg": 7.1, + "SD2neg": 6.5, + "SD3neg": 6.0 +}, { + "SD3": 10.6, + "SD2": 9.6, + "SD1": 8.7, + "SD0": 8.0, + "SD1neg": 7.3, + "SD2neg": 6.7, + "SD3neg": 6.1 +}, { + "SD3": 10.9, + "SD2": 9.9, + "SD1": 9.0, + "SD0": 8.2, + "SD1neg": 7.5, + "SD2neg": 6.9, + "SD3neg": 6.3 +}, { + "SD3": 11.1, + "SD2": 10.1, + "SD1": 9.2, + "SD0": 8.4, + "SD1neg": 7.7, + "SD2neg": 7.0, + "SD3neg": 6.5 +}, { + "SD3": 11.4, + "SD2": 10.3, + "SD1": 9.4, + "SD0": 8.6, + "SD1neg": 7.8, + "SD2neg": 7.2, + "SD3neg": 6.6 +}, { + "SD3": 11.7, + "SD2": 10.6, + "SD1": 9.6, + "SD0": 8.8, + "SD1neg": 8.0, + "SD2neg": 7.4, + "SD3neg": 6.8 +}, { + "SD3": 11.9, + "SD2": 10.8, + "SD1": 9.8, + "SD0": 9.0, + "SD1neg": 8.2, + "SD2neg": 7.5, + "SD3neg": 6.9 +}, { + "SD3": 12.2, + "SD2": 11.0, + "SD1": 10.0, + "SD0": 9.1, + "SD1neg": 8.4, + "SD2neg": 7.7, + "SD3neg": 7.1 +}, { + "SD3": 12.4, + "SD2": 11.2, + "SD1": 10.2, + "SD0": 9.3, + "SD1neg": 8.5, + "SD2neg": 7.8, + "SD3neg": 7.2 +}, { + "SD3": 12.6, + "SD2": 11.5, + "SD1": 10.4, + "SD0": 9.5, + "SD1neg": 8.7, + "SD2neg": 8.0, + "SD3neg": 7.4 +}, { + "SD3": 12.9, + "SD2": 11.7, + "SD1": 10.6, + "SD0": 9.7, + "SD1neg": 8.9, + "SD2neg": 8.2, + "SD3neg": 7.5 +}, { + "SD3": 13.1, + "SD2": 11.9, + "SD1": 10.8, + "SD0": 9.9, + "SD1neg": 9.1, + "SD2neg": 8.3, + "SD3neg": 7.7 +}, { + "SD3": 13.4, + "SD2": 12.1, + "SD1": 11.0, + "SD0": 10.1, + "SD1neg": 9.2, + "SD2neg": 8.5, + "SD3neg": 7.8 +}, { + "SD3": 13.7, + "SD2": 12.4, + "SD1": 11.3, + "SD0": 10.3, + "SD1neg": 9.4, + "SD2neg": 8.7, + "SD3neg": 8.0 +}, { + "SD3": 13.9, + "SD2": 12.6, + "SD1": 11.5, + "SD0": 10.5, + "SD1neg": 9.6, + "SD2neg": 8.8, + "SD3neg": 8.1 +}, { + "SD3": 14.2, + "SD2": 12.9, + "SD1": 11.8, + "SD0": 10.7, + "SD1neg": 9.8, + "SD2neg": 9.0, + "SD3neg": 8.3 +}, { + "SD3": 14.5, + "SD2": 13.2, + "SD1": 12.0, + "SD0": 11.0, + "SD1neg": 10.1, + "SD2neg": 9.2, + "SD3neg": 8.5 +}, { + "SD3": 14.9, + "SD2": 13.5, + "SD1": 12.3, + "SD0": 11.2, + "SD1neg": 10.3, + "SD2neg": 9.4, + "SD3neg": 8.7 +}, { + "SD3": 15.2, + "SD2": 13.8, + "SD1": 12.6, + "SD0": 11.5, + "SD1neg": 10.5, + "SD2neg": 9.7, + "SD3neg": 8.9 +}, { + "SD3": 15.5, + "SD2": 14.1, + "SD1": 12.8, + "SD0": 11.7, + "SD1neg": 10.7, + "SD2neg": 9.9, + "SD3neg": 9.1 +}, { + "SD3": 15.9, + "SD2": 14.4, + "SD1": 13.1, + "SD0": 12.0, + "SD1neg": 11.0, + "SD2neg": 10.1, + "SD3neg": 9.3 +}, { + "SD3": 16.2, + "SD2": 14.7, + "SD1": 13.4, + "SD0": 12.2, + "SD1neg": 11.2, + "SD2neg": 10.3, + "SD3neg": 9.5 +}, { + "SD3": 16.5, + "SD2": 15.0, + "SD1": 13.7, + "SD0": 12.5, + "SD1neg": 11.4, + "SD2neg": 10.5, + "SD3neg": 9.7 +}, { + "SD3": 16.9, + "SD2": 15.3, + "SD1": 13.9, + "SD0": 12.7, + "SD1neg": 11.7, + "SD2neg": 10.7, + "SD3neg": 9.9 +}, { + "SD3": 17.2, + "SD2": 15.6, + "SD1": 14.2, + "SD0": 13.0, + "SD1neg": 11.9, + "SD2neg": 10.9, + "SD3neg": 10.1 +}, { + "SD3": 17.5, + "SD2": 15.9, + "SD1": 14.5, + "SD0": 13.2, + "SD1neg": 12.1, + "SD2neg": 11.1, + "SD3neg": 10.2 +}, { + "SD3": 17.9, + "SD2": 16.2, + "SD1": 14.7, + "SD0": 13.5, + "SD1neg": 12.3, + "SD2neg": 11.3, + "SD3neg": 10.4 +}, { + "SD3": 18.2, + "SD2": 16.5, + "SD1": 15.0, + "SD0": 13.7, + "SD1neg": 12.6, + "SD2neg": 11.5, + "SD3neg": 10.6 +}, { + "SD3": 18.6, + "SD2": 16.8, + "SD1": 15.3, + "SD0": 14.0, + "SD1neg": 12.8, + "SD2neg": 11.7, + "SD3neg": 10.8 +}, { + "SD3": 18.9, + "SD2": 17.1, + "SD1": 15.6, + "SD0": 14.2, + "SD1neg": 13.0, + "SD2neg": 12.0, + "SD3neg": 11.0 +}, { + "SD3": 19.3, + "SD2": 17.5, + "SD1": 15.9, + "SD0": 14.5, + "SD1neg": 13.3, + "SD2neg": 12.2, + "SD3neg": 11.2 +}, { + "SD3": 19.6, + "SD2": 17.8, + "SD1": 16.2, + "SD0": 14.8, + "SD1neg": 13.5, + "SD2neg": 12.4, + "SD3neg": 11.4 +}, { + "SD3": 20.0, + "SD2": 18.1, + "SD1": 16.5, + "SD0": 15.0, + "SD1neg": 13.7, + "SD2neg": 12.6, + "SD3neg": 11.6 +}, { + "SD3": 20.4, + "SD2": 18.5, + "SD1": 16.8, + "SD0": 15.3, + "SD1neg": 14.0, + "SD2neg": 12.8, + "SD3neg": 11.8 +}, { + "SD3": 20.8, + "SD2": 18.9, + "SD1": 17.1, + "SD0": 15.6, + "SD1neg": 14.3, + "SD2neg": 13.1, + "SD3neg": 12.0 +}, { + "SD3": 21.3, + "SD2": 19.2, + "SD1": 17.5, + "SD0": 15.9, + "SD1neg": 14.5, + "SD2neg": 13.3, + "SD3neg": 12.3 +}, { + "SD3": 21.7, + "SD2": 19.6, + "SD1": 17.8, + "SD0": 16.2, + "SD1neg": 14.8, + "SD2neg": 13.6, + "SD3neg": 12.5 +}, { + "SD3": 22.2, + "SD2": 20.0, + "SD1": 18.2, + "SD0": 16.5, + "SD1neg": 15.1, + "SD2neg": 13.8, + "SD3neg": 12.7 +}, { + "SD3": 22.6, + "SD2": 20.5, + "SD1": 18.5, + "SD0": 16.9, + "SD1neg": 15.4, + "SD2neg": 14.1, + "SD3neg": 13.0 +}, { + "SD3": 23.1, + "SD2": 20.9, + "SD1": 18.9, + "SD0": 17.2, + "SD1neg": 15.7, + "SD2neg": 14.4, + "SD3neg": 13.2 +}, { + "SD3": 23.6, + "SD2": 21.3, + "SD1": 19.3, + "SD0": 17.6, + "SD1neg": 16.0, + "SD2neg": 14.7, + "SD3neg": 13.5 +}, { + "SD3": 24.2, + "SD2": 21.8, + "SD1": 19.7, + "SD0": 18.0, + "SD1neg": 16.4, + "SD2neg": 15.0, + "SD3neg": 13.7 +}, { + "SD3": 24.7, + "SD2": 22.3, + "SD1": 20.2, + "SD0": 18.3, + "SD1neg": 16.7, + "SD2neg": 15.3, + "SD3neg": 14.0 +}] \ No newline at end of file diff --git a/src/Plugin.tsx b/src/Plugin.tsx index a9c6d84..7bdf7d5 100644 --- a/src/Plugin.tsx +++ b/src/Plugin.tsx @@ -15,7 +15,7 @@ import { useMappedTrackedEntityVariables } from './utils/DataFetching/Sorting/us import { ChartConfigError } from './UI/GenericError/ChartConfigError'; import { GenericLoading } from './UI/GenericLoading'; import { useCustomReferences } from './utils/DataFetching/Hooks/useCustomReferences'; -import { chartData } from './DataSets/WhoStandardDataSets/ChartDataZscores'; +import { chartData } from './DataSets/WhoStandardDataSets/ChartData'; const queryClient = new QueryClient(); @@ -41,6 +41,8 @@ const PluginInner = (propsFromParent: EnrollmentOverviewProps) => { isWeightInGrams: chartConfig?.settings.weightInGrams || false, }); + const isPercentiles = chartConfig?.settings.usePercentiles || false; + const [open, setOpen] = useState(true); if (isLoading || isLoadingRef) { @@ -77,6 +79,7 @@ const PluginInner = (propsFromParent: EnrollmentOverviewProps) => { trackedEntity={mappedTrackedEntity} measurementData={mappedGrowthVariables} chartData={chartConfig.settings.customReferences ? customReferences : chartData} + isPercentiles={isPercentiles} /> diff --git a/src/components/GrowthChart/GrowthChart.tsx b/src/components/GrowthChart/GrowthChart.tsx index 0971259..8dd488b 100644 --- a/src/components/GrowthChart/GrowthChart.tsx +++ b/src/components/GrowthChart/GrowthChart.tsx @@ -10,15 +10,18 @@ import { MappedEntityValues } from '../../utils/DataFetching/Sorting/useMappedTr interface GrowthChartProps { trackedEntity: MappedEntityValues; measurementData: MeasurementData[]; + isPercentiles: boolean; chartData: ChartData; } export const GrowthChart = ({ trackedEntity, measurementData, + isPercentiles, chartData, }: GrowthChartProps) => { const trackedEntityGender = trackedEntity.gender; + const [gender, setGender] = useState(trackedEntityGender !== undefined ? trackedEntityGender : GenderCodes.CGC_Female); const { chartDataForGender } = useChartDataForGender({ gender, chartData }); @@ -40,8 +43,8 @@ export const GrowthChart = ({ const dataSetEntry = chartDataForGender[category]?.datasets[dataset]; + const dataSetValues = isPercentiles ? dataSetEntry?.percentileDatasetValues : dataSetEntry?.zScoreDatasetValues; const dataSetMetadata = dataSetEntry?.metadata; - const dataSetValues = dataSetEntry?.datasetValues; const { min, max } = useCalculateMinMaxValues(dataSetValues); const [minDataValue, maxDataValue] = useMemo(() => { @@ -91,6 +94,7 @@ export const GrowthChart = ({ dateOfBirth={new Date(trackedEntity?.dateOfBirth)} category={category} dataset={dataset} + isPercentiles={isPercentiles} /> ); diff --git a/src/components/GrowthChart/GrowthChartBuilder/ChartTooltip.ts b/src/components/GrowthChart/GrowthChartBuilder/ChartTooltip.ts new file mode 100644 index 0000000..203ede3 --- /dev/null +++ b/src/components/GrowthChart/GrowthChartBuilder/ChartTooltip.ts @@ -0,0 +1,108 @@ +import i18n from '@dhis2/d2-i18n'; +import { Scriptable, ScriptableTooltipContext, TooltipPositionerMap } from 'chart.js'; +import { unitCodes, CategoryCodes, timeUnitData, TimeUnitCodes } from '../../../types/chartDataTypes'; + +interface TooltipConfig { + enabled: boolean; + intersect: boolean; + position: Scriptable>; + backgroundColor: string; + bodyFont: { size: number }; + bodyColor: string; + borderColor: string; + borderWidth: number; + padding: number; + caretPadding: number; + boxPadding: number; + usePointStyle: boolean; + animation: any; + filter: (tooltipItem: any) => boolean; + callbacks: { + title: () => string; + beforeLabel: (tooltipItem: any) => string; + label: (tooltipItem: any) => string[]; + }; +} + +export const ChartTooltip = (category: string, xAxisLabel: string, yAxisLabel: string): TooltipConfig => { + let xUnit = ''; + let yUnit = ''; + + if (category === CategoryCodes.hcfa_b || category === CategoryCodes.hcfa_g) { + yUnit = unitCodes.cm; + } + + if (category === CategoryCodes.lhfa_b || category === CategoryCodes.lhfa_g) { + yUnit = unitCodes.cm; + } + + if (category === CategoryCodes.wfa_g || category === CategoryCodes.wfa_b) { + yUnit = unitCodes.kg; + } + + if (category === CategoryCodes.wflh_b || category === CategoryCodes.wflh_g) { + xUnit = unitCodes.cm; + yUnit = unitCodes.kg; + } + + return { + enabled: true, + intersect: false, + position: 'nearest', + backgroundColor: 'white', + bodyFont: { size: 12 }, + bodyColor: 'black', + borderColor: 'black', + borderWidth: 1, + padding: 12, + caretPadding: 4, + boxPadding: 4, + usePointStyle: true, + animation: false, + filter: (tooltipItem) => tooltipItem.dataset.id === 'measurementData', + callbacks: { + title: () => '', + beforeLabel: (tooltipItem) => { + const date = new Date(tooltipItem.raw.eventDate).toLocaleDateString(); + return `${i18n.t('Date')}: ${date}`; + }, + label: (tooltipItem) => { + let yValue = Number(tooltipItem.formattedValue.replace(',', '.')); + let xValue = Number(tooltipItem.label.replace(',', '.')); + + let xLabel = ''; + + yValue = Number(yValue.toFixed(2)); + xValue = Number(xValue.toFixed(2)); + + const yLabel = `${yAxisLabel}: ${yValue} ${yUnit}`; + xLabel = `${xAxisLabel}: ${xValue} ${xUnit}`; + + if (xAxisLabel === TimeUnitCodes.weeks) { + const weeks = Number((xValue % timeUnitData.Months.divisor).toFixed(0)); + const months = Number((Math.floor(xValue / timeUnitData.Months.divisor)).toFixed(0)); + xLabel = (months === 0 ? `${i18n.t('Age')}: ${weeks} ${(weeks === 1) + ? timeUnitData.Weeks.singular : timeUnitData.Weeks.plural}` + : `${i18n.t('Age')}: ${months} ${(months === 1) ? timeUnitData.Months.singular + : timeUnitData.Months.plural} ${(weeks > 0) ? `${weeks} ${(weeks === 1) + ? timeUnitData.Weeks.singular : timeUnitData.Weeks.plural}` : ''}`); + } + if (xAxisLabel === TimeUnitCodes.months) { + const months = Number(Math.floor(xValue % timeUnitData.Years.divisor).toFixed(0)); + const years = Number(Math.floor(xValue / timeUnitData.Years.divisor).toFixed(0)); + xLabel = (years === 0 ? `${i18n.t('Age')}: ${months} ${(months === 1) + ? timeUnitData.Months.singular : timeUnitData.Months.plural}` + : `${i18n.t('Age')}: ${years} ${(years === 1) ? timeUnitData.Years.singular + : timeUnitData.Years.plural} ${(months > 0) ? `${months} ${(months === 1) + ? timeUnitData.Months.singular : timeUnitData.Months.plural}` : ''}`); + } + + const labels = []; + labels.push(yLabel); + labels.push(xLabel); + + return labels; + }, + }, + }; +}; diff --git a/src/components/GrowthChart/GrowthChartBuilder/ChartTooltipConfig.ts b/src/components/GrowthChart/GrowthChartBuilder/ChartTooltipConfig.ts deleted file mode 100644 index d107324..0000000 --- a/src/components/GrowthChart/GrowthChartBuilder/ChartTooltipConfig.ts +++ /dev/null @@ -1,53 +0,0 @@ -import i18n from '@dhis2/d2-i18n'; -import { Scriptable, ScriptableTooltipContext, TooltipPositionerMap } from 'chart.js'; - -interface TooltipConfig { - enabled: boolean; - intersect: boolean; - position: Scriptable>; - backgroundColor: string; - bodyFont: { size: number }; - bodyColor: string; - borderColor: string; - borderWidth: number; - padding: number; - caretPadding: number; - boxPadding: number; - usePointStyle: boolean; - filter: (tooltipItem: any) => boolean; - callbacks: { - title: () => string; - beforeLabel: (tooltipItem: any) => string; - label: (tooltipItem: any) => string; - }; -} - -export const ChartTooltipConfig = (formattedFieldName: string, category: string): TooltipConfig => ({ - enabled: true, - intersect: false, - position: 'nearest' as Scriptable>, - backgroundColor: 'white', - bodyFont: { size: 12 }, - bodyColor: 'black', - borderColor: 'black', - borderWidth: 1, - padding: 12, - caretPadding: 4, - boxPadding: 4, - usePointStyle: true, - filter: (tooltipItem) => tooltipItem.dataset.id === 'measurementData', - callbacks: { - title: () => '', - beforeLabel: (tooltipItem) => { - const date = new Date(tooltipItem.raw.eventDate).toLocaleDateString(); - return `${i18n.t('Date')}: ${date}`; - }, - label: (tooltipItem) => { - if (category === 'wflh_b' || category === 'wflh_g') { - return `${i18n.t('Height')}: ${tooltipItem.label} | ${i18n.t('Weight')}: ${tooltipItem.formattedValue}`; - } - const value = tooltipItem.formattedValue; - return `${formattedFieldName}: ${value}`; - }, - }, -}); diff --git a/src/components/GrowthChart/GrowthChartBuilder/GrowthChartBuilder.tsx b/src/components/GrowthChart/GrowthChartBuilder/GrowthChartBuilder.tsx index 261aa9d..67acbde 100644 --- a/src/components/GrowthChart/GrowthChartBuilder/GrowthChartBuilder.tsx +++ b/src/components/GrowthChart/GrowthChartBuilder/GrowthChartBuilder.tsx @@ -4,16 +4,17 @@ import { Line } from 'react-chartjs-2'; import Chart, { ChartOptions } from 'chart.js/auto'; import annotationPlugin from 'chartjs-plugin-annotation'; import AutoSizer from 'react-virtualized-auto-sizer'; -import { ChartDataTypes, CategoryToLabel, MeasurementTypeCodesLabel, +import { ChartDataTypes, CategoryToLabel, MeasurementTypeCodes, DataSetLabels, CategoryCodes } from '../../../types/chartDataTypes'; import { GrowthChartAnnotations, AnnotateLineEnd } from '../../../utils/ChartOptions'; -import { useMeasurementPlotting, useZscoreLines } from '../../../utils/Hooks/ChartDataVisualization'; -import { ChartTooltipConfig } from './ChartTooltipConfig'; +import { useMeasurementPlotting, useChartLines } from '../../../utils/Hooks/ChartDataVisualization'; +import { ChartTooltip } from './ChartTooltip'; interface GrowthChartBuilderProps extends ChartDataTypes { category: keyof typeof CategoryToLabel; dataset: string; dateOfBirth: Date; + isPercentiles: boolean; } export const GrowthChartBuilder = ({ @@ -25,30 +26,28 @@ export const GrowthChartBuilder = ({ category, dataset, dateOfBirth, + isPercentiles, }: GrowthChartBuilderProps) => { Chart.register(annotationPlugin); const { minDataValue, maxDataValue } = yAxisValues; - const categoryLabel = CategoryToLabel[category]; - const MeasuremenCode = MeasurementTypeCodes[category]; - const MeasuremenLabel = MeasurementTypeCodesLabel[MeasuremenCode]; const adjustIndex = (dataset === DataSetLabels.y_2_5) ? 24 : 0; const startIndex = (category !== CategoryCodes.wflh_b && category !== CategoryCodes.wflh_g) ? adjustIndex : datasetMetadata.range.start; - const ZscoreLinesData = useZscoreLines(datasetValues, keysDataSet, datasetMetadata, category, dataset, startIndex); + const ChartLinesData = useChartLines(datasetValues, keysDataSet, datasetMetadata, category, dataset, startIndex, isPercentiles); const MeasurementData = useMeasurementPlotting(measurementData, MeasuremenCode, category, dataset, dateOfBirth, startIndex); - const data: any = { datasets: [...ZscoreLinesData, ...MeasurementData] }; - const annotations = GrowthChartAnnotations(ZscoreLinesData, datasetMetadata); + const data: any = { datasets: [...ChartLinesData, ...MeasurementData] }; + const annotations = GrowthChartAnnotations(ChartLinesData, datasetMetadata); const options: ChartOptions<'line'> = { elements: { point: { radius: 0, hoverRadius: 0 } }, plugins: { annotation: { annotations }, legend: { display: false }, - tooltip: ChartTooltipConfig(MeasuremenLabel, categoryLabel), + tooltip: ChartTooltip(category, datasetMetadata.xAxisLabel, datasetMetadata.yAxisLabel), }, scales: { x: { @@ -76,12 +75,12 @@ export const GrowthChartBuilder = ({ position: 'right', min: minDataValue, max: maxDataValue, - ticks: { padding: 18 }, + ticks: { padding: isPercentiles ? 36 : 18 }, }, }, animation: { - onComplete: (chartAnimation: any) => AnnotateLineEnd(chartAnimation), - onProgress: (chartAnimation: any) => AnnotateLineEnd(chartAnimation), + onComplete: (chartAnimation: any) => AnnotateLineEnd(chartAnimation, isPercentiles, keysDataSet), + onProgress: (chartAnimation: any) => AnnotateLineEnd(chartAnimation, isPercentiles, keysDataSet), }, }; diff --git a/src/components/GrowthChart/GrowthChartSelector/ChartSelector.tsx b/src/components/GrowthChart/GrowthChartSelector/ChartSelector.tsx index 89e39a6..752df44 100644 --- a/src/components/GrowthChart/GrowthChartSelector/ChartSelector.tsx +++ b/src/components/GrowthChart/GrowthChartSelector/ChartSelector.tsx @@ -1,6 +1,6 @@ import React from 'react'; import { ChartData, CategoryCodes, GenderCodes, CategoryToLabel } from '../../../types/chartDataTypes'; -import { ChartSelectorDropdown } from './ChartSelectorDropdown/ChartSelectorDropdown'; +import { ChartSelectorDropdown } from './ChartSelectorDropdown'; interface ChartSelectorProps { category: keyof typeof CategoryCodes; diff --git a/src/types/chartDataTypes.ts b/src/types/chartDataTypes.ts index a15b87b..6f4ae87 100644 --- a/src/types/chartDataTypes.ts +++ b/src/types/chartDataTypes.ts @@ -9,6 +9,12 @@ export interface MeasurementData { }; } +interface TimeUnitData { + singular: string; + plural: string; + divisor: number; +} + export interface ChartDataTypes { datasetValues: { [key: string]: number }[]; datasetMetadata: { @@ -30,7 +36,8 @@ export interface ChartData { }; datasets: { [key: string]: { - datasetValues: { [key: string]: number }[]; + zScoreDatasetValues: { [key: string]: number }[]; + percentileDatasetValues: { [key: string]: number }[]; metadata: { chartLabel: string; yAxisLabel: string; @@ -43,10 +50,29 @@ export interface ChartData { } export const TimeUnitCodes = Object.freeze({ + years: i18n.t('Years'), months: i18n.t('Months'), weeks: i18n.t('Weeks'), }); +export const timeUnitData: { [key: string]: TimeUnitData } = { + [TimeUnitCodes.years]: { + singular: i18n.t('year'), + plural: i18n.t('years'), + divisor: 12, + }, + [TimeUnitCodes.months]: { + singular: i18n.t('month'), + plural: i18n.t('months'), + divisor: 4, + }, + [TimeUnitCodes.weeks]: { + singular: i18n.t('week'), + plural: i18n.t('weeks'), + divisor: 1, + }, +}; + export const MeasurementTypeCodesLabel = Object.freeze({ headCircumference: i18n.t('Head circumference'), length: i18n.t('Length'), @@ -65,6 +91,12 @@ export const MeasurementTypeCodes = Object.freeze({ wflh_g: 'weight', }); +export const unitCodes = Object.freeze({ + cm: 'cm', + kg: 'kg', + g: 'g', +}); + export const CategoryLabels = Object.freeze({ hcfa: i18n.t('Head circumference for age'), lhfa: i18n.t('Length/height for age'), @@ -72,6 +104,13 @@ export const CategoryLabels = Object.freeze({ wflh: i18n.t('Weight for length/height'), }); +const CategoryToYUnitLabel = Object.freeze({ + hcfa: unitCodes.cm, + lhfa: unitCodes.cm, + wfa: unitCodes.kg, + wflh: unitCodes.cm, +}); + export const CategoryCodes = Object.freeze({ hcfa_b: 'hcfa_b', hcfa_g: 'hcfa_g', @@ -93,6 +132,18 @@ export const CategoryToLabel = Object.freeze({ wflh_b: CategoryLabels.wflh, wflh_g: CategoryLabels.wflh, }); + +export const CategoryToYUnit = Object.freeze({ + hcfa_b: CategoryToYUnitLabel.hcfa, + hcfa_g: CategoryToYUnitLabel.hcfa, + lhfa_b: CategoryToYUnitLabel.lhfa, + lhfa_g: CategoryToYUnitLabel.lhfa, + wfa_b: CategoryToYUnitLabel.wfa, + wfa_g: CategoryToYUnitLabel.wfa, + wflh_b: CategoryToYUnitLabel.wflh, + wflh_g: CategoryToYUnitLabel.wflh, +}); + export const DataSetLabels = Object.freeze({ y_0_5: i18n.t('0 to 5 years'), w_0_13: i18n.t('0 to 13 weeks'), diff --git a/src/utils/ChartOptions/AnnotateLineEnd.ts b/src/utils/ChartOptions/AnnotateLineEnd.ts index af837b9..4fddc45 100644 --- a/src/utils/ChartOptions/AnnotateLineEnd.ts +++ b/src/utils/ChartOptions/AnnotateLineEnd.ts @@ -7,34 +7,38 @@ interface DataSet { label: string; } -export const AnnotateLineEnd = (animation: Animation & { chart?: Chart }) => { +export const AnnotateLineEnd = (animation: Animation & { chart?: Chart }, isPercentiles: boolean, keysDataSet: string[]) => { const { chart } = animation; if (!chart) return; const { ctx } = chart; - const labelsToInclude = ['SD0', 'SD1', 'SD2', 'SD3', 'SD1neg', 'SD2neg', 'SD3neg']; + const labelsToInclude = keysDataSet; - const ZscoreLines = chart.data.datasets.filter((dataset: DataSet) => labelsToInclude.includes(dataset.label)); + const lines = chart.data.datasets.filter((dataset: DataSet) => labelsToInclude.includes(dataset.label)); - const extractNumberFromLabel = (label: string): number => { - const numberStr = label.replace(/[^\d.-]/g, ''); - return parseFloat(numberStr); - }; + const extractNumberFromLabel = (label: string): number => parseFloat(label.replace(/[^\d.-]/g, '')); const adjustLabel = (labelText: number, originalLabel: string): string => { - const isNegative = originalLabel.includes('neg'); - if (isNegative) return `-${labelText}`; - return ` ${labelText.toString()}`; + if (isPercentiles) { + if (originalLabel === 'P01') return '0.1%'; + if (originalLabel === 'P999') return '99.9%'; + return `${labelText}%`; + } + if (!isPercentiles) { + const isNegative = originalLabel.includes('neg'); + return isNegative ? `-${labelText}` : ` ${labelText}`; + } + return originalLabel; }; const drawText = (ctx: CanvasRenderingContext2D, text: string, x: number, y: number, color: string) => { ctx.fillStyle = color; ctx.font = '14px Arial'; - ctx.fillText(text, x, y); + ctx.fillText(text, x + 3, y + 4); }; - ZscoreLines.forEach((dataset: DataSet, index: number) => { + lines.forEach((dataset: DataSet, index: number) => { const meta = chart.getDatasetMeta(index); const [lastElement] = meta.data.slice(-1); const { x, y } = lastElement.getProps(['x', 'y']); @@ -42,6 +46,6 @@ export const AnnotateLineEnd = (animation: Animation & { chart?: Chart }) => { const labelText = extractNumberFromLabel(dataset.label); const adjustedLabelText = adjustLabel(labelText, dataset.label); - drawText(ctx, adjustedLabelText, x + 3, y + 4, dataset.borderColor); + drawText(ctx, adjustedLabelText.toString(), x, y, dataset.borderColor); }); }; diff --git a/src/utils/ChartOptions/ChartLineColorPicker.ts b/src/utils/ChartOptions/ChartLineColorPicker.ts index 58c5ca9..a391d80 100644 --- a/src/utils/ChartOptions/ChartLineColorPicker.ts +++ b/src/utils/ChartOptions/ChartLineColorPicker.ts @@ -1,20 +1,30 @@ -export const ChartLineColorPicker = (key: string): string => { - switch (key) { - case 'SD3neg': - return 'black'; - case 'SD2neg': - return 'red'; - case 'SD1neg': - return 'orange'; - case 'SD0': - return 'green'; - case 'SD1': - return 'orange'; - case 'SD2': - return 'red'; - case 'SD3': - return 'black'; - default: - return 'gray'; +export const ChartLineColorPicker = (key: string, percentiles: boolean): string => { + if (percentiles) { + const value = parseFloat(key.substring(1)) / 1000; + if (value < 0.015 || value > 0.085) return 'red'; + if (value >= 0.015 && value < 0.04) return 'orange'; + if (value <= 0.085 && value > 0.06) return 'orange'; + if (value >= 0.04 && value <= 0.06) return 'green'; } + if (!percentiles) { + switch (key) { + case 'SD3neg': + return 'black'; + case 'SD2neg': + return 'red'; + case 'SD1neg': + return 'orange'; + case 'SD0': + return 'green'; + case 'SD1': + return 'orange'; + case 'SD2': + return 'red'; + case 'SD3': + return 'black'; + default: + return 'gray'; + } + } + return 'gray'; }; diff --git a/src/utils/ChartOptions/GrowthChartAnnotations.tsx b/src/utils/ChartOptions/GrowthChartAnnotations.tsx index 1d2dab2..9faa934 100644 --- a/src/utils/ChartOptions/GrowthChartAnnotations.tsx +++ b/src/utils/ChartOptions/GrowthChartAnnotations.tsx @@ -1,11 +1,4 @@ -import i18n from '@dhis2/d2-i18n'; -import { TimeUnitCodes } from '../../types/chartDataTypes'; - -interface TimeUnitData { - singular: string; - plural: string; - divisor: number; -} +import { timeUnitData, TimeUnitCodes } from '../../types/chartDataTypes'; export interface AnnotationLabelType { display: boolean; @@ -13,30 +6,24 @@ export interface AnnotationLabelType { position?: 'top' | 'bottom' | 'center' | 'start' | 'end'; yAdjust?: number; } - -const timeUnitData: { [key: string]: TimeUnitData } = { - [TimeUnitCodes.months]: { - singular: i18n.t('Year'), - plural: i18n.t('Years'), - divisor: 12, - }, - [TimeUnitCodes.weeks]: { - singular: i18n.t('Month'), - plural: i18n.t('Months'), - divisor: 4, - }, -}; - -const contentText = (value: number, xAxisLabel: string) => { - const { singular, plural } = timeUnitData[xAxisLabel]; - return `${value} ${value === 1 ? singular : plural}`; -}; - export const GrowthChartAnnotations = ( ZscoreLines: any[], datasetMetadata: any, ): AnnotationLabelType[] => { - const timeUnitConfig = timeUnitData[datasetMetadata.xAxisLabel]; + let timeUnitConfig = { + singular: '', + plural: '', + divisor: 0, + }; + + if (datasetMetadata.xAxisLabel === TimeUnitCodes.weeks) { + timeUnitConfig = timeUnitData.Months; + } + + if (datasetMetadata.xAxisLabel === TimeUnitCodes.months) { + timeUnitConfig = timeUnitData.Years; + } + if (timeUnitConfig) { const xValues = ZscoreLines[0]?.data.map((entry: any) => entry.x) || []; @@ -53,7 +40,7 @@ export const GrowthChartAnnotations = ( display: true, content: () => { const value = label / divisor; - return contentText(value, datasetMetadata.xAxisLabel); + return `${value} ${value === 1 ? timeUnitConfig.singular : timeUnitConfig.plural}`; }, position: 'end', yAdjust: 10, diff --git a/src/utils/DataFetching/Hooks/useChartConfig.ts b/src/utils/DataFetching/Hooks/useChartConfig.ts index fbb25cf..329c696 100644 --- a/src/utils/DataFetching/Hooks/useChartConfig.ts +++ b/src/utils/DataFetching/Hooks/useChartConfig.ts @@ -33,7 +33,7 @@ export const useChartConfig = () => { isError, } = useQuery( 'chartConfig', - (): any => dataEngine.query({ chartConfig: { resource: 'dataStore/capture-growth-charts/config' } }), + (): any => dataEngine.query({ chartConfig: { resource: 'dataStore/capture-growth-chart/config' } }), { staleTime: 5000 }, ); diff --git a/src/utils/Hooks/ChartDataVisualization/index.ts b/src/utils/Hooks/ChartDataVisualization/index.ts index f2a99f9..857d1d7 100644 --- a/src/utils/Hooks/ChartDataVisualization/index.ts +++ b/src/utils/Hooks/ChartDataVisualization/index.ts @@ -1,2 +1,2 @@ -export { useZscoreLines } from './useZscoreLines'; +export { useChartLines } from './useChartLines'; export { useMeasurementPlotting } from './useMeasurementPlotting'; diff --git a/src/utils/Hooks/ChartDataVisualization/useZscoreLines.ts b/src/utils/Hooks/ChartDataVisualization/useChartLines.ts similarity index 64% rename from src/utils/Hooks/ChartDataVisualization/useZscoreLines.ts rename to src/utils/Hooks/ChartDataVisualization/useChartLines.ts index 4528a10..4fba5d0 100644 --- a/src/utils/Hooks/ChartDataVisualization/useZscoreLines.ts +++ b/src/utils/Hooks/ChartDataVisualization/useChartLines.ts @@ -5,29 +5,30 @@ interface DatasetValues { [key: string]: number; } -export const useZscoreLines = ( +export const useChartLines = ( datasetValues: DatasetValues[], keysDataSet: string[], datasetMetadata: any, category: string, dataset: string | number, startIndex: number, + isPercentiles: boolean, ) => { - const [zScoreLines, setZScoreLines] = useState([]); + const [ChartLines, setChartLines] = useState([]); useEffect(() => { - const ZscoreLines = keysDataSet.map((key) => ({ + const newChartLines = keysDataSet.map((key) => ({ data: datasetValues.map((entry, index) => ({ x: startIndex + index, y: entry[key], })), borderWidth: 0.9, - borderColor: ChartLineColorPicker(key), + borderColor: ChartLineColorPicker(key, isPercentiles), label: key, })); - setZScoreLines(ZscoreLines); - }, [datasetValues, keysDataSet, datasetMetadata, category, dataset, startIndex]); + setChartLines(newChartLines); + }, [datasetValues, keysDataSet, datasetMetadata, category, dataset, startIndex, isPercentiles]); - return zScoreLines; + return ChartLines; }; diff --git a/yarn.lock b/yarn.lock index 414693f..6d66165 100644 --- a/yarn.lock +++ b/yarn.lock @@ -29,33 +29,33 @@ jsonpointer "^5.0.0" leven "^3.1.0" -"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.16.0", "@babel/code-frame@^7.23.5", "@babel/code-frame@^7.8.3": - version "7.23.5" - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.23.5.tgz#9009b69a8c602293476ad598ff53e4562e15c244" - integrity sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA== +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.16.0", "@babel/code-frame@^7.23.5", "@babel/code-frame@^7.24.1", "@babel/code-frame@^7.24.2", "@babel/code-frame@^7.8.3": + version "7.24.2" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.24.2.tgz#718b4b19841809a58b29b68cde80bc5e1aa6d9ae" + integrity sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ== dependencies: - "@babel/highlight" "^7.23.4" - chalk "^2.4.2" + "@babel/highlight" "^7.24.2" + picocolors "^1.0.0" -"@babel/compat-data@^7.22.6", "@babel/compat-data@^7.23.5": - version "7.23.5" - resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.23.5.tgz#ffb878728bb6bdcb6f4510aa51b1be9afb8cfd98" - integrity sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw== +"@babel/compat-data@^7.22.6", "@babel/compat-data@^7.23.5", "@babel/compat-data@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.24.1.tgz#31c1f66435f2a9c329bb5716a6d6186c516c3742" + integrity sha512-Pc65opHDliVpRHuKfzI+gSA4zcgr65O4cl64fFJIWEEh8JoHIHh0Oez1Eo8Arz8zq/JhgKodQaxEwUPRtZylVA== "@babel/core@^7.1.0", "@babel/core@^7.11.1", "@babel/core@^7.12.3", "@babel/core@^7.16.0", "@babel/core@^7.6.2", "@babel/core@^7.7.2", "@babel/core@^7.8.0": - version "7.24.0" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.24.0.tgz#56cbda6b185ae9d9bed369816a8f4423c5f2ff1b" - integrity sha512-fQfkg0Gjkza3nf0c7/w6Xf34BW4YvzNfACRLmmb7XRLa6XHdR+K9AlJlxneFfWYf6uhOzuzZVTjF/8KfndZANw== + version "7.24.3" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.24.3.tgz#568864247ea10fbd4eff04dda1e05f9e2ea985c3" + integrity sha512-5FcvN1JHw2sHJChotgx8Ek0lyuh4kCKelgMTTqhYJJtloNvUfpAFMeNQUtdlIaktwrSV9LtCdqwk48wL2wBacQ== dependencies: "@ampproject/remapping" "^2.2.0" - "@babel/code-frame" "^7.23.5" - "@babel/generator" "^7.23.6" + "@babel/code-frame" "^7.24.2" + "@babel/generator" "^7.24.1" "@babel/helper-compilation-targets" "^7.23.6" "@babel/helper-module-transforms" "^7.23.3" - "@babel/helpers" "^7.24.0" - "@babel/parser" "^7.24.0" + "@babel/helpers" "^7.24.1" + "@babel/parser" "^7.24.1" "@babel/template" "^7.24.0" - "@babel/traverse" "^7.24.0" + "@babel/traverse" "^7.24.1" "@babel/types" "^7.24.0" convert-source-map "^2.0.0" debug "^4.1.0" @@ -64,22 +64,22 @@ semver "^6.3.1" "@babel/eslint-parser@^7.16.3": - version "7.23.10" - resolved "https://registry.yarnpkg.com/@babel/eslint-parser/-/eslint-parser-7.23.10.tgz#2d4164842d6db798873b40e0c4238827084667a2" - integrity sha512-3wSYDPZVnhseRnxRJH6ZVTNknBz76AEnyC+AYYhasjP3Yy23qz0ERR7Fcd2SHmYuSFJ2kY9gaaDd3vyqU09eSw== + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/eslint-parser/-/eslint-parser-7.24.1.tgz#e27eee93ed1d271637165ef3a86e2b9332395c32" + integrity sha512-d5guuzMlPeDfZIbpQ8+g1NaCNuAGBBGNECh0HVqz1sjOeVLh2CEaifuOysCH18URW6R7pqXINvf5PaR/dC6jLQ== dependencies: "@nicolo-ribaudo/eslint-scope-5-internals" "5.1.1-v1" eslint-visitor-keys "^2.1.0" semver "^6.3.1" -"@babel/generator@^7.23.6", "@babel/generator@^7.7.2": - version "7.23.6" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.23.6.tgz#9e1fca4811c77a10580d17d26b57b036133f3c2e" - integrity sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw== +"@babel/generator@^7.24.1", "@babel/generator@^7.7.2": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.24.1.tgz#e67e06f68568a4ebf194d1c6014235344f0476d0" + integrity sha512-DfCRfZsBcrPEHUfuBMgbJ1Ut01Y/itOs+hY2nFLgqsqXd52/iSiVq5TITtUasIUgm+IIKdY2/1I7auiQOEeC9A== dependencies: - "@babel/types" "^7.23.6" - "@jridgewell/gen-mapping" "^0.3.2" - "@jridgewell/trace-mapping" "^0.3.17" + "@babel/types" "^7.24.0" + "@jridgewell/gen-mapping" "^0.3.5" + "@jridgewell/trace-mapping" "^0.3.25" jsesc "^2.5.1" "@babel/helper-annotate-as-pure@^7.22.5": @@ -96,7 +96,7 @@ dependencies: "@babel/types" "^7.22.15" -"@babel/helper-compilation-targets@^7.22.15", "@babel/helper-compilation-targets@^7.22.6", "@babel/helper-compilation-targets@^7.23.6": +"@babel/helper-compilation-targets@^7.22.6", "@babel/helper-compilation-targets@^7.23.6": version "7.23.6" resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz#4d79069b16cbcf1461289eccfbbd81501ae39991" integrity sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ== @@ -107,17 +107,17 @@ lru-cache "^5.1.1" semver "^6.3.1" -"@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.22.15", "@babel/helper-create-class-features-plugin@^7.23.6", "@babel/helper-create-class-features-plugin@^7.24.0": - version "7.24.0" - resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.24.0.tgz#fc7554141bdbfa2d17f7b4b80153b9b090e5d158" - integrity sha512-QAH+vfvts51BCsNZ2PhY6HAggnlS6omLLFTsIpeqZk/MmJ6cW7tgz5yRv0fMJThcr6FmbMrENh1RgrWPTYA76g== +"@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.24.1.tgz#db58bf57137b623b916e24874ab7188d93d7f68f" + integrity sha512-1yJa9dX9g//V6fDebXoEfEsxkZHk3Hcbm+zLhyu6qVgYFLvmTALTeV+jNU9e5RnYtioBrGEOdoI2joMSNQ/+aA== dependencies: "@babel/helper-annotate-as-pure" "^7.22.5" "@babel/helper-environment-visitor" "^7.22.20" "@babel/helper-function-name" "^7.23.0" "@babel/helper-member-expression-to-functions" "^7.23.0" "@babel/helper-optimise-call-expression" "^7.22.5" - "@babel/helper-replace-supers" "^7.22.20" + "@babel/helper-replace-supers" "^7.24.1" "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" "@babel/helper-split-export-declaration" "^7.22.6" semver "^6.3.1" @@ -131,21 +131,10 @@ regexpu-core "^5.3.1" semver "^6.3.1" -"@babel/helper-define-polyfill-provider@^0.5.0": - version "0.5.0" - resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.5.0.tgz#465805b7361f461e86c680f1de21eaf88c25901b" - integrity sha512-NovQquuQLAQ5HuyjCz7WQP9MjRj7dx++yspwiyUiGl9ZyadHRSql1HZh5ogRd8W8w6YM6EQ/NTB8rgjLt5W65Q== - dependencies: - "@babel/helper-compilation-targets" "^7.22.6" - "@babel/helper-plugin-utils" "^7.22.5" - debug "^4.1.1" - lodash.debounce "^4.0.8" - resolve "^1.14.2" - -"@babel/helper-define-polyfill-provider@^0.6.0": - version "0.6.0" - resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.0.tgz#4d1a8b898c8299a2fcf295d7d356d2648471ab31" - integrity sha512-efwOM90nCG6YeT8o3PCyBVSxRfmILxCNL+TNI8CGQl7a62M0Wd9VkV+XHwIlkOz1r4b+lxu6gBjdWiOMdUCrCQ== +"@babel/helper-define-polyfill-provider@^0.6.1": + version "0.6.1" + resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.1.tgz#fadc63f0c2ff3c8d02ed905dcea747c5b0fb74fd" + integrity sha512-o7SDgTJuvx5vLKD6SFvkydkSMBvahDKGiNJzG22IZYXhiqoe9efY7zocICBgzHV4IRg5wdgl2nEL/tulKIEIbA== dependencies: "@babel/helper-compilation-targets" "^7.22.6" "@babel/helper-plugin-utils" "^7.22.5" @@ -173,19 +162,19 @@ dependencies: "@babel/types" "^7.22.5" -"@babel/helper-member-expression-to-functions@^7.22.15", "@babel/helper-member-expression-to-functions@^7.23.0": +"@babel/helper-member-expression-to-functions@^7.23.0": version "7.23.0" resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.23.0.tgz#9263e88cc5e41d39ec18c9a3e0eced59a3e7d366" integrity sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA== dependencies: "@babel/types" "^7.23.0" -"@babel/helper-module-imports@^7.10.4", "@babel/helper-module-imports@^7.22.15": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz#16146307acdc40cc00c3b2c647713076464bdbf0" - integrity sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w== +"@babel/helper-module-imports@^7.10.4", "@babel/helper-module-imports@^7.22.15", "@babel/helper-module-imports@^7.24.1", "@babel/helper-module-imports@^7.24.3": + version "7.24.3" + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.24.3.tgz#6ac476e6d168c7c23ff3ba3cf4f7841d46ac8128" + integrity sha512-viKb0F9f2s0BCS22QSF308z/+1YWKV/76mwt61NBzS5izMzDPwdq1pTrzf+Li3npBWX9KdQbkeCt1jSAM7lZqg== dependencies: - "@babel/types" "^7.22.15" + "@babel/types" "^7.24.0" "@babel/helper-module-transforms@^7.23.3": version "7.23.3" @@ -219,13 +208,13 @@ "@babel/helper-environment-visitor" "^7.22.20" "@babel/helper-wrap-function" "^7.22.20" -"@babel/helper-replace-supers@^7.22.20": - version "7.22.20" - resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.22.20.tgz#e37d367123ca98fe455a9887734ed2e16eb7a793" - integrity sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw== +"@babel/helper-replace-supers@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.24.1.tgz#7085bd19d4a0b7ed8f405c1ed73ccb70f323abc1" + integrity sha512-QCR1UqC9BzG5vZl8BMicmZ28RuUBnHhAMddD8yHFHDRH9lLTZ9uUPehX8ctVPT8l0TKblJidqcgUUKGVrePleQ== dependencies: "@babel/helper-environment-visitor" "^7.22.20" - "@babel/helper-member-expression-to-functions" "^7.22.15" + "@babel/helper-member-expression-to-functions" "^7.23.0" "@babel/helper-optimise-call-expression" "^7.22.5" "@babel/helper-simple-access@^7.22.5": @@ -250,16 +239,16 @@ "@babel/types" "^7.22.5" "@babel/helper-string-parser@^7.23.4": - version "7.23.4" - resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz#9478c707febcbbe1ddb38a3d91a2e054ae622d83" - integrity sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ== + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.24.1.tgz#f99c36d3593db9540705d0739a1f10b5e20c696e" + integrity sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ== "@babel/helper-validator-identifier@^7.14.9", "@babel/helper-validator-identifier@^7.22.20": version "7.22.20" resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz#c4ae002c61d2879e724581d96665583dbc1dc0e0" integrity sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A== -"@babel/helper-validator-option@^7.22.15", "@babel/helper-validator-option@^7.23.5": +"@babel/helper-validator-option@^7.23.5": version "7.23.5" resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz#907a3fbd4523426285365d1206c423c4c5520307" integrity sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw== @@ -273,52 +262,53 @@ "@babel/template" "^7.22.15" "@babel/types" "^7.22.19" -"@babel/helpers@^7.24.0": - version "7.24.0" - resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.24.0.tgz#a3dd462b41769c95db8091e49cfe019389a9409b" - integrity sha512-ulDZdc0Aj5uLc5nETsa7EPx2L7rM0YJM8r7ck7U73AXi7qOV44IHHRAYZHY6iU1rr3C5N4NtTmMRUJP6kwCWeA== +"@babel/helpers@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.24.1.tgz#183e44714b9eba36c3038e442516587b1e0a1a94" + integrity sha512-BpU09QqEe6ZCHuIHFphEFgvNSrubve1FtyMton26ekZ85gRGi6LrTF7zArARp2YvyFxloeiRmtSCq5sjh1WqIg== dependencies: "@babel/template" "^7.24.0" - "@babel/traverse" "^7.24.0" + "@babel/traverse" "^7.24.1" "@babel/types" "^7.24.0" -"@babel/highlight@^7.23.4": - version "7.23.4" - resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.23.4.tgz#edaadf4d8232e1a961432db785091207ead0621b" - integrity sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A== +"@babel/highlight@^7.24.2": + version "7.24.2" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.24.2.tgz#3f539503efc83d3c59080a10e6634306e0370d26" + integrity sha512-Yac1ao4flkTxTteCDZLEvdxg2fZfz1v8M4QpaGypq/WPDqg3ijHYbDfs+LG5hvzSoqaSZ9/Z9lKSP3CjZjv+pA== dependencies: "@babel/helper-validator-identifier" "^7.22.20" chalk "^2.4.2" js-tokens "^4.0.0" + picocolors "^1.0.0" -"@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.20.7", "@babel/parser@^7.24.0": - version "7.24.0" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.24.0.tgz#26a3d1ff49031c53a97d03b604375f028746a9ac" - integrity sha512-QuP/FxEAzMSjXygs8v4N9dvdXzEHN4W1oF3PxuWAtPo08UdM17u89RDMgjLn/mlc56iM0HlLmVkO/wgR+rDgHg== +"@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.20.7", "@babel/parser@^7.24.0", "@babel/parser@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.24.1.tgz#1e416d3627393fab1cb5b0f2f1796a100ae9133a" + integrity sha512-Zo9c7N3xdOIQrNip7Lc9wvRPzlRtovHVE4lkz8WEDr7uYh/GMQhSiIgFxGIArRHYdJE5kxtZjAf8rT0xhdLCzg== -"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.23.3.tgz#5cd1c87ba9380d0afb78469292c954fee5d2411a" - integrity sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ== +"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.24.1.tgz#b645d9ba8c2bc5b7af50f0fe949f9edbeb07c8cf" + integrity sha512-y4HqEnkelJIOQGd+3g1bTeKsA5c6qM7eOn7VggGVbBc0y8MLSKHacwcIE2PplNlQSj0PqS9rrXL/nkPVK+kUNg== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" -"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.23.3.tgz#f6652bb16b94f8f9c20c50941e16e9756898dc5d" - integrity sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ== +"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.24.1.tgz#da8261f2697f0f41b0855b91d3a20a1fbfd271d3" + integrity sha512-Hj791Ii4ci8HqnaKHAlLNs+zaLXb0EzSDhiAWp5VNlyvCNymYfacs64pxTxbH1znW/NcArSmwpmG9IKE/TUVVQ== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" - "@babel/plugin-transform-optional-chaining" "^7.23.3" + "@babel/plugin-transform-optional-chaining" "^7.24.1" -"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@^7.23.7": - version "7.23.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.23.7.tgz#516462a95d10a9618f197d39ad291a9b47ae1d7b" - integrity sha512-LlRT7HgaifEpQA1ZgLVOIJZZFVPWN5iReq/7/JixwBtwcoeVGDBD53ZV28rrsLYOZs1Y/EHhA8N/Z6aazHR8cw== +"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.24.1.tgz#1181d9685984c91d657b8ddf14f0487a6bab2988" + integrity sha512-m9m/fXsXLiHfwdgydIFnpk+7jlVbnvlK5B2EKiPdLUb6WX654ZaaEWJUjk8TftRbZpK0XibovlLWX4KIZhV6jw== dependencies: "@babel/helper-environment-visitor" "^7.22.20" - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" "@babel/plugin-proposal-class-properties@^7.16.0", "@babel/plugin-proposal-class-properties@^7.8.3": version "7.18.6" @@ -329,13 +319,13 @@ "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-proposal-decorators@^7.16.4": - version "7.24.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.24.0.tgz#845b42189e7441faa60a37682de1038eae97c382" - integrity sha512-LiT1RqZWeij7X+wGxCoYh3/3b8nVOX6/7BZ9wiQgAIyjoeQWdROaodJCgT+dwtbjHaz0r7bEbHJzjSbVfcOyjQ== + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.24.1.tgz#bab2b9e174a2680f0a80f341f3ec70f809f8bb4b" + integrity sha512-zPEvzFijn+hRvJuX2Vu3KbEBN39LN3f7tW3MQO2LsIs57B26KU+kUc82BdAktS1VCM6libzh45eKGI65lg0cpA== dependencies: - "@babel/helper-create-class-features-plugin" "^7.24.0" + "@babel/helper-create-class-features-plugin" "^7.24.1" "@babel/helper-plugin-utils" "^7.24.0" - "@babel/plugin-syntax-decorators" "^7.24.0" + "@babel/plugin-syntax-decorators" "^7.24.1" "@babel/plugin-proposal-nullish-coalescing-operator@^7.16.0", "@babel/plugin-proposal-nullish-coalescing-operator@^7.8.3": version "7.18.6" @@ -403,10 +393,10 @@ dependencies: "@babel/helper-plugin-utils" "^7.14.5" -"@babel/plugin-syntax-decorators@^7.24.0": - version "7.24.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.24.0.tgz#7a15e20aeaf412469c53ed0d5666f31a1fc41215" - integrity sha512-MXW3pQCu9gUiVGzqkGqsgiINDVYXoAnrY8FYF/rmb+OfufNF0zHMpHPN4ulRrinxYT8Vk/aZJxYqOKsDECjKAw== +"@babel/plugin-syntax-decorators@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.24.1.tgz#71d9ad06063a6ac5430db126b5df48c70ee885fa" + integrity sha512-05RJdO/cCrtVWuAaSn1tS3bH8jbsJa/Y1uD186u6J4C/1mnHFxseeuWpsqr9anvo7TUulev7tm7GDwRV+VuhDw== dependencies: "@babel/helper-plugin-utils" "^7.24.0" @@ -424,26 +414,26 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-syntax-flow@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.23.3.tgz#084564e0f3cc21ea6c70c44cff984a1c0509729a" - integrity sha512-YZiAIpkJAwQXBJLIQbRFayR5c+gJ35Vcz3bg954k7cd73zqjvhacJuL9RbrzPz8qPmZdgqP6EUKwy0PCNhaaPA== +"@babel/plugin-syntax-flow@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.24.1.tgz#875c25e3428d7896c87589765fc8b9d32f24bd8d" + integrity sha512-sxi2kLTI5DeW5vDtMUsk4mTPwvlUDbjOnoWayhynCwrw4QXRld4QEYwqzY8JmQXaJUtgUuCIurtSRH5sn4c7mA== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" -"@babel/plugin-syntax-import-assertions@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.23.3.tgz#9c05a7f592982aff1a2768260ad84bcd3f0c77fc" - integrity sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw== +"@babel/plugin-syntax-import-assertions@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.24.1.tgz#db3aad724153a00eaac115a3fb898de544e34971" + integrity sha512-IuwnI5XnuF189t91XbxmXeCDz3qs6iDRO7GJ++wcfgeXNs/8FmIlKcpDSXNVyuLQxlwvskmI3Ct73wUODkJBlQ== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" -"@babel/plugin-syntax-import-attributes@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.23.3.tgz#992aee922cf04512461d7dae3ff6951b90a2dc06" - integrity sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA== +"@babel/plugin-syntax-import-attributes@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.24.1.tgz#c66b966c63b714c4eec508fcf5763b1f2d381093" + integrity sha512-zhQTMH0X2nVLnb04tz+s7AMuasX8U0FnpE+nHTOhSOINjWMnopoZTxtIKsd45n4GQ/HIZLyfIpoul8e2m0DnRA== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" "@babel/plugin-syntax-import-meta@^7.10.4", "@babel/plugin-syntax-import-meta@^7.8.3": version "7.10.4" @@ -466,12 +456,12 @@ dependencies: "@babel/helper-plugin-utils" "^7.14.5" -"@babel/plugin-syntax-jsx@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.23.3.tgz#8f2e4f8a9b5f9aa16067e142c1ac9cd9f810f473" - integrity sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg== +"@babel/plugin-syntax-jsx@^7.23.3", "@babel/plugin-syntax-jsx@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.24.1.tgz#3f6ca04b8c841811dbc3c5c5f837934e0d626c10" + integrity sha512-2eCtxZXf+kbkMIsXS4poTvT4Yu5rXiRa+9xGVT56raghjmBTKMpFNc9R4IDiB4emao9eO22Ox7CxuJG7BgExqA== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" "@babel/plugin-syntax-logical-assignment-operators@^7.10.4", "@babel/plugin-syntax-logical-assignment-operators@^7.8.3": version "7.10.4" @@ -529,12 +519,12 @@ dependencies: "@babel/helper-plugin-utils" "^7.14.5" -"@babel/plugin-syntax-typescript@^7.23.3", "@babel/plugin-syntax-typescript@^7.7.2": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.23.3.tgz#24f460c85dbbc983cd2b9c4994178bcc01df958f" - integrity sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ== +"@babel/plugin-syntax-typescript@^7.24.1", "@babel/plugin-syntax-typescript@^7.7.2": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.24.1.tgz#b3bcc51f396d15f3591683f90239de143c076844" + integrity sha512-Yhnmvy5HZEnHUty6i++gcfH1/l68AHnItFHnaCv6hn9dNh0hQvvQJsxpi4BMBFN5DLeHBuucT/0DgzXif/OyRw== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" "@babel/plugin-syntax-unicode-sets-regex@^7.18.6": version "7.18.6" @@ -544,220 +534,220 @@ "@babel/helper-create-regexp-features-plugin" "^7.18.6" "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-transform-arrow-functions@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.23.3.tgz#94c6dcfd731af90f27a79509f9ab7fb2120fc38b" - integrity sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ== +"@babel/plugin-transform-arrow-functions@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.24.1.tgz#2bf263617060c9cc45bcdbf492b8cc805082bf27" + integrity sha512-ngT/3NkRhsaep9ck9uj2Xhv9+xB1zShY3tM3g6om4xxCELwCDN4g4Aq5dRn48+0hasAql7s2hdBOysCfNpr4fw== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" -"@babel/plugin-transform-async-generator-functions@^7.23.9": - version "7.23.9" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.23.9.tgz#9adaeb66fc9634a586c5df139c6240d41ed801ce" - integrity sha512-8Q3veQEDGe14dTYuwagbRtwxQDnytyg1JFu4/HwEMETeofocrB0U0ejBJIXoeG/t2oXZ8kzCyI0ZZfbT80VFNQ== +"@babel/plugin-transform-async-generator-functions@^7.24.3": + version "7.24.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.24.3.tgz#8fa7ae481b100768cc9842c8617808c5352b8b89" + integrity sha512-Qe26CMYVjpQxJ8zxM1340JFNjZaF+ISWpr1Kt/jGo+ZTUzKkfw/pphEWbRCb+lmSM6k/TOgfYLvmbHkUQ0asIg== dependencies: "@babel/helper-environment-visitor" "^7.22.20" - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" "@babel/helper-remap-async-to-generator" "^7.22.20" "@babel/plugin-syntax-async-generators" "^7.8.4" -"@babel/plugin-transform-async-to-generator@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.23.3.tgz#d1f513c7a8a506d43f47df2bf25f9254b0b051fa" - integrity sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw== +"@babel/plugin-transform-async-to-generator@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.24.1.tgz#0e220703b89f2216800ce7b1c53cb0cf521c37f4" + integrity sha512-AawPptitRXp1y0n4ilKcGbRYWfbbzFWz2NqNu7dacYDtFtz0CMjG64b3LQsb3KIgnf4/obcUL78hfaOS7iCUfw== dependencies: - "@babel/helper-module-imports" "^7.22.15" - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-module-imports" "^7.24.1" + "@babel/helper-plugin-utils" "^7.24.0" "@babel/helper-remap-async-to-generator" "^7.22.20" -"@babel/plugin-transform-block-scoped-functions@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.23.3.tgz#fe1177d715fb569663095e04f3598525d98e8c77" - integrity sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A== +"@babel/plugin-transform-block-scoped-functions@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.24.1.tgz#1c94799e20fcd5c4d4589523bbc57b7692979380" + integrity sha512-TWWC18OShZutrv9C6mye1xwtam+uNi2bnTOCBUd5sZxyHOiWbU6ztSROofIMrK84uweEZC219POICK/sTYwfgg== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" -"@babel/plugin-transform-block-scoping@^7.23.4": - version "7.23.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.23.4.tgz#b2d38589531c6c80fbe25e6b58e763622d2d3cf5" - integrity sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw== +"@babel/plugin-transform-block-scoping@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.24.1.tgz#27af183d7f6dad890531256c7a45019df768ac1f" + integrity sha512-h71T2QQvDgM2SmT29UYU6ozjMlAt7s7CSs5Hvy8f8cf/GM/Z4a2zMfN+fjVGaieeCrXR3EdQl6C4gQG+OgmbKw== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" -"@babel/plugin-transform-class-properties@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.23.3.tgz#35c377db11ca92a785a718b6aa4e3ed1eb65dc48" - integrity sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg== +"@babel/plugin-transform-class-properties@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.24.1.tgz#bcbf1aef6ba6085cfddec9fc8d58871cf011fc29" + integrity sha512-OMLCXi0NqvJfORTaPQBwqLXHhb93wkBKZ4aNwMl6WtehO7ar+cmp+89iPEQPqxAnxsOKTaMcs3POz3rKayJ72g== dependencies: - "@babel/helper-create-class-features-plugin" "^7.22.15" - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-create-class-features-plugin" "^7.24.1" + "@babel/helper-plugin-utils" "^7.24.0" -"@babel/plugin-transform-class-static-block@^7.23.4": - version "7.23.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.23.4.tgz#2a202c8787a8964dd11dfcedf994d36bfc844ab5" - integrity sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ== +"@babel/plugin-transform-class-static-block@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.24.1.tgz#4e37efcca1d9f2fcb908d1bae8b56b4b6e9e1cb6" + integrity sha512-FUHlKCn6J3ERiu8Dv+4eoz7w8+kFLSyeVG4vDAikwADGjUCoHw/JHokyGtr8OR4UjpwPVivyF+h8Q5iv/JmrtA== dependencies: - "@babel/helper-create-class-features-plugin" "^7.22.15" - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-create-class-features-plugin" "^7.24.1" + "@babel/helper-plugin-utils" "^7.24.0" "@babel/plugin-syntax-class-static-block" "^7.14.5" -"@babel/plugin-transform-classes@^7.23.8": - version "7.23.8" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.23.8.tgz#d08ae096c240347badd68cdf1b6d1624a6435d92" - integrity sha512-yAYslGsY1bX6Knmg46RjiCiNSwJKv2IUC8qOdYKqMMr0491SXFhcHqOdRDeCRohOOIzwN/90C6mQ9qAKgrP7dg== +"@babel/plugin-transform-classes@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.24.1.tgz#5bc8fc160ed96378184bc10042af47f50884dcb1" + integrity sha512-ZTIe3W7UejJd3/3R4p7ScyyOoafetUShSf4kCqV0O7F/RiHxVj/wRaRnQlrGwflvcehNA8M42HkAiEDYZu2F1Q== dependencies: "@babel/helper-annotate-as-pure" "^7.22.5" "@babel/helper-compilation-targets" "^7.23.6" "@babel/helper-environment-visitor" "^7.22.20" "@babel/helper-function-name" "^7.23.0" - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-replace-supers" "^7.22.20" + "@babel/helper-plugin-utils" "^7.24.0" + "@babel/helper-replace-supers" "^7.24.1" "@babel/helper-split-export-declaration" "^7.22.6" globals "^11.1.0" -"@babel/plugin-transform-computed-properties@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.23.3.tgz#652e69561fcc9d2b50ba4f7ac7f60dcf65e86474" - integrity sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw== +"@babel/plugin-transform-computed-properties@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.24.1.tgz#bc7e787f8e021eccfb677af5f13c29a9934ed8a7" + integrity sha512-5pJGVIUfJpOS+pAqBQd+QMaTD2vCL/HcePooON6pDpHgRp4gNRmzyHTPIkXntwKsq3ayUFVfJaIKPw2pOkOcTw== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/template" "^7.22.15" + "@babel/helper-plugin-utils" "^7.24.0" + "@babel/template" "^7.24.0" -"@babel/plugin-transform-destructuring@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.23.3.tgz#8c9ee68228b12ae3dff986e56ed1ba4f3c446311" - integrity sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw== +"@babel/plugin-transform-destructuring@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.24.1.tgz#b1e8243af4a0206841973786292b8c8dd8447345" + integrity sha512-ow8jciWqNxR3RYbSNVuF4U2Jx130nwnBnhRw6N6h1bOejNkABmcI5X5oz29K4alWX7vf1C+o6gtKXikzRKkVdw== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" -"@babel/plugin-transform-dotall-regex@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.23.3.tgz#3f7af6054882ede89c378d0cf889b854a993da50" - integrity sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ== +"@babel/plugin-transform-dotall-regex@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.24.1.tgz#d56913d2f12795cc9930801b84c6f8c47513ac13" + integrity sha512-p7uUxgSoZwZ2lPNMzUkqCts3xlp8n+o05ikjy7gbtFJSt9gdU88jAmtfmOxHM14noQXBxfgzf2yRWECiNVhTCw== dependencies: "@babel/helper-create-regexp-features-plugin" "^7.22.15" - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" -"@babel/plugin-transform-duplicate-keys@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.23.3.tgz#664706ca0a5dfe8d066537f99032fc1dc8b720ce" - integrity sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA== +"@babel/plugin-transform-duplicate-keys@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.24.1.tgz#5347a797fe82b8d09749d10e9f5b83665adbca88" + integrity sha512-msyzuUnvsjsaSaocV6L7ErfNsa5nDWL1XKNnDePLgmz+WdU4w/J8+AxBMrWfi9m4IxfL5sZQKUPQKDQeeAT6lA== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" -"@babel/plugin-transform-dynamic-import@^7.23.4": - version "7.23.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.23.4.tgz#c7629e7254011ac3630d47d7f34ddd40ca535143" - integrity sha512-V6jIbLhdJK86MaLh4Jpghi8ho5fGzt3imHOBu/x0jlBaPYqDoWz4RDXjmMOfnh+JWNaQleEAByZLV0QzBT4YQQ== +"@babel/plugin-transform-dynamic-import@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.24.1.tgz#2a5a49959201970dd09a5fca856cb651e44439dd" + integrity sha512-av2gdSTyXcJVdI+8aFZsCAtR29xJt0S5tas+Ef8NvBNmD1a+N/3ecMLeMBgfcK+xzsjdLDT6oHt+DFPyeqUbDA== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" "@babel/plugin-syntax-dynamic-import" "^7.8.3" -"@babel/plugin-transform-exponentiation-operator@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.23.3.tgz#ea0d978f6b9232ba4722f3dbecdd18f450babd18" - integrity sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ== +"@babel/plugin-transform-exponentiation-operator@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.24.1.tgz#6650ebeb5bd5c012d5f5f90a26613a08162e8ba4" + integrity sha512-U1yX13dVBSwS23DEAqU+Z/PkwE9/m7QQy8Y9/+Tdb8UWYaGNDYwTLi19wqIAiROr8sXVum9A/rtiH5H0boUcTw== dependencies: "@babel/helper-builder-binary-assignment-operator-visitor" "^7.22.15" - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" -"@babel/plugin-transform-export-namespace-from@^7.23.4": - version "7.23.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.23.4.tgz#084c7b25e9a5c8271e987a08cf85807b80283191" - integrity sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ== +"@babel/plugin-transform-export-namespace-from@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.24.1.tgz#f033541fc036e3efb2dcb58eedafd4f6b8078acd" + integrity sha512-Ft38m/KFOyzKw2UaJFkWG9QnHPG/Q/2SkOrRk4pNBPg5IPZ+dOxcmkK5IyuBcxiNPyyYowPGUReyBvrvZs7IlQ== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" "@babel/plugin-syntax-export-namespace-from" "^7.8.3" "@babel/plugin-transform-flow-strip-types@^7.16.0": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.23.3.tgz#cfa7ca159cc3306fab526fc67091556b51af26ff" - integrity sha512-26/pQTf9nQSNVJCrLB1IkHUKyPxR+lMrH2QDPG89+Znu9rAMbtrybdbWeE9bb7gzjmE5iXHEY+e0HUwM6Co93Q== + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.24.1.tgz#fa8d0a146506ea195da1671d38eed459242b2dcc" + integrity sha512-iIYPIWt3dUmUKKE10s3W+jsQ3icFkw0JyRVyY1B7G4yK/nngAOHLVx8xlhA6b/Jzl/Y0nis8gjqhqKtRDQqHWQ== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/plugin-syntax-flow" "^7.23.3" + "@babel/helper-plugin-utils" "^7.24.0" + "@babel/plugin-syntax-flow" "^7.24.1" -"@babel/plugin-transform-for-of@^7.23.6": - version "7.23.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.23.6.tgz#81c37e24171b37b370ba6aaffa7ac86bcb46f94e" - integrity sha512-aYH4ytZ0qSuBbpfhuofbg/e96oQ7U2w1Aw/UQmKT+1l39uEhUPoFS3fHevDc1G0OvewyDudfMKY1OulczHzWIw== +"@babel/plugin-transform-for-of@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.24.1.tgz#67448446b67ab6c091360ce3717e7d3a59e202fd" + integrity sha512-OxBdcnF04bpdQdR3i4giHZNZQn7cm8RQKcSwA17wAAqEELo1ZOwp5FFgeptWUQXFyT9kwHo10aqqauYkRZPCAg== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" -"@babel/plugin-transform-function-name@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.23.3.tgz#8f424fcd862bf84cb9a1a6b42bc2f47ed630f8dc" - integrity sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw== +"@babel/plugin-transform-function-name@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.24.1.tgz#8cba6f7730626cc4dfe4ca2fa516215a0592b361" + integrity sha512-BXmDZpPlh7jwicKArQASrj8n22/w6iymRnvHYYd2zO30DbE277JO20/7yXJT3QxDPtiQiOxQBbZH4TpivNXIxA== dependencies: - "@babel/helper-compilation-targets" "^7.22.15" + "@babel/helper-compilation-targets" "^7.23.6" "@babel/helper-function-name" "^7.23.0" - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" -"@babel/plugin-transform-json-strings@^7.23.4": - version "7.23.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.23.4.tgz#a871d9b6bd171976efad2e43e694c961ffa3714d" - integrity sha512-81nTOqM1dMwZ/aRXQ59zVubN9wHGqk6UtqRK+/q+ciXmRy8fSolhGVvG09HHRGo4l6fr/c4ZhXUQH0uFW7PZbg== +"@babel/plugin-transform-json-strings@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.24.1.tgz#08e6369b62ab3e8a7b61089151b161180c8299f7" + integrity sha512-U7RMFmRvoasscrIFy5xA4gIp8iWnWubnKkKuUGJjsuOH7GfbMkB+XZzeslx2kLdEGdOJDamEmCqOks6e8nv8DQ== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" "@babel/plugin-syntax-json-strings" "^7.8.3" -"@babel/plugin-transform-literals@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.23.3.tgz#8214665f00506ead73de157eba233e7381f3beb4" - integrity sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ== +"@babel/plugin-transform-literals@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.24.1.tgz#0a1982297af83e6b3c94972686067df588c5c096" + integrity sha512-zn9pwz8U7nCqOYIiBaOxoQOtYmMODXTJnkxG4AtX8fPmnCRYWBOHD0qcpwS9e2VDSp1zNJYpdnFMIKb8jmwu6g== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" -"@babel/plugin-transform-logical-assignment-operators@^7.23.4": - version "7.23.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.23.4.tgz#e599f82c51d55fac725f62ce55d3a0886279ecb5" - integrity sha512-Mc/ALf1rmZTP4JKKEhUwiORU+vcfarFVLfcFiolKUo6sewoxSEgl36ak5t+4WamRsNr6nzjZXQjM35WsU+9vbg== +"@babel/plugin-transform-logical-assignment-operators@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.24.1.tgz#719d8aded1aa94b8fb34e3a785ae8518e24cfa40" + integrity sha512-OhN6J4Bpz+hIBqItTeWJujDOfNP+unqv/NJgyhlpSqgBTPm37KkMmZV6SYcOj+pnDbdcl1qRGV/ZiIjX9Iy34w== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" -"@babel/plugin-transform-member-expression-literals@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.23.3.tgz#e37b3f0502289f477ac0e776b05a833d853cabcc" - integrity sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag== +"@babel/plugin-transform-member-expression-literals@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.24.1.tgz#896d23601c92f437af8b01371ad34beb75df4489" + integrity sha512-4ojai0KysTWXzHseJKa1XPNXKRbuUrhkOPY4rEGeR+7ChlJVKxFa3H3Bz+7tWaGKgJAXUWKOGmltN+u9B3+CVg== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" -"@babel/plugin-transform-modules-amd@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.23.3.tgz#e19b55436a1416829df0a1afc495deedfae17f7d" - integrity sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw== +"@babel/plugin-transform-modules-amd@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.24.1.tgz#b6d829ed15258536977e9c7cc6437814871ffa39" + integrity sha512-lAxNHi4HVtjnHd5Rxg3D5t99Xm6H7b04hUS7EHIXcUl2EV4yl1gWdqZrNzXnSrHveL9qMdbODlLF55mvgjAfaQ== dependencies: "@babel/helper-module-transforms" "^7.23.3" - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" -"@babel/plugin-transform-modules-commonjs@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.23.3.tgz#661ae831b9577e52be57dd8356b734f9700b53b4" - integrity sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA== +"@babel/plugin-transform-modules-commonjs@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.24.1.tgz#e71ba1d0d69e049a22bf90b3867e263823d3f1b9" + integrity sha512-szog8fFTUxBfw0b98gEWPaEqF42ZUD/T3bkynW/wtgx2p/XCP55WEsb+VosKceRSd6njipdZvNogqdtI4Q0chw== dependencies: "@babel/helper-module-transforms" "^7.23.3" - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" "@babel/helper-simple-access" "^7.22.5" -"@babel/plugin-transform-modules-systemjs@^7.23.9": - version "7.23.9" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.23.9.tgz#105d3ed46e4a21d257f83a2f9e2ee4203ceda6be" - integrity sha512-KDlPRM6sLo4o1FkiSlXoAa8edLXFsKKIda779fbLrvmeuc3itnjCtaO6RrtoaANsIJANj+Vk1zqbZIMhkCAHVw== +"@babel/plugin-transform-modules-systemjs@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.24.1.tgz#2b9625a3d4e445babac9788daec39094e6b11e3e" + integrity sha512-mqQ3Zh9vFO1Tpmlt8QPnbwGHzNz3lpNEMxQb1kAemn/erstyqw1r9KeOlOfo3y6xAnFEcOv2tSyrXfmMk+/YZA== dependencies: "@babel/helper-hoist-variables" "^7.22.5" "@babel/helper-module-transforms" "^7.23.3" - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" "@babel/helper-validator-identifier" "^7.22.20" -"@babel/plugin-transform-modules-umd@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.23.3.tgz#5d4395fccd071dfefe6585a4411aa7d6b7d769e9" - integrity sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg== +"@babel/plugin-transform-modules-umd@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.24.1.tgz#69220c66653a19cf2c0872b9c762b9a48b8bebef" + integrity sha512-tuA3lpPj+5ITfcCluy6nWonSL7RvaG0AOTeAuvXqEKS34lnLzXpDb0dcP6K8jD0zWZFNDVly90AGFJPnm4fOYg== dependencies: "@babel/helper-module-transforms" "^7.23.3" - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" "@babel/plugin-transform-named-capturing-groups-regex@^7.22.5": version "7.22.5" @@ -767,110 +757,109 @@ "@babel/helper-create-regexp-features-plugin" "^7.22.5" "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-new-target@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.23.3.tgz#5491bb78ed6ac87e990957cea367eab781c4d980" - integrity sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ== +"@babel/plugin-transform-new-target@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.24.1.tgz#29c59988fa3d0157de1c871a28cd83096363cc34" + integrity sha512-/rurytBM34hYy0HKZQyA0nHbQgQNFm4Q/BOc9Hflxi2X3twRof7NaE5W46j4kQitm7SvACVRXsa6N/tSZxvPug== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" -"@babel/plugin-transform-nullish-coalescing-operator@^7.23.4": - version "7.23.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.23.4.tgz#45556aad123fc6e52189ea749e33ce090637346e" - integrity sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA== +"@babel/plugin-transform-nullish-coalescing-operator@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.24.1.tgz#0cd494bb97cb07d428bd651632cb9d4140513988" + integrity sha512-iQ+caew8wRrhCikO5DrUYx0mrmdhkaELgFa+7baMcVuhxIkN7oxt06CZ51D65ugIb1UWRQ8oQe+HXAVM6qHFjw== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" -"@babel/plugin-transform-numeric-separator@^7.23.4": - version "7.23.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.23.4.tgz#03d08e3691e405804ecdd19dd278a40cca531f29" - integrity sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q== +"@babel/plugin-transform-numeric-separator@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.24.1.tgz#5bc019ce5b3435c1cadf37215e55e433d674d4e8" + integrity sha512-7GAsGlK4cNL2OExJH1DzmDeKnRv/LXq0eLUSvudrehVA5Rgg4bIrqEUW29FbKMBRT0ztSqisv7kjP+XIC4ZMNw== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" "@babel/plugin-syntax-numeric-separator" "^7.10.4" -"@babel/plugin-transform-object-rest-spread@^7.24.0": - version "7.24.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.24.0.tgz#7b836ad0088fdded2420ce96d4e1d3ed78b71df1" - integrity sha512-y/yKMm7buHpFFXfxVFS4Vk1ToRJDilIa6fKRioB9Vjichv58TDGXTvqV0dN7plobAmTW5eSEGXDngE+Mm+uO+w== +"@babel/plugin-transform-object-rest-spread@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.24.1.tgz#5a3ce73caf0e7871a02e1c31e8b473093af241ff" + integrity sha512-XjD5f0YqOtebto4HGISLNfiNMTTs6tbkFf2TOqJlYKYmbo+mN9Dnpl4SRoofiziuOWMIyq3sZEUqLo3hLITFEA== dependencies: - "@babel/compat-data" "^7.23.5" "@babel/helper-compilation-targets" "^7.23.6" "@babel/helper-plugin-utils" "^7.24.0" "@babel/plugin-syntax-object-rest-spread" "^7.8.3" - "@babel/plugin-transform-parameters" "^7.23.3" + "@babel/plugin-transform-parameters" "^7.24.1" -"@babel/plugin-transform-object-super@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.23.3.tgz#81fdb636dcb306dd2e4e8fd80db5b2362ed2ebcd" - integrity sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA== +"@babel/plugin-transform-object-super@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.24.1.tgz#e71d6ab13483cca89ed95a474f542bbfc20a0520" + integrity sha512-oKJqR3TeI5hSLRxudMjFQ9re9fBVUU0GICqM3J1mi8MqlhVr6hC/ZN4ttAyMuQR6EZZIY6h/exe5swqGNNIkWQ== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-replace-supers" "^7.22.20" + "@babel/helper-plugin-utils" "^7.24.0" + "@babel/helper-replace-supers" "^7.24.1" -"@babel/plugin-transform-optional-catch-binding@^7.23.4": - version "7.23.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.23.4.tgz#318066de6dacce7d92fa244ae475aa8d91778017" - integrity sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A== +"@babel/plugin-transform-optional-catch-binding@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.24.1.tgz#92a3d0efe847ba722f1a4508669b23134669e2da" + integrity sha512-oBTH7oURV4Y+3EUrf6cWn1OHio3qG/PVwO5J03iSJmBg6m2EhKjkAu/xuaXaYwWW9miYtvbWv4LNf0AmR43LUA== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" -"@babel/plugin-transform-optional-chaining@^7.23.3", "@babel/plugin-transform-optional-chaining@^7.23.4": - version "7.23.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.23.4.tgz#6acf61203bdfc4de9d4e52e64490aeb3e52bd017" - integrity sha512-ZU8y5zWOfjM5vZ+asjgAPwDaBjJzgufjES89Rs4Lpq63O300R/kOz30WCLo6BxxX6QVEilwSlpClnG5cZaikTA== +"@babel/plugin-transform-optional-chaining@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.24.1.tgz#26e588acbedce1ab3519ac40cc748e380c5291e6" + integrity sha512-n03wmDt+987qXwAgcBlnUUivrZBPZ8z1plL0YvgQalLm+ZE5BMhGm94jhxXtA1wzv1Cu2aaOv1BM9vbVttrzSg== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" "@babel/plugin-syntax-optional-chaining" "^7.8.3" -"@babel/plugin-transform-parameters@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.23.3.tgz#83ef5d1baf4b1072fa6e54b2b0999a7b2527e2af" - integrity sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw== +"@babel/plugin-transform-parameters@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.24.1.tgz#983c15d114da190506c75b616ceb0f817afcc510" + integrity sha512-8Jl6V24g+Uw5OGPeWNKrKqXPDw2YDjLc53ojwfMcKwlEoETKU9rU0mHUtcg9JntWI/QYzGAXNWEcVHZ+fR+XXg== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" -"@babel/plugin-transform-private-methods@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.23.3.tgz#b2d7a3c97e278bfe59137a978d53b2c2e038c0e4" - integrity sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g== +"@babel/plugin-transform-private-methods@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.24.1.tgz#a0faa1ae87eff077e1e47a5ec81c3aef383dc15a" + integrity sha512-tGvisebwBO5em4PaYNqt4fkw56K2VALsAbAakY0FjTYqJp7gfdrgr7YX76Or8/cpik0W6+tj3rZ0uHU9Oil4tw== dependencies: - "@babel/helper-create-class-features-plugin" "^7.22.15" - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-create-class-features-plugin" "^7.24.1" + "@babel/helper-plugin-utils" "^7.24.0" -"@babel/plugin-transform-private-property-in-object@^7.23.4": - version "7.23.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.23.4.tgz#3ec711d05d6608fd173d9b8de39872d8dbf68bf5" - integrity sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A== +"@babel/plugin-transform-private-property-in-object@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.24.1.tgz#756443d400274f8fb7896742962cc1b9f25c1f6a" + integrity sha512-pTHxDVa0BpUbvAgX3Gat+7cSciXqUcY9j2VZKTbSB6+VQGpNgNO9ailxTGHSXlqOnX1Hcx1Enme2+yv7VqP9bg== dependencies: "@babel/helper-annotate-as-pure" "^7.22.5" - "@babel/helper-create-class-features-plugin" "^7.22.15" - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-create-class-features-plugin" "^7.24.1" + "@babel/helper-plugin-utils" "^7.24.0" "@babel/plugin-syntax-private-property-in-object" "^7.14.5" -"@babel/plugin-transform-property-literals@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.23.3.tgz#54518f14ac4755d22b92162e4a852d308a560875" - integrity sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw== +"@babel/plugin-transform-property-literals@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.24.1.tgz#d6a9aeab96f03749f4eebeb0b6ea8e90ec958825" + integrity sha512-LetvD7CrHmEx0G442gOomRr66d7q8HzzGGr4PMHGr+5YIm6++Yke+jxj246rpvsbyhJwCLxcTn6zW1P1BSenqA== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" "@babel/plugin-transform-react-constant-elements@^7.12.1": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.23.3.tgz#5efc001d07ef0f7da0d73c3a86c132f73d28e43c" - integrity sha512-zP0QKq/p6O42OL94udMgSfKXyse4RyJ0JqbQ34zDAONWjyrEsghYEyTSK5FIpmXmCpB55SHokL1cRRKHv8L2Qw== + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.24.1.tgz#d493a0918b9fdad7540f5afd9b5eb5c52500d18d" + integrity sha512-QXp1U9x0R7tkiGB0FOk8o74jhnap0FlZ5gNkRIWdG3eP+SvMFg118e1zaWewDzgABb106QSKpVsD3Wgd8t6ifA== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" -"@babel/plugin-transform-react-display-name@^7.16.0", "@babel/plugin-transform-react-display-name@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.23.3.tgz#70529f034dd1e561045ad3c8152a267f0d7b6200" - integrity sha512-GnvhtVfA2OAtzdX58FJxU19rhoGeQzyVndw3GgtdECQvQFXPEZIOVULHVZGAYmOgmqjXpVpfocAbSjh99V/Fqw== +"@babel/plugin-transform-react-display-name@^7.16.0", "@babel/plugin-transform-react-display-name@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.24.1.tgz#554e3e1a25d181f040cf698b93fd289a03bfdcdb" + integrity sha512-mvoQg2f9p2qlpDQRBC7M3c3XTr0k7cp/0+kFKKO/7Gtu0LSw16eKB+Fabe2bDT/UpsyasTBBkAnbdsLrkD5XMw== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" "@babel/plugin-transform-react-jsx-development@^7.22.5": version "7.22.5" @@ -879,7 +868,7 @@ dependencies: "@babel/plugin-transform-react-jsx" "^7.22.5" -"@babel/plugin-transform-react-jsx@^7.22.15", "@babel/plugin-transform-react-jsx@^7.22.5": +"@babel/plugin-transform-react-jsx@^7.22.5", "@babel/plugin-transform-react-jsx@^7.23.4": version "7.23.4" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.23.4.tgz#393f99185110cea87184ea47bcb4a7b0c2e39312" integrity sha512-5xOpoPguCZCRbo/JeHlloSkTA8Bld1J/E1/kLfD1nsuiW1m8tduTA1ERCgIZokDflX/IBzKcqR3l7VlRgiIfHA== @@ -890,138 +879,138 @@ "@babel/plugin-syntax-jsx" "^7.23.3" "@babel/types" "^7.23.4" -"@babel/plugin-transform-react-pure-annotations@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.23.3.tgz#fabedbdb8ee40edf5da96f3ecfc6958e3783b93c" - integrity sha512-qMFdSS+TUhB7Q/3HVPnEdYJDQIk57jkntAwSuz9xfSE4n+3I+vHYCli3HoHawN1Z3RfCz/y1zXA/JXjG6cVImQ== +"@babel/plugin-transform-react-pure-annotations@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.24.1.tgz#c86bce22a53956331210d268e49a0ff06e392470" + integrity sha512-+pWEAaDJvSm9aFvJNpLiM2+ktl2Sn2U5DdyiWdZBxmLc6+xGt88dvFqsHiAiDS+8WqUwbDfkKz9jRxK3M0k+kA== dependencies: "@babel/helper-annotate-as-pure" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" -"@babel/plugin-transform-regenerator@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.23.3.tgz#141afd4a2057298602069fce7f2dc5173e6c561c" - integrity sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ== +"@babel/plugin-transform-regenerator@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.24.1.tgz#625b7545bae52363bdc1fbbdc7252b5046409c8c" + integrity sha512-sJwZBCzIBE4t+5Q4IGLaaun5ExVMRY0lYwos/jNecjMrVCygCdph3IKv0tkP5Fc87e/1+bebAmEAGBfnRD+cnw== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" regenerator-transform "^0.15.2" -"@babel/plugin-transform-reserved-words@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.23.3.tgz#4130dcee12bd3dd5705c587947eb715da12efac8" - integrity sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg== +"@babel/plugin-transform-reserved-words@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.24.1.tgz#8de729f5ecbaaf5cf83b67de13bad38a21be57c1" + integrity sha512-JAclqStUfIwKN15HrsQADFgeZt+wexNQ0uLhuqvqAUFoqPMjEcFCYZBhq0LUdz6dZK/mD+rErhW71fbx8RYElg== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" "@babel/plugin-transform-runtime@^7.16.4": - version "7.24.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.24.0.tgz#e308fe27d08b74027d42547081eefaf4f2ffbcc9" - integrity sha512-zc0GA5IitLKJrSfXlXmp8KDqLrnGECK7YRfQBmEKg1NmBOQ7e+KuclBEKJgzifQeUYLdNiAw4B4bjyvzWVLiSA== + version "7.24.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.24.3.tgz#dc58ad4a31810a890550365cc922e1ff5acb5d7f" + integrity sha512-J0BuRPNlNqlMTRJ72eVptpt9VcInbxO6iP3jaxr+1NPhC0UkKL+6oeX6VXMEYdADnuqmMmsBspt4d5w8Y/TCbQ== dependencies: - "@babel/helper-module-imports" "^7.22.15" + "@babel/helper-module-imports" "^7.24.3" "@babel/helper-plugin-utils" "^7.24.0" - babel-plugin-polyfill-corejs2 "^0.4.8" - babel-plugin-polyfill-corejs3 "^0.9.0" - babel-plugin-polyfill-regenerator "^0.5.5" + babel-plugin-polyfill-corejs2 "^0.4.10" + babel-plugin-polyfill-corejs3 "^0.10.1" + babel-plugin-polyfill-regenerator "^0.6.1" semver "^6.3.1" -"@babel/plugin-transform-shorthand-properties@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.23.3.tgz#97d82a39b0e0c24f8a981568a8ed851745f59210" - integrity sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg== +"@babel/plugin-transform-shorthand-properties@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.24.1.tgz#ba9a09144cf55d35ec6b93a32253becad8ee5b55" + integrity sha512-LyjVB1nsJ6gTTUKRjRWx9C1s9hE7dLfP/knKdrfeH9UPtAGjYGgxIbFfx7xyLIEWs7Xe1Gnf8EWiUqfjLhInZA== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" -"@babel/plugin-transform-spread@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.23.3.tgz#41d17aacb12bde55168403c6f2d6bdca563d362c" - integrity sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg== +"@babel/plugin-transform-spread@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.24.1.tgz#a1acf9152cbf690e4da0ba10790b3ac7d2b2b391" + integrity sha512-KjmcIM+fxgY+KxPVbjelJC6hrH1CgtPmTvdXAfn3/a9CnWGSTY7nH4zm5+cjmWJybdcPSsD0++QssDsjcpe47g== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" -"@babel/plugin-transform-sticky-regex@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.23.3.tgz#dec45588ab4a723cb579c609b294a3d1bd22ff04" - integrity sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg== +"@babel/plugin-transform-sticky-regex@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.24.1.tgz#f03e672912c6e203ed8d6e0271d9c2113dc031b9" + integrity sha512-9v0f1bRXgPVcPrngOQvLXeGNNVLc8UjMVfebo9ka0WF3/7+aVUHmaJVT3sa0XCzEFioPfPHZiOcYG9qOsH63cw== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" -"@babel/plugin-transform-template-literals@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.23.3.tgz#5f0f028eb14e50b5d0f76be57f90045757539d07" - integrity sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg== +"@babel/plugin-transform-template-literals@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.24.1.tgz#15e2166873a30d8617e3e2ccadb86643d327aab7" + integrity sha512-WRkhROsNzriarqECASCNu/nojeXCDTE/F2HmRgOzi7NGvyfYGq1NEjKBK3ckLfRgGc6/lPAqP0vDOSw3YtG34g== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" -"@babel/plugin-transform-typeof-symbol@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.23.3.tgz#9dfab97acc87495c0c449014eb9c547d8966bca4" - integrity sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ== +"@babel/plugin-transform-typeof-symbol@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.24.1.tgz#6831f78647080dec044f7e9f68003d99424f94c7" + integrity sha512-CBfU4l/A+KruSUoW+vTQthwcAdwuqbpRNB8HQKlZABwHRhsdHZ9fezp4Sn18PeAlYxTNiLMlx4xUBV3AWfg1BA== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" -"@babel/plugin-transform-typescript@^7.23.3": - version "7.23.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.23.6.tgz#aa36a94e5da8d94339ae3a4e22d40ed287feb34c" - integrity sha512-6cBG5mBvUu4VUD04OHKnYzbuHNP8huDsD3EDqqpIpsswTDoqHCjLoHb6+QgsV1WsT2nipRqCPgxD3LXnEO7XfA== +"@babel/plugin-transform-typescript@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.24.1.tgz#5c05e28bb76c7dfe7d6c5bed9951324fd2d3ab07" + integrity sha512-liYSESjX2fZ7JyBFkYG78nfvHlMKE6IpNdTVnxmlYUR+j5ZLsitFbaAE+eJSK2zPPkNWNw4mXL51rQ8WrvdK0w== dependencies: "@babel/helper-annotate-as-pure" "^7.22.5" - "@babel/helper-create-class-features-plugin" "^7.23.6" - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/plugin-syntax-typescript" "^7.23.3" + "@babel/helper-create-class-features-plugin" "^7.24.1" + "@babel/helper-plugin-utils" "^7.24.0" + "@babel/plugin-syntax-typescript" "^7.24.1" -"@babel/plugin-transform-unicode-escapes@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.23.3.tgz#1f66d16cab01fab98d784867d24f70c1ca65b925" - integrity sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q== +"@babel/plugin-transform-unicode-escapes@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.24.1.tgz#fb3fa16676549ac7c7449db9b342614985c2a3a4" + integrity sha512-RlkVIcWT4TLI96zM660S877E7beKlQw7Ig+wqkKBiWfj0zH5Q4h50q6er4wzZKRNSYpfo6ILJ+hrJAGSX2qcNw== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" -"@babel/plugin-transform-unicode-property-regex@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.23.3.tgz#19e234129e5ffa7205010feec0d94c251083d7ad" - integrity sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA== +"@babel/plugin-transform-unicode-property-regex@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.24.1.tgz#56704fd4d99da81e5e9f0c0c93cabd91dbc4889e" + integrity sha512-Ss4VvlfYV5huWApFsF8/Sq0oXnGO+jB+rijFEFugTd3cwSObUSnUi88djgR5528Csl0uKlrI331kRqe56Ov2Ng== dependencies: "@babel/helper-create-regexp-features-plugin" "^7.22.15" - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" -"@babel/plugin-transform-unicode-regex@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.23.3.tgz#26897708d8f42654ca4ce1b73e96140fbad879dc" - integrity sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw== +"@babel/plugin-transform-unicode-regex@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.24.1.tgz#57c3c191d68f998ac46b708380c1ce4d13536385" + integrity sha512-2A/94wgZgxfTsiLaQ2E36XAOdcZmGAaEEgVmxQWwZXWkGhvoHbaqXcKnU8zny4ycpu3vNqg0L/PcCiYtHtA13g== dependencies: "@babel/helper-create-regexp-features-plugin" "^7.22.15" - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" -"@babel/plugin-transform-unicode-sets-regex@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.23.3.tgz#4fb6f0a719c2c5859d11f6b55a050cc987f3799e" - integrity sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw== +"@babel/plugin-transform-unicode-sets-regex@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.24.1.tgz#c1ea175b02afcffc9cf57a9c4658326625165b7f" + integrity sha512-fqj4WuzzS+ukpgerpAoOnMfQXwUHFxXUZUE84oL2Kao2N8uSlvcpnAidKASgsNgzZHBsHWvcm8s9FPWUhAb8fA== dependencies: "@babel/helper-create-regexp-features-plugin" "^7.22.15" - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" "@babel/preset-env@^7.11.0", "@babel/preset-env@^7.12.1", "@babel/preset-env@^7.14.7", "@babel/preset-env@^7.16.4": - version "7.24.0" - resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.24.0.tgz#11536a7f4b977294f0bdfad780f01a8ac8e183fc" - integrity sha512-ZxPEzV9IgvGn73iK0E6VB9/95Nd7aMFpbE0l8KQFDG70cOV9IxRP7Y2FUPmlK0v6ImlLqYX50iuZ3ZTVhOF2lA== + version "7.24.3" + resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.24.3.tgz#f3f138c844ffeeac372597b29c51b5259e8323a3" + integrity sha512-fSk430k5c2ff8536JcPvPWK4tZDwehWLGlBp0wrsBUjZVdeQV6lePbwKWZaZfK2vnh/1kQX1PzAJWsnBmVgGJA== dependencies: - "@babel/compat-data" "^7.23.5" + "@babel/compat-data" "^7.24.1" "@babel/helper-compilation-targets" "^7.23.6" "@babel/helper-plugin-utils" "^7.24.0" "@babel/helper-validator-option" "^7.23.5" - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.23.3" - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.23.3" - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly" "^7.23.7" + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.24.1" + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.24.1" + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly" "^7.24.1" "@babel/plugin-proposal-private-property-in-object" "7.21.0-placeholder-for-preset-env.2" "@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.23.3" - "@babel/plugin-syntax-import-attributes" "^7.23.3" + "@babel/plugin-syntax-import-assertions" "^7.24.1" + "@babel/plugin-syntax-import-attributes" "^7.24.1" "@babel/plugin-syntax-import-meta" "^7.10.4" "@babel/plugin-syntax-json-strings" "^7.8.3" "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" @@ -1033,58 +1022,58 @@ "@babel/plugin-syntax-private-property-in-object" "^7.14.5" "@babel/plugin-syntax-top-level-await" "^7.14.5" "@babel/plugin-syntax-unicode-sets-regex" "^7.18.6" - "@babel/plugin-transform-arrow-functions" "^7.23.3" - "@babel/plugin-transform-async-generator-functions" "^7.23.9" - "@babel/plugin-transform-async-to-generator" "^7.23.3" - "@babel/plugin-transform-block-scoped-functions" "^7.23.3" - "@babel/plugin-transform-block-scoping" "^7.23.4" - "@babel/plugin-transform-class-properties" "^7.23.3" - "@babel/plugin-transform-class-static-block" "^7.23.4" - "@babel/plugin-transform-classes" "^7.23.8" - "@babel/plugin-transform-computed-properties" "^7.23.3" - "@babel/plugin-transform-destructuring" "^7.23.3" - "@babel/plugin-transform-dotall-regex" "^7.23.3" - "@babel/plugin-transform-duplicate-keys" "^7.23.3" - "@babel/plugin-transform-dynamic-import" "^7.23.4" - "@babel/plugin-transform-exponentiation-operator" "^7.23.3" - "@babel/plugin-transform-export-namespace-from" "^7.23.4" - "@babel/plugin-transform-for-of" "^7.23.6" - "@babel/plugin-transform-function-name" "^7.23.3" - "@babel/plugin-transform-json-strings" "^7.23.4" - "@babel/plugin-transform-literals" "^7.23.3" - "@babel/plugin-transform-logical-assignment-operators" "^7.23.4" - "@babel/plugin-transform-member-expression-literals" "^7.23.3" - "@babel/plugin-transform-modules-amd" "^7.23.3" - "@babel/plugin-transform-modules-commonjs" "^7.23.3" - "@babel/plugin-transform-modules-systemjs" "^7.23.9" - "@babel/plugin-transform-modules-umd" "^7.23.3" + "@babel/plugin-transform-arrow-functions" "^7.24.1" + "@babel/plugin-transform-async-generator-functions" "^7.24.3" + "@babel/plugin-transform-async-to-generator" "^7.24.1" + "@babel/plugin-transform-block-scoped-functions" "^7.24.1" + "@babel/plugin-transform-block-scoping" "^7.24.1" + "@babel/plugin-transform-class-properties" "^7.24.1" + "@babel/plugin-transform-class-static-block" "^7.24.1" + "@babel/plugin-transform-classes" "^7.24.1" + "@babel/plugin-transform-computed-properties" "^7.24.1" + "@babel/plugin-transform-destructuring" "^7.24.1" + "@babel/plugin-transform-dotall-regex" "^7.24.1" + "@babel/plugin-transform-duplicate-keys" "^7.24.1" + "@babel/plugin-transform-dynamic-import" "^7.24.1" + "@babel/plugin-transform-exponentiation-operator" "^7.24.1" + "@babel/plugin-transform-export-namespace-from" "^7.24.1" + "@babel/plugin-transform-for-of" "^7.24.1" + "@babel/plugin-transform-function-name" "^7.24.1" + "@babel/plugin-transform-json-strings" "^7.24.1" + "@babel/plugin-transform-literals" "^7.24.1" + "@babel/plugin-transform-logical-assignment-operators" "^7.24.1" + "@babel/plugin-transform-member-expression-literals" "^7.24.1" + "@babel/plugin-transform-modules-amd" "^7.24.1" + "@babel/plugin-transform-modules-commonjs" "^7.24.1" + "@babel/plugin-transform-modules-systemjs" "^7.24.1" + "@babel/plugin-transform-modules-umd" "^7.24.1" "@babel/plugin-transform-named-capturing-groups-regex" "^7.22.5" - "@babel/plugin-transform-new-target" "^7.23.3" - "@babel/plugin-transform-nullish-coalescing-operator" "^7.23.4" - "@babel/plugin-transform-numeric-separator" "^7.23.4" - "@babel/plugin-transform-object-rest-spread" "^7.24.0" - "@babel/plugin-transform-object-super" "^7.23.3" - "@babel/plugin-transform-optional-catch-binding" "^7.23.4" - "@babel/plugin-transform-optional-chaining" "^7.23.4" - "@babel/plugin-transform-parameters" "^7.23.3" - "@babel/plugin-transform-private-methods" "^7.23.3" - "@babel/plugin-transform-private-property-in-object" "^7.23.4" - "@babel/plugin-transform-property-literals" "^7.23.3" - "@babel/plugin-transform-regenerator" "^7.23.3" - "@babel/plugin-transform-reserved-words" "^7.23.3" - "@babel/plugin-transform-shorthand-properties" "^7.23.3" - "@babel/plugin-transform-spread" "^7.23.3" - "@babel/plugin-transform-sticky-regex" "^7.23.3" - "@babel/plugin-transform-template-literals" "^7.23.3" - "@babel/plugin-transform-typeof-symbol" "^7.23.3" - "@babel/plugin-transform-unicode-escapes" "^7.23.3" - "@babel/plugin-transform-unicode-property-regex" "^7.23.3" - "@babel/plugin-transform-unicode-regex" "^7.23.3" - "@babel/plugin-transform-unicode-sets-regex" "^7.23.3" + "@babel/plugin-transform-new-target" "^7.24.1" + "@babel/plugin-transform-nullish-coalescing-operator" "^7.24.1" + "@babel/plugin-transform-numeric-separator" "^7.24.1" + "@babel/plugin-transform-object-rest-spread" "^7.24.1" + "@babel/plugin-transform-object-super" "^7.24.1" + "@babel/plugin-transform-optional-catch-binding" "^7.24.1" + "@babel/plugin-transform-optional-chaining" "^7.24.1" + "@babel/plugin-transform-parameters" "^7.24.1" + "@babel/plugin-transform-private-methods" "^7.24.1" + "@babel/plugin-transform-private-property-in-object" "^7.24.1" + "@babel/plugin-transform-property-literals" "^7.24.1" + "@babel/plugin-transform-regenerator" "^7.24.1" + "@babel/plugin-transform-reserved-words" "^7.24.1" + "@babel/plugin-transform-shorthand-properties" "^7.24.1" + "@babel/plugin-transform-spread" "^7.24.1" + "@babel/plugin-transform-sticky-regex" "^7.24.1" + "@babel/plugin-transform-template-literals" "^7.24.1" + "@babel/plugin-transform-typeof-symbol" "^7.24.1" + "@babel/plugin-transform-unicode-escapes" "^7.24.1" + "@babel/plugin-transform-unicode-property-regex" "^7.24.1" + "@babel/plugin-transform-unicode-regex" "^7.24.1" + "@babel/plugin-transform-unicode-sets-regex" "^7.24.1" "@babel/preset-modules" "0.1.6-no-external-plugins" - babel-plugin-polyfill-corejs2 "^0.4.8" - babel-plugin-polyfill-corejs3 "^0.9.0" - babel-plugin-polyfill-regenerator "^0.5.5" + babel-plugin-polyfill-corejs2 "^0.4.10" + babel-plugin-polyfill-corejs3 "^0.10.4" + babel-plugin-polyfill-regenerator "^0.6.1" core-js-compat "^3.31.0" semver "^6.3.1" @@ -1098,27 +1087,27 @@ esutils "^2.0.2" "@babel/preset-react@^7.0.0", "@babel/preset-react@^7.12.5", "@babel/preset-react@^7.16.0": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.23.3.tgz#f73ca07e7590f977db07eb54dbe46538cc015709" - integrity sha512-tbkHOS9axH6Ysf2OUEqoSZ6T3Fa2SrNH6WTWSPBboxKzdxNc9qOICeLXkNG0ZEwbQ1HY8liwOce4aN/Ceyuq6w== + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.24.1.tgz#2450c2ac5cc498ef6101a6ca5474de251e33aa95" + integrity sha512-eFa8up2/8cZXLIpkafhaADTXSnl7IsUFCYenRWrARBz0/qZwcT0RBXpys0LJU4+WfPoF2ZG6ew6s2V6izMCwRA== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-validator-option" "^7.22.15" - "@babel/plugin-transform-react-display-name" "^7.23.3" - "@babel/plugin-transform-react-jsx" "^7.22.15" + "@babel/helper-plugin-utils" "^7.24.0" + "@babel/helper-validator-option" "^7.23.5" + "@babel/plugin-transform-react-display-name" "^7.24.1" + "@babel/plugin-transform-react-jsx" "^7.23.4" "@babel/plugin-transform-react-jsx-development" "^7.22.5" - "@babel/plugin-transform-react-pure-annotations" "^7.23.3" + "@babel/plugin-transform-react-pure-annotations" "^7.24.1" "@babel/preset-typescript@^7.16.0", "@babel/preset-typescript@^7.6.0": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.23.3.tgz#14534b34ed5b6d435aa05f1ae1c5e7adcc01d913" - integrity sha512-17oIGVlqz6CchO9RFYn5U6ZpWRZIngayYCtrPRSgANSwC2V1Jb+iP74nVxzzXJte8b8BYxrL1yY96xfhTBrNNQ== + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.24.1.tgz#89bdf13a3149a17b3b2a2c9c62547f06db8845ec" + integrity sha512-1DBaMmRDpuYQBPWD8Pf/WEwCrtgRHxsZnP4mIy9G/X+hFfbI47Q2G4t1Paakld84+qsk2fSsUPMKg71jkoOOaQ== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-validator-option" "^7.22.15" - "@babel/plugin-syntax-jsx" "^7.23.3" - "@babel/plugin-transform-modules-commonjs" "^7.23.3" - "@babel/plugin-transform-typescript" "^7.23.3" + "@babel/helper-plugin-utils" "^7.24.0" + "@babel/helper-validator-option" "^7.23.5" + "@babel/plugin-syntax-jsx" "^7.24.1" + "@babel/plugin-transform-modules-commonjs" "^7.24.1" + "@babel/plugin-transform-typescript" "^7.24.1" "@babel/regjsgen@^0.8.0": version "0.8.0" @@ -1126,9 +1115,9 @@ integrity sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA== "@babel/runtime@^7.0.0", "@babel/runtime@^7.1.2", "@babel/runtime@^7.10.0", "@babel/runtime@^7.11.2", "@babel/runtime@^7.12.5", "@babel/runtime@^7.14.0", "@babel/runtime@^7.14.6", "@babel/runtime@^7.15.4", "@babel/runtime@^7.16.3", "@babel/runtime@^7.2.0", "@babel/runtime@^7.23.2", "@babel/runtime@^7.23.8", "@babel/runtime@^7.5.5", "@babel/runtime@^7.6.2", "@babel/runtime@^7.7.2", "@babel/runtime@^7.8.4": - version "7.24.0" - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.24.0.tgz#584c450063ffda59697021430cb47101b085951e" - integrity sha512-Chk32uHMg6TnQdvw2e9IlqPpFX/6NLuK0Ys2PqLb7/gL5uFn9mXvK715FGLlOLQrcO4qIkNHkvPGktzzXexsFw== + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.24.1.tgz#431f9a794d173b53720e69a6464abc6f0e2a5c57" + integrity sha512-+BIznRzyqBf+2wCTxcKE3wDjfGeCoVE61KSHGpkzqrLi8qxqFwBeUFyId2cxkTmm55fzDGnm0+yCxaxygrLUnQ== dependencies: regenerator-runtime "^0.14.0" @@ -1141,18 +1130,18 @@ "@babel/parser" "^7.24.0" "@babel/types" "^7.24.0" -"@babel/traverse@^7.24.0", "@babel/traverse@^7.7.2": - version "7.24.0" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.24.0.tgz#4a408fbf364ff73135c714a2ab46a5eab2831b1e" - integrity sha512-HfuJlI8qq3dEDmNU5ChzzpZRWq+oxCZQyMzIMEqLho+AQnhMnKQUzH6ydo3RBl/YjPCuk68Y6s0Gx0AeyULiWw== +"@babel/traverse@^7.24.1", "@babel/traverse@^7.7.2": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.24.1.tgz#d65c36ac9dd17282175d1e4a3c49d5b7988f530c" + integrity sha512-xuU6o9m68KeqZbQuDt2TcKSxUw/mrsvavlEqQ1leZ/B+C9tk6E4sRWy97WaXgvq5E+nU3cXMxv3WKOCanVMCmQ== dependencies: - "@babel/code-frame" "^7.23.5" - "@babel/generator" "^7.23.6" + "@babel/code-frame" "^7.24.1" + "@babel/generator" "^7.24.1" "@babel/helper-environment-visitor" "^7.22.20" "@babel/helper-function-name" "^7.23.0" "@babel/helper-hoist-variables" "^7.22.5" "@babel/helper-split-export-declaration" "^7.22.6" - "@babel/parser" "^7.24.0" + "@babel/parser" "^7.24.1" "@babel/types" "^7.24.0" debug "^4.3.1" globals "^11.1.0" @@ -1165,7 +1154,7 @@ "@babel/helper-validator-identifier" "^7.14.9" to-fast-properties "^2.0.0" -"@babel/types@^7.0.0", "@babel/types@^7.12.6", "@babel/types@^7.20.7", "@babel/types@^7.22.15", "@babel/types@^7.22.19", "@babel/types@^7.22.5", "@babel/types@^7.23.0", "@babel/types@^7.23.4", "@babel/types@^7.23.6", "@babel/types@^7.24.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4": +"@babel/types@^7.0.0", "@babel/types@^7.12.6", "@babel/types@^7.20.7", "@babel/types@^7.22.15", "@babel/types@^7.22.19", "@babel/types@^7.22.5", "@babel/types@^7.23.0", "@babel/types@^7.23.4", "@babel/types@^7.24.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4": version "7.24.0" resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.24.0.tgz#3b951f435a92e7333eba05b7566fd297960ea1bf" integrity sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w== @@ -1327,583 +1316,584 @@ debug "^3.1.0" lodash.once "^4.1.1" -"@dhis2-ui/alert@9.4.2": - version "9.4.2" - resolved "https://registry.yarnpkg.com/@dhis2-ui/alert/-/alert-9.4.2.tgz#ee57a87449968717d8b80a27dd9769e9f2569e4d" - integrity sha512-hSxTDZdEGYurESZMkaK/PmD+gc3U6o+0dChOGmlPgV4r+b4/dKdupd3xXS2lRfXWSmB8Q7xfRPzMXFt5F/KZUg== +"@dhis2-ui/alert@9.4.3": + version "9.4.3" + resolved "https://registry.yarnpkg.com/@dhis2-ui/alert/-/alert-9.4.3.tgz#62f628047f8dce01961a7a70aa424504f7beeb57" + integrity sha512-lOHs36Mit3pzRgimvcfeh5o1QvokmNgwFmcOmWp8p+Bqi2GEMOhCeZWAf7RlkS4onfU/YA6oIZMeHjJ9hiPVbA== dependencies: - "@dhis2-ui/portal" "9.4.2" + "@dhis2-ui/portal" "9.4.3" "@dhis2/prop-types" "^3.1.2" - "@dhis2/ui-constants" "9.4.2" - "@dhis2/ui-icons" "9.4.2" + "@dhis2/ui-constants" "9.4.3" + "@dhis2/ui-icons" "9.4.3" classnames "^2.3.1" prop-types "^15.7.2" -"@dhis2-ui/box@9.4.2": - version "9.4.2" - resolved "https://registry.yarnpkg.com/@dhis2-ui/box/-/box-9.4.2.tgz#bb3b0412bbf55bde396f3166b289f6d4d4897ece" - integrity sha512-EvUexG5Gq/VcsOERncR27zDfQYhDy2omGqUXwHu/dTgrIbR9EWSR3fKr0JcpOL/Q37X6K11OQXkRnhlWczlMiQ== +"@dhis2-ui/box@9.4.3": + version "9.4.3" + resolved "https://registry.yarnpkg.com/@dhis2-ui/box/-/box-9.4.3.tgz#7a7766e28ab36775d37e6ff7639e8527b8809b9b" + integrity sha512-RsxKBJkjkER3gAkhhE/JLlQFVSa0u4DrwaFRh+05j4Xr+ssH5ABMSjR21vtHo3M9dzNUt63XXgv191H235sLzw== dependencies: "@dhis2/prop-types" "^3.1.2" - "@dhis2/ui-constants" "9.4.2" + "@dhis2/ui-constants" "9.4.3" classnames "^2.3.1" prop-types "^15.7.2" -"@dhis2-ui/button@9.4.2": - version "9.4.2" - resolved "https://registry.yarnpkg.com/@dhis2-ui/button/-/button-9.4.2.tgz#81283e4f096e9eedd4f164680cc6781c6330369b" - integrity sha512-PaaglsIbnReHWrkwa4iUQoDv6ILC2lUkPf+S1davDZjlYXx+LF9TJXaZpjlRaq+RO8yI4bUaxyHlJGxAihMOpw== +"@dhis2-ui/button@9.4.3": + version "9.4.3" + resolved "https://registry.yarnpkg.com/@dhis2-ui/button/-/button-9.4.3.tgz#0440f3dc390ac9649c1c477452e32e9e61261c1d" + integrity sha512-EXPDMN7t/tCnwxL/8s8TffN6yyakjSEQ8wjGxkaATZR6pt/NfQSlWwVbb7m1MPkjeLOjXwsHtNc/k8atNAHGXQ== dependencies: - "@dhis2-ui/layer" "9.4.2" - "@dhis2-ui/loader" "9.4.2" - "@dhis2-ui/popper" "9.4.2" + "@dhis2-ui/layer" "9.4.3" + "@dhis2-ui/loader" "9.4.3" + "@dhis2-ui/popper" "9.4.3" "@dhis2/prop-types" "^3.1.2" - "@dhis2/ui-constants" "9.4.2" - "@dhis2/ui-icons" "9.4.2" + "@dhis2/ui-constants" "9.4.3" + "@dhis2/ui-icons" "9.4.3" classnames "^2.3.1" prop-types "^15.7.2" -"@dhis2-ui/calendar@9.4.2": - version "9.4.2" - resolved "https://registry.yarnpkg.com/@dhis2-ui/calendar/-/calendar-9.4.2.tgz#3a57fcc89747af8ba1457703dbe565a175052d07" - integrity sha512-XyME946EnTcLxqU6Y1zii9gLNbmYSA0taKpjBHj9arhzslly5J2fpRUkMrkEEnrhl9oq7fErKRYO3qdmk/XyRA== +"@dhis2-ui/calendar@9.4.3": + version "9.4.3" + resolved "https://registry.yarnpkg.com/@dhis2-ui/calendar/-/calendar-9.4.3.tgz#ffe62abdf68dee9b7afd4e4b4dde0c71f6b2ed8a" + integrity sha512-taUBZmCeoTlKr1U9wj2WbymWNg6iEOW8whD8Q6rLLBx6wvn2yLDPJg4A/dQEFUgje42afhzfImrkH80Lt8UtHQ== dependencies: - "@dhis2-ui/button" "9.4.2" - "@dhis2-ui/card" "9.4.2" - "@dhis2-ui/input" "9.4.2" - "@dhis2-ui/layer" "9.4.2" - "@dhis2-ui/popper" "9.4.2" + "@dhis2-ui/button" "9.4.3" + "@dhis2-ui/card" "9.4.3" + "@dhis2-ui/input" "9.4.3" + "@dhis2-ui/layer" "9.4.3" + "@dhis2-ui/popper" "9.4.3" "@dhis2/multi-calendar-dates" "1.0.2" "@dhis2/prop-types" "^3.1.2" - "@dhis2/ui-constants" "9.4.2" - "@dhis2/ui-icons" "9.4.2" + "@dhis2/ui-constants" "9.4.3" + "@dhis2/ui-icons" "9.4.3" classnames "^2.3.1" prop-types "^15.7.2" -"@dhis2-ui/card@9.4.2": - version "9.4.2" - resolved "https://registry.yarnpkg.com/@dhis2-ui/card/-/card-9.4.2.tgz#e43f85396a50b4e662fede310458ff2c5d4e54d9" - integrity sha512-r1tzyuoXIx48+scA3hIkilpkICOBTDCoYkeapy2OC6e/MvQff0fj5Xa4Xk/vG2LDeIG7VhrkrtOtxWBR70rIOw== +"@dhis2-ui/card@9.4.3": + version "9.4.3" + resolved "https://registry.yarnpkg.com/@dhis2-ui/card/-/card-9.4.3.tgz#994052de11162a00daf0e60e47aabd0df4162b23" + integrity sha512-5QyepdsKMGwfRUQ+nERXHfQEtiXHDdXhiVGiwPkV6JByYwM+z49qZH3v7ctOQxyX1Px+j7THfp0RYSEh7DISlA== dependencies: "@dhis2/prop-types" "^3.1.2" - "@dhis2/ui-constants" "9.4.2" + "@dhis2/ui-constants" "9.4.3" classnames "^2.3.1" prop-types "^15.7.2" -"@dhis2-ui/center@9.4.2": - version "9.4.2" - resolved "https://registry.yarnpkg.com/@dhis2-ui/center/-/center-9.4.2.tgz#c90980ed112b0271cfe9cb8de69add04da2999c5" - integrity sha512-SPOv4lOZD020rNs8gYGqf8eGSthaf8gZuE3HVFAJNaJm08jrrihj6jH0wEGWvK/zkrbu5gSTvDZ0hkdFdiTLEg== +"@dhis2-ui/center@9.4.3": + version "9.4.3" + resolved "https://registry.yarnpkg.com/@dhis2-ui/center/-/center-9.4.3.tgz#5b96d1e672921fa418e840a0485e763f81b3951a" + integrity sha512-mM71RjuBwRuvohls3stz+JpqM28NFXDVWZFV7qZFa75GTGtJLkvGaT5g/+hfxlBL3plSfPLN001jCSfGaKiBog== dependencies: "@dhis2/prop-types" "^3.1.2" - "@dhis2/ui-constants" "9.4.2" + "@dhis2/ui-constants" "9.4.3" classnames "^2.3.1" prop-types "^15.7.2" -"@dhis2-ui/checkbox@9.4.2": - version "9.4.2" - resolved "https://registry.yarnpkg.com/@dhis2-ui/checkbox/-/checkbox-9.4.2.tgz#2eb6387d72d20610e0104fd0aa4bec8842c71ca9" - integrity sha512-NW0xbHYjCq/b+h5+BlZap8ptEUSeh1sBjr9pY1vXe/A64ZDmRmX960nUiC3Kd/te6T77gY3oOuabaxNPMqsZ7g== +"@dhis2-ui/checkbox@9.4.3": + version "9.4.3" + resolved "https://registry.yarnpkg.com/@dhis2-ui/checkbox/-/checkbox-9.4.3.tgz#6bace74d49e58118da1c6d158ca88c18c011d58c" + integrity sha512-2sHidyzz+Ss0x4/bFLRpzD8v+BM/f2f6KQRdrU40s+W498R9wZn0KYXqJYG8ClDwOJe0YqoNrDlSHOJcsV+ibQ== dependencies: - "@dhis2-ui/field" "9.4.2" - "@dhis2-ui/required" "9.4.2" + "@dhis2-ui/field" "9.4.3" + "@dhis2-ui/required" "9.4.3" "@dhis2/prop-types" "^3.1.2" - "@dhis2/ui-constants" "9.4.2" + "@dhis2/ui-constants" "9.4.3" classnames "^2.3.1" prop-types "^15.7.2" -"@dhis2-ui/chip@9.4.2": - version "9.4.2" - resolved "https://registry.yarnpkg.com/@dhis2-ui/chip/-/chip-9.4.2.tgz#bd10fc0096836c063b2e78235799ea9129a351ad" - integrity sha512-a9oWmeb5fkcNHeHDCCMGcOIq5CBbssbvPRHDGfJ0E6+gkBS81Tp1IDG/gSs4c9/rEDiunTCx7/P11BbDc3hQVA== +"@dhis2-ui/chip@9.4.3": + version "9.4.3" + resolved "https://registry.yarnpkg.com/@dhis2-ui/chip/-/chip-9.4.3.tgz#c1efcbbef2fe4a34d4ca8cf67874f25a43dc59eb" + integrity sha512-h4UkxiIEHk9+jeUVWAl6Fam0HQ//6qVxCf2vVB61O7LBIprZSjSbGnarITMCGLtDHzkhhvoGTXJUtb8l6pX+cw== dependencies: "@dhis2/prop-types" "^3.1.2" - "@dhis2/ui-constants" "9.4.2" + "@dhis2/ui-constants" "9.4.3" classnames "^2.3.1" prop-types "^15.7.2" -"@dhis2-ui/cover@9.4.2": - version "9.4.2" - resolved "https://registry.yarnpkg.com/@dhis2-ui/cover/-/cover-9.4.2.tgz#8582c2115d8db9e9231c17093f6a808eb142394d" - integrity sha512-jd/7iOXwpf81lBgb9r+O08jFDO6D7dfUrKTuMtZn9k0NPITFh4enbDvB3BOuUOJIJ7/jY6Ynr5QPjkbWyTazmw== +"@dhis2-ui/cover@9.4.3": + version "9.4.3" + resolved "https://registry.yarnpkg.com/@dhis2-ui/cover/-/cover-9.4.3.tgz#cdc4393180f56e1f9cb9f9e8d766e61773d20708" + integrity sha512-5hNt4WHr2zHVzXYcoj97g2Fb2QRZXWXJ+5bz+sOcRSpZD0RearTky4shCFJeNMVbUjvCJCzmLdRBXwpDJH6YsA== dependencies: "@dhis2/prop-types" "^3.1.2" - "@dhis2/ui-constants" "9.4.2" + "@dhis2/ui-constants" "9.4.3" classnames "^2.3.1" prop-types "^15.7.2" -"@dhis2-ui/css@9.4.2": - version "9.4.2" - resolved "https://registry.yarnpkg.com/@dhis2-ui/css/-/css-9.4.2.tgz#144143f1430e5788f64cbbb250b9bc6b27f17ea1" - integrity sha512-Eu2V/ByPJWucrW0hw59tcQIcUrd8aZ4cJcVW6/qubPzox1Em1N8H63RtPLkgj6IZhrn15g9k84ku8RHMXLAsSw== +"@dhis2-ui/css@9.4.3": + version "9.4.3" + resolved "https://registry.yarnpkg.com/@dhis2-ui/css/-/css-9.4.3.tgz#a9b9573a9ca56062ad5a990e943c056a9c1fa939" + integrity sha512-afsj1qv2ltDV03QSjebYB4hw3YZTtQAmjn9SAKXfQE4VlIsWzj2B77ByLvUmqMwsgPOjlkYzdt9Kc5g2uZ3wrQ== dependencies: "@dhis2/prop-types" "^3.1.2" - "@dhis2/ui-constants" "9.4.2" + "@dhis2/ui-constants" "9.4.3" classnames "^2.3.1" prop-types "^15.7.2" -"@dhis2-ui/divider@9.4.2": - version "9.4.2" - resolved "https://registry.yarnpkg.com/@dhis2-ui/divider/-/divider-9.4.2.tgz#b694635e053cbed1e01621e3feb57b9e2a1548ee" - integrity sha512-nbHPlu993UEIJE9ZWhTVBtuuB9StRC3aEAvbT4UM8Pq3rGHeIRN6NKhK9QVkNUxpv0Spcub7T8V6SZVDk7TRgg== +"@dhis2-ui/divider@9.4.3": + version "9.4.3" + resolved "https://registry.yarnpkg.com/@dhis2-ui/divider/-/divider-9.4.3.tgz#c6f934a49a2377044a08def865b607b1e2060a4f" + integrity sha512-knkdyCDxK+NFex0Lu1ucG9BU8e/rsCpGjoU1HzNpnKs1fYJg8+DdbirILmAE4QniywNtiGo4w7xY0N0bX0e0Vg== dependencies: "@dhis2/prop-types" "^3.1.2" - "@dhis2/ui-constants" "9.4.2" + "@dhis2/ui-constants" "9.4.3" classnames "^2.3.1" prop-types "^15.7.2" -"@dhis2-ui/field@9.4.2": - version "9.4.2" - resolved "https://registry.yarnpkg.com/@dhis2-ui/field/-/field-9.4.2.tgz#917e463d6e9e4203a815fad13cd919818f52383f" - integrity sha512-2OV+MLLnVLZBOYZTQuoK+9G2AktZwMR09S8dkIzgQAhjspoTGZ0u8p9Q9aBDuN9FbVTVqslZe3ssB3SJ6y178A== +"@dhis2-ui/field@9.4.3": + version "9.4.3" + resolved "https://registry.yarnpkg.com/@dhis2-ui/field/-/field-9.4.3.tgz#b8b006e667cf443fb15fe05a51369cbea564f7c2" + integrity sha512-XEOQ+t/yORg3FiQyqqjD58LJ2faGoMJWvLO1EhM0Tt2P+MPxka+5reEe9MQzouOyyl/dRw5m5jisTHrkONMMig== dependencies: - "@dhis2-ui/box" "9.4.2" - "@dhis2-ui/help" "9.4.2" - "@dhis2-ui/label" "9.4.2" + "@dhis2-ui/box" "9.4.3" + "@dhis2-ui/help" "9.4.3" + "@dhis2-ui/label" "9.4.3" "@dhis2/prop-types" "^3.1.2" - "@dhis2/ui-constants" "9.4.2" + "@dhis2/ui-constants" "9.4.3" classnames "^2.3.1" prop-types "^15.7.2" -"@dhis2-ui/file-input@9.4.2": - version "9.4.2" - resolved "https://registry.yarnpkg.com/@dhis2-ui/file-input/-/file-input-9.4.2.tgz#3e6bd2a38a328413f77066e451b63189b28b58cc" - integrity sha512-QKpLbd9rxVqAunsaNqdMrkdo0VOil/UznfFd+mqYIlb1mzoRVF9EQinvs7GVdN1f+2JHpGTTRpIYkWwyM7NETQ== +"@dhis2-ui/file-input@9.4.3": + version "9.4.3" + resolved "https://registry.yarnpkg.com/@dhis2-ui/file-input/-/file-input-9.4.3.tgz#5c3a1c235ada95a125d4bd4ed3926e16c07b9f34" + integrity sha512-45FcrLQvNJtgqMwNGmW9Yx+EpkTqFDImRrFwq0t9dWL7UTaY7Ww5UM7iFAFRAIBKctKt8rVSYENhdbEn2suQwQ== dependencies: - "@dhis2-ui/button" "9.4.2" - "@dhis2-ui/field" "9.4.2" - "@dhis2-ui/label" "9.4.2" - "@dhis2-ui/loader" "9.4.2" - "@dhis2-ui/status-icon" "9.4.2" + "@dhis2-ui/button" "9.4.3" + "@dhis2-ui/field" "9.4.3" + "@dhis2-ui/label" "9.4.3" + "@dhis2-ui/loader" "9.4.3" + "@dhis2-ui/status-icon" "9.4.3" "@dhis2/prop-types" "^3.1.2" - "@dhis2/ui-constants" "9.4.2" - "@dhis2/ui-icons" "9.4.2" + "@dhis2/ui-constants" "9.4.3" + "@dhis2/ui-icons" "9.4.3" classnames "^2.3.1" prop-types "^15.7.2" -"@dhis2-ui/header-bar@9.4.2": - version "9.4.2" - resolved "https://registry.yarnpkg.com/@dhis2-ui/header-bar/-/header-bar-9.4.2.tgz#d1031a751db43bd5d10b37714b4e9578556b7576" - integrity sha512-PGtjJZppch4K8SdyE0nUEl9Zae+svYn1qmJtVONbhB1xdL/ae/V/GcLr8XVDmRRrk4x0wlgn8zITU6I6pF4cYg== - dependencies: - "@dhis2-ui/box" "9.4.2" - "@dhis2-ui/button" "9.4.2" - "@dhis2-ui/card" "9.4.2" - "@dhis2-ui/center" "9.4.2" - "@dhis2-ui/divider" "9.4.2" - "@dhis2-ui/input" "9.4.2" - "@dhis2-ui/layer" "9.4.2" - "@dhis2-ui/loader" "9.4.2" - "@dhis2-ui/logo" "9.4.2" - "@dhis2-ui/menu" "9.4.2" - "@dhis2-ui/modal" "9.4.2" - "@dhis2-ui/user-avatar" "9.4.2" +"@dhis2-ui/header-bar@9.4.3": + version "9.4.3" + resolved "https://registry.yarnpkg.com/@dhis2-ui/header-bar/-/header-bar-9.4.3.tgz#666af097b2c8058ea1ff733e26abd5cfd2ba7074" + integrity sha512-2D4QHXXnnSdOTiocHdzjOFyiBMQnF/E9fAmO46MvwJ1s9+TNl5hBMN5kbCwzxVlgoF/3UXcHIQ7n/EO7rNPlZw== + dependencies: + "@dhis2-ui/box" "9.4.3" + "@dhis2-ui/button" "9.4.3" + "@dhis2-ui/card" "9.4.3" + "@dhis2-ui/center" "9.4.3" + "@dhis2-ui/divider" "9.4.3" + "@dhis2-ui/input" "9.4.3" + "@dhis2-ui/layer" "9.4.3" + "@dhis2-ui/loader" "9.4.3" + "@dhis2-ui/logo" "9.4.3" + "@dhis2-ui/menu" "9.4.3" + "@dhis2-ui/modal" "9.4.3" + "@dhis2-ui/user-avatar" "9.4.3" "@dhis2/prop-types" "^3.1.2" - "@dhis2/ui-constants" "9.4.2" - "@dhis2/ui-icons" "9.4.2" + "@dhis2/ui-constants" "9.4.3" + "@dhis2/ui-icons" "9.4.3" classnames "^2.3.1" moment "^2.29.1" prop-types "^15.7.2" -"@dhis2-ui/help@9.4.2": - version "9.4.2" - resolved "https://registry.yarnpkg.com/@dhis2-ui/help/-/help-9.4.2.tgz#1fdfd62fbd4c2fff39e0306ac4374c1178454413" - integrity sha512-l8F/YdrNL5F7GnDpqs+3FJ4ZbDckSux9+5hANO6dXKT60QZINkDchxBr5KtYnApoe/JuyF3+0g84hCZnd8mI/A== +"@dhis2-ui/help@9.4.3": + version "9.4.3" + resolved "https://registry.yarnpkg.com/@dhis2-ui/help/-/help-9.4.3.tgz#6bb24d0ebabe26a2b85f453df64e8f07fa52a797" + integrity sha512-ufYCWORYaEZk5XbNJ8jeS3hmfERnbjEK4+tsClsU2L4yMzu9vB4cpeG0sXD5Tyim7Sw1OO2+tdT9mV40p3jmVw== dependencies: "@dhis2/prop-types" "^3.1.2" - "@dhis2/ui-constants" "9.4.2" + "@dhis2/ui-constants" "9.4.3" classnames "^2.3.1" prop-types "^15.7.2" -"@dhis2-ui/input@9.4.2": - version "9.4.2" - resolved "https://registry.yarnpkg.com/@dhis2-ui/input/-/input-9.4.2.tgz#d8d2810c97efe654e96266bb02b0745709c2182b" - integrity sha512-s/lYVTMlqjzawQdD6GOTzCiqrDkIp/asrSD8iOzM6gwD53OSEZa0HQhIBBW+y4YfW5i09/BExJGi4C9VQ0PpFQ== +"@dhis2-ui/input@9.4.3": + version "9.4.3" + resolved "https://registry.yarnpkg.com/@dhis2-ui/input/-/input-9.4.3.tgz#99779bfddfc8aa557df3202f1f6bfb489234f30f" + integrity sha512-9sXfZpNOSAodfHRNBGOokxSTYvhr7u8irqmNYgtCYCb2jl4wJ3lXBOvBM4hPNxThhM61HV3WMD4SAWRD22O9fQ== dependencies: - "@dhis2-ui/box" "9.4.2" - "@dhis2-ui/field" "9.4.2" - "@dhis2-ui/input" "9.4.2" - "@dhis2-ui/loader" "9.4.2" - "@dhis2-ui/status-icon" "9.4.2" + "@dhis2-ui/box" "9.4.3" + "@dhis2-ui/field" "9.4.3" + "@dhis2-ui/input" "9.4.3" + "@dhis2-ui/loader" "9.4.3" + "@dhis2-ui/status-icon" "9.4.3" "@dhis2/prop-types" "^3.1.2" - "@dhis2/ui-constants" "9.4.2" - "@dhis2/ui-icons" "9.4.2" + "@dhis2/ui-constants" "9.4.3" + "@dhis2/ui-icons" "9.4.3" classnames "^2.3.1" prop-types "^15.7.2" -"@dhis2-ui/intersection-detector@9.4.2": - version "9.4.2" - resolved "https://registry.yarnpkg.com/@dhis2-ui/intersection-detector/-/intersection-detector-9.4.2.tgz#8562692539dad5c6bfb4a9ec0df53646d3480e68" - integrity sha512-YblS3MuibJrYyLl4nnT4eQ3NZi8RZ85bnKp87ldp8h6BcvoRvJWW5IJR7gjNqq/iT0ckVhRKBZaldMsY9PI/ZQ== +"@dhis2-ui/intersection-detector@9.4.3": + version "9.4.3" + resolved "https://registry.yarnpkg.com/@dhis2-ui/intersection-detector/-/intersection-detector-9.4.3.tgz#4b2df40f73ab6b76d0f94b8721546ab42232e96d" + integrity sha512-Ag+KkVLcNyMCjvre/zmK78UnLpQGT/psogPNgKSh14nlGdyL3gAQcmqF4AnWmBQ07+0fL9hOIv4AIqyVNeYJEQ== dependencies: "@dhis2/prop-types" "^3.1.2" - "@dhis2/ui-constants" "9.4.2" + "@dhis2/ui-constants" "9.4.3" classnames "^2.3.1" prop-types "^15.7.2" -"@dhis2-ui/label@9.4.2": - version "9.4.2" - resolved "https://registry.yarnpkg.com/@dhis2-ui/label/-/label-9.4.2.tgz#0a046eb4cb23f90a22d2e1ad3483c37e6b06e700" - integrity sha512-Rs4igunIpX1D92LHlIobFj/wthsmAV43hAi4tT+xyhEcruSArCKRPBk2iYyyVLyxPbvOYw7ebl6E9ahrhRIS5w== +"@dhis2-ui/label@9.4.3": + version "9.4.3" + resolved "https://registry.yarnpkg.com/@dhis2-ui/label/-/label-9.4.3.tgz#9ebab25a734baab05a1680d577bd11cf8d94a086" + integrity sha512-Gv6GUVqQJWAz4jvqx6DbNDxszH3YhZlE6EOR3067AXESoQaAiq4Uwkaf2Gs0vdzS1t9vCoG39Qd8w+4D8Ufl7A== dependencies: - "@dhis2-ui/required" "9.4.2" + "@dhis2-ui/required" "9.4.3" "@dhis2/prop-types" "^3.1.2" - "@dhis2/ui-constants" "9.4.2" + "@dhis2/ui-constants" "9.4.3" classnames "^2.3.1" prop-types "^15.7.2" -"@dhis2-ui/layer@9.4.2": - version "9.4.2" - resolved "https://registry.yarnpkg.com/@dhis2-ui/layer/-/layer-9.4.2.tgz#339d9c89a4f496b52f9329f3f501e9d24de32c77" - integrity sha512-6YSmz6dJ0fhYWsy3GUmBJacXblUGQo+wbxRdEzmJcdyTJVcz9AeY4JhHaGu+DPRMe3360B8D0oOXKl4g+0SqpQ== +"@dhis2-ui/layer@9.4.3": + version "9.4.3" + resolved "https://registry.yarnpkg.com/@dhis2-ui/layer/-/layer-9.4.3.tgz#9cd91dcc8999a9270936fc899262a96f6684088b" + integrity sha512-Cf0zDpwDNfVItg8/h2rVzUQQBY1QBJBYLIw/Lal5YUrJS0hie8yZA5SkxB7su1PYJGirC4Zv96hkrfu5z2OMlA== dependencies: - "@dhis2-ui/portal" "9.4.2" + "@dhis2-ui/portal" "9.4.3" "@dhis2/prop-types" "^3.1.2" - "@dhis2/ui-constants" "9.4.2" + "@dhis2/ui-constants" "9.4.3" classnames "^2.3.1" prop-types "^15.7.2" -"@dhis2-ui/legend@9.4.2": - version "9.4.2" - resolved "https://registry.yarnpkg.com/@dhis2-ui/legend/-/legend-9.4.2.tgz#98b69c79b483e79aeb6f2c1b8d218d90c3053e1a" - integrity sha512-qqd7/zN4+/67Xmr9toW/+ah61uRVo18FACUwozHgKSldd4R0wePApAqYcaVyZ+n8XiiPHZcJIU1A2x6OCjP4sw== +"@dhis2-ui/legend@9.4.3": + version "9.4.3" + resolved "https://registry.yarnpkg.com/@dhis2-ui/legend/-/legend-9.4.3.tgz#bf1461062aa05e8aefe36356e38437ef1a6d765e" + integrity sha512-Qwxp+VCsGid3gr3uDxuncdUEw3t1R/jjduArz7VdXlzIH07/gcBOjICCG5iTcTx4ZBix5ffIQ1Od1Fq8sJZ82w== dependencies: - "@dhis2-ui/required" "9.4.2" + "@dhis2-ui/required" "9.4.3" "@dhis2/prop-types" "^3.1.2" - "@dhis2/ui-constants" "9.4.2" + "@dhis2/ui-constants" "9.4.3" classnames "^2.3.1" prop-types "^15.7.2" -"@dhis2-ui/loader@9.4.2": - version "9.4.2" - resolved "https://registry.yarnpkg.com/@dhis2-ui/loader/-/loader-9.4.2.tgz#58f4bacb39c520d7b9f0af4876ba35639cad3aae" - integrity sha512-OPrtGNzR5wJpwXs4i8ylyhiyNky2/mgjhaq7YF86DUDiiuyIDAwYH0WttipdgKMo50SIsXDCu0McrM7s9eNGnA== +"@dhis2-ui/loader@9.4.3": + version "9.4.3" + resolved "https://registry.yarnpkg.com/@dhis2-ui/loader/-/loader-9.4.3.tgz#41f8a212c7c9a3c62be3c087e0f6ec5838695238" + integrity sha512-zSLASWqLuIsHgMsu7YC5fV55/8JaO99FDXMPh78ezcJgT3kZ3h07tzbJi5fDltLlJ48Er5lCdDFliwfCPH9vVA== dependencies: "@dhis2/prop-types" "^3.1.2" - "@dhis2/ui-constants" "9.4.2" + "@dhis2/ui-constants" "9.4.3" classnames "^2.3.1" prop-types "^15.7.2" -"@dhis2-ui/logo@9.4.2": - version "9.4.2" - resolved "https://registry.yarnpkg.com/@dhis2-ui/logo/-/logo-9.4.2.tgz#13cf228e18df04726dde66b0ec0a467e30246a66" - integrity sha512-Fpru8TkDS644PPtBzCz0GLZZpQsFRxZ50lAyR489fAnUCA6MC87Sux58z3/VfUv0himSpqMYGd46QFbsGou0+g== +"@dhis2-ui/logo@9.4.3": + version "9.4.3" + resolved "https://registry.yarnpkg.com/@dhis2-ui/logo/-/logo-9.4.3.tgz#9479533737626dab0285445e117776110a475ee6" + integrity sha512-+LEH9n9ZlB289W5wfYfyIhCFPtLnEqQKuWjItrnSmd7bcqocH/wPH0mVtm7GPt8IxhSBMqDidJd1yIhyMMpXhQ== dependencies: "@dhis2/prop-types" "^3.1.2" - "@dhis2/ui-constants" "9.4.2" + "@dhis2/ui-constants" "9.4.3" classnames "^2.3.1" prop-types "^15.7.2" -"@dhis2-ui/menu@9.4.2": - version "9.4.2" - resolved "https://registry.yarnpkg.com/@dhis2-ui/menu/-/menu-9.4.2.tgz#bbf8f4ecbc9abadf0742a9e04ba03d1b34730881" - integrity sha512-bPXXEkm1+l/NL1KHZ4+y0xrJxLZcKl6ynrJcIe2paPtmkvb/0lVJqbrX6bycddHsQga6WVB7oHiDoYGoaKusrw== +"@dhis2-ui/menu@9.4.3": + version "9.4.3" + resolved "https://registry.yarnpkg.com/@dhis2-ui/menu/-/menu-9.4.3.tgz#9042c76f9257f8eaac9eaa8d9f3ffc6eafda8d6b" + integrity sha512-noVyX3Qc4dU+uhD5msbNS6uiUBpxdo9e3unyh56piuBQSseafsGepZIr3lLUs1bWOfIfTrXt/RYnvtXWlkjS7w== dependencies: - "@dhis2-ui/card" "9.4.2" - "@dhis2-ui/divider" "9.4.2" - "@dhis2-ui/layer" "9.4.2" - "@dhis2-ui/popper" "9.4.2" - "@dhis2-ui/portal" "9.4.2" + "@dhis2-ui/card" "9.4.3" + "@dhis2-ui/divider" "9.4.3" + "@dhis2-ui/layer" "9.4.3" + "@dhis2-ui/popper" "9.4.3" + "@dhis2-ui/portal" "9.4.3" "@dhis2/prop-types" "^3.1.2" - "@dhis2/ui-constants" "9.4.2" - "@dhis2/ui-icons" "9.4.2" + "@dhis2/ui-constants" "9.4.3" + "@dhis2/ui-icons" "9.4.3" classnames "^2.3.1" prop-types "^15.7.2" -"@dhis2-ui/modal@9.4.2": - version "9.4.2" - resolved "https://registry.yarnpkg.com/@dhis2-ui/modal/-/modal-9.4.2.tgz#db952f15cdcfd5c40c45f9dde268c948c6315352" - integrity sha512-u0fF7uVS0twk1QJsv6hcUfjk6BXKSaA74vyYGkR5wWxXMbHUJLqgk+DHjUstBvK+u4oYJXwFiJKA6bGKee9Dug== +"@dhis2-ui/modal@9.4.3": + version "9.4.3" + resolved "https://registry.yarnpkg.com/@dhis2-ui/modal/-/modal-9.4.3.tgz#402d687a231076992ae671e9029f6bb83c8bb2b8" + integrity sha512-7hV8kB4hdoNxiRNWO32Sb78PkRvfDxnh2QSrExnjO/C+hYyhnjkVfCshgEMdyO4WnASKe8gUIMwkLf+v6T3nOg== dependencies: - "@dhis2-ui/card" "9.4.2" - "@dhis2-ui/center" "9.4.2" - "@dhis2-ui/layer" "9.4.2" - "@dhis2-ui/portal" "9.4.2" + "@dhis2-ui/card" "9.4.3" + "@dhis2-ui/center" "9.4.3" + "@dhis2-ui/layer" "9.4.3" + "@dhis2-ui/portal" "9.4.3" "@dhis2/prop-types" "^3.1.2" - "@dhis2/ui-constants" "9.4.2" - "@dhis2/ui-icons" "9.4.2" + "@dhis2/ui-constants" "9.4.3" + "@dhis2/ui-icons" "9.4.3" classnames "^2.3.1" prop-types "^15.7.2" -"@dhis2-ui/node@9.4.2": - version "9.4.2" - resolved "https://registry.yarnpkg.com/@dhis2-ui/node/-/node-9.4.2.tgz#4837b983e8c7cb138d73d74c25bcbde377d7aaad" - integrity sha512-5bUTZdYJcGOsx8x1IPWm1hou3zlbBq46vC1ignh8OdrFdZf8u7/e2ZOe8GpN9m/BcRAnl4AOvQe7dQ9u3t+g6g== +"@dhis2-ui/node@9.4.3": + version "9.4.3" + resolved "https://registry.yarnpkg.com/@dhis2-ui/node/-/node-9.4.3.tgz#690bb1069efa8d6e1087efb21905ccafbd31768e" + integrity sha512-dxhe/Jb79mRellWU6nMTh5Mkuve6brTQ1j255l+xjPzDkQCU5UMRJ9YrijdrLFyD2nBO0868BUUutwHegyvYJw== dependencies: - "@dhis2-ui/loader" "9.4.2" + "@dhis2-ui/loader" "9.4.3" "@dhis2/prop-types" "^3.1.2" - "@dhis2/ui-constants" "9.4.2" + "@dhis2/ui-constants" "9.4.3" classnames "^2.3.1" prop-types "^15.7.2" -"@dhis2-ui/notice-box@9.4.2": - version "9.4.2" - resolved "https://registry.yarnpkg.com/@dhis2-ui/notice-box/-/notice-box-9.4.2.tgz#de05d2fbeb983e7e09189857e6639a973068848e" - integrity sha512-skoUUbti/v4pe3VIJRh+ealWSyIu+vrdjtrRuO/tn39zkZ2JKOgzfYazUPisyaI5uVjup3+3wlAnRkf8vy6jIw== +"@dhis2-ui/notice-box@9.4.3": + version "9.4.3" + resolved "https://registry.yarnpkg.com/@dhis2-ui/notice-box/-/notice-box-9.4.3.tgz#48ba69fa439b9bdee85190ae40baad55b995cd36" + integrity sha512-z0hiOA4wnzcZZKX4lXCQp6dt5j8c6virnUn5uBhKGCsWzrfRYUaKjn/pUQVHiMlysO9lsw3IdyHC79pEIp74jg== dependencies: "@dhis2/prop-types" "^3.1.2" - "@dhis2/ui-constants" "9.4.2" - "@dhis2/ui-icons" "9.4.2" + "@dhis2/ui-constants" "9.4.3" + "@dhis2/ui-icons" "9.4.3" classnames "^2.3.1" prop-types "^15.7.2" -"@dhis2-ui/organisation-unit-tree@9.4.2": - version "9.4.2" - resolved "https://registry.yarnpkg.com/@dhis2-ui/organisation-unit-tree/-/organisation-unit-tree-9.4.2.tgz#9208b700db840587ed2891421d377e811e1a2c35" - integrity sha512-XTaWcE3caiEt6Ucbm8ekB0cMypTt3w3/VXozVc3a9OcgvoID3cGKuXWDrTgBsUaTZxKEBhNn/hkR6o36JHxF9Q== +"@dhis2-ui/organisation-unit-tree@9.4.3": + version "9.4.3" + resolved "https://registry.yarnpkg.com/@dhis2-ui/organisation-unit-tree/-/organisation-unit-tree-9.4.3.tgz#00c00ab39f811be0f7dc885141bf178093f3799d" + integrity sha512-q4qdEXGFbsWBkmgII6r2tbVPetQyxS1Sh9/B8vAeSAKBTPXmOKagE0bDH0gwqqoUVGLtLUjGxWYiNhi3uJyTpQ== dependencies: - "@dhis2-ui/checkbox" "9.4.2" - "@dhis2-ui/loader" "9.4.2" - "@dhis2-ui/node" "9.4.2" + "@dhis2-ui/checkbox" "9.4.3" + "@dhis2-ui/loader" "9.4.3" + "@dhis2-ui/node" "9.4.3" "@dhis2/prop-types" "^3.1.2" - "@dhis2/ui-constants" "9.4.2" + "@dhis2/ui-constants" "9.4.3" classnames "^2.3.1" prop-types "^15.7.2" -"@dhis2-ui/pagination@9.4.2": - version "9.4.2" - resolved "https://registry.yarnpkg.com/@dhis2-ui/pagination/-/pagination-9.4.2.tgz#24d372fdf765c1761fb46a3a97dba3652e4ccc4b" - integrity sha512-bMcAWmW3+bpWI4TY70k4C+CmTObhhJ296nsCMK1shecNkBT52X9SnfPq1azpgth8SQjfOk2nJ80dQPBJ9Clu2g== +"@dhis2-ui/pagination@9.4.3": + version "9.4.3" + resolved "https://registry.yarnpkg.com/@dhis2-ui/pagination/-/pagination-9.4.3.tgz#9c5172a74feb10a795866c9f44a98a7a5a80c3b0" + integrity sha512-2k0/ty57+MgvwCzKad+90Vbu3muHvCBVgoQ2wX8UMWyH0bGPSnSx/0n6NaUBRISmz4EQF1GNcuNOKnWZREkSfQ== dependencies: - "@dhis2-ui/button" "9.4.2" - "@dhis2-ui/select" "9.4.2" + "@dhis2-ui/button" "9.4.3" + "@dhis2-ui/select" "9.4.3" "@dhis2/prop-types" "^3.1.2" - "@dhis2/ui-constants" "9.4.2" - "@dhis2/ui-icons" "9.4.2" + "@dhis2/ui-constants" "9.4.3" + "@dhis2/ui-icons" "9.4.3" classnames "^2.3.1" prop-types "^15.7.2" -"@dhis2-ui/popover@9.4.2": - version "9.4.2" - resolved "https://registry.yarnpkg.com/@dhis2-ui/popover/-/popover-9.4.2.tgz#4a4dc93b1c1c46b6afa34a2750a938ada9cecde0" - integrity sha512-1xHnFuIMTl7FzYr12jeQPEF5KgV9c8kXj3XgwfPEkzPjnSy3WzSklnSYAswRJIJqsEDR5cclQ6X+y+hFHSgh2Q== +"@dhis2-ui/popover@9.4.3": + version "9.4.3" + resolved "https://registry.yarnpkg.com/@dhis2-ui/popover/-/popover-9.4.3.tgz#2ed3b6b5ad6540982c648bb0aecca4168e0ed34b" + integrity sha512-uP0gB/doUZ9CHH/9J8+Zb796Erda5z7GhEJFvbq+irOwKYwRR2dfrac2K0qlAOmwX4VjZKAFyMdsEMFNvyXB4Q== dependencies: - "@dhis2-ui/layer" "9.4.2" - "@dhis2-ui/popper" "9.4.2" + "@dhis2-ui/layer" "9.4.3" + "@dhis2-ui/popper" "9.4.3" "@dhis2/prop-types" "^3.1.2" - "@dhis2/ui-constants" "9.4.2" + "@dhis2/ui-constants" "9.4.3" classnames "^2.3.1" prop-types "^15.7.2" -"@dhis2-ui/popper@9.4.2": - version "9.4.2" - resolved "https://registry.yarnpkg.com/@dhis2-ui/popper/-/popper-9.4.2.tgz#eac5b0d695f067892a8e8259243f306a9cf85e3c" - integrity sha512-8me9hxXs6GXpqC/8nzsuDtqtl8VmuIVss4idVLy/tLCqEKbxV8Hll0+3YLhJiWzUAIZ6YgTO2OzHcVVGE61nWw== +"@dhis2-ui/popper@9.4.3": + version "9.4.3" + resolved "https://registry.yarnpkg.com/@dhis2-ui/popper/-/popper-9.4.3.tgz#4fa1ce4893988f1cb03e2ee11b358940c65468ff" + integrity sha512-1ETf832VWh2lZOWkJw0YcftyPkOOsX/jVTKJWI2bQG/Sck5aMTc5GU53mg5CowxOFU09yiM9OL5FD/ljey56gg== dependencies: "@dhis2/prop-types" "^3.1.2" - "@dhis2/ui-constants" "9.4.2" + "@dhis2/ui-constants" "9.4.3" "@popperjs/core" "^2.10.1" classnames "^2.3.1" prop-types "^15.7.2" react-popper "^2.2.5" resize-observer-polyfill "^1.5.1" -"@dhis2-ui/portal@9.4.2": - version "9.4.2" - resolved "https://registry.yarnpkg.com/@dhis2-ui/portal/-/portal-9.4.2.tgz#276578538e7452caabfb960bcdf400c4b4b06858" - integrity sha512-2565A++jWOIxCA7Ozu5Fi3OKWyBKh/bFldDSmiwODhVuQisUhH64OUAyPm21xX84oXWaPCGGWI3NQt9zj4o+gA== +"@dhis2-ui/portal@9.4.3": + version "9.4.3" + resolved "https://registry.yarnpkg.com/@dhis2-ui/portal/-/portal-9.4.3.tgz#3f72d076c869ebaa0d495d421a872fc1d944acb6" + integrity sha512-v8+1WveMDJKpfoiEfsdF5tju8pzZpilIRIAzoMv636ehPg3jNdwsNUMA4QWL+pO+MjtULIcVjB1e4bdra/cREA== dependencies: classnames "^2.3.1" prop-types "^15.7.2" -"@dhis2-ui/radio@9.4.2": - version "9.4.2" - resolved "https://registry.yarnpkg.com/@dhis2-ui/radio/-/radio-9.4.2.tgz#d359749b4b26cd06c2b0fa150dc0402e7bab4545" - integrity sha512-DNS5XrVcyDU8fQq5G5/Y2tclaqTxT1cKuhbxxlZaBbYc/r1vn+9Zlsh/+zZmGDHQKBK3rlFOfDPiuenIhDhdmg== +"@dhis2-ui/radio@9.4.3": + version "9.4.3" + resolved "https://registry.yarnpkg.com/@dhis2-ui/radio/-/radio-9.4.3.tgz#c7f40a156ed9cd4362b6ac135356c30285d638bd" + integrity sha512-RNbanxBN631xuibjpRo1Agk47ZLFK2Kcoe9O81OyZzZEdDdcT0SiLaXdN9EqIhn2GpU4TJqj4Ky+KA4r1UNvLA== dependencies: "@dhis2/prop-types" "^3.1.2" - "@dhis2/ui-constants" "9.4.2" + "@dhis2/ui-constants" "9.4.3" classnames "^2.3.1" prop-types "^15.7.2" -"@dhis2-ui/required@9.4.2": - version "9.4.2" - resolved "https://registry.yarnpkg.com/@dhis2-ui/required/-/required-9.4.2.tgz#80635f94959af93106efdce780f0ad0d9143ffa2" - integrity sha512-MEx9GKZwhLwh1WQX/HwCj8nnEH+GOUAr/PdrLWTMpbD8/b0iKdRyq+2tCNyMy29mUKCkCZUMWLc0VZxE5ng6iw== +"@dhis2-ui/required@9.4.3": + version "9.4.3" + resolved "https://registry.yarnpkg.com/@dhis2-ui/required/-/required-9.4.3.tgz#71a190295a2607dc104a228154163a111f357ac0" + integrity sha512-XEdTPqOcgu8Qwuhbyekqk3WEl8XQvEha2tvTywsBLyimD5bIBf7Z46U7h/8fKXIMySangyk62e99q2PcE/Bt9g== dependencies: "@dhis2/prop-types" "^3.1.2" - "@dhis2/ui-constants" "9.4.2" + "@dhis2/ui-constants" "9.4.3" classnames "^2.3.1" prop-types "^15.7.2" -"@dhis2-ui/segmented-control@9.4.2": - version "9.4.2" - resolved "https://registry.yarnpkg.com/@dhis2-ui/segmented-control/-/segmented-control-9.4.2.tgz#e446ef61bfa67bc983852d5cfa2f26ae9a6fa04b" - integrity sha512-rFmuHpnnsL7EGDGoOLkhU9DcdEfUP4f+W0X/ynze5Kh9R8IsE2ryxQE7OEMRIPe6BhNuS++BBl+3OXb2z1/pHw== +"@dhis2-ui/segmented-control@9.4.3": + version "9.4.3" + resolved "https://registry.yarnpkg.com/@dhis2-ui/segmented-control/-/segmented-control-9.4.3.tgz#e1b4577b79402cde2d89b6966ac695f6f62ca405" + integrity sha512-LqrfMjaANacTaydHHlZwQYcxaDI+/Wkw4Rfsm1L0ISatpqEmGN3XEAeJs/TV9pOLvELYai9UZMtLEtnPt2urFg== dependencies: "@dhis2/prop-types" "^3.1.2" - "@dhis2/ui-constants" "9.4.2" + "@dhis2/ui-constants" "9.4.3" classnames "^2.3.1" prop-types "^15.7.2" -"@dhis2-ui/select@9.4.2": - version "9.4.2" - resolved "https://registry.yarnpkg.com/@dhis2-ui/select/-/select-9.4.2.tgz#f286e0b40e7a1f0a089781abcee35241caa1769e" - integrity sha512-SKlvddAP+tleOkQ6W7yGYsBYWBpfbeCHfKvGRD/0Jp9ZBTHRi7OOopdTpmqY111xbvabLcxP3NkZtDuTFd6pCw== - dependencies: - "@dhis2-ui/box" "9.4.2" - "@dhis2-ui/button" "9.4.2" - "@dhis2-ui/card" "9.4.2" - "@dhis2-ui/checkbox" "9.4.2" - "@dhis2-ui/chip" "9.4.2" - "@dhis2-ui/field" "9.4.2" - "@dhis2-ui/input" "9.4.2" - "@dhis2-ui/layer" "9.4.2" - "@dhis2-ui/loader" "9.4.2" - "@dhis2-ui/popper" "9.4.2" - "@dhis2-ui/status-icon" "9.4.2" +"@dhis2-ui/select@9.4.3": + version "9.4.3" + resolved "https://registry.yarnpkg.com/@dhis2-ui/select/-/select-9.4.3.tgz#3963a2a0fa3710ea222bf7754a205d77eb4a6a9f" + integrity sha512-TBPloheNPvi78VmEPI8aNd4NvBJtmAyT9EOVOh1C8a2XbR3SNeNTK/dDs+uTLfP3y4+dAwGQpZLphnZkIp2rNw== + dependencies: + "@dhis2-ui/box" "9.4.3" + "@dhis2-ui/button" "9.4.3" + "@dhis2-ui/card" "9.4.3" + "@dhis2-ui/checkbox" "9.4.3" + "@dhis2-ui/chip" "9.4.3" + "@dhis2-ui/field" "9.4.3" + "@dhis2-ui/input" "9.4.3" + "@dhis2-ui/layer" "9.4.3" + "@dhis2-ui/loader" "9.4.3" + "@dhis2-ui/popper" "9.4.3" + "@dhis2-ui/status-icon" "9.4.3" + "@dhis2-ui/tooltip" "9.4.3" "@dhis2/prop-types" "^3.1.2" - "@dhis2/ui-constants" "9.4.2" - "@dhis2/ui-icons" "9.4.2" + "@dhis2/ui-constants" "9.4.3" + "@dhis2/ui-icons" "9.4.3" classnames "^2.3.1" prop-types "^15.7.2" -"@dhis2-ui/selector-bar@9.4.2": - version "9.4.2" - resolved "https://registry.yarnpkg.com/@dhis2-ui/selector-bar/-/selector-bar-9.4.2.tgz#301ad4df292cf840015fbe082cef9b1c1403abf2" - integrity sha512-+0HSAyu08pjnmwL9ORxxJGNvzMEi1neiSS3wUY55fkXJL2RrJuuPWeRVgz3ZrKuA152XxqV20c0esl9p5dxY0A== - dependencies: - "@dhis2-ui/button" "9.4.2" - "@dhis2-ui/card" "9.4.2" - "@dhis2-ui/layer" "9.4.2" - "@dhis2-ui/popper" "9.4.2" - "@dhis2/ui-constants" "9.4.2" - "@dhis2/ui-icons" "9.4.2" +"@dhis2-ui/selector-bar@9.4.3": + version "9.4.3" + resolved "https://registry.yarnpkg.com/@dhis2-ui/selector-bar/-/selector-bar-9.4.3.tgz#a25e30dd35ffb93728513ab88bbcee5ee18d02bf" + integrity sha512-K4r+P1hTlsiESuHwaKe7LoNz2ALY1d6MjGWdiA3EfwQNCEl8SFb4yrbdp3RpWAKz4F9t2TNIMwEVtqdwTEe07Q== + dependencies: + "@dhis2-ui/button" "9.4.3" + "@dhis2-ui/card" "9.4.3" + "@dhis2-ui/layer" "9.4.3" + "@dhis2-ui/popper" "9.4.3" + "@dhis2/ui-constants" "9.4.3" + "@dhis2/ui-icons" "9.4.3" "@testing-library/react" "^12.1.2" classnames "^2.3.1" prop-types "^15.7.2" -"@dhis2-ui/sharing-dialog@9.4.2": - version "9.4.2" - resolved "https://registry.yarnpkg.com/@dhis2-ui/sharing-dialog/-/sharing-dialog-9.4.2.tgz#6895b4c6d91869ffb0073389d2aba38fd2fe1977" - integrity sha512-cGppvbtIMMY0XGHbYt9PozpWIoPamFMHUPIvyW2hVgbl2j7+wD/d05pquII2W+alGBRoN5iIfCLQpZ11RDaJtA== - dependencies: - "@dhis2-ui/box" "9.4.2" - "@dhis2-ui/button" "9.4.2" - "@dhis2-ui/card" "9.4.2" - "@dhis2-ui/divider" "9.4.2" - "@dhis2-ui/input" "9.4.2" - "@dhis2-ui/layer" "9.4.2" - "@dhis2-ui/menu" "9.4.2" - "@dhis2-ui/modal" "9.4.2" - "@dhis2-ui/notice-box" "9.4.2" - "@dhis2-ui/popper" "9.4.2" - "@dhis2-ui/select" "9.4.2" - "@dhis2-ui/tab" "9.4.2" - "@dhis2-ui/tooltip" "9.4.2" - "@dhis2-ui/user-avatar" "9.4.2" +"@dhis2-ui/sharing-dialog@9.4.3": + version "9.4.3" + resolved "https://registry.yarnpkg.com/@dhis2-ui/sharing-dialog/-/sharing-dialog-9.4.3.tgz#463a1b6faa45dc06380f2c0a1dea0fd448252162" + integrity sha512-x2HJNMz0qAvvbMRVM6yh1ytc3FxffBV+W4Ndakw8NkvqTI7ICp2xQYKD/JXhlfOw5PnR2lopUNQiIKl3tK0v7g== + dependencies: + "@dhis2-ui/box" "9.4.3" + "@dhis2-ui/button" "9.4.3" + "@dhis2-ui/card" "9.4.3" + "@dhis2-ui/divider" "9.4.3" + "@dhis2-ui/input" "9.4.3" + "@dhis2-ui/layer" "9.4.3" + "@dhis2-ui/menu" "9.4.3" + "@dhis2-ui/modal" "9.4.3" + "@dhis2-ui/notice-box" "9.4.3" + "@dhis2-ui/popper" "9.4.3" + "@dhis2-ui/select" "9.4.3" + "@dhis2-ui/tab" "9.4.3" + "@dhis2-ui/tooltip" "9.4.3" + "@dhis2-ui/user-avatar" "9.4.3" "@dhis2/prop-types" "^3.1.2" - "@dhis2/ui-constants" "9.4.2" - "@dhis2/ui-icons" "9.4.2" + "@dhis2/ui-constants" "9.4.3" + "@dhis2/ui-icons" "9.4.3" "@react-hook/size" "^2.1.2" classnames "^2.3.1" prop-types "^15.7.2" -"@dhis2-ui/status-icon@9.4.2": - version "9.4.2" - resolved "https://registry.yarnpkg.com/@dhis2-ui/status-icon/-/status-icon-9.4.2.tgz#3c5589d03eead01e3c57e3767061460370e13793" - integrity sha512-zPUdRjzQIgw300qRFREg/NJvAP/a/eE8ptxmMPORlUBKpArYz8IPRo3vKLOgRK4xGUBqqSeINneE3YfsEUCvQA== +"@dhis2-ui/status-icon@9.4.3": + version "9.4.3" + resolved "https://registry.yarnpkg.com/@dhis2-ui/status-icon/-/status-icon-9.4.3.tgz#4b90cf35ec0569c629f4186dc9041d373432d111" + integrity sha512-4XeN0qkzZRCLqhU0uuuaWN8hIofImn+y2ihO4zMVfTrtwDvjYrO0ByFk+BBxf3SeTQ7Px4w0J0KFtCawME2EvA== dependencies: - "@dhis2-ui/loader" "9.4.2" + "@dhis2-ui/loader" "9.4.3" "@dhis2/prop-types" "^3.1.2" - "@dhis2/ui-constants" "9.4.2" - "@dhis2/ui-icons" "9.4.2" + "@dhis2/ui-constants" "9.4.3" + "@dhis2/ui-icons" "9.4.3" classnames "^2.3.1" prop-types "^15.7.2" -"@dhis2-ui/switch@9.4.2": - version "9.4.2" - resolved "https://registry.yarnpkg.com/@dhis2-ui/switch/-/switch-9.4.2.tgz#aeca03394a6792783f67fa71048610019b95895d" - integrity sha512-CWLxQv1YmPtqQtJHtkl/GPWXsuppe+g3qLjlduXRoJtA9d5RNPOQzEHonFSxZtDQwkEKLt+8U1T/DPjHx07T0g== +"@dhis2-ui/switch@9.4.3": + version "9.4.3" + resolved "https://registry.yarnpkg.com/@dhis2-ui/switch/-/switch-9.4.3.tgz#54c7f45e11942657ebbbd1de4f35f3f55ff4576d" + integrity sha512-yYCWz63/A5R7hrLyUTAM3HsLxNYL/mvDtANV/JGwX0QvbwBXoPt+lIvzdHZfEbdjAt+eDBtApcN6KAwaVOEnfg== dependencies: - "@dhis2-ui/field" "9.4.2" - "@dhis2-ui/required" "9.4.2" + "@dhis2-ui/field" "9.4.3" + "@dhis2-ui/required" "9.4.3" "@dhis2/prop-types" "^3.1.2" - "@dhis2/ui-constants" "9.4.2" + "@dhis2/ui-constants" "9.4.3" classnames "^2.3.1" prop-types "^15.7.2" -"@dhis2-ui/tab@9.4.2": - version "9.4.2" - resolved "https://registry.yarnpkg.com/@dhis2-ui/tab/-/tab-9.4.2.tgz#131c7b3f4c19e1e7e8cf5f20cde5fd679996d243" - integrity sha512-+cGst+ZLXogqEqO+Zkx1Sr7vusFReE3EBYVFMDS72Vj2Vlvp5Z71YuP+BpL+8Llal+2M/zGCUUjpFSKHQgW9Pg== +"@dhis2-ui/tab@9.4.3": + version "9.4.3" + resolved "https://registry.yarnpkg.com/@dhis2-ui/tab/-/tab-9.4.3.tgz#62417dda2594cf307cdb320cae092fd1cac3c12c" + integrity sha512-fQ/Ri19kARDlPlu1RN7j7jt19y1w331i3pDJZfFZxcyirtT4FaF4DawS8tzpXmsCfgYs6sROy6MqI+yS3Pjx6w== dependencies: "@dhis2/prop-types" "^3.1.2" - "@dhis2/ui-constants" "9.4.2" - "@dhis2/ui-icons" "9.4.2" + "@dhis2/ui-constants" "9.4.3" + "@dhis2/ui-icons" "9.4.3" classnames "^2.3.1" prop-types "^15.7.2" -"@dhis2-ui/table@9.4.2": - version "9.4.2" - resolved "https://registry.yarnpkg.com/@dhis2-ui/table/-/table-9.4.2.tgz#50c30871aa0add89135c0bc3dbb531c0144143da" - integrity sha512-G8c7yZ8Y5d+EeBKE1nMWNkSJhhhB/a9XeShn+L9LruEkYw9FACl9zHxjPJG5t3A097Leld+LWB2+uouRUzVWRQ== +"@dhis2-ui/table@9.4.3": + version "9.4.3" + resolved "https://registry.yarnpkg.com/@dhis2-ui/table/-/table-9.4.3.tgz#4e593ff5d15a4b0d0599e98818c054cd34c303fa" + integrity sha512-r9nJkq0W3bO4Z8T3C88DbU+SAEE6Yx5LqFUuZv861qKJmMUTh8qCqRnSrb7gVujrBS3YFbmjngygOxF+W9tGlw== dependencies: "@dhis2/prop-types" "^3.1.2" - "@dhis2/ui-constants" "9.4.2" - "@dhis2/ui-icons" "9.4.2" + "@dhis2/ui-constants" "9.4.3" + "@dhis2/ui-icons" "9.4.3" classnames "^2.3.1" prop-types "^15.7.2" -"@dhis2-ui/tag@9.4.2": - version "9.4.2" - resolved "https://registry.yarnpkg.com/@dhis2-ui/tag/-/tag-9.4.2.tgz#fbf86c106856c76c1126181d9a41da5793acb052" - integrity sha512-X8BIY3fd1+scwB2c9vFGl6AiLwS8L+UYKs0NqutYBI++1EHHfDO4GZbkyb5A96By31OdpA/qo7EebDk0X1ZJyg== +"@dhis2-ui/tag@9.4.3": + version "9.4.3" + resolved "https://registry.yarnpkg.com/@dhis2-ui/tag/-/tag-9.4.3.tgz#c8bcc942dddf02b8b8659aea497cc5fe0c50cb7d" + integrity sha512-3Z7qUxziESkW8Q2y/erWDcT2YII3T9MRz7IcgZ4dU/ljbWCwYBgqo+AmGIC1HSJ/Nij9WEM8+CIy6KxPNc2NaA== dependencies: "@dhis2/prop-types" "^3.1.2" - "@dhis2/ui-constants" "9.4.2" + "@dhis2/ui-constants" "9.4.3" classnames "^2.3.1" prop-types "^15.7.2" -"@dhis2-ui/text-area@9.4.2": - version "9.4.2" - resolved "https://registry.yarnpkg.com/@dhis2-ui/text-area/-/text-area-9.4.2.tgz#dc58e1a59ab561a856baf8fb687901b4478b230e" - integrity sha512-8D9mF/WuGAyjs5LQ5esyltiyUE0yuMWGuf7907TdV6QmgB3jN0xF3bECo/Xqhtc8wHR2jiq94YjF3XPmj9WSHQ== +"@dhis2-ui/text-area@9.4.3": + version "9.4.3" + resolved "https://registry.yarnpkg.com/@dhis2-ui/text-area/-/text-area-9.4.3.tgz#72953f5dcf75623769740b1ea8ff356610de7068" + integrity sha512-OeCR6GiDH8vyuoxFK7CySeeBMTMULAcd7owpQo9nmelpcx7jn5P8/fmYkjhvllJrkKHiHl+mMFqa00l4qn6aTw== dependencies: - "@dhis2-ui/box" "9.4.2" - "@dhis2-ui/field" "9.4.2" - "@dhis2-ui/loader" "9.4.2" - "@dhis2-ui/status-icon" "9.4.2" + "@dhis2-ui/box" "9.4.3" + "@dhis2-ui/field" "9.4.3" + "@dhis2-ui/loader" "9.4.3" + "@dhis2-ui/status-icon" "9.4.3" "@dhis2/prop-types" "^3.1.2" - "@dhis2/ui-constants" "9.4.2" - "@dhis2/ui-icons" "9.4.2" + "@dhis2/ui-constants" "9.4.3" + "@dhis2/ui-icons" "9.4.3" classnames "^2.3.1" prop-types "^15.7.2" -"@dhis2-ui/tooltip@9.4.2": - version "9.4.2" - resolved "https://registry.yarnpkg.com/@dhis2-ui/tooltip/-/tooltip-9.4.2.tgz#a84442a7eb0e863eff968d837261f6783150eb50" - integrity sha512-sSZ8c+0MEA7tiSCPtuc5LpNCvglPjO/oSCKkAeqiBN1ofKAzzyPAaHUNDiKWZIMyQtvNItUIzTIUGVhjHNLMcA== +"@dhis2-ui/tooltip@9.4.3": + version "9.4.3" + resolved "https://registry.yarnpkg.com/@dhis2-ui/tooltip/-/tooltip-9.4.3.tgz#29820574c938341fc9cbe154806c6e6fbfe03b93" + integrity sha512-2JaXlVRcfRrfaEvdKnn41qRydkflWAecDw3Gh+2huu8VyUKNu7TctfN9dXfMrvmeqfLCwtAT0NBffzw3UgoXCg== dependencies: - "@dhis2-ui/popper" "9.4.2" - "@dhis2-ui/portal" "9.4.2" + "@dhis2-ui/popper" "9.4.3" + "@dhis2-ui/portal" "9.4.3" "@dhis2/prop-types" "^3.1.2" - "@dhis2/ui-constants" "9.4.2" + "@dhis2/ui-constants" "9.4.3" classnames "^2.3.1" prop-types "^15.7.2" -"@dhis2-ui/transfer@9.4.2": - version "9.4.2" - resolved "https://registry.yarnpkg.com/@dhis2-ui/transfer/-/transfer-9.4.2.tgz#a7c6b055809088e3023239da5e6c93b77c180a7d" - integrity sha512-w+jMJU34hGdDr120JclmKEXYUA7Ea/vQ1qURftJDf4HzH9n2Avk6Qv+X8nWd9v0Y3gza4o0L46jr9r0HkSnSbQ== +"@dhis2-ui/transfer@9.4.3": + version "9.4.3" + resolved "https://registry.yarnpkg.com/@dhis2-ui/transfer/-/transfer-9.4.3.tgz#989b262b464b089653f02a746e97dc5958ed8489" + integrity sha512-Gvut7g8/GqWZ0QXiPdXaoSC5r/vxfOrIXOJH+JvJW1ZoUsWPO7wjEvib1DSmbjGxRqrtf8MFZ3uTdkwDnWAYSg== dependencies: - "@dhis2-ui/button" "9.4.2" - "@dhis2-ui/field" "9.4.2" - "@dhis2-ui/input" "9.4.2" - "@dhis2-ui/intersection-detector" "9.4.2" - "@dhis2-ui/loader" "9.4.2" + "@dhis2-ui/button" "9.4.3" + "@dhis2-ui/field" "9.4.3" + "@dhis2-ui/input" "9.4.3" + "@dhis2-ui/intersection-detector" "9.4.3" + "@dhis2-ui/loader" "9.4.3" "@dhis2/prop-types" "^3.1.2" - "@dhis2/ui-constants" "9.4.2" + "@dhis2/ui-constants" "9.4.3" classnames "^2.3.1" prop-types "^15.7.2" -"@dhis2-ui/user-avatar@9.4.2": - version "9.4.2" - resolved "https://registry.yarnpkg.com/@dhis2-ui/user-avatar/-/user-avatar-9.4.2.tgz#cb71a1e90b102ba432d2509cacc4ac052f88f385" - integrity sha512-WBRDBQfqq2C2w9tGZMrBya5GO8GiQTov1ajK4S3mTgIT+HnbwNaLpWSRTcU/4oI5leupWTBmRf3CsSniemNyeA== +"@dhis2-ui/user-avatar@9.4.3": + version "9.4.3" + resolved "https://registry.yarnpkg.com/@dhis2-ui/user-avatar/-/user-avatar-9.4.3.tgz#1874867bd92a44a21969927be8f3d162287466de" + integrity sha512-M+c+zV4HpkL7RJgicFc3MGM+gf95TpfnvKX8yT89SvQZgSKtcQnWSzp+3/Ss1JABH92Aitfba6MOQdvme3x/Tw== dependencies: "@dhis2/prop-types" "^3.1.2" - "@dhis2/ui-constants" "9.4.2" + "@dhis2/ui-constants" "9.4.3" classnames "^2.3.1" prop-types "^15.7.2" @@ -1916,44 +1906,44 @@ moment "^2.24.0" "@dhis2/app-runtime@^3.10.2": - version "3.10.2" - resolved "https://registry.yarnpkg.com/@dhis2/app-runtime/-/app-runtime-3.10.2.tgz#e82639bd68234bdeaf2f6d3c256dcdfcdd267da2" - integrity sha512-GiftKk8ZTXlPElXAgVJn41Vj6E1vEGTPGrjrqU7j41ZTYsg+tUcCkISNt1woe5l7E+8+y+9Fy4bgqSsBOAEUvg== - dependencies: - "@dhis2/app-service-alerts" "3.10.2" - "@dhis2/app-service-config" "3.10.2" - "@dhis2/app-service-data" "3.10.2" - "@dhis2/app-service-offline" "3.10.2" - "@dhis2/app-service-plugin" "3.10.2" - -"@dhis2/app-service-alerts@3.10.2": - version "3.10.2" - resolved "https://registry.yarnpkg.com/@dhis2/app-service-alerts/-/app-service-alerts-3.10.2.tgz#0e07c3530606f81ab998a20f2c478600b6027a77" - integrity sha512-2IqaawnlOzYVJLBF2AKVQJ4cuxJNZD7FK0XE0XOv1WwFs70h6bp23MQueIJ/QHxLo7lamE0FC22m4diM4P0CuA== - -"@dhis2/app-service-config@3.10.2": - version "3.10.2" - resolved "https://registry.yarnpkg.com/@dhis2/app-service-config/-/app-service-config-3.10.2.tgz#be52676068e31cdb1fe3f8ddabb8153e1cd6e3e6" - integrity sha512-Crw7Tx4yg4qWw3qYxNCIye77IaY2HUYyDmDKPVVWzgmrcSGxpunv/NtsUg12pxrVfVLnqlH9L6AF9A6hO0afmw== - -"@dhis2/app-service-data@3.10.2": - version "3.10.2" - resolved "https://registry.yarnpkg.com/@dhis2/app-service-data/-/app-service-data-3.10.2.tgz#e94d45d87cab5e156decfe9e92e3153e5df68ba0" - integrity sha512-+ESLrVEDQKXBaQmpaCq78RonkqJM2BliykaO4QBeOc4ilWohaqYajue1Ntg4uV2KrdkCylBdMDwGYjsak0G7hg== + version "3.10.3" + resolved "https://registry.yarnpkg.com/@dhis2/app-runtime/-/app-runtime-3.10.3.tgz#01520000cf875077594cadf32cb60a816734dfdc" + integrity sha512-KH3AcS/B4dBEIEMDX2vOeq+YfQ01JnjW5xuOY8GXy99t1AEULtX9T5xs2cVWDidwXqvgbf8QMQqMWNmQ28gdcQ== + dependencies: + "@dhis2/app-service-alerts" "3.10.3" + "@dhis2/app-service-config" "3.10.3" + "@dhis2/app-service-data" "3.10.3" + "@dhis2/app-service-offline" "3.10.3" + "@dhis2/app-service-plugin" "3.10.3" + +"@dhis2/app-service-alerts@3.10.3": + version "3.10.3" + resolved "https://registry.yarnpkg.com/@dhis2/app-service-alerts/-/app-service-alerts-3.10.3.tgz#7082e69c194919f579f7dd17cd4a44d1ddb49ca2" + integrity sha512-iWBt8CdxfpXHRuIfeEii+wLWJUjAHz0IJNQzxI7xXQ+R54eFB5xN4diU+/YI8tC021u1fdZJI3kCcKW+MMu1Gw== + +"@dhis2/app-service-config@3.10.3": + version "3.10.3" + resolved "https://registry.yarnpkg.com/@dhis2/app-service-config/-/app-service-config-3.10.3.tgz#6bc17ab97075d1c408f49c52d8fabc458a721f64" + integrity sha512-KG/HZKFJHJhfLJfVwus3caYyOepMfIiGQDkJgnIC6ys4fObqm/V4kjDHXbjUDQYf1Fn9lL7J4vTKgNGPvwqRwA== + +"@dhis2/app-service-data@3.10.3": + version "3.10.3" + resolved "https://registry.yarnpkg.com/@dhis2/app-service-data/-/app-service-data-3.10.3.tgz#634c17b6a0c3aaa3ca567a07d6b05fbc5eded551" + integrity sha512-3+Gjvxf5lLGgcbhHZHffCxYPpJMb7IfvvhIiJzySSV5lJMQZn0kGGk64IqV/jFHyjygTZ9ZOahGIpWCAeIUpdw== dependencies: react-query "^3.13.11" -"@dhis2/app-service-offline@3.10.2": - version "3.10.2" - resolved "https://registry.yarnpkg.com/@dhis2/app-service-offline/-/app-service-offline-3.10.2.tgz#082279b7045e702c2eecda751d762225313156b0" - integrity sha512-bTp+CCRbyKt/0QADj0O6wLNWhi+6QDkjt2+sfpv3M8oKcftjaQDqedVoypZRA0nqvSdVL2ehtTzqMrrxu6jtZQ== +"@dhis2/app-service-offline@3.10.3": + version "3.10.3" + resolved "https://registry.yarnpkg.com/@dhis2/app-service-offline/-/app-service-offline-3.10.3.tgz#159e3fe7b187da07a85ed8e7a4459a7b02be87bf" + integrity sha512-6fLH5a7FOlJeyxq9FMq3oLekb+XlWbqedZukHayy6NTS5s6HUlcNX5HvL2AHZvMgpl2r0G68Vrz1aNUhyjbGEw== dependencies: lodash "^4.17.21" -"@dhis2/app-service-plugin@3.10.2": - version "3.10.2" - resolved "https://registry.yarnpkg.com/@dhis2/app-service-plugin/-/app-service-plugin-3.10.2.tgz#09de64ee59017c86c8dab96a0d2ca0d915ae9d31" - integrity sha512-FqR6ILmvAXT2n1SzCZknT+5jJRdajg1dBegWAu3xqZXAntsM4wvFLCx6EtjS5LO2Kga9VZ+TJmVr2UFX1330CQ== +"@dhis2/app-service-plugin@3.10.3": + version "3.10.3" + resolved "https://registry.yarnpkg.com/@dhis2/app-service-plugin/-/app-service-plugin-3.10.3.tgz#fbfebb271da2f2c569d70a38a86461e684ba69cf" + integrity sha512-DrFFurugSdifgioG9rUR0bG6MVoPNGRnhcBysIFdog2FaMqCM56kTfSvmxqyNa0Sf/zNFlj0O+oU2oSnDpukgg== dependencies: post-robot "^10.0.46" @@ -2081,91 +2071,91 @@ workbox-routing "^6.1.5" workbox-strategies "^6.1.5" -"@dhis2/ui-constants@9.4.2": - version "9.4.2" - resolved "https://registry.yarnpkg.com/@dhis2/ui-constants/-/ui-constants-9.4.2.tgz#a6a0d4e862c3fca9eb78e0c23b0fc969d580c6ad" - integrity sha512-yvFO1F00uXl9a37wZTDC1sqlcjSQ7uZVVtOLa0oRi79sR+U5IAx1rzdIDWY+lpleRNNznkZsiINWp6jn/Ag7UQ== +"@dhis2/ui-constants@9.4.3": + version "9.4.3" + resolved "https://registry.yarnpkg.com/@dhis2/ui-constants/-/ui-constants-9.4.3.tgz#aae69e2a00eddc1cb46ba0693be15cbbf7a64d7f" + integrity sha512-iSQi70BnvXWvqFWblO4M4AVMHRXLOD9Gay9LNx/6NPcwwL8UU633nFf1M8TV71bm4CrZci/m3zew/hXjCMtF9w== dependencies: prop-types "^15.7.2" -"@dhis2/ui-forms@9.4.2": - version "9.4.2" - resolved "https://registry.yarnpkg.com/@dhis2/ui-forms/-/ui-forms-9.4.2.tgz#8d4b7c43ecb45faa460d0811ac7fb362d1d3c979" - integrity sha512-QLRWLQSNki0HGPHvd0wWlevhDuN42COh/fA/XTwHx0Gf3xb6BrI9Gkuhyh3cJvTnUOUpCA6jviyIoj6T/JLTgQ== - dependencies: - "@dhis2-ui/button" "9.4.2" - "@dhis2-ui/checkbox" "9.4.2" - "@dhis2-ui/field" "9.4.2" - "@dhis2-ui/file-input" "9.4.2" - "@dhis2-ui/input" "9.4.2" - "@dhis2-ui/radio" "9.4.2" - "@dhis2-ui/select" "9.4.2" - "@dhis2-ui/switch" "9.4.2" - "@dhis2-ui/text-area" "9.4.2" +"@dhis2/ui-forms@9.4.3": + version "9.4.3" + resolved "https://registry.yarnpkg.com/@dhis2/ui-forms/-/ui-forms-9.4.3.tgz#0d4ff0ae7dd89d99d1b9fc4d29e382853b621731" + integrity sha512-PGMpWfTZEgEjeEPus804XAQCtcyx7RQElAg1/s7zmJCWm4Uj4Okn4ZjZtNfH7/qQF2unFzbdRL3ryeMMh/GscA== + dependencies: + "@dhis2-ui/button" "9.4.3" + "@dhis2-ui/checkbox" "9.4.3" + "@dhis2-ui/field" "9.4.3" + "@dhis2-ui/file-input" "9.4.3" + "@dhis2-ui/input" "9.4.3" + "@dhis2-ui/radio" "9.4.3" + "@dhis2-ui/select" "9.4.3" + "@dhis2-ui/switch" "9.4.3" + "@dhis2-ui/text-area" "9.4.3" "@dhis2/prop-types" "^3.1.2" classnames "^2.3.1" final-form "^4.20.2" prop-types "^15.7.2" react-final-form "^6.5.3" -"@dhis2/ui-icons@9.4.2": - version "9.4.2" - resolved "https://registry.yarnpkg.com/@dhis2/ui-icons/-/ui-icons-9.4.2.tgz#b2e069534945eb05ef627dd3a54b0583beb717e1" - integrity sha512-ZLBHlxEQmwdOfoYNbpx4MohNP/V/0Y3aucIywVXMvAZne0qPjkjq7es8OZMmacdMNIKhyJjCpT6IqjwoYgLQUw== +"@dhis2/ui-icons@9.4.3": + version "9.4.3" + resolved "https://registry.yarnpkg.com/@dhis2/ui-icons/-/ui-icons-9.4.3.tgz#b7eac309031351003d0afdde31e5bbe15de928d0" + integrity sha512-6o6L9gfWGLPlB35aBzyU13v6qGE+f2Xk1Xmt68fhqzcAqBj7e1UZ+XIQPb7b3bQlv2AWftWBhUGaMJJIlddtZg== "@dhis2/ui@^9.0.1", "@dhis2/ui@^9.2.0": - version "9.4.2" - resolved "https://registry.yarnpkg.com/@dhis2/ui/-/ui-9.4.2.tgz#85aeaa5da1d558c882d9588d6b7a917396548ac9" - integrity sha512-dvFEK11kzYx29rkDDRk49lpGpqB9bEf4WEO9eSsw/7bK/GaS/uiS7ca8c30R+tdUmjvubBNxJiVJI07EwxtHyw== - dependencies: - "@dhis2-ui/alert" "9.4.2" - "@dhis2-ui/box" "9.4.2" - "@dhis2-ui/button" "9.4.2" - "@dhis2-ui/calendar" "9.4.2" - "@dhis2-ui/card" "9.4.2" - "@dhis2-ui/center" "9.4.2" - "@dhis2-ui/checkbox" "9.4.2" - "@dhis2-ui/chip" "9.4.2" - "@dhis2-ui/cover" "9.4.2" - "@dhis2-ui/css" "9.4.2" - "@dhis2-ui/divider" "9.4.2" - "@dhis2-ui/field" "9.4.2" - "@dhis2-ui/file-input" "9.4.2" - "@dhis2-ui/header-bar" "9.4.2" - "@dhis2-ui/help" "9.4.2" - "@dhis2-ui/input" "9.4.2" - "@dhis2-ui/intersection-detector" "9.4.2" - "@dhis2-ui/label" "9.4.2" - "@dhis2-ui/layer" "9.4.2" - "@dhis2-ui/legend" "9.4.2" - "@dhis2-ui/loader" "9.4.2" - "@dhis2-ui/logo" "9.4.2" - "@dhis2-ui/menu" "9.4.2" - "@dhis2-ui/modal" "9.4.2" - "@dhis2-ui/node" "9.4.2" - "@dhis2-ui/notice-box" "9.4.2" - "@dhis2-ui/organisation-unit-tree" "9.4.2" - "@dhis2-ui/pagination" "9.4.2" - "@dhis2-ui/popover" "9.4.2" - "@dhis2-ui/popper" "9.4.2" - "@dhis2-ui/portal" "9.4.2" - "@dhis2-ui/radio" "9.4.2" - "@dhis2-ui/required" "9.4.2" - "@dhis2-ui/segmented-control" "9.4.2" - "@dhis2-ui/select" "9.4.2" - "@dhis2-ui/selector-bar" "9.4.2" - "@dhis2-ui/sharing-dialog" "9.4.2" - "@dhis2-ui/switch" "9.4.2" - "@dhis2-ui/tab" "9.4.2" - "@dhis2-ui/table" "9.4.2" - "@dhis2-ui/tag" "9.4.2" - "@dhis2-ui/text-area" "9.4.2" - "@dhis2-ui/tooltip" "9.4.2" - "@dhis2-ui/transfer" "9.4.2" - "@dhis2-ui/user-avatar" "9.4.2" - "@dhis2/ui-constants" "9.4.2" - "@dhis2/ui-forms" "9.4.2" - "@dhis2/ui-icons" "9.4.2" + version "9.4.3" + resolved "https://registry.yarnpkg.com/@dhis2/ui/-/ui-9.4.3.tgz#2b8606a1cf806750c075873086cb3bae3efa5c28" + integrity sha512-0U47fkp+5Ree3k8MdhhFvuBiYmWWiRGv46BWGg27yGBQOGeCoBMNsDTE+nZfRW0op2aW/okOloNneeter0K52w== + dependencies: + "@dhis2-ui/alert" "9.4.3" + "@dhis2-ui/box" "9.4.3" + "@dhis2-ui/button" "9.4.3" + "@dhis2-ui/calendar" "9.4.3" + "@dhis2-ui/card" "9.4.3" + "@dhis2-ui/center" "9.4.3" + "@dhis2-ui/checkbox" "9.4.3" + "@dhis2-ui/chip" "9.4.3" + "@dhis2-ui/cover" "9.4.3" + "@dhis2-ui/css" "9.4.3" + "@dhis2-ui/divider" "9.4.3" + "@dhis2-ui/field" "9.4.3" + "@dhis2-ui/file-input" "9.4.3" + "@dhis2-ui/header-bar" "9.4.3" + "@dhis2-ui/help" "9.4.3" + "@dhis2-ui/input" "9.4.3" + "@dhis2-ui/intersection-detector" "9.4.3" + "@dhis2-ui/label" "9.4.3" + "@dhis2-ui/layer" "9.4.3" + "@dhis2-ui/legend" "9.4.3" + "@dhis2-ui/loader" "9.4.3" + "@dhis2-ui/logo" "9.4.3" + "@dhis2-ui/menu" "9.4.3" + "@dhis2-ui/modal" "9.4.3" + "@dhis2-ui/node" "9.4.3" + "@dhis2-ui/notice-box" "9.4.3" + "@dhis2-ui/organisation-unit-tree" "9.4.3" + "@dhis2-ui/pagination" "9.4.3" + "@dhis2-ui/popover" "9.4.3" + "@dhis2-ui/popper" "9.4.3" + "@dhis2-ui/portal" "9.4.3" + "@dhis2-ui/radio" "9.4.3" + "@dhis2-ui/required" "9.4.3" + "@dhis2-ui/segmented-control" "9.4.3" + "@dhis2-ui/select" "9.4.3" + "@dhis2-ui/selector-bar" "9.4.3" + "@dhis2-ui/sharing-dialog" "9.4.3" + "@dhis2-ui/switch" "9.4.3" + "@dhis2-ui/tab" "9.4.3" + "@dhis2-ui/table" "9.4.3" + "@dhis2-ui/tag" "9.4.3" + "@dhis2-ui/text-area" "9.4.3" + "@dhis2-ui/tooltip" "9.4.3" + "@dhis2-ui/transfer" "9.4.3" + "@dhis2-ui/user-avatar" "9.4.3" + "@dhis2/ui-constants" "9.4.3" + "@dhis2/ui-forms" "9.4.3" + "@dhis2/ui-icons" "9.4.3" prop-types "^15.7.2" "@eslint-community/eslint-utils@^4.2.0": @@ -2465,7 +2455,7 @@ "@types/yargs" "^17.0.8" chalk "^4.0.0" -"@jridgewell/gen-mapping@^0.3.0", "@jridgewell/gen-mapping@^0.3.2", "@jridgewell/gen-mapping@^0.3.5": +"@jridgewell/gen-mapping@^0.3.2", "@jridgewell/gen-mapping@^0.3.5": version "0.3.5" resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz#dcce6aff74bdf6dad1a95802b69b04a2fcb1fb36" integrity sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg== @@ -2485,19 +2475,19 @@ integrity sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A== "@jridgewell/source-map@^0.3.3": - version "0.3.5" - resolved "https://registry.yarnpkg.com/@jridgewell/source-map/-/source-map-0.3.5.tgz#a3bb4d5c6825aab0d281268f47f6ad5853431e91" - integrity sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ== + version "0.3.6" + resolved "https://registry.yarnpkg.com/@jridgewell/source-map/-/source-map-0.3.6.tgz#9d71ca886e32502eb9362c9a74a46787c36df81a" + integrity sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ== dependencies: - "@jridgewell/gen-mapping" "^0.3.0" - "@jridgewell/trace-mapping" "^0.3.9" + "@jridgewell/gen-mapping" "^0.3.5" + "@jridgewell/trace-mapping" "^0.3.25" "@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.14": version "1.4.15" resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== -"@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.20", "@jridgewell/trace-mapping@^0.3.24", "@jridgewell/trace-mapping@^0.3.9": +"@jridgewell/trace-mapping@^0.3.20", "@jridgewell/trace-mapping@^0.3.24", "@jridgewell/trace-mapping@^0.3.25": version "0.3.25" resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz#15f190e98895f3fc23276ee14bc76b675c2e50f0" integrity sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ== @@ -2698,9 +2688,9 @@ picomatch "^2.2.2" "@rushstack/eslint-patch@^1.1.0": - version "1.7.2" - resolved "https://registry.yarnpkg.com/@rushstack/eslint-patch/-/eslint-patch-1.7.2.tgz#2d4260033e199b3032a08b41348ac10de21c47e9" - integrity sha512-RbhOOTCNoCrbfkRyoXODZp75MlpiHMgbE5MEBZAnnnLyQNgrigEj4p0lzsMDyc1zVsJDLrivB58tgg3emX0eEA== + version "1.8.0" + resolved "https://registry.yarnpkg.com/@rushstack/eslint-patch/-/eslint-patch-1.8.0.tgz#c5545e6a5d2bd5c26b4021c357177a28698c950e" + integrity sha512-0HejFckBN2W+ucM6cUOlwsByTKt9/+0tWhqUffNIcHqCXkthY/mZ7AuYPK/2IIaGWhdl0h+tICDO0ssLMd6XMQ== "@sinclair/typebox@^0.24.1": version "0.24.51" @@ -2865,16 +2855,16 @@ use-sync-external-store "^1.2.0" "@tanstack/react-virtual@^3.0.0-beta.60": - version "3.1.3" - resolved "https://registry.yarnpkg.com/@tanstack/react-virtual/-/react-virtual-3.1.3.tgz#4ef2a7dd819a7dd2b634d50cbd6ba498f06529ec" - integrity sha512-YCzcbF/Ws/uZ0q3Z6fagH+JVhx4JLvbSflgldMgLsuvB8aXjZLLb3HvrEVxY480F9wFlBiXlvQxOyXb5ENPrNA== + version "3.2.0" + resolved "https://registry.yarnpkg.com/@tanstack/react-virtual/-/react-virtual-3.2.0.tgz#fb70f9c6baee753a5a0f7618ac886205d5a02af9" + integrity sha512-OEdMByf2hEfDa6XDbGlZN8qO6bTjlNKqjM3im9JG+u3mCL8jALy0T/67oDI001raUUPh1Bdmfn4ZvPOV5knpcg== dependencies: - "@tanstack/virtual-core" "3.1.3" + "@tanstack/virtual-core" "3.2.0" -"@tanstack/virtual-core@3.1.3": - version "3.1.3" - resolved "https://registry.yarnpkg.com/@tanstack/virtual-core/-/virtual-core-3.1.3.tgz#77ced625f19ec9350f6e460f142b3be9bff03866" - integrity sha512-Y5B4EYyv1j9V8LzeAoOVeTg0LI7Fo5InYKgAjkY1Pu9GjtUwX/EKxNcU7ng3sKr99WEf+bPTcktAeybyMOYo+g== +"@tanstack/virtual-core@3.2.0": + version "3.2.0" + resolved "https://registry.yarnpkg.com/@tanstack/virtual-core/-/virtual-core-3.2.0.tgz#874d36135e4badce2719e7bdc556ce240cbaff14" + integrity sha512-P5XgYoAw/vfW65byBbJQCw+cagdXDT/qH6wmABiLt4v4YBT2q2vqCOhihe+D1Nt325F/S/0Tkv6C5z0Lv+VBQQ== "@testing-library/cypress@^10.0.1": version "10.0.1" @@ -3015,9 +3005,9 @@ "@types/estree" "*" "@types/eslint@*", "@types/eslint@^7.29.0 || ^8.4.1": - version "8.56.5" - resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-8.56.5.tgz#94b88cab77588fcecdd0771a6d576fa1c0af9d02" - integrity sha512-u5/YPJHo1tvkSF2CE0USEkxon82Z5DBy2xR+qfyYNszpX9qcs4sT6uq2kBbj4BXY1+DBGDPnrhMZV3pKWGNukw== + version "8.56.6" + resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-8.56.6.tgz#d5dc16cac025d313ee101108ba5714ea10eb3ed0" + integrity sha512-ymwc+qb1XkjT/gfoQwxIeHZ6ixH23A+tCT2ADSA/DPVKzAjwYkTXBMCQ/f6fe4wEa85Lhp26VPeUxI7wMhAi7A== dependencies: "@types/estree" "*" "@types/json-schema" "*" @@ -3136,9 +3126,9 @@ "@types/node" "*" "@types/node@*": - version "20.11.25" - resolved "https://registry.yarnpkg.com/@types/node/-/node-20.11.25.tgz#0f50d62f274e54dd7a49f7704cc16bfbcccaf49f" - integrity sha512-TBHyJxk2b7HceLVGFcpAUjsa5zIdsPWlR6XHfyGzd0SFu+/NFgQgMAl96MSDZgQDvJAvV6BKsFOrt6zIL09JDw== + version "20.11.30" + resolved "https://registry.yarnpkg.com/@types/node/-/node-20.11.30.tgz#9c33467fc23167a347e73834f788f4b9f399d66f" + integrity sha512-dHM6ZxwlmuZaRmUPfv1p+KrdD1Dci04FbdEm/9wEMouFqxYoFl5aMkt0VMAUtYRQDyYvD41WJLukhq/ha3YuTw== dependencies: undici-types "~5.26.4" @@ -3153,9 +3143,9 @@ integrity sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA== "@types/prop-types@*": - version "15.7.11" - resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.11.tgz#2596fb352ee96a1379c657734d4b913a613ad563" - integrity sha512-ga8y9v9uyeiLdpKddhxYQkxNDrfvuPrlFb0N1qnZZByvcElJaXthF1UhvCh9TLWJBEHeNtdnbysW7Y6Uq8CVng== + version "15.7.12" + resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.12.tgz#12bb1e2be27293c1406acb6af1c3f3a1481d98c6" + integrity sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q== "@types/q@^1.5.1": version "1.5.8" @@ -3163,9 +3153,9 @@ integrity sha512-hroOstUScF6zhIi+5+x0dzqrHA1EJi+Irri6b1fxolMTqqHIV/Cg77EtnQcZqZCu8hR3mX2BzIxN4/GzI68Kfw== "@types/qs@*": - version "6.9.11" - resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.11.tgz#208d8a30bc507bd82e03ada29e4732ea46a6bbda" - integrity sha512-oGk0gmhnEJK4Yyk+oI7EfXsLayXatCWPHary1MtcmbAifkobT9cM9yutG/hZKIseOU0MqbIwQ/u2nn/Gb+ltuQ== + version "6.9.14" + resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.14.tgz#169e142bfe493895287bee382af6039795e9b75b" + integrity sha512-5khscbd3SwWMhFqylJBLQ0zIu7c1K6Vz0uBIt915BI3zV0q1nfjRQD3RqSBcPaO6PHEF4ov/t9y89fSiyThlPA== "@types/raf@^3.4.0": version "3.4.3" @@ -3192,18 +3182,18 @@ "@types/react" "*" "@types/react@*": - version "18.2.64" - resolved "https://registry.yarnpkg.com/@types/react/-/react-18.2.64.tgz#3700fbb6b2fa60a6868ec1323ae4cbd446a2197d" - integrity sha512-MlmPvHgjj2p3vZaxbQgFUQFvD8QiZwACfGqEdDSWou5yISWxDQ4/74nCAwsUiX7UFLKZz3BbVSPj+YxeoGGCfg== + version "18.2.69" + resolved "https://registry.yarnpkg.com/@types/react/-/react-18.2.69.tgz#313ec21891b22bb7646a54cb4bdb8cddb0880271" + integrity sha512-W1HOMUWY/1Yyw0ba5TkCV+oqynRjG7BnteBB+B7JmAK7iw3l2SW+VGOxL+akPweix6jk2NNJtyJKpn4TkpfK3Q== dependencies: "@types/prop-types" "*" "@types/scheduler" "*" csstype "^3.0.2" "@types/react@^17": - version "17.0.76" - resolved "https://registry.yarnpkg.com/@types/react/-/react-17.0.76.tgz#bfdf762046699e265655cd8f67a51beab6cd1e80" - integrity sha512-w9Aq+qeszGYoQM0hgFcdsAODGJdogadBDiitPm+zjBFJ0mLymvn2qSXsDaLJUndFRqqXk1FQfa9avHUBk1JhJQ== + version "17.0.79" + resolved "https://registry.yarnpkg.com/@types/react/-/react-17.0.79.tgz#67693ab9bc476780d968326658619fa7f25b8935" + integrity sha512-gavKA8AwJAML9zWHuiQRASjrrPJHbT/zrUDHiUGUf+l5a3pkEd6atvjjq+8y2vfRHBJLQJjFpxSa9I8qe9zHAw== dependencies: "@types/prop-types" "*" "@types/scheduler" "*" @@ -3411,10 +3401,10 @@ resolved "https://registry.yarnpkg.com/@ungap/structured-clone/-/structured-clone-1.2.0.tgz#756641adb587851b5ccb3e095daf27ae581c8406" integrity sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ== -"@webassemblyjs/ast@1.11.6", "@webassemblyjs/ast@^1.11.5": - version "1.11.6" - resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.11.6.tgz#db046555d3c413f8966ca50a95176a0e2c642e24" - integrity sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q== +"@webassemblyjs/ast@1.12.1", "@webassemblyjs/ast@^1.12.1": + version "1.12.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.12.1.tgz#bb16a0e8b1914f979f45864c23819cc3e3f0d4bb" + integrity sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg== dependencies: "@webassemblyjs/helper-numbers" "1.11.6" "@webassemblyjs/helper-wasm-bytecode" "1.11.6" @@ -3429,10 +3419,10 @@ resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz#6132f68c4acd59dcd141c44b18cbebbd9f2fa768" integrity sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q== -"@webassemblyjs/helper-buffer@1.11.6": - version "1.11.6" - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz#b66d73c43e296fd5e88006f18524feb0f2c7c093" - integrity sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA== +"@webassemblyjs/helper-buffer@1.12.1": + version "1.12.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.12.1.tgz#6df20d272ea5439bf20ab3492b7fb70e9bfcb3f6" + integrity sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw== "@webassemblyjs/helper-numbers@1.11.6": version "1.11.6" @@ -3448,15 +3438,15 @@ resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz#bb2ebdb3b83aa26d9baad4c46d4315283acd51e9" integrity sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA== -"@webassemblyjs/helper-wasm-section@1.11.6": - version "1.11.6" - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz#ff97f3863c55ee7f580fd5c41a381e9def4aa577" - integrity sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g== +"@webassemblyjs/helper-wasm-section@1.12.1": + version "1.12.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.12.1.tgz#3da623233ae1a60409b509a52ade9bc22a37f7bf" + integrity sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g== dependencies: - "@webassemblyjs/ast" "1.11.6" - "@webassemblyjs/helper-buffer" "1.11.6" + "@webassemblyjs/ast" "1.12.1" + "@webassemblyjs/helper-buffer" "1.12.1" "@webassemblyjs/helper-wasm-bytecode" "1.11.6" - "@webassemblyjs/wasm-gen" "1.11.6" + "@webassemblyjs/wasm-gen" "1.12.1" "@webassemblyjs/ieee754@1.11.6": version "1.11.6" @@ -3477,59 +3467,59 @@ resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.11.6.tgz#90f8bc34c561595fe156603be7253cdbcd0fab5a" integrity sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA== -"@webassemblyjs/wasm-edit@^1.11.5": - version "1.11.6" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz#c72fa8220524c9b416249f3d94c2958dfe70ceab" - integrity sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw== +"@webassemblyjs/wasm-edit@^1.12.1": + version "1.12.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.12.1.tgz#9f9f3ff52a14c980939be0ef9d5df9ebc678ae3b" + integrity sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g== dependencies: - "@webassemblyjs/ast" "1.11.6" - "@webassemblyjs/helper-buffer" "1.11.6" + "@webassemblyjs/ast" "1.12.1" + "@webassemblyjs/helper-buffer" "1.12.1" "@webassemblyjs/helper-wasm-bytecode" "1.11.6" - "@webassemblyjs/helper-wasm-section" "1.11.6" - "@webassemblyjs/wasm-gen" "1.11.6" - "@webassemblyjs/wasm-opt" "1.11.6" - "@webassemblyjs/wasm-parser" "1.11.6" - "@webassemblyjs/wast-printer" "1.11.6" + "@webassemblyjs/helper-wasm-section" "1.12.1" + "@webassemblyjs/wasm-gen" "1.12.1" + "@webassemblyjs/wasm-opt" "1.12.1" + "@webassemblyjs/wasm-parser" "1.12.1" + "@webassemblyjs/wast-printer" "1.12.1" -"@webassemblyjs/wasm-gen@1.11.6": - version "1.11.6" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz#fb5283e0e8b4551cc4e9c3c0d7184a65faf7c268" - integrity sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA== +"@webassemblyjs/wasm-gen@1.12.1": + version "1.12.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.12.1.tgz#a6520601da1b5700448273666a71ad0a45d78547" + integrity sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w== dependencies: - "@webassemblyjs/ast" "1.11.6" + "@webassemblyjs/ast" "1.12.1" "@webassemblyjs/helper-wasm-bytecode" "1.11.6" "@webassemblyjs/ieee754" "1.11.6" "@webassemblyjs/leb128" "1.11.6" "@webassemblyjs/utf8" "1.11.6" -"@webassemblyjs/wasm-opt@1.11.6": - version "1.11.6" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz#d9a22d651248422ca498b09aa3232a81041487c2" - integrity sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g== +"@webassemblyjs/wasm-opt@1.12.1": + version "1.12.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.12.1.tgz#9e6e81475dfcfb62dab574ac2dda38226c232bc5" + integrity sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg== dependencies: - "@webassemblyjs/ast" "1.11.6" - "@webassemblyjs/helper-buffer" "1.11.6" - "@webassemblyjs/wasm-gen" "1.11.6" - "@webassemblyjs/wasm-parser" "1.11.6" + "@webassemblyjs/ast" "1.12.1" + "@webassemblyjs/helper-buffer" "1.12.1" + "@webassemblyjs/wasm-gen" "1.12.1" + "@webassemblyjs/wasm-parser" "1.12.1" -"@webassemblyjs/wasm-parser@1.11.6", "@webassemblyjs/wasm-parser@^1.11.5": - version "1.11.6" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz#bb85378c527df824004812bbdb784eea539174a1" - integrity sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ== +"@webassemblyjs/wasm-parser@1.12.1", "@webassemblyjs/wasm-parser@^1.12.1": + version "1.12.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.12.1.tgz#c47acb90e6f083391e3fa61d113650eea1e95937" + integrity sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ== dependencies: - "@webassemblyjs/ast" "1.11.6" + "@webassemblyjs/ast" "1.12.1" "@webassemblyjs/helper-api-error" "1.11.6" "@webassemblyjs/helper-wasm-bytecode" "1.11.6" "@webassemblyjs/ieee754" "1.11.6" "@webassemblyjs/leb128" "1.11.6" "@webassemblyjs/utf8" "1.11.6" -"@webassemblyjs/wast-printer@1.11.6": - version "1.11.6" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz#a7bf8dd7e362aeb1668ff43f35cb849f188eff20" - integrity sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A== +"@webassemblyjs/wast-printer@1.12.1": + version "1.12.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.12.1.tgz#bcecf661d7d1abdaf989d8341a4833e33e2b31ac" + integrity sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA== dependencies: - "@webassemblyjs/ast" "1.11.6" + "@webassemblyjs/ast" "1.12.1" "@xtuc/long" "4.2.2" "@xtuc/ieee754@^1.2.0": @@ -3908,14 +3898,15 @@ array-flatten@1.1.1: integrity sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg== array-includes@^3.1.6, array-includes@^3.1.7: - version "3.1.7" - resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.7.tgz#8cd2e01b26f7a3086cbc87271593fe921c62abda" - integrity sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ== + version "3.1.8" + resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.8.tgz#5e370cbe172fdd5dd6530c1d4aadda25281ba97d" + integrity sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ== dependencies: - call-bind "^1.0.2" - define-properties "^1.2.0" - es-abstract "^1.22.1" - get-intrinsic "^1.2.1" + call-bind "^1.0.7" + define-properties "^1.2.1" + es-abstract "^1.23.2" + es-object-atoms "^1.0.0" + get-intrinsic "^1.2.4" is-string "^1.0.7" array-union@^2.1.0: @@ -3923,37 +3914,28 @@ array-union@^2.1.0: resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== -array.prototype.filter@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/array.prototype.filter/-/array.prototype.filter-1.0.3.tgz#423771edeb417ff5914111fff4277ea0624c0d0e" - integrity sha512-VizNcj/RGJiUyQBgzwxzE5oHdeuXY5hSbbmKMlphj1cy1Vl7Pn2asCGbSrru6hSQjmCzqTBPVWAF/whmEOVHbw== - dependencies: - call-bind "^1.0.2" - define-properties "^1.2.0" - es-abstract "^1.22.1" - es-array-method-boxes-properly "^1.0.0" - is-string "^1.0.7" - array.prototype.findlast@^1.2.4: - version "1.2.4" - resolved "https://registry.yarnpkg.com/array.prototype.findlast/-/array.prototype.findlast-1.2.4.tgz#eeb9e45fc894055c82e5675c463e8077b827ad36" - integrity sha512-BMtLxpV+8BD+6ZPFIWmnUBpQoy+A+ujcg4rhp2iwCRJYA7PEh2MS4NL3lz8EiDlLrJPp2hg9qWihr5pd//jcGw== + version "1.2.5" + resolved "https://registry.yarnpkg.com/array.prototype.findlast/-/array.prototype.findlast-1.2.5.tgz#3e4fbcb30a15a7f5bf64cf2faae22d139c2e4904" + integrity sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ== dependencies: - call-bind "^1.0.5" + call-bind "^1.0.7" define-properties "^1.2.1" - es-abstract "^1.22.3" + es-abstract "^1.23.2" es-errors "^1.3.0" + es-object-atoms "^1.0.0" es-shim-unscopables "^1.0.2" array.prototype.findlastindex@^1.2.3: - version "1.2.4" - resolved "https://registry.yarnpkg.com/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.4.tgz#d1c50f0b3a9da191981ff8942a0aedd82794404f" - integrity sha512-hzvSHUshSpCflDR1QMUBLHGHP1VIEBegT4pix9H/Z92Xw3ySoy6c2qh7lJWTJnRJ8JCZ9bJNCgTyYaJGcJu6xQ== + version "1.2.5" + resolved "https://registry.yarnpkg.com/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.5.tgz#8c35a755c72908719453f87145ca011e39334d0d" + integrity sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ== dependencies: - call-bind "^1.0.5" + call-bind "^1.0.7" define-properties "^1.2.1" - es-abstract "^1.22.3" + es-abstract "^1.23.2" es-errors "^1.3.0" + es-object-atoms "^1.0.0" es-shim-unscopables "^1.0.2" array.prototype.flat@^1.3.1, array.prototype.flat@^1.3.2: @@ -3977,14 +3959,16 @@ array.prototype.flatmap@^1.3.2: es-shim-unscopables "^1.0.0" array.prototype.reduce@^1.0.6: - version "1.0.6" - resolved "https://registry.yarnpkg.com/array.prototype.reduce/-/array.prototype.reduce-1.0.6.tgz#63149931808c5fc1e1354814923d92d45f7d96d5" - integrity sha512-UW+Mz8LG/sPSU8jRDCjVr6J/ZKAGpHfwrZ6kWTG5qCxIEiXdVshqGnu5vEZA8S1y6X4aCSbQZ0/EEsfvEvBiSg== + version "1.0.7" + resolved "https://registry.yarnpkg.com/array.prototype.reduce/-/array.prototype.reduce-1.0.7.tgz#6aadc2f995af29cb887eb866d981dc85ab6f7dc7" + integrity sha512-mzmiUCVwtiD4lgxYP8g7IYy8El8p2CSMePvIbTS7gchKir/L1fgJrk0yDKmAX6mnRQFKNADYIk8nNlTris5H1Q== dependencies: - call-bind "^1.0.2" - define-properties "^1.2.0" - es-abstract "^1.22.1" + call-bind "^1.0.7" + define-properties "^1.2.1" + es-abstract "^1.23.2" es-array-method-boxes-properly "^1.0.0" + es-errors "^1.3.0" + es-object-atoms "^1.0.0" is-string "^1.0.7" array.prototype.toreversed@^1.1.2: @@ -4061,13 +4045,6 @@ async@^3.2.0, async@^3.2.3: resolved "https://registry.yarnpkg.com/async/-/async-3.2.5.tgz#ebd52a8fdaf7a2289a24df399f8d8485c8a46b66" integrity sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg== -asynciterator.prototype@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/asynciterator.prototype/-/asynciterator.prototype-1.0.0.tgz#8c5df0514936cdd133604dfcc9d3fb93f09b2b62" - integrity sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg== - dependencies: - has-symbols "^1.0.3" - asynckit@^0.4.0: version "0.4.0" resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" @@ -4089,18 +4066,18 @@ author-regex@^1.0.0: integrity sha512-KbWgR8wOYRAPekEmMXrYYdc7BRyhn2Ftk7KWfMUnQ43hFdojWEFRxhhRUm3/OFEdPa1r0KAvTTg9YQK57xTe0g== autoprefixer@^10.4.13: - version "10.4.18" - resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.18.tgz#fcb171a3b017be7cb5d8b7a825f5aacbf2045163" - integrity sha512-1DKbDfsr6KUElM6wg+0zRNkB/Q7WcKYAaK+pzXn+Xqmszm/5Xa9coeNdtP88Vi+dPzZnMjhge8GIV49ZQkDa+g== + version "10.4.19" + resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.19.tgz#ad25a856e82ee9d7898c59583c1afeb3fa65f89f" + integrity sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew== dependencies: browserslist "^4.23.0" - caniuse-lite "^1.0.30001591" + caniuse-lite "^1.0.30001599" fraction.js "^4.3.7" normalize-range "^0.1.2" picocolors "^1.0.0" postcss-value-parser "^4.2.0" -available-typed-arrays@^1.0.6, available-typed-arrays@^1.0.7: +available-typed-arrays@^1.0.7: version "1.0.7" resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz#a5cc375d6a03c2efc87a553f3e0b1522def14846" integrity sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ== @@ -4200,29 +4177,29 @@ babel-plugin-named-asset-import@^0.3.8: resolved "https://registry.yarnpkg.com/babel-plugin-named-asset-import/-/babel-plugin-named-asset-import-0.3.8.tgz#6b7fa43c59229685368683c28bc9734f24524cc2" integrity sha512-WXiAc++qo7XcJ1ZnTYGtLxmBCVbddAml3CEXgWaBzNzLNoxtQ8AiGEFDMOhot9XjTCQbvP5E77Fj9Gk924f00Q== -babel-plugin-polyfill-corejs2@^0.4.8: - version "0.4.9" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.9.tgz#15a285f681e1c5495093d85f1cf72bd1cbed41ce" - integrity sha512-BXIWIaO3MewbXWdJdIGDWZurv5OGJlFNo7oy20DpB3kWDVJLcY2NRypRsRUbRe5KMqSNLuOGnWTFQQtY5MAsRw== +babel-plugin-polyfill-corejs2@^0.4.10: + version "0.4.10" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.10.tgz#276f41710b03a64f6467433cab72cbc2653c38b1" + integrity sha512-rpIuu//y5OX6jVU+a5BCn1R5RSZYWAl2Nar76iwaOdycqb6JPxediskWFMMl7stfwNJR4b7eiQvh5fB5TEQJTQ== dependencies: "@babel/compat-data" "^7.22.6" - "@babel/helper-define-polyfill-provider" "^0.6.0" + "@babel/helper-define-polyfill-provider" "^0.6.1" semver "^6.3.1" -babel-plugin-polyfill-corejs3@^0.9.0: - version "0.9.0" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.9.0.tgz#9eea32349d94556c2ad3ab9b82ebb27d4bf04a81" - integrity sha512-7nZPG1uzK2Ymhy/NbaOWTg3uibM2BmGASS4vHS4szRZAIR8R6GwA/xAujpdrXU5iyklrimWnLWU+BLF9suPTqg== +babel-plugin-polyfill-corejs3@^0.10.1, babel-plugin-polyfill-corejs3@^0.10.4: + version "0.10.4" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.4.tgz#789ac82405ad664c20476d0233b485281deb9c77" + integrity sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg== dependencies: - "@babel/helper-define-polyfill-provider" "^0.5.0" - core-js-compat "^3.34.0" + "@babel/helper-define-polyfill-provider" "^0.6.1" + core-js-compat "^3.36.1" -babel-plugin-polyfill-regenerator@^0.5.5: - version "0.5.5" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.5.tgz#8b0c8fc6434239e5d7b8a9d1f832bb2b0310f06a" - integrity sha512-OJGYZlhLqBh2DDHeqAxWB1XIvr49CxiJ2gIt61/PU55CQK4Z58OzMqjDe1zwQdQk+rBYsRc+1rJmdajM3gimHg== +babel-plugin-polyfill-regenerator@^0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.1.tgz#4f08ef4c62c7a7f66a35ed4c0d75e30506acc6be" + integrity sha512-JfTApdE++cgcTWjsiCQlLyFBMbTUft9ja17saCc93lgV33h4tuCVj7tlvu//qpLwaG+3yEz7/KhahGrUMkVq9g== dependencies: - "@babel/helper-define-polyfill-provider" "^0.5.0" + "@babel/helper-define-polyfill-provider" "^0.6.1" babel-plugin-react-require@^3.1.3: version "3.1.3" @@ -4362,9 +4339,9 @@ big.js@^5.2.2: integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ== binary-extensions@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" - integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== + version "2.3.0" + resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.3.0.tgz#f6e14a97858d327252200242d4ccfe522c445522" + integrity sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw== bl@^4.0.3: version "4.1.0" @@ -4476,7 +4453,7 @@ browser-process-hrtime@^1.0.0: resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz#3c9b4b7d782c8121e56f10106d84c0d0ffc94626" integrity sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow== -browserslist@^4.0.0, browserslist@^4.18.1, browserslist@^4.21.10, browserslist@^4.21.4, browserslist@^4.22.2, browserslist@^4.22.3, browserslist@^4.23.0: +browserslist@^4.0.0, browserslist@^4.18.1, browserslist@^4.21.10, browserslist@^4.21.4, browserslist@^4.22.2, browserslist@^4.23.0: version "4.23.0" resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.23.0.tgz#8f3acc2bbe73af7213399430890f86c63a5674ab" integrity sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ== @@ -4608,15 +4585,10 @@ caniuse-api@^3.0.0: lodash.memoize "^4.1.2" lodash.uniq "^4.5.0" -caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001587: - version "1.0.30001591" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001591.tgz#16745e50263edc9f395895a7cd468b9f3767cf33" - integrity sha512-PCzRMei/vXjJyL5mJtzNiUCKP59dm8Apqc3PH8gJkMnMXZGox93RbE76jHsmLwmIo6/3nsYIpJtx0O7u5PqFuQ== - -caniuse-lite@^1.0.30001591: - version "1.0.30001597" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001597.tgz#8be94a8c1d679de23b22fbd944232aa1321639e6" - integrity sha512-7LjJvmQU6Sj7bL0j5b5WY/3n7utXUJvAe1lxhsHDbLmwX9mdL86Yjtr+5SRCyf8qME4M7pU2hswj0FpyBVCv9w== +caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001587, caniuse-lite@^1.0.30001599: + version "1.0.30001600" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001600.tgz#93a3ee17a35aa6a9f0c6ef1b2ab49507d1ab9079" + integrity sha512-+2S9/2JFhYmYaDpZvo0lKkfvuKIglrx68MwOBqMGHhQsNkLjB5xtc/TGoEPs+MxjSyN/72qer2g97nzR641mOQ== canvg@^3.0.6: version "3.0.10" @@ -5074,22 +5046,22 @@ cookie-signature@1.0.6: resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" integrity sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ== -cookie@0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.5.0.tgz#d1f5d71adec6558c58f389987c366aa47e994f8b" - integrity sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw== +cookie@0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.6.0.tgz#2798b04b071b0ecbff0dbb62a505a8efa4e19051" + integrity sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw== -core-js-compat@^3.31.0, core-js-compat@^3.34.0: - version "3.36.0" - resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.36.0.tgz#087679119bc2fdbdefad0d45d8e5d307d45ba190" - integrity sha512-iV9Pd/PsgjNWBXeq8XRtWVSgz2tKAfhfvBs7qxYty+RlRd+OCksaWmOnc4JKrTc1cToXL1N0s3l/vwlxPtdElw== +core-js-compat@^3.31.0, core-js-compat@^3.36.1: + version "3.36.1" + resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.36.1.tgz#1818695d72c99c25d621dca94e6883e190cea3c8" + integrity sha512-Dk997v9ZCt3X/npqzyGdTlq6t7lDBhZwGvV94PKzDArjp7BTRm7WlDAXYd/OWdeFHO8OChQYRJNJvUCqCbrtKA== dependencies: - browserslist "^4.22.3" + browserslist "^4.23.0" core-js-pure@^3.23.3: - version "3.36.0" - resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.36.0.tgz#ffb34330b14e594d6a9835cf5843b4123f1d95db" - integrity sha512-cN28qmhRNgbMZZMc/RFu5w8pK9VJzpb2rJVR/lHuZJKwmXnoWOpXmMkxqBB514igkp1Hu8WGROsiOAzUcKdHOQ== + version "3.36.1" + resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.36.1.tgz#1461c89e76116528b54eba20a0aff30164087a94" + integrity sha512-NXCvHvSVYSrewP0L5OhltzXeWFJLo2AL2TYnj6iLV3Bw8mM62wAQMNgUCRI6EBu6hVVpbCxmOPlxh1Ikw2PfUA== core-js@^1.0.0: version "1.2.7" @@ -5097,9 +5069,9 @@ core-js@^1.0.0: integrity sha512-ZiPp9pZlgxpWRu0M+YWbm6+aQ84XEfH1JRXvfOc/fILWI0VKhLC2LX13X1NYq4fULzLMq7Hfh43CSo2/aIaUPA== core-js@^3.19.2, core-js@^3.6.0, core-js@^3.8.3: - version "3.36.0" - resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.36.0.tgz#e752fa0b0b462a0787d56e9d73f80b0f7c0dde68" - integrity sha512-mt7+TUBbTFg5+GngsAxeKBTl5/VS0guFeJacYge9OmHb+m058UwwIm41SE9T4Den7ClatV57B6TYTuJ0CX1MAw== + version "3.36.1" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.36.1.tgz#c97a7160ebd00b2de19e62f4bbd3406ab720e578" + integrity sha512-BTvUrwxVBezj5SZ3f10ImnX2oRByMxql3EimVqMysepbC9EeMUOpLwdy6Eoili2x6E4kf+ZUB5k/+Jv55alPfA== core-util-is@1.0.2: version "1.0.2" @@ -5410,9 +5382,9 @@ csstype@^3.0.2: integrity sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw== cypress@^13.7.0: - version "13.7.0" - resolved "https://registry.yarnpkg.com/cypress/-/cypress-13.7.0.tgz#19e53c0bd6eca5e3bde0d6ac9e98fbf1782e3a9e" - integrity sha512-UimjRSJJYdTlvkChcdcfywKJ6tUYuwYuk/n1uMMglrvi+ZthNhoRYcxnWgTqUtkl17fXrPAsD5XT2rcQYN1xKA== + version "13.7.1" + resolved "https://registry.yarnpkg.com/cypress/-/cypress-13.7.1.tgz#d1208eb04efd46ef52a30480a5da71a03373261a" + integrity sha512-4u/rpFNxOFCoFX/Z5h+uwlkBO4mWzAjveURi3vqdSu56HPvVdyGTxGw4XKGWt399Y1JwIn9E1L9uMXQpc0o55w== dependencies: "@cypress/request" "^3.0.0" "@cypress/xvfb" "^1.2.4" @@ -5478,6 +5450,33 @@ data-urls@^2.0.0: whatwg-mimetype "^2.3.0" whatwg-url "^8.0.0" +data-view-buffer@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/data-view-buffer/-/data-view-buffer-1.0.1.tgz#8ea6326efec17a2e42620696e671d7d5a8bc66b2" + integrity sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA== + dependencies: + call-bind "^1.0.6" + es-errors "^1.3.0" + is-data-view "^1.0.1" + +data-view-byte-length@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz#90721ca95ff280677eb793749fce1011347669e2" + integrity sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ== + dependencies: + call-bind "^1.0.7" + es-errors "^1.3.0" + is-data-view "^1.0.1" + +data-view-byte-offset@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz#5e0bbfb4828ed2d1b9b400cd8a7d119bca0ff18a" + integrity sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA== + dependencies: + call-bind "^1.0.6" + es-errors "^1.3.0" + is-data-view "^1.0.1" + dayjs@^1.10.4: version "1.11.10" resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.11.10.tgz#68acea85317a6e164457d6d6947564029a6a16a0" @@ -5765,9 +5764,9 @@ domhandler@^4.0.0, domhandler@^4.2.0, domhandler@^4.3.1: domelementtype "^2.2.0" dompurify@^2.2.0: - version "2.4.7" - resolved "https://registry.yarnpkg.com/dompurify/-/dompurify-2.4.7.tgz#277adeb40a2c84be2d42a8bcd45f582bfa4d0cfc" - integrity sha512-kxxKlPEDa6Nc5WJi+qRgPbOAbgTpSULL+vI3NUXsZMlkJxTqYI9wg5ZTay2sFrdZRWHPWNi+EdAhcJf81WtoMQ== + version "2.4.9" + resolved "https://registry.yarnpkg.com/dompurify/-/dompurify-2.4.9.tgz#9ccdd9e1780653156b09de873f5372bc1eaf2c40" + integrity sha512-iHtnxYMotKgOTvxIqq677JsKHvCOkAFqj9x8Mek2zdeHW1XjuFKwjpmZeMaXQRQ8AbJZDbcRz/+r1QhwvFtmQg== domutils@^1.7.0: version "1.7.0" @@ -5870,9 +5869,9 @@ ejs@^3.1.5, ejs@^3.1.6: jake "^10.8.5" electron-to-chromium@^1.4.668: - version "1.4.699" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.699.tgz#dd53c939e13da64e94b341e563f0a3011b4ef0e9" - integrity sha512-I7q3BbQi6e4tJJN5CRcyvxhK0iJb34TV8eJQcgh+fR2fQ8miMgZcEInckCo1U9exDHbfz7DLDnFn8oqH/VcRKw== + version "1.4.715" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.715.tgz#bb16bcf2a3537962fccfa746b5c98c5f7404ff46" + integrity sha512-XzWNH4ZSa9BwVUQSDorPWAUQ5WGuYz7zJUNpNif40zFCiCl20t8zgylmreNmn26h5kiyw2lg7RfTmeMBsDklqg== emittery@^0.10.2: version "0.10.2" @@ -5928,10 +5927,10 @@ end-of-stream@^1.0.0, end-of-stream@^1.1.0, end-of-stream@^1.4.1: dependencies: once "^1.4.0" -enhanced-resolve@^5.15.0: - version "5.15.1" - resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.15.1.tgz#384391e025f099e67b4b00bfd7f0906a408214e1" - integrity sha512-3d3JRbwsCLJsYgvb6NuWEG44jjPSOMuS73L/6+7BZuoKm3W+qXnSoIYVHi8dG7Qcg4inAY4jbzkZ7MnskePeDg== +enhanced-resolve@^5.16.0: + version "5.16.0" + resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.16.0.tgz#65ec88778083056cb32487faa9aef82ed0864787" + integrity sha512-O+QWCviPNSSLAD9Ucn8Awv+poAkqn3T1XY5/N7kR7rQO9yfSGWkYZDwpJ+iKF7B8rxaQKWngSqACpgzeapSyoA== dependencies: graceful-fs "^4.2.4" tapable "^2.2.0" @@ -5978,17 +5977,21 @@ error-stack-parser@^2.0.6: dependencies: stackframe "^1.3.4" -es-abstract@^1.17.2, es-abstract@^1.22.1, es-abstract@^1.22.3, es-abstract@^1.22.4: - version "1.22.5" - resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.22.5.tgz#1417df4e97cc55f09bf7e58d1e614bc61cb8df46" - integrity sha512-oW69R+4q2wG+Hc3KZePPZxOiisRIqfKBVo/HLx94QcJeWGU/8sZhCvc829rd1kS366vlJbzBfXf9yWwf0+Ko7w== +es-abstract@^1.17.2, es-abstract@^1.22.1, es-abstract@^1.22.3, es-abstract@^1.23.0, es-abstract@^1.23.1, es-abstract@^1.23.2: + version "1.23.2" + resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.23.2.tgz#693312f3940f967b8dd3eebacb590b01712622e0" + integrity sha512-60s3Xv2T2p1ICykc7c+DNDPLDMm9t4QxCOUU0K9JxiLjM3C1zB9YVdN7tjxrFd4+AkZ8CdX1ovUga4P2+1e+/w== dependencies: array-buffer-byte-length "^1.0.1" arraybuffer.prototype.slice "^1.0.3" available-typed-arrays "^1.0.7" call-bind "^1.0.7" + data-view-buffer "^1.0.1" + data-view-byte-length "^1.0.1" + data-view-byte-offset "^1.0.0" es-define-property "^1.0.0" es-errors "^1.3.0" + es-object-atoms "^1.0.0" es-set-tostringtag "^2.0.3" es-to-primitive "^1.2.1" function.prototype.name "^1.1.6" @@ -5999,10 +6002,11 @@ es-abstract@^1.17.2, es-abstract@^1.22.1, es-abstract@^1.22.3, es-abstract@^1.22 has-property-descriptors "^1.0.2" has-proto "^1.0.3" has-symbols "^1.0.3" - hasown "^2.0.1" + hasown "^2.0.2" internal-slot "^1.0.7" is-array-buffer "^3.0.4" is-callable "^1.2.7" + is-data-view "^1.0.1" is-negative-zero "^2.0.3" is-regex "^1.1.4" is-shared-array-buffer "^1.0.3" @@ -6013,17 +6017,17 @@ es-abstract@^1.17.2, es-abstract@^1.22.1, es-abstract@^1.22.3, es-abstract@^1.22 object-keys "^1.1.1" object.assign "^4.1.5" regexp.prototype.flags "^1.5.2" - safe-array-concat "^1.1.0" + safe-array-concat "^1.1.2" safe-regex-test "^1.0.3" - string.prototype.trim "^1.2.8" - string.prototype.trimend "^1.0.7" + string.prototype.trim "^1.2.9" + string.prototype.trimend "^1.0.8" string.prototype.trimstart "^1.0.7" typed-array-buffer "^1.0.2" typed-array-byte-length "^1.0.1" typed-array-byte-offset "^1.0.2" typed-array-length "^1.0.5" unbox-primitive "^1.0.2" - which-typed-array "^1.1.14" + which-typed-array "^1.1.15" es-array-method-boxes-properly@^1.0.0: version "1.0.0" @@ -6037,7 +6041,7 @@ es-define-property@^1.0.0: dependencies: get-intrinsic "^1.2.4" -es-errors@^1.0.0, es-errors@^1.1.0, es-errors@^1.2.1, es-errors@^1.3.0: +es-errors@^1.1.0, es-errors@^1.2.1, es-errors@^1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/es-errors/-/es-errors-1.3.0.tgz#05f75a25dab98e4fb1dcd5e1472c0546d5057c8f" integrity sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw== @@ -6058,32 +6062,38 @@ es-get-iterator@^1.1.3: stop-iteration-iterator "^1.0.0" es-iterator-helpers@^1.0.15, es-iterator-helpers@^1.0.17: - version "1.0.17" - resolved "https://registry.yarnpkg.com/es-iterator-helpers/-/es-iterator-helpers-1.0.17.tgz#123d1315780df15b34eb181022da43e734388bb8" - integrity sha512-lh7BsUqelv4KUbR5a/ZTaGGIMLCjPGPqJ6q+Oq24YP0RdyptX1uzm4vvaqzk7Zx3bpl/76YLTTDj9L7uYQ92oQ== + version "1.0.18" + resolved "https://registry.yarnpkg.com/es-iterator-helpers/-/es-iterator-helpers-1.0.18.tgz#4d3424f46b24df38d064af6fbbc89274e29ea69d" + integrity sha512-scxAJaewsahbqTYrGKJihhViaM6DDZDDoucfvzNbK0pOren1g/daDQ3IAhzn+1G14rBG7w+i5N+qul60++zlKA== dependencies: - asynciterator.prototype "^1.0.0" call-bind "^1.0.7" define-properties "^1.2.1" - es-abstract "^1.22.4" + es-abstract "^1.23.0" es-errors "^1.3.0" - es-set-tostringtag "^2.0.2" + es-set-tostringtag "^2.0.3" function-bind "^1.1.2" get-intrinsic "^1.2.4" globalthis "^1.0.3" has-property-descriptors "^1.0.2" - has-proto "^1.0.1" + has-proto "^1.0.3" has-symbols "^1.0.3" internal-slot "^1.0.7" iterator.prototype "^1.1.2" - safe-array-concat "^1.1.0" + safe-array-concat "^1.1.2" es-module-lexer@^1.2.1: - version "1.4.1" - resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-1.4.1.tgz#41ea21b43908fe6a287ffcbe4300f790555331f5" - integrity sha512-cXLGjP0c4T3flZJKQSuziYoq7MlT+rnvfZjfp7h+I7K9BNX54kP9nyWvdbwjQ4u1iWbOL4u96fgeZLToQlZC7w== + version "1.4.2" + resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-1.4.2.tgz#ba1a62255ff9b41023aaf9bd08c016a5f1a3fef3" + integrity sha512-7nOqkomXZEaxUDJw21XZNtRk739QvrPSoZoRtbsEfcii00vdzZUh6zh1CQwHhrib8MdEtJfv5rJiGeb4KuV/vw== -es-set-tostringtag@^2.0.2, es-set-tostringtag@^2.0.3: +es-object-atoms@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/es-object-atoms/-/es-object-atoms-1.0.0.tgz#ddb55cd47ac2e240701260bc2a8e31ecb643d941" + integrity sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw== + dependencies: + es-errors "^1.3.0" + +es-set-tostringtag@^2.0.3: version "2.0.3" resolved "https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz#8bb60f0a440c2e4281962428438d58545af39777" integrity sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ== @@ -6547,16 +6557,16 @@ expect@^27.5.1: jest-message-util "^27.5.1" express@^4.17.3: - version "4.18.3" - resolved "https://registry.yarnpkg.com/express/-/express-4.18.3.tgz#6870746f3ff904dee1819b82e4b51509afffb0d4" - integrity sha512-6VyCijWQ+9O7WuVMTRBTl+cjNNIzD5cY5mQ1WM8r/LEkI2u8EYpOotESNwzNlyCn3g+dmjKYI6BmNneSr/FSRw== + version "4.19.1" + resolved "https://registry.yarnpkg.com/express/-/express-4.19.1.tgz#4700635795e911600a45596138cf5b0320e78256" + integrity sha512-K4w1/Bp7y8iSiVObmCrtq8Cs79XjJc/RU2YYkZQ7wpUu5ZyZ7MtPHkqoMz4pf+mgXfNvo2qft8D9OnrH2ABk9w== dependencies: accepts "~1.3.8" array-flatten "1.1.1" body-parser "1.20.2" content-disposition "0.5.4" content-type "~1.0.4" - cookie "0.5.0" + cookie "0.6.0" cookie-signature "1.0.6" debug "2.6.9" depd "2.0.0" @@ -6806,9 +6816,9 @@ flush-write-stream@^1.0.2: readable-stream "^2.3.6" follow-redirects@^1.0.0, follow-redirects@^1.14.7: - version "1.15.5" - resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.5.tgz#54d4d6d062c0fa7d9d17feb008461550e3ba8020" - integrity sha512-vSFWUON1B+yAw1VN4xMfxgn5fTUiaOzAJCKBwIIgT/+7CuGy9+r+5gITvP62j3RmaD5Ph65UaERdOSRGUzZtgw== + version "1.15.6" + resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.6.tgz#7f815c0cda4249c74ff09e95ef97c23b5fd0399b" + integrity sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA== for-each@^0.3.3: version "0.3.3" @@ -7231,7 +7241,7 @@ got@^9.6.0: to-readable-stream "^1.0.0" url-parse-lax "^3.0.0" -graceful-fs@^4.0.0, graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.4, graceful-fs@^4.2.6, graceful-fs@^4.2.9: +graceful-fs@^4.0.0, graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.11, graceful-fs@^4.2.4, graceful-fs@^4.2.6, graceful-fs@^4.2.9: version "4.2.11" resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== @@ -7322,7 +7332,7 @@ has-symbols@^1.0.1, has-symbols@^1.0.2, has-symbols@^1.0.3: resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== -has-tostringtag@^1.0.0, has-tostringtag@^1.0.1, has-tostringtag@^1.0.2: +has-tostringtag@^1.0.0, has-tostringtag@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.2.tgz#2cdc42d40bef2e5b4eeab7c01a73c54ce7ab5abc" integrity sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw== @@ -7334,10 +7344,10 @@ has-yarn@^2.1.0: resolved "https://registry.yarnpkg.com/has-yarn/-/has-yarn-2.1.0.tgz#137e11354a7b5bf11aa5cb649cf0c6f3ff2b2e77" integrity sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw== -hasown@^2.0.0, hasown@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.1.tgz#26f48f039de2c0f8d3356c223fb8d50253519faa" - integrity sha512-1/th4MHjnwncwXsIW6QMzlvYL9kG5e/CpVvLRZe4XPa8TOUNbCELqmvhDmnkNsAjwaG4+I8gJJL0JBvTTLO9qA== +hasown@^2.0.0, hasown@^2.0.1, hasown@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.2.tgz#003eaf91be7adc372e84ec59dc37252cedb80003" + integrity sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ== dependencies: function-bind "^1.1.2" @@ -7724,7 +7734,7 @@ inquirer@^7.3.3: strip-ansi "^6.0.0" through "^2.3.6" -internal-slot@^1.0.4, internal-slot@^1.0.5, internal-slot@^1.0.7: +internal-slot@^1.0.4, internal-slot@^1.0.7: version "1.0.7" resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.7.tgz#c06dcca3ed874249881007b0a5523b172a190802" integrity sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g== @@ -7832,6 +7842,13 @@ is-core-module@^2.13.0, is-core-module@^2.13.1: dependencies: hasown "^2.0.0" +is-data-view@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-data-view/-/is-data-view-1.0.1.tgz#4b4d3a511b70f3dc26d42c03ca9ca515d847759f" + integrity sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w== + dependencies: + is-typed-array "^1.1.13" + is-date-object@^1.0.1, is-date-object@^1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" @@ -9706,61 +9723,63 @@ object.assign@^4.0.4, object.assign@^4.1.2, object.assign@^4.1.4, object.assign@ object-keys "^1.1.1" object.entries@^1.1.5, object.entries@^1.1.7: - version "1.1.7" - resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.7.tgz#2b47760e2a2e3a752f39dd874655c61a7f03c131" - integrity sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA== + version "1.1.8" + resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.8.tgz#bffe6f282e01f4d17807204a24f8edd823599c41" + integrity sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ== dependencies: - call-bind "^1.0.2" - define-properties "^1.2.0" - es-abstract "^1.22.1" + call-bind "^1.0.7" + define-properties "^1.2.1" + es-object-atoms "^1.0.0" object.fromentries@^2.0.7: - version "2.0.7" - resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.7.tgz#71e95f441e9a0ea6baf682ecaaf37fa2a8d7e616" - integrity sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA== + version "2.0.8" + resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.8.tgz#f7195d8a9b97bd95cbc1999ea939ecd1a2b00c65" + integrity sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ== dependencies: - call-bind "^1.0.2" - define-properties "^1.2.0" - es-abstract "^1.22.1" + call-bind "^1.0.7" + define-properties "^1.2.1" + es-abstract "^1.23.2" + es-object-atoms "^1.0.0" object.getownpropertydescriptors@^2.1.0: - version "2.1.7" - resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.7.tgz#7a466a356cd7da4ba8b9e94ff6d35c3eeab5d56a" - integrity sha512-PrJz0C2xJ58FNn11XV2lr4Jt5Gzl94qpy9Lu0JlfEj14z88sqbSBJCBEzdlNUCzY2gburhbrwOZ5BHCmuNUy0g== + version "2.1.8" + resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.8.tgz#2f1fe0606ec1a7658154ccd4f728504f69667923" + integrity sha512-qkHIGe4q0lSYMv0XI4SsBTJz3WaURhLvd0lKSgtVuOsJ2krg4SgMw3PIRQFMp07yi++UR3se2mkcLqsBNpBb/A== dependencies: array.prototype.reduce "^1.0.6" - call-bind "^1.0.2" - define-properties "^1.2.0" - es-abstract "^1.22.1" - safe-array-concat "^1.0.0" + call-bind "^1.0.7" + define-properties "^1.2.1" + es-abstract "^1.23.2" + es-object-atoms "^1.0.0" + gopd "^1.0.1" + safe-array-concat "^1.1.2" object.groupby@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/object.groupby/-/object.groupby-1.0.2.tgz#494800ff5bab78fd0eff2835ec859066e00192ec" - integrity sha512-bzBq58S+x+uo0VjurFT0UktpKHOZmv4/xePiOA1nbB9pMqpGK7rUPNgf+1YC+7mE+0HzhTMqNUuCqvKhj6FnBw== + version "1.0.3" + resolved "https://registry.yarnpkg.com/object.groupby/-/object.groupby-1.0.3.tgz#9b125c36238129f6f7b61954a1e7176148d5002e" + integrity sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ== dependencies: - array.prototype.filter "^1.0.3" - call-bind "^1.0.5" + call-bind "^1.0.7" define-properties "^1.2.1" - es-abstract "^1.22.3" - es-errors "^1.0.0" + es-abstract "^1.23.2" object.hasown@^1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/object.hasown/-/object.hasown-1.1.3.tgz#6a5f2897bb4d3668b8e79364f98ccf971bda55ae" - integrity sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA== + version "1.1.4" + resolved "https://registry.yarnpkg.com/object.hasown/-/object.hasown-1.1.4.tgz#e270ae377e4c120cdcb7656ce66884a6218283dc" + integrity sha512-FZ9LZt9/RHzGySlBARE3VF+gE26TxR38SdmqOqliuTnl9wrKulaQs+4dee1V+Io8VfxqzAfHu6YuRgUy8OHoTg== dependencies: - define-properties "^1.2.0" - es-abstract "^1.22.1" + define-properties "^1.2.1" + es-abstract "^1.23.2" + es-object-atoms "^1.0.0" object.values@^1.1.0, object.values@^1.1.6, object.values@^1.1.7: - version "1.1.7" - resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.7.tgz#617ed13272e7e1071b43973aa1655d9291b8442a" - integrity sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng== + version "1.2.0" + resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.2.0.tgz#65405a9d92cee68ac2d303002e0b8470a4d9ab1b" + integrity sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ== dependencies: - call-bind "^1.0.2" - define-properties "^1.2.0" - es-abstract "^1.22.1" + call-bind "^1.0.7" + define-properties "^1.2.1" + es-object-atoms "^1.0.0" oblivious-set@1.0.0: version "1.0.0" @@ -10641,9 +10660,9 @@ postcss-selector-not@^6.0.1: postcss-selector-parser "^6.0.10" postcss-selector-parser@^6.0.10, postcss-selector-parser@^6.0.11, postcss-selector-parser@^6.0.2, postcss-selector-parser@^6.0.4, postcss-selector-parser@^6.0.5, postcss-selector-parser@^6.0.9: - version "6.0.15" - resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.15.tgz#11cc2b21eebc0b99ea374ffb9887174855a01535" - integrity sha512-rEYkQOMUCEMhsKbK66tbEU9QVIxbhN18YiniAwA7XQYTVBqrBy+P2p5JcdqsHgKM2zWylp8d7J6eszocfds5Sw== + version "6.0.16" + resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.16.tgz#3b88b9f5c5abd989ef4e2fc9ec8eedd34b20fb04" + integrity sha512-A0RVJrX+IUkVZbW3ClroRWurercFhieevHB38sr2+l9eUClMqome3LmEmnhlNy+5Mr2EYN6B2Kaw9wYdd+VHiw== dependencies: cssesc "^3.0.0" util-deprecate "^1.0.2" @@ -10677,13 +10696,13 @@ postcss@^7.0.35: source-map "^0.6.1" postcss@^8.3.5, postcss@^8.4.23, postcss@^8.4.33, postcss@^8.4.4: - version "8.4.35" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.35.tgz#60997775689ce09011edf083a549cea44aabe2f7" - integrity sha512-u5U8qYpBCpN13BsiEB0CbR1Hhh4Gc0zLFuedrHJKMctHCHAGrMdG0PRM/KErzAL3CU6/eckEtmHNB3x6e3c0vA== + version "8.4.38" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.38.tgz#b387d533baf2054288e337066d81c6bee9db9e0e" + integrity sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A== dependencies: nanoid "^3.3.7" picocolors "^1.0.0" - source-map-js "^1.0.2" + source-map-js "^1.2.0" prelude-ls@^1.2.1: version "1.2.1" @@ -11261,15 +11280,15 @@ recursive-readdir@^2.2.2: minimatch "^3.0.5" reflect.getprototypeof@^1.0.4: - version "1.0.5" - resolved "https://registry.yarnpkg.com/reflect.getprototypeof/-/reflect.getprototypeof-1.0.5.tgz#e0bd28b597518f16edaf9c0e292c631eb13e0674" - integrity sha512-62wgfC8dJWrmxv44CA36pLDnP6KKl3Vhxb7PL+8+qrrFMMoJij4vgiMP8zV4O8+CBMXY1mHxI5fITGHXFHVmQQ== + version "1.0.6" + resolved "https://registry.yarnpkg.com/reflect.getprototypeof/-/reflect.getprototypeof-1.0.6.tgz#3ab04c32a8390b770712b7a8633972702d278859" + integrity sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg== dependencies: - call-bind "^1.0.5" + call-bind "^1.0.7" define-properties "^1.2.1" - es-abstract "^1.22.3" - es-errors "^1.0.0" - get-intrinsic "^1.2.3" + es-abstract "^1.23.1" + es-errors "^1.3.0" + get-intrinsic "^1.2.4" globalthis "^1.0.3" which-builtin-type "^1.1.3" @@ -11307,7 +11326,7 @@ regex-parser@^2.2.11: resolved "https://registry.yarnpkg.com/regex-parser/-/regex-parser-2.3.0.tgz#4bb61461b1a19b8b913f3960364bb57887f920ee" integrity sha512-TVILVSz2jY5D47F4mA4MppkBrafEaiUWJO/TcZHEIuI13AqoZMkK1WMA4Om1YkYbTx+9Ki1/tSUXbceyr9saRg== -regexp.prototype.flags@^1.5.0, regexp.prototype.flags@^1.5.1, regexp.prototype.flags@^1.5.2: +regexp.prototype.flags@^1.5.1, regexp.prototype.flags@^1.5.2: version "1.5.2" resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz#138f644a3350f981a858c44f6bb1a61ff59be334" integrity sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw== @@ -11606,10 +11625,10 @@ rxjs@^7.5.1: dependencies: tslib "^2.1.0" -safe-array-concat@^1.0.0, safe-array-concat@^1.1.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/safe-array-concat/-/safe-array-concat-1.1.1.tgz#74b207310b41ade00d008dd9bfe4c387962f3a26" - integrity sha512-a4i5sUH9QtYYwK3n+9LEumSTV3VMZwlH2xkf/MdMd1dGtFr7wjCbJi9RoKEgfNpX3utiIsNEhadCCqBTKOtaGQ== +safe-array-concat@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/safe-array-concat/-/safe-array-concat-1.1.2.tgz#81d77ee0c4e8b863635227c721278dd524c20edb" + integrity sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q== dependencies: call-bind "^1.0.7" get-intrinsic "^1.2.4" @@ -11820,7 +11839,7 @@ set-function-length@^1.2.1: gopd "^1.0.1" has-property-descriptors "^1.0.2" -set-function-name@^2.0.0, set-function-name@^2.0.1: +set-function-name@^2.0.1, set-function-name@^2.0.2: version "2.0.2" resolved "https://registry.yarnpkg.com/set-function-name/-/set-function-name-2.0.2.tgz#16a705c5a0dc2f5e638ca96d8a8cd4e1c2b90985" integrity sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ== @@ -11881,7 +11900,7 @@ shell-quote@^1.7.3, shell-quote@^1.8.1: resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.8.1.tgz#6dbf4db75515ad5bac63b4f1894c3a154c766680" integrity sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA== -side-channel@^1.0.4: +side-channel@^1.0.4, side-channel@^1.0.6: version "1.0.6" resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.6.tgz#abd25fb7cd24baf45466406b1096b7831c9215f2" integrity sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA== @@ -11973,10 +11992,10 @@ source-map-explorer@^2.1.0: temp "^0.9.4" yargs "^16.2.0" -source-map-js@^1.0.1, source-map-js@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" - integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== +source-map-js@^1.0.1, source-map-js@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.0.tgz#16b809c162517b5b8c3e7dcd315a2a5c2612b2af" + integrity sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg== source-map-loader@^3.0.0: version "3.0.2" @@ -12178,46 +12197,50 @@ string-width@^5.0.1, string-width@^5.1.2: strip-ansi "^7.0.1" string.prototype.matchall@^4.0.10, string.prototype.matchall@^4.0.6: - version "4.0.10" - resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.10.tgz#a1553eb532221d4180c51581d6072cd65d1ee100" - integrity sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ== + version "4.0.11" + resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.11.tgz#1092a72c59268d2abaad76582dccc687c0297e0a" + integrity sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg== dependencies: - call-bind "^1.0.2" - define-properties "^1.2.0" - es-abstract "^1.22.1" - get-intrinsic "^1.2.1" + call-bind "^1.0.7" + define-properties "^1.2.1" + es-abstract "^1.23.2" + es-errors "^1.3.0" + es-object-atoms "^1.0.0" + get-intrinsic "^1.2.4" + gopd "^1.0.1" has-symbols "^1.0.3" - internal-slot "^1.0.5" - regexp.prototype.flags "^1.5.0" - set-function-name "^2.0.0" - side-channel "^1.0.4" + internal-slot "^1.0.7" + regexp.prototype.flags "^1.5.2" + set-function-name "^2.0.2" + side-channel "^1.0.6" -string.prototype.trim@^1.2.8: - version "1.2.8" - resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.8.tgz#f9ac6f8af4bd55ddfa8895e6aea92a96395393bd" - integrity sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ== +string.prototype.trim@^1.2.9: + version "1.2.9" + resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz#b6fa326d72d2c78b6df02f7759c73f8f6274faa4" + integrity sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw== dependencies: - call-bind "^1.0.2" - define-properties "^1.2.0" - es-abstract "^1.22.1" + call-bind "^1.0.7" + define-properties "^1.2.1" + es-abstract "^1.23.0" + es-object-atoms "^1.0.0" -string.prototype.trimend@^1.0.7: - version "1.0.7" - resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.7.tgz#1bb3afc5008661d73e2dc015cd4853732d6c471e" - integrity sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA== +string.prototype.trimend@^1.0.8: + version "1.0.8" + resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.8.tgz#3651b8513719e8a9f48de7f2f77640b26652b229" + integrity sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ== dependencies: - call-bind "^1.0.2" - define-properties "^1.2.0" - es-abstract "^1.22.1" + call-bind "^1.0.7" + define-properties "^1.2.1" + es-object-atoms "^1.0.0" string.prototype.trimstart@^1.0.7: - version "1.0.7" - resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.7.tgz#d4cdb44b83a4737ffbac2d406e405d43d0184298" - integrity sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg== + version "1.0.8" + resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz#7ee834dda8c7c17eff3118472bb35bfedaa34dde" + integrity sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg== dependencies: - call-bind "^1.0.2" - define-properties "^1.2.0" - es-abstract "^1.22.1" + call-bind "^1.0.7" + define-properties "^1.2.1" + es-object-atoms "^1.0.0" string_decoder@^1.1.1: version "1.3.0" @@ -12553,9 +12576,9 @@ terser-webpack-plugin@^5.2.5, terser-webpack-plugin@^5.3.1, terser-webpack-plugi terser "^5.26.0" terser@^5.0.0, terser@^5.10.0, terser@^5.26.0: - version "5.29.1" - resolved "https://registry.yarnpkg.com/terser/-/terser-5.29.1.tgz#44e58045b70c09792ba14bfb7b4e14ca8755b9fa" - integrity sha512-lZQ/fyaIGxsbGxApKmoPTODIzELy3++mXhS5hOqaAWZjQtpq/hFHAc+rm29NND1rYRxRWKcjuARNwULNXa5RtQ== + version "5.29.2" + resolved "https://registry.yarnpkg.com/terser/-/terser-5.29.2.tgz#c17d573ce1da1b30f21a877bffd5655dd86fdb35" + integrity sha512-ZiGkhUBIM+7LwkNjXYJq8svgkd+QK3UUr0wJqY4MieaezBSAIPgbSPZyIx0idM6XWK5CMzSWa8MJIzmRcB8Caw== dependencies: "@jridgewell/source-map" "^0.3.3" acorn "^8.8.2" @@ -12856,9 +12879,9 @@ typed-array-byte-offset@^1.0.2: is-typed-array "^1.1.13" typed-array-length@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.5.tgz#57d44da160296d8663fd63180a1802ebf25905d5" - integrity sha512-yMi0PlwuznKHxKmcpoOdeLwxBoVPkqZxd7q2FgMkmD3bNwvF5VW0+UlUQ1k1vmktTu4Yu13Q0RIxEP8+B+wloA== + version "1.0.6" + resolved "https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.6.tgz#57155207c76e64a3457482dfdc1c9d1d3c4c73a3" + integrity sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g== dependencies: call-bind "^1.0.7" for-each "^0.3.3" @@ -12890,9 +12913,9 @@ typescript@^3.6.3: integrity sha512-w6fIxVE/H1PkLKcCPsFqKE7Kv7QUwhU8qQY2MueZXWx5cPZdwFupLgKK3vntcK98BtNHZtAF4LA/yl2a7k8R6Q== typescript@^5.3.3: - version "5.4.2" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.4.2.tgz#0ae9cebcfae970718474fe0da2c090cad6577372" - integrity sha512-+2/g0Fds1ERlP6JsakQQDXjZdZMM+rqpamFZJEKh4kwTIn3iDkgKtby0CeNd5ATNZ4Ry1ax15TMx0W2V+miizQ== + version "5.4.3" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.4.3.tgz#5c6fedd4c87bee01cd7a528a30145521f8e0feff" + integrity sha512-KrPd3PKaCLr78MalgiwJnA25Nm8HAmdwN3mYUYZgG/wizIo9EainNVQI9/yDavtVFRN2h3k8uf3GLHuhDMgEHg== ua-parser-js@^0.7.30: version "0.7.37" @@ -13228,10 +13251,10 @@ warning@^4.0.1, warning@^4.0.2: dependencies: loose-envify "^1.0.0" -watchpack@^2.4.0: - version "2.4.0" - resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.4.0.tgz#fa33032374962c78113f93c7f2fb4c54c9862a5d" - integrity sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg== +watchpack@^2.4.1: + version "2.4.1" + resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.4.1.tgz#29308f2cac150fa8e4c92f90e0ec954a9fed7fff" + integrity sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg== dependencies: glob-to-regexp "^0.4.1" graceful-fs "^4.1.2" @@ -13258,10 +13281,10 @@ webidl-conversions@^6.1.0: resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-6.1.0.tgz#9111b4d7ea80acd40f5270d666621afa78b69514" integrity sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w== -webpack-dev-middleware@^5.3.1: - version "5.3.3" - resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-5.3.3.tgz#efae67c2793908e7311f1d9b06f2a08dcc97e51f" - integrity sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA== +webpack-dev-middleware@^5.3.4: + version "5.3.4" + resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-5.3.4.tgz#eb7b39281cbce10e104eb2b8bf2b63fce49a3517" + integrity sha512-BVdTqhhs+0IfoeAf7EoH5WE+exCmqGerHfDM0IL096Px60Tq2Mn9MAbnaGUe6HiMa41KMCYF19gyzZmBcq/o4Q== dependencies: colorette "^2.0.10" memfs "^3.4.3" @@ -13270,9 +13293,9 @@ webpack-dev-middleware@^5.3.1: schema-utils "^4.0.0" webpack-dev-server@^4.6.0, webpack-dev-server@^4.7.4: - version "4.15.1" - resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-4.15.1.tgz#8944b29c12760b3a45bdaa70799b17cb91b03df7" - integrity sha512-5hbAst3h3C3L8w6W4P96L5vaV0PxSmJhxZvWKYIdgxOQm8pNZ5dEOmmSLBVpP85ReeyRt6AS1QJNyo/oFFPeVA== + version "4.15.2" + resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-4.15.2.tgz#9e0c70a42a012560860adb186986da1248333173" + integrity sha512-0XavAZbNJ5sDrCbkpWL8mia0o5WPOd2YGtxrEiZkBK9FjLppIUK2TgxK6qGD2P3hUXTJNNPVibrerKcx5WkR1g== dependencies: "@types/bonjour" "^3.5.9" "@types/connect-history-api-fallback" "^1.3.5" @@ -13302,7 +13325,7 @@ webpack-dev-server@^4.6.0, webpack-dev-server@^4.7.4: serve-index "^1.9.1" sockjs "^0.3.24" spdy "^4.0.2" - webpack-dev-middleware "^5.3.1" + webpack-dev-middleware "^5.3.4" ws "^8.13.0" webpack-manifest-plugin@^4.0.2: @@ -13335,25 +13358,25 @@ webpack-sources@^3.2.3: integrity sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w== webpack@^5.41.1, webpack@^5.64.4: - version "5.90.3" - resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.90.3.tgz#37b8f74d3ded061ba789bb22b31e82eed75bd9ac" - integrity sha512-h6uDYlWCctQRuXBs1oYpVe6sFcWedl0dpcVaTf/YF67J9bKvwJajFulMVSYKHrksMB3I/pIagRzDxwxkebuzKA== + version "5.91.0" + resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.91.0.tgz#ffa92c1c618d18c878f06892bbdc3373c71a01d9" + integrity sha512-rzVwlLeBWHJbmgTC/8TvAcu5vpJNII+MelQpylD4jNERPwpBJOE2lEcko1zJX3QJeLjTTAnQxn/OJ8bjDzVQaw== dependencies: "@types/eslint-scope" "^3.7.3" "@types/estree" "^1.0.5" - "@webassemblyjs/ast" "^1.11.5" - "@webassemblyjs/wasm-edit" "^1.11.5" - "@webassemblyjs/wasm-parser" "^1.11.5" + "@webassemblyjs/ast" "^1.12.1" + "@webassemblyjs/wasm-edit" "^1.12.1" + "@webassemblyjs/wasm-parser" "^1.12.1" acorn "^8.7.1" acorn-import-assertions "^1.9.0" browserslist "^4.21.10" chrome-trace-event "^1.0.2" - enhanced-resolve "^5.15.0" + enhanced-resolve "^5.16.0" es-module-lexer "^1.2.1" eslint-scope "5.1.1" events "^3.2.0" glob-to-regexp "^0.4.1" - graceful-fs "^4.2.9" + graceful-fs "^4.2.11" json-parse-even-better-errors "^2.3.1" loader-runner "^4.2.0" mime-types "^2.1.27" @@ -13361,7 +13384,7 @@ webpack@^5.41.1, webpack@^5.64.4: schema-utils "^3.2.0" tapable "^2.1.1" terser-webpack-plugin "^5.3.10" - watchpack "^2.4.0" + watchpack "^2.4.1" webpack-sources "^3.2.3" websocket-driver@>=0.5.1, websocket-driver@^0.7.4: @@ -13457,16 +13480,16 @@ which-module@^2.0.0: resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.1.tgz#776b1fe35d90aebe99e8ac15eb24093389a4a409" integrity sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ== -which-typed-array@^1.1.13, which-typed-array@^1.1.14, which-typed-array@^1.1.9: - version "1.1.14" - resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.14.tgz#1f78a111aee1e131ca66164d8bdc3ab062c95a06" - integrity sha512-VnXFiIW8yNn9kIHN88xvZ4yOWchftKDsRJ8fEPacX/wl1lOvBrhsJ/OeJCXq7B0AaijRuqgzSKalJoPk+D8MPg== +which-typed-array@^1.1.13, which-typed-array@^1.1.14, which-typed-array@^1.1.15, which-typed-array@^1.1.9: + version "1.1.15" + resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.15.tgz#264859e9b11a649b388bfaaf4f767df1f779b38d" + integrity sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA== dependencies: - available-typed-arrays "^1.0.6" - call-bind "^1.0.5" + available-typed-arrays "^1.0.7" + call-bind "^1.0.7" for-each "^0.3.3" gopd "^1.0.1" - has-tostringtag "^1.0.1" + has-tostringtag "^1.0.2" which@^1.2.9, which@^1.3.1: version "1.3.1"