@uxf/data-grid 3.2.0 → 4.0.0-beta.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/DataGrid.d.ts +2 -10
- package/DataGrid.js +127 -220
- package/README.md +111 -100
- package/index.d.ts +1 -6
- package/index.js +2 -7
- package/package.json +7 -12
- package/store/actions.d.ts +5 -1
- package/store/actions.js +8 -3
- package/store/reducer.d.ts +1 -0
- package/store/reducer.js +46 -18
- package/tailwindui/DataGrid.d.ts +6 -0
- package/tailwindui/DataGrid.js +56 -0
- package/{components/ActionCellBase.d.ts → tailwindui/components/action-cell-base.d.ts} +1 -1
- package/tailwindui/components/action-cell-base.js +90 -0
- package/tailwindui/components/badge.d.ts +5 -0
- package/tailwindui/components/badge.js +18 -0
- package/{components/BodyCellBase.d.ts → tailwindui/components/body-cell-base.d.ts} +1 -1
- package/tailwindui/components/body-cell-base.js +23 -0
- package/{components/BodyCellWrapper.d.ts → tailwindui/components/body-cell-wrapper.d.ts} +1 -0
- package/tailwindui/components/body-cell-wrapper.js +14 -0
- package/tailwindui/components/circle-button.d.ts +10 -0
- package/tailwindui/components/circle-button.js +14 -0
- package/tailwindui/components/container.d.ts +2 -0
- package/tailwindui/components/container.js +20 -0
- package/tailwindui/components/drawer.d.ts +9 -0
- package/tailwindui/components/drawer.js +22 -0
- package/{components/FilterInputBase.d.ts → tailwindui/components/filter-input-base.d.ts} +1 -1
- package/tailwindui/components/filter-input-base.js +30 -0
- package/{components/FilterListItemBase.d.ts → tailwindui/components/filter-list-item-base.d.ts} +1 -1
- package/tailwindui/components/filter-list-item-base.js +34 -0
- package/tailwindui/components/filters-list.d.ts +2 -0
- package/tailwindui/components/filters-list.js +23 -0
- package/tailwindui/components/icons/chevron-double-left.d.ts +2 -0
- package/tailwindui/components/icons/chevron-double-left.js +13 -0
- package/tailwindui/components/icons/chevron-double-right.d.ts +2 -0
- package/tailwindui/components/icons/chevron-double-right.js +13 -0
- package/tailwindui/components/icons/chevron-left.d.ts +2 -0
- package/tailwindui/components/icons/chevron-left.js +13 -0
- package/tailwindui/components/icons/chevron-right.d.ts +2 -0
- package/tailwindui/components/icons/chevron-right.js +13 -0
- package/tailwindui/components/icons/cloud-download.d.ts +2 -0
- package/tailwindui/components/icons/cloud-download.js +13 -0
- package/tailwindui/components/icons/edit.d.ts +2 -0
- package/tailwindui/components/icons/edit.js +13 -0
- package/tailwindui/components/icons/filter.d.ts +2 -0
- package/tailwindui/components/icons/filter.js +13 -0
- package/tailwindui/components/icons/open.d.ts +2 -0
- package/tailwindui/components/icons/open.js +13 -0
- package/tailwindui/components/icons/table.d.ts +2 -0
- package/tailwindui/components/icons/table.js +13 -0
- package/tailwindui/components/icons/trash.d.ts +2 -0
- package/tailwindui/components/icons/trash.js +13 -0
- package/tailwindui/components/inputs/checkbox.d.ts +10 -0
- package/tailwindui/components/inputs/checkbox.js +23 -0
- package/tailwindui/components/inputs/select.d.ts +13 -0
- package/tailwindui/components/inputs/select.js +21 -0
- package/tailwindui/components/inputs/switch.d.ts +7 -0
- package/tailwindui/components/inputs/switch.js +21 -0
- package/tailwindui/components/inputs/text-input.d.ts +7 -0
- package/tailwindui/components/inputs/text-input.js +18 -0
- package/tailwindui/components/linear-progress.d.ts +2 -0
- package/tailwindui/components/linear-progress.js +13 -0
- package/tailwindui/components/no-rows-fallback.d.ts +2 -0
- package/tailwindui/components/no-rows-fallback.js +13 -0
- package/tailwindui/components/pagination.d.ts +2 -0
- package/tailwindui/components/pagination.js +55 -0
- package/tailwindui/components/select-row-checkbox.d.ts +2 -0
- package/tailwindui/components/select-row-checkbox.js +54 -0
- package/tailwindui/components/selected-rows-toolbar.d.ts +2 -0
- package/tailwindui/components/selected-rows-toolbar.js +33 -0
- package/tailwindui/components/tab.d.ts +6 -0
- package/tailwindui/components/tab.js +16 -0
- package/tailwindui/components/toolbar-container.d.ts +2 -0
- package/tailwindui/components/toolbar-container.js +13 -0
- package/tailwindui/index.d.ts +7 -0
- package/tailwindui/index.js +20 -0
- package/tailwindui/styles.css +73 -0
- package/tailwindui/toolbar-plugins/csv-export-plugin.d.ts +2 -0
- package/tailwindui/toolbar-plugins/csv-export-plugin.js +20 -0
- package/tailwindui/toolbar-plugins/filters-plugin.d.ts +2 -0
- package/tailwindui/toolbar-plugins/filters-plugin.js +60 -0
- package/tailwindui/toolbar-plugins/fulltext-plugin.d.ts +2 -0
- package/tailwindui/toolbar-plugins/fulltext-plugin.js +72 -0
- package/tailwindui/toolbar-plugins/hidden-columns-plugin.d.ts +2 -0
- package/tailwindui/toolbar-plugins/hidden-columns-plugin.js +76 -0
- package/tailwindui/toolbar-plugins/tabs-plugin.d.ts +2 -0
- package/tailwindui/toolbar-plugins/tabs-plugin.js +19 -0
- package/tailwindui/toolbar-plugins/title-plugin.d.ts +2 -0
- package/tailwindui/toolbar-plugins/title-plugin.js +16 -0
- package/tailwindui/ui.d.ts +2 -0
- package/tailwindui/ui.js +32 -0
- package/types.d.ts +130 -39
- package/useColumns.d.ts +3 -0
- package/useColumns.js +100 -0
- package/{utils/utils.d.ts → utils.d.ts} +1 -1
- package/utils.js +37 -0
- package/components/ActionCellBase.js +0 -96
- package/components/BodyCellBase.js +0 -23
- package/components/BodyCellWrapper.js +0 -14
- package/components/Drawer.d.ts +0 -7
- package/components/Drawer.js +0 -42
- package/components/FilterInputBase.js +0 -43
- package/components/FilterListItemBase.js +0 -25
- package/components/Filters.d.ts +0 -11
- package/components/Filters.js +0 -66
- package/components/FiltersList.d.ts +0 -10
- package/components/FiltersList.js +0 -47
- package/components/HiddenColumns.d.ts +0 -10
- package/components/HiddenColumns.js +0 -79
- package/components/Paper.d.ts +0 -15
- package/components/Paper.js +0 -15
- package/translations/textLabels.d.ts +0 -42
- package/translations/textLabels.js +0 -45
- package/translations/textLabelsEn.d.ts +0 -42
- package/translations/textLabelsEn.js +0 -45
- package/translations/types.d.ts +0 -49
- package/translations/types.js +0 -3
- package/utils/utils.js +0 -36
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
var textLabels = {
|
|
4
|
-
body: {
|
|
5
|
-
noMatch: "Žádné záznamy",
|
|
6
|
-
toolTip: "Řadit",
|
|
7
|
-
loading: "Nahrávání záznamů",
|
|
8
|
-
},
|
|
9
|
-
selectCell: {
|
|
10
|
-
select: "Vybrat buňku",
|
|
11
|
-
deselect: "Zrušit výběr buňky",
|
|
12
|
-
expand: "Rozbalit buňku",
|
|
13
|
-
fold: "Sbalit buňku",
|
|
14
|
-
},
|
|
15
|
-
pagination: {
|
|
16
|
-
next: "Následující strana",
|
|
17
|
-
previous: "Předchozí strana",
|
|
18
|
-
rowsPerPage: "Záznamů na stránku:",
|
|
19
|
-
displayRows: "z(e)",
|
|
20
|
-
},
|
|
21
|
-
toolbar: {
|
|
22
|
-
search: "Hledat",
|
|
23
|
-
downloadCsv: "Stáhnout CSV",
|
|
24
|
-
print: "Tisk",
|
|
25
|
-
moreActions: "Další akce",
|
|
26
|
-
viewColumns: "Zobrazit Sloupce",
|
|
27
|
-
filterTable: "Filtrovat",
|
|
28
|
-
},
|
|
29
|
-
filter: {
|
|
30
|
-
all: "Vše",
|
|
31
|
-
title: "Filtry",
|
|
32
|
-
reset: "Reset",
|
|
33
|
-
},
|
|
34
|
-
viewColumns: {
|
|
35
|
-
title: "Zobrazit Sloupce",
|
|
36
|
-
titleAria: "Zobrazit/Skrýt Sloupce",
|
|
37
|
-
},
|
|
38
|
-
selectedRows: {
|
|
39
|
-
text: "Počet vybraných záznamů",
|
|
40
|
-
delete: "Smazat",
|
|
41
|
-
deleteAria: "Smazat vybrané záznamy",
|
|
42
|
-
},
|
|
43
|
-
};
|
|
44
|
-
exports.default = textLabels;
|
|
45
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGV4dExhYmVscy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy90cmFuc2xhdGlvbnMvdGV4dExhYmVscy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOztBQUFBLElBQU0sVUFBVSxHQUFHO0lBQ2YsSUFBSSxFQUFFO1FBQ0YsT0FBTyxFQUFFLGVBQWU7UUFDeEIsT0FBTyxFQUFFLE9BQU87UUFDaEIsT0FBTyxFQUFFLG1CQUFtQjtLQUMvQjtJQUNELFVBQVUsRUFBRTtRQUNSLE1BQU0sRUFBRSxjQUFjO1FBQ3RCLFFBQVEsRUFBRSxvQkFBb0I7UUFDOUIsTUFBTSxFQUFFLGdCQUFnQjtRQUN4QixJQUFJLEVBQUUsY0FBYztLQUN2QjtJQUNELFVBQVUsRUFBRTtRQUNSLElBQUksRUFBRSxvQkFBb0I7UUFDMUIsUUFBUSxFQUFFLGtCQUFrQjtRQUM1QixXQUFXLEVBQUUscUJBQXFCO1FBQ2xDLFdBQVcsRUFBRSxNQUFNO0tBQ3RCO0lBQ0QsT0FBTyxFQUFFO1FBQ0wsTUFBTSxFQUFFLFFBQVE7UUFDaEIsV0FBVyxFQUFFLGNBQWM7UUFDM0IsS0FBSyxFQUFFLE1BQU07UUFDYixXQUFXLEVBQUUsWUFBWTtRQUN6QixXQUFXLEVBQUUsa0JBQWtCO1FBQy9CLFdBQVcsRUFBRSxXQUFXO0tBQzNCO0lBQ0QsTUFBTSxFQUFFO1FBQ0osR0FBRyxFQUFFLEtBQUs7UUFDVixLQUFLLEVBQUUsUUFBUTtRQUNmLEtBQUssRUFBRSxPQUFPO0tBQ2pCO0lBQ0QsV0FBVyxFQUFFO1FBQ1QsS0FBSyxFQUFFLGtCQUFrQjtRQUN6QixTQUFTLEVBQUUsd0JBQXdCO0tBQ3RDO0lBQ0QsWUFBWSxFQUFFO1FBQ1YsSUFBSSxFQUFFLHlCQUF5QjtRQUMvQixNQUFNLEVBQUUsUUFBUTtRQUNoQixVQUFVLEVBQUUsd0JBQXdCO0tBQ3ZDO0NBQ0osQ0FBQztBQUVGLGtCQUFlLFVBQVUsQ0FBQyJ9
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
declare const textLabels: {
|
|
2
|
-
body: {
|
|
3
|
-
noMatch: string;
|
|
4
|
-
toolTip: string;
|
|
5
|
-
loading: string;
|
|
6
|
-
};
|
|
7
|
-
selectCell: {
|
|
8
|
-
select: string;
|
|
9
|
-
deselect: string;
|
|
10
|
-
expand: string;
|
|
11
|
-
fold: string;
|
|
12
|
-
};
|
|
13
|
-
pagination: {
|
|
14
|
-
next: string;
|
|
15
|
-
previous: string;
|
|
16
|
-
rowsPerPage: string;
|
|
17
|
-
displayRows: string;
|
|
18
|
-
};
|
|
19
|
-
toolbar: {
|
|
20
|
-
search: string;
|
|
21
|
-
downloadCsv: string;
|
|
22
|
-
print: string;
|
|
23
|
-
moreActions: string;
|
|
24
|
-
viewColumns: string;
|
|
25
|
-
filterTable: string;
|
|
26
|
-
};
|
|
27
|
-
filter: {
|
|
28
|
-
all: string;
|
|
29
|
-
title: string;
|
|
30
|
-
reset: string;
|
|
31
|
-
};
|
|
32
|
-
viewColumns: {
|
|
33
|
-
title: string;
|
|
34
|
-
titleAria: string;
|
|
35
|
-
};
|
|
36
|
-
selectedRows: {
|
|
37
|
-
text: string;
|
|
38
|
-
delete: string;
|
|
39
|
-
deleteAria: string;
|
|
40
|
-
};
|
|
41
|
-
};
|
|
42
|
-
export default textLabels;
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
var textLabels = {
|
|
4
|
-
body: {
|
|
5
|
-
noMatch: "Sorry, no matching records found",
|
|
6
|
-
toolTip: "Sort",
|
|
7
|
-
loading: "Loading records",
|
|
8
|
-
},
|
|
9
|
-
selectCell: {
|
|
10
|
-
select: "Select cell",
|
|
11
|
-
deselect: "Deselect cell",
|
|
12
|
-
expand: "Expand cell",
|
|
13
|
-
fold: "Fold cell",
|
|
14
|
-
},
|
|
15
|
-
pagination: {
|
|
16
|
-
next: "Next Page",
|
|
17
|
-
previous: "Previous Page",
|
|
18
|
-
rowsPerPage: "Rows per page:",
|
|
19
|
-
displayRows: "of",
|
|
20
|
-
},
|
|
21
|
-
toolbar: {
|
|
22
|
-
search: "Search",
|
|
23
|
-
downloadCsv: "Download CSV",
|
|
24
|
-
print: "Print",
|
|
25
|
-
moreActions: "More actions",
|
|
26
|
-
viewColumns: "View Columns",
|
|
27
|
-
filterTable: "Filter Table",
|
|
28
|
-
},
|
|
29
|
-
filter: {
|
|
30
|
-
all: "All",
|
|
31
|
-
title: "FILTERS",
|
|
32
|
-
reset: "RESET",
|
|
33
|
-
},
|
|
34
|
-
viewColumns: {
|
|
35
|
-
title: "Show Columns",
|
|
36
|
-
titleAria: "Show/Hide Table Columns",
|
|
37
|
-
},
|
|
38
|
-
selectedRows: {
|
|
39
|
-
text: "row(s) selected",
|
|
40
|
-
delete: "Delete",
|
|
41
|
-
deleteAria: "Delete Selected Rows",
|
|
42
|
-
},
|
|
43
|
-
};
|
|
44
|
-
exports.default = textLabels;
|
|
45
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGV4dExhYmVsc0VuLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL3RyYW5zbGF0aW9ucy90ZXh0TGFiZWxzRW4udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7QUFBQSxJQUFNLFVBQVUsR0FBRztJQUNmLElBQUksRUFBRTtRQUNGLE9BQU8sRUFBRSxrQ0FBa0M7UUFDM0MsT0FBTyxFQUFFLE1BQU07UUFDZixPQUFPLEVBQUUsaUJBQWlCO0tBQzdCO0lBQ0QsVUFBVSxFQUFFO1FBQ1IsTUFBTSxFQUFFLGFBQWE7UUFDckIsUUFBUSxFQUFFLGVBQWU7UUFDekIsTUFBTSxFQUFFLGFBQWE7UUFDckIsSUFBSSxFQUFFLFdBQVc7S0FDcEI7SUFDRCxVQUFVLEVBQUU7UUFDUixJQUFJLEVBQUUsV0FBVztRQUNqQixRQUFRLEVBQUUsZUFBZTtRQUN6QixXQUFXLEVBQUUsZ0JBQWdCO1FBQzdCLFdBQVcsRUFBRSxJQUFJO0tBQ3BCO0lBQ0QsT0FBTyxFQUFFO1FBQ0wsTUFBTSxFQUFFLFFBQVE7UUFDaEIsV0FBVyxFQUFFLGNBQWM7UUFDM0IsS0FBSyxFQUFFLE9BQU87UUFDZCxXQUFXLEVBQUUsY0FBYztRQUMzQixXQUFXLEVBQUUsY0FBYztRQUMzQixXQUFXLEVBQUUsY0FBYztLQUM5QjtJQUNELE1BQU0sRUFBRTtRQUNKLEdBQUcsRUFBRSxLQUFLO1FBQ1YsS0FBSyxFQUFFLFNBQVM7UUFDaEIsS0FBSyxFQUFFLE9BQU87S0FDakI7SUFDRCxXQUFXLEVBQUU7UUFDVCxLQUFLLEVBQUUsY0FBYztRQUNyQixTQUFTLEVBQUUseUJBQXlCO0tBQ3ZDO0lBQ0QsWUFBWSxFQUFFO1FBQ1YsSUFBSSxFQUFFLGlCQUFpQjtRQUN2QixNQUFNLEVBQUUsUUFBUTtRQUNoQixVQUFVLEVBQUUsc0JBQXNCO0tBQ3JDO0NBQ0osQ0FBQztBQUVGLGtCQUFlLFVBQVUsQ0FBQyJ9
|
package/translations/types.d.ts
DELETED
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
export interface TextLabels {
|
|
2
|
-
body: TextLabelsBody;
|
|
3
|
-
selectCell: TextLabelsSelectCell;
|
|
4
|
-
pagination: TextLabelsPagination;
|
|
5
|
-
toolbar: TextLabelsToolbar;
|
|
6
|
-
filter: TextLabelsFilter;
|
|
7
|
-
viewColumns: TextLabelsViewColumns;
|
|
8
|
-
selectedRows: TextLabelsSelectedRows;
|
|
9
|
-
}
|
|
10
|
-
interface TextLabelsBody {
|
|
11
|
-
noMatch: string;
|
|
12
|
-
toolTip: string;
|
|
13
|
-
loading: string;
|
|
14
|
-
}
|
|
15
|
-
interface TextLabelsFilter {
|
|
16
|
-
all: string;
|
|
17
|
-
title: string;
|
|
18
|
-
reset: string;
|
|
19
|
-
}
|
|
20
|
-
interface TextLabelsSelectCell {
|
|
21
|
-
select: string;
|
|
22
|
-
deselect: string;
|
|
23
|
-
expand: string;
|
|
24
|
-
fold: string;
|
|
25
|
-
}
|
|
26
|
-
interface TextLabelsPagination {
|
|
27
|
-
next: string;
|
|
28
|
-
previous: string;
|
|
29
|
-
rowsPerPage: string;
|
|
30
|
-
displayRows: string;
|
|
31
|
-
}
|
|
32
|
-
interface TextLabelsSelectedRows {
|
|
33
|
-
text: string;
|
|
34
|
-
delete: string;
|
|
35
|
-
deleteAria: string;
|
|
36
|
-
}
|
|
37
|
-
interface TextLabelsToolbar {
|
|
38
|
-
search: string;
|
|
39
|
-
downloadCsv: string;
|
|
40
|
-
print: string;
|
|
41
|
-
moreActions: string;
|
|
42
|
-
viewColumns: string;
|
|
43
|
-
filterTable: string;
|
|
44
|
-
}
|
|
45
|
-
interface TextLabelsViewColumns {
|
|
46
|
-
title: string;
|
|
47
|
-
titleAria: string;
|
|
48
|
-
}
|
|
49
|
-
export {};
|
package/translations/types.js
DELETED
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHlwZXMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvdHJhbnNsYXRpb25zL3R5cGVzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIifQ==
|
package/utils/utils.js
DELETED
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.createRequest = exports.encodeFilter = exports.decodeFilter = void 0;
|
|
4
|
-
function decodeFilter(filterString) {
|
|
5
|
-
try {
|
|
6
|
-
var filter = JSON.parse(decodeURIComponent(escape(atob(filterString))));
|
|
7
|
-
return {
|
|
8
|
-
f: filter.f || [],
|
|
9
|
-
perPage: filter.perPage || 10,
|
|
10
|
-
page: filter.page || 0,
|
|
11
|
-
dir: filter.dir || "asc",
|
|
12
|
-
sort: filter.sort || "id",
|
|
13
|
-
};
|
|
14
|
-
}
|
|
15
|
-
catch (e) {
|
|
16
|
-
return null;
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
|
-
exports.decodeFilter = decodeFilter;
|
|
20
|
-
function encodeFilter(request) {
|
|
21
|
-
return btoa(unescape(encodeURIComponent(JSON.stringify(request))));
|
|
22
|
-
}
|
|
23
|
-
exports.encodeFilter = encodeFilter;
|
|
24
|
-
function createRequest(state, defaultSort, defaultDir) {
|
|
25
|
-
var _a, _b;
|
|
26
|
-
return {
|
|
27
|
-
sort: (_a = state.sort) !== null && _a !== void 0 ? _a : defaultSort,
|
|
28
|
-
dir: (_b = state.dir) !== null && _b !== void 0 ? _b : defaultDir,
|
|
29
|
-
perPage: state.perPage,
|
|
30
|
-
page: state.page,
|
|
31
|
-
f: state.f.filter(function (f) { return !!f.value; }),
|
|
32
|
-
search: state.fullText,
|
|
33
|
-
};
|
|
34
|
-
}
|
|
35
|
-
exports.createRequest = createRequest;
|
|
36
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidXRpbHMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvdXRpbHMvdXRpbHMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7O0FBRUEsU0FBZ0IsWUFBWSxDQUFDLFlBQW9CO0lBQzdDLElBQUk7UUFDQSxJQUFNLE1BQU0sR0FBRyxJQUFJLENBQUMsS0FBSyxDQUFDLGtCQUFrQixDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsWUFBWSxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUM7UUFFMUUsT0FBTztZQUNILENBQUMsRUFBRSxNQUFNLENBQUMsQ0FBQyxJQUFJLEVBQUU7WUFDakIsT0FBTyxFQUFFLE1BQU0sQ0FBQyxPQUFPLElBQUksRUFBRTtZQUM3QixJQUFJLEVBQUUsTUFBTSxDQUFDLElBQUksSUFBSSxDQUFDO1lBQ3RCLEdBQUcsRUFBRSxNQUFNLENBQUMsR0FBRyxJQUFJLEtBQUs7WUFDeEIsSUFBSSxFQUFFLE1BQU0sQ0FBQyxJQUFJLElBQUksSUFBSTtTQUM1QixDQUFDO0tBQ0w7SUFBQyxPQUFPLENBQUMsRUFBRTtRQUNSLE9BQU8sSUFBSSxDQUFDO0tBQ2Y7QUFDTCxDQUFDO0FBZEQsb0NBY0M7QUFFRCxTQUFnQixZQUFZLENBQUMsT0FBZ0I7SUFDekMsT0FBTyxJQUFJLENBQUMsUUFBUSxDQUFDLGtCQUFrQixDQUFDLElBQUksQ0FBQyxTQUFTLENBQUMsT0FBTyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUM7QUFDdkUsQ0FBQztBQUZELG9DQUVDO0FBRUQsU0FBZ0IsYUFBYSxDQUFDLEtBQW9CLEVBQUUsV0FBbUIsRUFBRSxVQUF5Qjs7SUFDOUYsT0FBTztRQUNILElBQUksRUFBRSxNQUFBLEtBQUssQ0FBQyxJQUFJLG1DQUFJLFdBQVc7UUFDL0IsR0FBRyxFQUFFLE1BQUEsS0FBSyxDQUFDLEdBQUcsbUNBQUksVUFBVTtRQUM1QixPQUFPLEVBQUUsS0FBSyxDQUFDLE9BQU87UUFDdEIsSUFBSSxFQUFFLEtBQUssQ0FBQyxJQUFJO1FBQ2hCLENBQUMsRUFBRSxLQUFLLENBQUMsQ0FBQyxDQUFDLE1BQU0sQ0FBQyxVQUFBLENBQUMsSUFBSSxPQUFBLENBQUMsQ0FBQyxDQUFDLENBQUMsS0FBSyxFQUFULENBQVMsQ0FBQztRQUNqQyxNQUFNLEVBQUUsS0FBSyxDQUFDLFFBQVE7S0FDekIsQ0FBQztBQUNOLENBQUM7QUFURCxzQ0FTQyJ9
|