@deadair/sdk 0.9.0 → 0.10.0
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/dist/director/types/director.types.d.ts +12 -8
- package/dist/director/types/director.types.d.ts.map +1 -1
- package/dist/playout/types/playout.types.d.ts +14 -12
- package/dist/playout/types/playout.types.d.ts.map +1 -1
- package/dist/schedule/types/schedule.types.d.ts +9 -5
- package/dist/schedule/types/schedule.types.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -34,7 +34,7 @@ export type StationOnEnd = 'extend' | 'repeat' | 'stop';
|
|
|
34
34
|
export type StationItemState = 'planned' | 'handed' | 'airing' | 'played' | 'skipped' | 'unavailable' | 'removed';
|
|
35
35
|
/**
|
|
36
36
|
* Change who is presenting the broadcast that is on air
|
|
37
|
-
* generated from [SetStationHostInput](../../../../../apps/api/data/contracts/director/director.types.ck#
|
|
37
|
+
* generated from [SetStationHostInput](../../../../../apps/api/data/contracts/director/director.types.ck#L96)
|
|
38
38
|
*/
|
|
39
39
|
export interface SetStationHostInput {
|
|
40
40
|
/** Who hosts it from here on. Absent hands it back to whichever persona the station has on air, which is what a broadcast that never named one already does */
|
|
@@ -42,7 +42,7 @@ export interface SetStationHostInput {
|
|
|
42
42
|
}
|
|
43
43
|
/**
|
|
44
44
|
* Put something the station says into the running order
|
|
45
|
-
* generated from [AddStationSegmentInput](../../../../../apps/api/data/contracts/director/director.types.ck#
|
|
45
|
+
* generated from [AddStationSegmentInput](../../../../../apps/api/data/contracts/director/director.types.ck#L100)
|
|
46
46
|
*/
|
|
47
47
|
export interface AddStationSegmentInput {
|
|
48
48
|
segmentId: string;
|
|
@@ -53,7 +53,7 @@ export interface AddStationSegmentInput {
|
|
|
53
53
|
}
|
|
54
54
|
/**
|
|
55
55
|
* Put a catalog record into the running order. Refused at the door — 404 for a record the catalog does not hold, 422 for one whose audio is not local yet — rather than accepted and left to fail when it comes round
|
|
56
|
-
* generated from [AddStationTrackInput](../../../../../apps/api/data/contracts/director/director.types.ck#
|
|
56
|
+
* generated from [AddStationTrackInput](../../../../../apps/api/data/contracts/director/director.types.ck#L106)
|
|
57
57
|
*/
|
|
58
58
|
export interface AddStationTrackInput {
|
|
59
59
|
trackId: string;
|
|
@@ -62,21 +62,21 @@ export interface AddStationTrackInput {
|
|
|
62
62
|
}
|
|
63
63
|
/**
|
|
64
64
|
* Move an item within the running order
|
|
65
|
-
* generated from [MoveStationItemInput](../../../../../apps/api/data/contracts/director/director.types.ck#
|
|
65
|
+
* generated from [MoveStationItemInput](../../../../../apps/api/data/contracts/director/director.types.ck#L111)
|
|
66
66
|
*/
|
|
67
67
|
export interface MoveStationItemInput {
|
|
68
68
|
toIndex: number;
|
|
69
69
|
}
|
|
70
70
|
/**
|
|
71
71
|
* Add tracks to the running order now, rather than waiting for it to run short
|
|
72
|
-
* generated from [ExtendStationInput](../../../../../apps/api/data/contracts/director/director.types.ck#
|
|
72
|
+
* generated from [ExtendStationInput](../../../../../apps/api/data/contracts/director/director.types.ck#L115)
|
|
73
73
|
*/
|
|
74
74
|
export interface ExtendStationInput {
|
|
75
75
|
count?: number;
|
|
76
76
|
}
|
|
77
77
|
/**
|
|
78
78
|
* Throw away everything the player is not already holding and programme it again. Unlike a shuffle, the records themselves change; unlike putting the station on air, the broadcast continues
|
|
79
|
-
* generated from [ReplanStationInput](../../../../../apps/api/data/contracts/director/director.types.ck#
|
|
79
|
+
* generated from [ReplanStationInput](../../../../../apps/api/data/contracts/director/director.types.ck#L119)
|
|
80
80
|
*/
|
|
81
81
|
export interface ReplanStationInput {
|
|
82
82
|
/** How many records to programme. Absent is roughly an hour */
|
|
@@ -117,7 +117,7 @@ export interface StationAir {
|
|
|
117
117
|
}
|
|
118
118
|
/**
|
|
119
119
|
* Put the station on air, building its running order from the top
|
|
120
|
-
* generated from [PutOnAirInput](../../../../../apps/api/data/contracts/director/director.types.ck#
|
|
120
|
+
* generated from [PutOnAirInput](../../../../../apps/api/data/contracts/director/director.types.ck#L80)
|
|
121
121
|
*/
|
|
122
122
|
export interface PutOnAirInput {
|
|
123
123
|
/** The plugin whose playlist to build from. Absent starts empty and lets the station generate its own programming */
|
|
@@ -140,6 +140,8 @@ export interface PutOnAirInput {
|
|
|
140
140
|
eraTo?: number;
|
|
141
141
|
/** Whether somebody phones in during this broadcast. A call is a short programme rather than a break: a few turns in a few voices, entering the running order as one block, spaced by `rotation.callinEveryMinutes`. Absent takes the station's own setting, which is off */
|
|
142
142
|
callins?: boolean;
|
|
143
|
+
/** Whether records that sound like the ones on this playlist are mixed in among them, one every `rotation.mixInEvery` records, found through the similarity plugin. The playlist still plays in full and in its own order around them. Absent takes the station's own setting, which is off. A setlist and a feature never have anything mixed in */
|
|
144
|
+
mixInSimilar?: boolean;
|
|
143
145
|
mode?: StationMode;
|
|
144
146
|
onEnd?: StationOnEnd;
|
|
145
147
|
}
|
|
@@ -173,6 +175,8 @@ export interface StationOrderItem {
|
|
|
173
175
|
albumId?: string;
|
|
174
176
|
/** What the station thinks of this record, read as the order is drawn rather than stored on it. Absent on a segment, and on a record the catalog has never seen */
|
|
175
177
|
rating?: Rating;
|
|
178
|
+
/** The station chose this record to sound like the playlist around it, rather than the playlist naming it. Absent on everything the playlist named, and on a segment */
|
|
179
|
+
mixedIn?: boolean;
|
|
176
180
|
/** Which segment this plays. Present only on a segment */
|
|
177
181
|
segmentId?: string;
|
|
178
182
|
segmentState?: 'planned' | 'writing' | 'written' | 'rendering' | 'ready' | 'failed' | 'gone';
|
|
@@ -187,7 +191,7 @@ export interface StationOrderItem {
|
|
|
187
191
|
}
|
|
188
192
|
/**
|
|
189
193
|
* The station's live running order: what is airing, item by item
|
|
190
|
-
* generated from [StationOrder](../../../../../apps/api/data/contracts/director/director.types.ck#
|
|
194
|
+
* generated from [StationOrder](../../../../../apps/api/data/contracts/director/director.types.ck#L66)
|
|
191
195
|
*/
|
|
192
196
|
export interface StationOrder {
|
|
193
197
|
/** What is on, for a console to draw. A label for this broadcast rather than the name of a stored object */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"director.types.d.ts","sourceRoot":"","sources":["../../../src/director/types/director.types.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"director.types.d.ts","sourceRoot":"","sources":["../../../src/director/types/director.types.ts"],"names":[],"mappings":"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"}
|
|
@@ -5,10 +5,12 @@
|
|
|
5
5
|
export interface PlayoutPlaylistInput {
|
|
6
6
|
pluginId: string;
|
|
7
7
|
playlistId: string;
|
|
8
|
+
/** Whether records that sound like the ones on this playlist are mixed in among them, one every `rotation.mixInEvery` records. The playlist still plays in full and in its own order around them. Absent takes the station's own setting, which is off */
|
|
9
|
+
mixInSimilar?: boolean;
|
|
8
10
|
}
|
|
9
11
|
/**
|
|
10
12
|
* The published chart to build the running order from
|
|
11
|
-
* generated from [PlayoutChartInput](../../../../../apps/api/data/contracts/playout/playout.types.ck#
|
|
13
|
+
* generated from [PlayoutChartInput](../../../../../apps/api/data/contracts/playout/playout.types.ck#L13)
|
|
12
14
|
*/
|
|
13
15
|
export interface PlayoutChartInput {
|
|
14
16
|
/** As `pluginId:chartId`, which is how `GET /charts` lists them */
|
|
@@ -18,7 +20,7 @@ export interface PlayoutChartInput {
|
|
|
18
20
|
}
|
|
19
21
|
/**
|
|
20
22
|
* One item in the running order, as the console sees it
|
|
21
|
-
* generated from [PlayoutItem](../../../../../apps/api/data/contracts/playout/playout.types.ck#
|
|
23
|
+
* generated from [PlayoutItem](../../../../../apps/api/data/contracts/playout/playout.types.ck#L18)
|
|
22
24
|
*/
|
|
23
25
|
export interface PlayoutItem {
|
|
24
26
|
/** deadair's own id for this item, not the provider's: a playlist may hold the same track twice */
|
|
@@ -44,7 +46,7 @@ export interface PlayoutItem {
|
|
|
44
46
|
* re-rendered — so a reseeded secret leaves a process holding credentials that match nothing,
|
|
45
47
|
* and the symptom names something else entirely (every listener refused, or no mount at all).
|
|
46
48
|
* The app cannot restart a sibling container and should not be able to, so it reports.
|
|
47
|
-
* generated from [StreamConfigWarning](../../../../../apps/api/data/contracts/playout/playout.types.ck#
|
|
49
|
+
* generated from [StreamConfigWarning](../../../../../apps/api/data/contracts/playout/playout.types.ck#L42)
|
|
48
50
|
*/
|
|
49
51
|
export interface StreamConfigWarning {
|
|
50
52
|
/** Which one is behind */
|
|
@@ -57,19 +59,19 @@ export interface StreamConfigWarning {
|
|
|
57
59
|
/**
|
|
58
60
|
* Which gate is keeping the station quiet, or `airing` when none of them is. Ordered by cause: a
|
|
59
61
|
* stalled transport loop makes every reading under it stale, so it is ruled out first
|
|
60
|
-
* generated from [SilenceCause](../../../../../apps/api/data/contracts/playout/playout.types.ck#
|
|
62
|
+
* generated from [SilenceCause](../../../../../apps/api/data/contracts/playout/playout.types.ck#L50)
|
|
61
63
|
*/
|
|
62
64
|
export type SilenceCause = 'airing' | 'transportStalled' | 'controlDenied' | 'streamUnreachable' | 'configNotAdopted' | 'stoodDown' | 'noProgramme' | 'noAudience' | 'warmingUp' | 'waitingOnAudio' | 'notDriving' | 'starved';
|
|
63
65
|
/**
|
|
64
66
|
* How one gate is doing. `waiting` is its own state rather than a mild fault, because a station
|
|
65
67
|
* idling for want of a listener and a station that cannot reach its stream are both silent and only
|
|
66
68
|
* one of them is something to go and fix
|
|
67
|
-
* generated from [SilenceState](../../../../../apps/api/data/contracts/playout/playout.types.ck#
|
|
69
|
+
* generated from [SilenceState](../../../../../apps/api/data/contracts/playout/playout.types.ck#L68)
|
|
68
70
|
*/
|
|
69
71
|
export type SilenceState = 'ok' | 'waiting' | 'fault';
|
|
70
72
|
/**
|
|
71
73
|
* One mount the station is publishing right now
|
|
72
|
-
* generated from [PlayoutMount](../../../../../apps/api/data/contracts/playout/playout.types.ck#
|
|
74
|
+
* generated from [PlayoutMount](../../../../../apps/api/data/contracts/playout/playout.types.ck#L85)
|
|
73
75
|
*/
|
|
74
76
|
export interface PlayoutMount {
|
|
75
77
|
format: 'mp3' | 'opus' | 'aac' | 'flac';
|
|
@@ -80,7 +82,7 @@ export interface PlayoutMount {
|
|
|
80
82
|
}
|
|
81
83
|
/**
|
|
82
84
|
* Which rundown item Liquidsoap has just started playing
|
|
83
|
-
* generated from [PlayoutAiredQuery](../../../../../apps/api/data/contracts/playout/playout.types.ck#
|
|
85
|
+
* generated from [PlayoutAiredQuery](../../../../../apps/api/data/contracts/playout/playout.types.ck#L105)
|
|
84
86
|
*/
|
|
85
87
|
export interface PlayoutAiredQuery {
|
|
86
88
|
/** The id the app put on the pushed uri's `annotate:` metadata */
|
|
@@ -88,7 +90,7 @@ export interface PlayoutAiredQuery {
|
|
|
88
90
|
}
|
|
89
91
|
/**
|
|
90
92
|
* Which way the running order went, and how long it had been that way
|
|
91
|
-
* generated from [PlayoutStarveQuery](../../../../../apps/api/data/contracts/playout/playout.types.ck#
|
|
93
|
+
* generated from [PlayoutStarveQuery](../../../../../apps/api/data/contracts/playout/playout.types.ck#L109)
|
|
92
94
|
*/
|
|
93
95
|
export interface PlayoutStarveQuery {
|
|
94
96
|
/** `starved`: the queue stopped producing while deadair was driving, so the mount fell through to the local bed. `recovered`: it is producing again */
|
|
@@ -98,7 +100,7 @@ export interface PlayoutStarveQuery {
|
|
|
98
100
|
}
|
|
99
101
|
/**
|
|
100
102
|
* What the PLAYER says is airing, which is not the same as what was last handed to it
|
|
101
|
-
* generated from [PlayoutNowPlaying](../../../../../apps/api/data/contracts/playout/playout.types.ck#
|
|
103
|
+
* generated from [PlayoutNowPlaying](../../../../../apps/api/data/contracts/playout/playout.types.ck#L31)
|
|
102
104
|
*/
|
|
103
105
|
export interface PlayoutNowPlaying {
|
|
104
106
|
item: PlayoutItem;
|
|
@@ -109,7 +111,7 @@ export interface PlayoutNowPlaying {
|
|
|
109
111
|
}
|
|
110
112
|
/**
|
|
111
113
|
* One gate's answer about itself
|
|
112
|
-
* generated from [SilenceCheck](../../../../../apps/api/data/contracts/playout/playout.types.ck#
|
|
114
|
+
* generated from [SilenceCheck](../../../../../apps/api/data/contracts/playout/playout.types.ck#L70)
|
|
113
115
|
*/
|
|
114
116
|
export interface SilenceCheck {
|
|
115
117
|
/** Never `airing`, which is the absence of a blocking gate rather than a gate */
|
|
@@ -122,7 +124,7 @@ export interface SilenceCheck {
|
|
|
122
124
|
}
|
|
123
125
|
/**
|
|
124
126
|
* Why the station cannot be heard, as one answer
|
|
125
|
-
* generated from [StationSilence](../../../../../apps/api/data/contracts/playout/playout.types.ck#
|
|
127
|
+
* generated from [StationSilence](../../../../../apps/api/data/contracts/playout/playout.types.ck#L77)
|
|
126
128
|
*/
|
|
127
129
|
export interface StationSilence {
|
|
128
130
|
/** Whether the station believes its programme is reaching the mount. NOT whether anybody is hearing it: a station can be audible with no listeners in `always` mode, and can have listeners while airing the local bed */
|
|
@@ -135,7 +137,7 @@ export interface StationSilence {
|
|
|
135
137
|
}
|
|
136
138
|
/**
|
|
137
139
|
* The station's transport, as one reading
|
|
138
|
-
* generated from [PlayoutStatus](../../../../../apps/api/data/contracts/playout/playout.types.ck#
|
|
140
|
+
* generated from [PlayoutStatus](../../../../../apps/api/data/contracts/playout/playout.types.ck#L91)
|
|
139
141
|
*/
|
|
140
142
|
export interface PlayoutStatus {
|
|
141
143
|
/** Whether Liquidsoap's control API is answering at all. False means nothing can air, whatever the running order holds */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"playout.types.d.ts","sourceRoot":"","sources":["../../../src/playout/types/playout.types.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,MAAM,WAAW,oBAAoB;IACjC,QAAQ,EAAE,MAAM,CAAC;IACjB,UAAU,EAAE,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"playout.types.d.ts","sourceRoot":"","sources":["../../../src/playout/types/playout.types.ts"],"names":[],"mappings":"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"}
|
|
@@ -29,6 +29,8 @@ export interface ScheduleSlot {
|
|
|
29
29
|
eraTo?: number;
|
|
30
30
|
/** Whether somebody phones in during this stretch of the day. Absent leaves the station's own setting standing, exactly as it does when an operator briefs a broadcast by hand; a `setlist` or a `feature` takes no calls whatever this says */
|
|
31
31
|
callins?: boolean;
|
|
32
|
+
/** Whether records that sound like this slot's playlist are mixed in among its records, one every `rotation.mixInEvery` records. Absent leaves the station's own setting standing, exactly as it does when an operator airs a playlist by hand; a slot with no playlist, or a `setlist` or a `feature`, never mixes whatever this says */
|
|
33
|
+
mixInSimilar?: boolean;
|
|
32
34
|
mode: 'rotation' | 'setlist' | 'feature';
|
|
33
35
|
onEnd: 'extend' | 'repeat' | 'stop';
|
|
34
36
|
}
|
|
@@ -58,12 +60,14 @@ export interface ScheduleSlotInput {
|
|
|
58
60
|
eraTo?: number;
|
|
59
61
|
/** Whether somebody phones in during this stretch of the day. Absent leaves the station's own setting standing, exactly as it does when an operator briefs a broadcast by hand; a `setlist` or a `feature` takes no calls whatever this says */
|
|
60
62
|
callins?: boolean;
|
|
63
|
+
/** Whether records that sound like this slot's playlist are mixed in among its records, one every `rotation.mixInEvery` records. Absent leaves the station's own setting standing, exactly as it does when an operator airs a playlist by hand; a slot with no playlist, or a `setlist` or a `feature`, never mixes whatever this says */
|
|
64
|
+
mixInSimilar?: boolean;
|
|
61
65
|
mode: 'rotation' | 'setlist' | 'feature';
|
|
62
66
|
onEnd: 'extend' | 'repeat' | 'stop';
|
|
63
67
|
}
|
|
64
68
|
/**
|
|
65
69
|
* A window of the station's day to draw
|
|
66
|
-
* generated from [ScheduleTimetableQuery](../../../../../apps/api/data/contracts/schedule/schedule.types.ck#
|
|
70
|
+
* generated from [ScheduleTimetableQuery](../../../../../apps/api/data/contracts/schedule/schedule.types.ck#L33)
|
|
67
71
|
*/
|
|
68
72
|
export interface ScheduleTimetableQuery {
|
|
69
73
|
/** The first day to draw, as `YYYY-MM-DD` on the station's own calendar. Absent means the station's today, which is the only way a caller that does not know the station's timezone can anchor */
|
|
@@ -73,7 +77,7 @@ export interface ScheduleTimetableQuery {
|
|
|
73
77
|
}
|
|
74
78
|
/**
|
|
75
79
|
* One block: this slot, on this day, between these two times
|
|
76
|
-
* generated from [ScheduleOccurrence](../../../../../apps/api/data/contracts/schedule/schedule.types.ck#
|
|
80
|
+
* generated from [ScheduleOccurrence](../../../../../apps/api/data/contracts/schedule/schedule.types.ck#L46)
|
|
77
81
|
*/
|
|
78
82
|
export interface ScheduleOccurrence {
|
|
79
83
|
slotId: string;
|
|
@@ -84,7 +88,7 @@ export interface ScheduleOccurrence {
|
|
|
84
88
|
end: string;
|
|
85
89
|
}
|
|
86
90
|
/**
|
|
87
|
-
* generated from [ScheduleSlotList](../../../../../apps/api/data/contracts/schedule/schedule.types.ck#
|
|
91
|
+
* generated from [ScheduleSlotList](../../../../../apps/api/data/contracts/schedule/schedule.types.ck#L28)
|
|
88
92
|
*/
|
|
89
93
|
export interface ScheduleSlotList {
|
|
90
94
|
slots: ScheduleSlot[];
|
|
@@ -94,7 +98,7 @@ export interface ScheduleSlotListInput {
|
|
|
94
98
|
}
|
|
95
99
|
/**
|
|
96
100
|
* The station's day as blocks, ready to draw
|
|
97
|
-
* generated from [ScheduleTimetable](../../../../../apps/api/data/contracts/schedule/schedule.types.ck#
|
|
101
|
+
* generated from [ScheduleTimetable](../../../../../apps/api/data/contracts/schedule/schedule.types.ck#L39)
|
|
98
102
|
*/
|
|
99
103
|
export interface ScheduleTimetable {
|
|
100
104
|
/** The range actually drawn, echoed so a caller steps forward and back by adding days to a string rather than by knowing the station's timezone */
|
|
@@ -104,7 +108,7 @@ export interface ScheduleTimetable {
|
|
|
104
108
|
}
|
|
105
109
|
/**
|
|
106
110
|
* Which slot the clock says should be on right now, and what follows it
|
|
107
|
-
* generated from [ScheduleNow](../../../../../apps/api/data/contracts/schedule/schedule.types.ck#
|
|
111
|
+
* generated from [ScheduleNow](../../../../../apps/api/data/contracts/schedule/schedule.types.ck#L54)
|
|
108
112
|
*/
|
|
109
113
|
export interface ScheduleNow {
|
|
110
114
|
/** What time it is on the station's own clock, in the same zone-naive `YYYY-MM-DD HH:mm:ss` shape as a block's ends. It is here so a caller can say how much of the block is left without knowing the station's timezone: subtracting two readings taken in one frame is arithmetic, deriving one is not */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schedule.types.d.ts","sourceRoot":"","sources":["../../../src/schedule/types/schedule.types.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"schedule.types.d.ts","sourceRoot":"","sources":["../../../src/schedule/types/schedule.types.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,MAAM,WAAW,YAAY;IACzB,EAAE,EAAE,MAAM,CAAC;IACX,oFAAoF;IACpF,KAAK,EAAE,MAAM,CAAC;IACd,sEAAsE;IACtE,eAAe,EAAE,MAAM,CAAC;IACxB,2KAA2K;IAC3K,aAAa,EAAE,MAAM,CAAC;IACtB,yEAAyE;IACzE,IAAI,CAAC,EAAE,MAAM,EAAE,CAAC;IAChB,qGAAqG;IACrG,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,6PAA6P;IAC7P,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,6HAA6H;IAC7H,gBAAgB,CAAC,EAAE,WAAW,GAAG,QAAQ,GAAG,WAAW,CAAC;IACxD,uFAAuF;IACvF,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,oOAAoO;IACpO,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,4KAA4K;IAC5K,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,0GAA0G;IAC1G,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,gPAAgP;IAChP,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,0UAA0U;IAC1U,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,IAAI,EAAE,UAAU,GAAG,SAAS,GAAG,SAAS,CAAC;IACzC,KAAK,EAAE,QAAQ,GAAG,QAAQ,GAAG,MAAM,CAAC;CACvC;AAED,MAAM,WAAW,iBAAiB;IAC9B,oFAAoF;IACpF,KAAK,EAAE,MAAM,CAAC;IACd,sEAAsE;IACtE,eAAe,EAAE,MAAM,CAAC;IACxB,2KAA2K;IAC3K,aAAa,EAAE,MAAM,CAAC;IACtB,yEAAyE;IACzE,IAAI,CAAC,EAAE,MAAM,EAAE,CAAC;IAChB,qGAAqG;IACrG,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,6PAA6P;IAC7P,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,6HAA6H;IAC7H,gBAAgB,CAAC,EAAE,WAAW,GAAG,QAAQ,GAAG,WAAW,CAAC;IACxD,uFAAuF;IACvF,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,oOAAoO;IACpO,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,4KAA4K;IAC5K,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,0GAA0G;IAC1G,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,gPAAgP;IAChP,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,0UAA0U;IAC1U,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,IAAI,EAAE,UAAU,GAAG,SAAS,GAAG,SAAS,CAAC;IACzC,KAAK,EAAE,QAAQ,GAAG,QAAQ,GAAG,MAAM,CAAC;CACvC;AAED;;;GAGG;AACH,MAAM,WAAW,sBAAsB;IACnC,kMAAkM;IAClM,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,oDAAoD;IACpD,IAAI,CAAC,EAAE,MAAM,CAAC;CACjB;AAED;;;GAGG;AACH,MAAM,WAAW,kBAAkB;IAC/B,MAAM,EAAE,MAAM,CAAC;IACf,KAAK,EAAE,MAAM,CAAC;IACd,+LAA+L;IAC/L,KAAK,EAAE,MAAM,CAAC;IACd,4GAA4G;IAC5G,GAAG,EAAE,MAAM,CAAC;CACf;AAED;;GAEG;AACH,MAAM,WAAW,gBAAgB;IAC7B,KAAK,EAAE,YAAY,EAAE,CAAC;CACzB;AAED,MAAM,WAAW,qBAAqB;IAClC,KAAK,EAAE,iBAAiB,EAAE,CAAC;CAC9B;AAED;;;GAGG;AACH,MAAM,WAAW,iBAAiB;IAC9B,mJAAmJ;IACnJ,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,kBAAkB,EAAE,CAAC;CACrC;AAED;;;GAGG;AACH,MAAM,WAAW,WAAW;IACxB,4SAA4S;IAC5S,GAAG,EAAE,MAAM,CAAC;IACZ,kFAAkF;IAClF,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,kKAAkK;IAClK,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,uQAAuQ;IACvQ,QAAQ,EAAE,kBAAkB,EAAE,CAAC;CAClC"}
|