iptdevs-design-system 2.6.22 → 2.6.23
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/README.md +24 -24
- package/esm2020/iptdevs-design-system.mjs +4 -4
- package/esm2020/lib/components/atoms/aside-button/aside-button.component.mjs +50 -50
- package/esm2020/lib/components/atoms/button/button.component.mjs +64 -64
- package/esm2020/lib/components/atoms/checkbox/checkbox.component.mjs +47 -47
- package/esm2020/lib/components/atoms/datalist/datalist.component.mjs +94 -94
- package/esm2020/lib/components/atoms/input/input.component.mjs +145 -145
- package/esm2020/lib/components/atoms/level-button/level-button.component.mjs +64 -64
- package/esm2020/lib/components/atoms/level-text/level-text.component.mjs +19 -19
- package/esm2020/lib/components/atoms/radio/radio.component.mjs +47 -47
- package/esm2020/lib/components/atoms/select/select.component.mjs +92 -92
- package/esm2020/lib/components/atoms/text-link/text-link.component.mjs +39 -39
- package/esm2020/lib/components/components.module.mjs +113 -113
- package/esm2020/lib/components/forms/create-user-form/create-user-form.component.mjs +228 -227
- package/esm2020/lib/components/forms/login-form/login-form.component.mjs +93 -93
- package/esm2020/lib/components/material.module.mjs +19 -19
- package/esm2020/lib/components/molecules/sidenav/sidenav.component.mjs +146 -146
- package/esm2020/lib/core/core.module.mjs +46 -46
- package/esm2020/lib/core/models/activities/activities.interface.mjs +2 -2
- package/esm2020/lib/core/models/attendance/attendance.interface.mjs +2 -2
- package/esm2020/lib/core/models/budget/budget.model.mjs +2 -2
- package/esm2020/lib/core/models/calendar/calendar-rq.models.mjs +2 -2
- package/esm2020/lib/core/models/cod/cod-rq.model.mjs +2 -2
- package/esm2020/lib/core/models/course/course-rq.model.mjs +2 -2
- package/esm2020/lib/core/models/cronogram/cronogram.models.mjs +2 -2
- package/esm2020/lib/core/models/marketing/marketing.model.mjs +2 -2
- package/esm2020/lib/core/models/notes/notes.interface.mjs +2 -2
- package/esm2020/lib/core/models/response/response.interface.mjs +2 -2
- package/esm2020/lib/core/models/session/session.model.mjs +3 -3
- package/esm2020/lib/core/models/student/student.interface.mjs +2 -2
- package/esm2020/lib/core/models/table/table-rs.model.mjs +2 -2
- package/esm2020/lib/core/models/test/test.model.mjs +2 -2
- package/esm2020/lib/core/models/url/url.model.mjs +2 -2
- package/esm2020/lib/core/models/user/user-rq.model.mjs +2 -2
- package/esm2020/lib/core/models/user/user-rs.model.mjs +5 -5
- package/esm2020/lib/core/services/attendance-service/attendance.service.mjs +17 -17
- package/esm2020/lib/core/services/budget-service/budget-service.mjs +41 -41
- package/esm2020/lib/core/services/calendar-service/calendar.service.mjs +34 -34
- package/esm2020/lib/core/services/course-service/course-service.model.mjs +75 -75
- package/esm2020/lib/core/services/marketing-service/marketing-service.mjs +57 -57
- package/esm2020/lib/core/services/notes-service/notes.service.mjs +50 -50
- package/esm2020/lib/core/services/parameters-service/parameters.service.mjs +114 -114
- package/esm2020/lib/core/services/storage-service/storage-service.mjs +50 -50
- package/esm2020/lib/core/services/student-service/student.service.mjs +30 -30
- package/esm2020/lib/core/services/switch-service/switch.service.mjs +16 -16
- package/esm2020/lib/core/services/test-service/test.service.mjs +136 -136
- package/esm2020/lib/core/services/user-service/user-service.mjs +84 -84
- package/esm2020/lib/core/utils/base-service/base.service.mjs +153 -153
- package/esm2020/lib/core/utils/route-service/route.service.mjs +18 -18
- package/esm2020/lib/design-system.module.mjs +36 -36
- package/esm2020/public-api.mjs +57 -57
- package/fesm2015/iptdevs-design-system.mjs +2014 -2013
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +2011 -2010
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/iptdevs-design-system.d.ts +5 -5
- package/lib/components/atoms/aside-button/aside-button.component.d.ts +11 -11
- package/lib/components/atoms/button/button.component.d.ts +13 -13
- package/lib/components/atoms/checkbox/checkbox.component.d.ts +11 -11
- package/lib/components/atoms/datalist/datalist.component.d.ts +20 -20
- package/lib/components/atoms/input/input.component.d.ts +26 -26
- package/lib/components/atoms/level-button/level-button.component.d.ts +11 -11
- package/lib/components/atoms/level-text/level-text.component.d.ts +7 -7
- package/lib/components/atoms/radio/radio.component.d.ts +11 -11
- package/lib/components/atoms/select/select.component.d.ts +24 -24
- package/lib/components/atoms/text-link/text-link.component.d.ts +12 -12
- package/lib/components/components.module.d.ts +23 -23
- package/lib/components/forms/create-user-form/create-user-form.component.d.ts +36 -36
- package/lib/components/forms/login-form/login-form.component.d.ts +13 -13
- package/lib/components/material.module.d.ts +11 -11
- package/lib/components/molecules/sidenav/sidenav.component.d.ts +22 -22
- package/lib/core/core.module.d.ts +6 -6
- package/lib/core/models/activities/activities.interface.d.ts +6 -6
- package/lib/core/models/attendance/attendance.interface.d.ts +45 -45
- package/lib/core/models/budget/budget.model.d.ts +69 -69
- package/lib/core/models/calendar/calendar-rq.models.d.ts +27 -27
- package/lib/core/models/cod/cod-rq.model.d.ts +51 -51
- package/lib/core/models/course/course-rq.model.d.ts +86 -86
- package/lib/core/models/cronogram/cronogram.models.d.ts +71 -71
- package/lib/core/models/marketing/marketing.model.d.ts +104 -104
- package/lib/core/models/notes/notes.interface.d.ts +73 -73
- package/lib/core/models/response/response.interface.d.ts +10 -10
- package/lib/core/models/session/session.model.d.ts +5 -5
- package/lib/core/models/student/student.interface.d.ts +4 -4
- package/lib/core/models/table/table-rs.model.d.ts +7 -7
- package/lib/core/models/test/test.model.d.ts +219 -219
- package/lib/core/models/url/url.model.d.ts +8 -8
- package/lib/core/models/user/user-rq.model.d.ts +91 -91
- package/lib/core/models/user/user-rs.model.d.ts +35 -35
- package/lib/core/services/attendance-service/attendance.service.d.ts +8 -8
- package/lib/core/services/budget-service/budget-service.d.ts +16 -16
- package/lib/core/services/calendar-service/calendar.service.d.ts +15 -15
- package/lib/core/services/course-service/course-service.model.d.ts +24 -24
- package/lib/core/services/marketing-service/marketing-service.d.ts +20 -20
- package/lib/core/services/notes-service/notes.service.d.ts +19 -19
- package/lib/core/services/parameters-service/parameters.service.d.ts +34 -34
- package/lib/core/services/storage-service/storage-service.d.ts +18 -18
- package/lib/core/services/student-service/student.service.d.ts +14 -14
- package/lib/core/services/switch-service/switch.service.d.ts +8 -8
- package/lib/core/services/test-service/test.service.d.ts +35 -35
- package/lib/core/services/user-service/user-service.d.ts +26 -26
- package/lib/core/utils/base-service/base.service.d.ts +18 -18
- package/lib/core/utils/route-service/route.service.d.ts +9 -9
- package/lib/design-system.module.d.ts +9 -9
- package/package.json +1 -1
- package/public-api.d.ts +48 -48
package/esm2020/public-api.mjs
CHANGED
|
@@ -1,57 +1,57 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Public API Surface of design-system
|
|
3
|
-
*/
|
|
4
|
-
export * from "./lib/design-system.module";
|
|
5
|
-
export * from "./lib/components/components.module";
|
|
6
|
-
export * from "./lib/core/core.module";
|
|
7
|
-
// Atomos
|
|
8
|
-
export * from "./lib/components/atoms/aside-button/aside-button.component";
|
|
9
|
-
export * from "./lib/components/atoms/button/button.component";
|
|
10
|
-
export * from "./lib/components/atoms/checkbox/checkbox.component";
|
|
11
|
-
export * from "./lib/components/atoms/datalist/datalist.component";
|
|
12
|
-
export * from "./lib/components/atoms/input/input.component";
|
|
13
|
-
export * from "./lib/components/atoms/level-button/level-button.component";
|
|
14
|
-
export * from "./lib/components/atoms/level-text/level-text.component";
|
|
15
|
-
export * from "./lib/components/atoms/radio/radio.component";
|
|
16
|
-
export * from "./lib/components/atoms/select/select.component";
|
|
17
|
-
export * from "./lib/components/atoms/text-link/text-link.component";
|
|
18
|
-
// Formularios
|
|
19
|
-
export * from "./lib/components/forms/login-form/login-form.component";
|
|
20
|
-
export * from "./lib/components/molecules/sidenav/sidenav.component";
|
|
21
|
-
export * from "./lib/components/forms/create-user-form/create-user-form.component";
|
|
22
|
-
// Servicios
|
|
23
|
-
export * from "./lib/core/services/attendance-service/attendance.service";
|
|
24
|
-
export * from "./lib/core/services/budget-service/budget-service";
|
|
25
|
-
export * from "./lib/core/services/course-service/course-service.model";
|
|
26
|
-
export * from "./lib/core/services/calendar-service/calendar.service";
|
|
27
|
-
export * from "./lib/core/services/marketing-service/marketing-service";
|
|
28
|
-
export * from "./lib/core/services/notes-service/notes.service";
|
|
29
|
-
export * from "./lib/core/services/parameters-service/parameters.service";
|
|
30
|
-
export * from "./lib/core/services/student-service/student.service";
|
|
31
|
-
export * from "./lib/core/services/storage-service/storage-service";
|
|
32
|
-
export * from "./lib/core/services/switch-service/switch.service";
|
|
33
|
-
export * from "./lib/core/services/test-service/test.service";
|
|
34
|
-
export * from "./lib/core/services/user-service/user-service";
|
|
35
|
-
export * from "./lib/core/utils/base-service/base.service";
|
|
36
|
-
export * from "./lib/core/utils/route-service/route.service";
|
|
37
|
-
// Modelos
|
|
38
|
-
export * from "./lib/core/models/activities/activities.interface";
|
|
39
|
-
export * from "./lib/core/models/attendance/attendance.interface";
|
|
40
|
-
export * from "./lib/core/models/budget/budget.model";
|
|
41
|
-
export * from "./lib/core/models/cod/cod-rq.model";
|
|
42
|
-
export * from "./lib/core/models/calendar/calendar-rq.models";
|
|
43
|
-
export * from "./lib/core/models/cronogram/cronogram.models";
|
|
44
|
-
export * from "./lib/core/models/course/course-rq.model";
|
|
45
|
-
export * from "./lib/core/models/marketing/marketing.model";
|
|
46
|
-
export * from "./lib/core/models/notes/notes.interface";
|
|
47
|
-
export * from "./lib/core/models/response/response.interface";
|
|
48
|
-
export * from "./lib/core/models/session/session.model";
|
|
49
|
-
export * from "./lib/core/models/student/student.interface";
|
|
50
|
-
export * from "./lib/core/models/table/table-rs.model";
|
|
51
|
-
export * from "./lib/core/models/test/test.model";
|
|
52
|
-
export * from "./lib/core/models/url/url.model";
|
|
53
|
-
export * from "./lib/core/models/user/user-rq.model";
|
|
54
|
-
export * from "./lib/core/models/user/user-rs.model";
|
|
55
|
-
// Librería para máscara de moneda
|
|
56
|
-
export * from "./lib/components/components.module";
|
|
57
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
1
|
+
/*
|
|
2
|
+
* Public API Surface of design-system
|
|
3
|
+
*/
|
|
4
|
+
export * from "./lib/design-system.module";
|
|
5
|
+
export * from "./lib/components/components.module";
|
|
6
|
+
export * from "./lib/core/core.module";
|
|
7
|
+
// Atomos
|
|
8
|
+
export * from "./lib/components/atoms/aside-button/aside-button.component";
|
|
9
|
+
export * from "./lib/components/atoms/button/button.component";
|
|
10
|
+
export * from "./lib/components/atoms/checkbox/checkbox.component";
|
|
11
|
+
export * from "./lib/components/atoms/datalist/datalist.component";
|
|
12
|
+
export * from "./lib/components/atoms/input/input.component";
|
|
13
|
+
export * from "./lib/components/atoms/level-button/level-button.component";
|
|
14
|
+
export * from "./lib/components/atoms/level-text/level-text.component";
|
|
15
|
+
export * from "./lib/components/atoms/radio/radio.component";
|
|
16
|
+
export * from "./lib/components/atoms/select/select.component";
|
|
17
|
+
export * from "./lib/components/atoms/text-link/text-link.component";
|
|
18
|
+
// Formularios
|
|
19
|
+
export * from "./lib/components/forms/login-form/login-form.component";
|
|
20
|
+
export * from "./lib/components/molecules/sidenav/sidenav.component";
|
|
21
|
+
export * from "./lib/components/forms/create-user-form/create-user-form.component";
|
|
22
|
+
// Servicios
|
|
23
|
+
export * from "./lib/core/services/attendance-service/attendance.service";
|
|
24
|
+
export * from "./lib/core/services/budget-service/budget-service";
|
|
25
|
+
export * from "./lib/core/services/course-service/course-service.model";
|
|
26
|
+
export * from "./lib/core/services/calendar-service/calendar.service";
|
|
27
|
+
export * from "./lib/core/services/marketing-service/marketing-service";
|
|
28
|
+
export * from "./lib/core/services/notes-service/notes.service";
|
|
29
|
+
export * from "./lib/core/services/parameters-service/parameters.service";
|
|
30
|
+
export * from "./lib/core/services/student-service/student.service";
|
|
31
|
+
export * from "./lib/core/services/storage-service/storage-service";
|
|
32
|
+
export * from "./lib/core/services/switch-service/switch.service";
|
|
33
|
+
export * from "./lib/core/services/test-service/test.service";
|
|
34
|
+
export * from "./lib/core/services/user-service/user-service";
|
|
35
|
+
export * from "./lib/core/utils/base-service/base.service";
|
|
36
|
+
export * from "./lib/core/utils/route-service/route.service";
|
|
37
|
+
// Modelos
|
|
38
|
+
export * from "./lib/core/models/activities/activities.interface";
|
|
39
|
+
export * from "./lib/core/models/attendance/attendance.interface";
|
|
40
|
+
export * from "./lib/core/models/budget/budget.model";
|
|
41
|
+
export * from "./lib/core/models/cod/cod-rq.model";
|
|
42
|
+
export * from "./lib/core/models/calendar/calendar-rq.models";
|
|
43
|
+
export * from "./lib/core/models/cronogram/cronogram.models";
|
|
44
|
+
export * from "./lib/core/models/course/course-rq.model";
|
|
45
|
+
export * from "./lib/core/models/marketing/marketing.model";
|
|
46
|
+
export * from "./lib/core/models/notes/notes.interface";
|
|
47
|
+
export * from "./lib/core/models/response/response.interface";
|
|
48
|
+
export * from "./lib/core/models/session/session.model";
|
|
49
|
+
export * from "./lib/core/models/student/student.interface";
|
|
50
|
+
export * from "./lib/core/models/table/table-rs.model";
|
|
51
|
+
export * from "./lib/core/models/test/test.model";
|
|
52
|
+
export * from "./lib/core/models/url/url.model";
|
|
53
|
+
export * from "./lib/core/models/user/user-rq.model";
|
|
54
|
+
export * from "./lib/core/models/user/user-rs.model";
|
|
55
|
+
// Librería para máscara de moneda
|
|
56
|
+
export * from "./lib/components/components.module";
|
|
57
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL2Rlc2lnbi1zeXN0ZW0vc3JjL3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7O0dBRUc7QUFFSCxjQUFjLDRCQUE0QixDQUFBO0FBQzFDLGNBQWMsb0NBQW9DLENBQUE7QUFDbEQsY0FBYyx3QkFBd0IsQ0FBQTtBQUV0QyxTQUFTO0FBQ1QsY0FBYyw0REFBNEQsQ0FBQTtBQUMxRSxjQUFjLGdEQUFnRCxDQUFBO0FBQzlELGNBQWMsb0RBQW9ELENBQUE7QUFDbEUsY0FBYyxvREFBb0QsQ0FBQTtBQUNsRSxjQUFjLDhDQUE4QyxDQUFBO0FBQzVELGNBQWMsNERBQTRELENBQUE7QUFDMUUsY0FBYyx3REFBd0QsQ0FBQTtBQUN0RSxjQUFjLDhDQUE4QyxDQUFBO0FBQzVELGNBQWMsZ0RBQWdELENBQUE7QUFDOUQsY0FBYyxzREFBc0QsQ0FBQTtBQUVwRSxjQUFjO0FBQ2QsY0FBYyx3REFBd0QsQ0FBQTtBQUN0RSxjQUFjLHNEQUFzRCxDQUFBO0FBQ3BFLGNBQWMsb0VBQW9FLENBQUE7QUFFbEYsWUFBWTtBQUNaLGNBQWMsMkRBQTJELENBQUE7QUFDekUsY0FBYyxtREFBbUQsQ0FBQTtBQUNqRSxjQUFjLHlEQUF5RCxDQUFBO0FBQ3ZFLGNBQWMsdURBQXVELENBQUE7QUFDckUsY0FBYyx5REFBeUQsQ0FBQTtBQUN2RSxjQUFjLGlEQUFpRCxDQUFBO0FBQy9ELGNBQWMsMkRBQTJELENBQUE7QUFDekUsY0FBYyxxREFBcUQsQ0FBQTtBQUNuRSxjQUFjLHFEQUFxRCxDQUFBO0FBQ25FLGNBQWMsbURBQW1ELENBQUE7QUFDakUsY0FBYywrQ0FBK0MsQ0FBQTtBQUM3RCxjQUFjLCtDQUErQyxDQUFBO0FBQzdELGNBQWMsNENBQTRDLENBQUE7QUFDMUQsY0FBYyw4Q0FBOEMsQ0FBQTtBQUU1RCxVQUFVO0FBQ1YsY0FBYyxtREFBbUQsQ0FBQTtBQUNqRSxjQUFjLG1EQUFtRCxDQUFBO0FBQ2pFLGNBQWMsdUNBQXVDLENBQUE7QUFDckQsY0FBYyxvQ0FBb0MsQ0FBQTtBQUNsRCxjQUFjLCtDQUErQyxDQUFBO0FBQzdELGNBQWMsOENBQThDLENBQUE7QUFDNUQsY0FBYywwQ0FBMEMsQ0FBQTtBQUN4RCxjQUFjLDZDQUE2QyxDQUFBO0FBQzNELGNBQWMseUNBQXlDLENBQUE7QUFDdkQsY0FBYywrQ0FBK0MsQ0FBQTtBQUM3RCxjQUFjLHlDQUF5QyxDQUFBO0FBQ3ZELGNBQWMsNkNBQTZDLENBQUE7QUFDM0QsY0FBYyx3Q0FBd0MsQ0FBQTtBQUN0RCxjQUFjLG1DQUFtQyxDQUFBO0FBQ2pELGNBQWMsaUNBQWlDLENBQUE7QUFDL0MsY0FBYyxzQ0FBc0MsQ0FBQTtBQUNwRCxjQUFjLHNDQUFzQyxDQUFBO0FBRXBELGtDQUFrQztBQUNsQyxjQUFjLG9DQUFvQyxDQUFBIiwic291cmNlc0NvbnRlbnQiOlsiLypcclxuICogUHVibGljIEFQSSBTdXJmYWNlIG9mIGRlc2lnbi1zeXN0ZW1cclxuICovXHJcblxyXG5leHBvcnQgKiBmcm9tIFwiLi9saWIvZGVzaWduLXN5c3RlbS5tb2R1bGVcIlxyXG5leHBvcnQgKiBmcm9tIFwiLi9saWIvY29tcG9uZW50cy9jb21wb25lbnRzLm1vZHVsZVwiXHJcbmV4cG9ydCAqIGZyb20gXCIuL2xpYi9jb3JlL2NvcmUubW9kdWxlXCJcclxuXHJcbi8vIEF0b21vc1xyXG5leHBvcnQgKiBmcm9tIFwiLi9saWIvY29tcG9uZW50cy9hdG9tcy9hc2lkZS1idXR0b24vYXNpZGUtYnV0dG9uLmNvbXBvbmVudFwiXHJcbmV4cG9ydCAqIGZyb20gXCIuL2xpYi9jb21wb25lbnRzL2F0b21zL2J1dHRvbi9idXR0b24uY29tcG9uZW50XCJcclxuZXhwb3J0ICogZnJvbSBcIi4vbGliL2NvbXBvbmVudHMvYXRvbXMvY2hlY2tib3gvY2hlY2tib3guY29tcG9uZW50XCJcclxuZXhwb3J0ICogZnJvbSBcIi4vbGliL2NvbXBvbmVudHMvYXRvbXMvZGF0YWxpc3QvZGF0YWxpc3QuY29tcG9uZW50XCJcclxuZXhwb3J0ICogZnJvbSBcIi4vbGliL2NvbXBvbmVudHMvYXRvbXMvaW5wdXQvaW5wdXQuY29tcG9uZW50XCJcclxuZXhwb3J0ICogZnJvbSBcIi4vbGliL2NvbXBvbmVudHMvYXRvbXMvbGV2ZWwtYnV0dG9uL2xldmVsLWJ1dHRvbi5jb21wb25lbnRcIlxyXG5leHBvcnQgKiBmcm9tIFwiLi9saWIvY29tcG9uZW50cy9hdG9tcy9sZXZlbC10ZXh0L2xldmVsLXRleHQuY29tcG9uZW50XCJcclxuZXhwb3J0ICogZnJvbSBcIi4vbGliL2NvbXBvbmVudHMvYXRvbXMvcmFkaW8vcmFkaW8uY29tcG9uZW50XCJcclxuZXhwb3J0ICogZnJvbSBcIi4vbGliL2NvbXBvbmVudHMvYXRvbXMvc2VsZWN0L3NlbGVjdC5jb21wb25lbnRcIlxyXG5leHBvcnQgKiBmcm9tIFwiLi9saWIvY29tcG9uZW50cy9hdG9tcy90ZXh0LWxpbmsvdGV4dC1saW5rLmNvbXBvbmVudFwiXHJcblxyXG4vLyBGb3JtdWxhcmlvc1xyXG5leHBvcnQgKiBmcm9tIFwiLi9saWIvY29tcG9uZW50cy9mb3Jtcy9sb2dpbi1mb3JtL2xvZ2luLWZvcm0uY29tcG9uZW50XCJcclxuZXhwb3J0ICogZnJvbSBcIi4vbGliL2NvbXBvbmVudHMvbW9sZWN1bGVzL3NpZGVuYXYvc2lkZW5hdi5jb21wb25lbnRcIlxyXG5leHBvcnQgKiBmcm9tIFwiLi9saWIvY29tcG9uZW50cy9mb3Jtcy9jcmVhdGUtdXNlci1mb3JtL2NyZWF0ZS11c2VyLWZvcm0uY29tcG9uZW50XCJcclxuXHJcbi8vIFNlcnZpY2lvc1xyXG5leHBvcnQgKiBmcm9tIFwiLi9saWIvY29yZS9zZXJ2aWNlcy9hdHRlbmRhbmNlLXNlcnZpY2UvYXR0ZW5kYW5jZS5zZXJ2aWNlXCJcclxuZXhwb3J0ICogZnJvbSBcIi4vbGliL2NvcmUvc2VydmljZXMvYnVkZ2V0LXNlcnZpY2UvYnVkZ2V0LXNlcnZpY2VcIlxyXG5leHBvcnQgKiBmcm9tIFwiLi9saWIvY29yZS9zZXJ2aWNlcy9jb3Vyc2Utc2VydmljZS9jb3Vyc2Utc2VydmljZS5tb2RlbFwiXHJcbmV4cG9ydCAqIGZyb20gXCIuL2xpYi9jb3JlL3NlcnZpY2VzL2NhbGVuZGFyLXNlcnZpY2UvY2FsZW5kYXIuc2VydmljZVwiXHJcbmV4cG9ydCAqIGZyb20gXCIuL2xpYi9jb3JlL3NlcnZpY2VzL21hcmtldGluZy1zZXJ2aWNlL21hcmtldGluZy1zZXJ2aWNlXCJcclxuZXhwb3J0ICogZnJvbSBcIi4vbGliL2NvcmUvc2VydmljZXMvbm90ZXMtc2VydmljZS9ub3Rlcy5zZXJ2aWNlXCJcclxuZXhwb3J0ICogZnJvbSBcIi4vbGliL2NvcmUvc2VydmljZXMvcGFyYW1ldGVycy1zZXJ2aWNlL3BhcmFtZXRlcnMuc2VydmljZVwiXHJcbmV4cG9ydCAqIGZyb20gXCIuL2xpYi9jb3JlL3NlcnZpY2VzL3N0dWRlbnQtc2VydmljZS9zdHVkZW50LnNlcnZpY2VcIlxyXG5leHBvcnQgKiBmcm9tIFwiLi9saWIvY29yZS9zZXJ2aWNlcy9zdG9yYWdlLXNlcnZpY2Uvc3RvcmFnZS1zZXJ2aWNlXCJcclxuZXhwb3J0ICogZnJvbSBcIi4vbGliL2NvcmUvc2VydmljZXMvc3dpdGNoLXNlcnZpY2Uvc3dpdGNoLnNlcnZpY2VcIlxyXG5leHBvcnQgKiBmcm9tIFwiLi9saWIvY29yZS9zZXJ2aWNlcy90ZXN0LXNlcnZpY2UvdGVzdC5zZXJ2aWNlXCJcclxuZXhwb3J0ICogZnJvbSBcIi4vbGliL2NvcmUvc2VydmljZXMvdXNlci1zZXJ2aWNlL3VzZXItc2VydmljZVwiXHJcbmV4cG9ydCAqIGZyb20gXCIuL2xpYi9jb3JlL3V0aWxzL2Jhc2Utc2VydmljZS9iYXNlLnNlcnZpY2VcIlxyXG5leHBvcnQgKiBmcm9tIFwiLi9saWIvY29yZS91dGlscy9yb3V0ZS1zZXJ2aWNlL3JvdXRlLnNlcnZpY2VcIlxyXG5cclxuLy8gTW9kZWxvc1xyXG5leHBvcnQgKiBmcm9tIFwiLi9saWIvY29yZS9tb2RlbHMvYWN0aXZpdGllcy9hY3Rpdml0aWVzLmludGVyZmFjZVwiXHJcbmV4cG9ydCAqIGZyb20gXCIuL2xpYi9jb3JlL21vZGVscy9hdHRlbmRhbmNlL2F0dGVuZGFuY2UuaW50ZXJmYWNlXCJcclxuZXhwb3J0ICogZnJvbSBcIi4vbGliL2NvcmUvbW9kZWxzL2J1ZGdldC9idWRnZXQubW9kZWxcIlxyXG5leHBvcnQgKiBmcm9tIFwiLi9saWIvY29yZS9tb2RlbHMvY29kL2NvZC1ycS5tb2RlbFwiXHJcbmV4cG9ydCAqIGZyb20gXCIuL2xpYi9jb3JlL21vZGVscy9jYWxlbmRhci9jYWxlbmRhci1ycS5tb2RlbHNcIlxyXG5leHBvcnQgKiBmcm9tIFwiLi9saWIvY29yZS9tb2RlbHMvY3Jvbm9ncmFtL2Nyb25vZ3JhbS5tb2RlbHNcIlxyXG5leHBvcnQgKiBmcm9tIFwiLi9saWIvY29yZS9tb2RlbHMvY291cnNlL2NvdXJzZS1ycS5tb2RlbFwiXHJcbmV4cG9ydCAqIGZyb20gXCIuL2xpYi9jb3JlL21vZGVscy9tYXJrZXRpbmcvbWFya2V0aW5nLm1vZGVsXCJcclxuZXhwb3J0ICogZnJvbSBcIi4vbGliL2NvcmUvbW9kZWxzL25vdGVzL25vdGVzLmludGVyZmFjZVwiXHJcbmV4cG9ydCAqIGZyb20gXCIuL2xpYi9jb3JlL21vZGVscy9yZXNwb25zZS9yZXNwb25zZS5pbnRlcmZhY2VcIlxyXG5leHBvcnQgKiBmcm9tIFwiLi9saWIvY29yZS9tb2RlbHMvc2Vzc2lvbi9zZXNzaW9uLm1vZGVsXCJcclxuZXhwb3J0ICogZnJvbSBcIi4vbGliL2NvcmUvbW9kZWxzL3N0dWRlbnQvc3R1ZGVudC5pbnRlcmZhY2VcIlxyXG5leHBvcnQgKiBmcm9tIFwiLi9saWIvY29yZS9tb2RlbHMvdGFibGUvdGFibGUtcnMubW9kZWxcIlxyXG5leHBvcnQgKiBmcm9tIFwiLi9saWIvY29yZS9tb2RlbHMvdGVzdC90ZXN0Lm1vZGVsXCJcclxuZXhwb3J0ICogZnJvbSBcIi4vbGliL2NvcmUvbW9kZWxzL3VybC91cmwubW9kZWxcIlxyXG5leHBvcnQgKiBmcm9tIFwiLi9saWIvY29yZS9tb2RlbHMvdXNlci91c2VyLXJxLm1vZGVsXCJcclxuZXhwb3J0ICogZnJvbSBcIi4vbGliL2NvcmUvbW9kZWxzL3VzZXIvdXNlci1ycy5tb2RlbFwiXHJcblxyXG4vLyBMaWJyZXLDrWEgcGFyYSBtw6FzY2FyYSBkZSBtb25lZGFcclxuZXhwb3J0ICogZnJvbSBcIi4vbGliL2NvbXBvbmVudHMvY29tcG9uZW50cy5tb2R1bGVcIlxyXG4iXX0=
|