@stinkycomputing/sesame-api-client 1.4.1-alpha.1 → 1.4.1-alpha.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/README.md +64 -142
- package/dist/browser.cjs +226 -454
- package/dist/browser.cjs.map +2 -2
- package/dist/browser.d.ts +1 -1
- package/dist/browser.d.ts.map +1 -1
- package/dist/browser.mjs +226 -454
- package/dist/browser.mjs.map +2 -2
- package/dist/command-list.d.ts +76 -162
- package/dist/command-list.d.ts.map +1 -1
- package/dist/index.browser.mjs +23002 -0
- package/dist/index.browser.mjs.map +7 -0
- package/dist/index.cjs +1243 -1015
- package/dist/index.cjs.map +4 -4
- package/dist/index.d.ts +8 -3
- package/dist/index.d.ts.map +1 -1
- package/dist/index.mjs +1230 -1007
- package/dist/index.mjs.map +4 -4
- package/dist/jobs-api.d.ts +15 -0
- package/dist/jobs-api.d.ts.map +1 -0
- package/dist/proto/api.d.ts +353 -145
- package/dist/proto/api.js +1155 -443
- package/dist/recorder-api.d.ts +16 -0
- package/dist/recorder-api.d.ts.map +1 -0
- package/dist/rpc-client.d.ts +1 -6
- package/dist/rpc-client.d.ts.map +1 -1
- package/dist/sesame-api-client.d.ts +17 -57
- package/dist/sesame-api-client.d.ts.map +1 -1
- package/dist/sesame-binary-protocol.d.ts +17 -87
- package/dist/sesame-binary-protocol.d.ts.map +1 -1
- package/dist/sesame-connection.d.ts +17 -8
- package/dist/sesame-connection.d.ts.map +1 -1
- package/dist/sesame-wire-protocol.d.ts +29 -0
- package/dist/sesame-wire-protocol.d.ts.map +1 -0
- package/dist/status-api.d.ts +11 -0
- package/dist/status-api.d.ts.map +1 -0
- package/package.json +11 -14
package/dist/command-list.d.ts
CHANGED
|
@@ -1,125 +1,57 @@
|
|
|
1
1
|
import { sesame } from './proto/api';
|
|
2
2
|
import { EaseKind } from './sesame-api-client';
|
|
3
3
|
import Long from 'long';
|
|
4
|
+
/** Makes specified keys required and non-nullable, keeping the rest as-is from the generated type. */
|
|
5
|
+
type WithRequired<T, K extends keyof T> = Omit<T, K> & {
|
|
6
|
+
[P in K]-?: NonNullable<T[P]>;
|
|
7
|
+
};
|
|
4
8
|
export declare function keyframe(timeUs: number | Long, value: sesame.v1.common.IPropValue, easingIn?: EaseKind, easingOut?: EaseKind): sesame.v1.compositor.IKeyFrame;
|
|
5
9
|
export type CompositorID = string;
|
|
6
10
|
export type ReplayID = string;
|
|
7
11
|
export type AudioMixerID = string;
|
|
8
|
-
export
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
export
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
export
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
export
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
export
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
export interface IAudioMixerChannel {
|
|
52
|
-
id: string;
|
|
53
|
-
sourceId: string;
|
|
54
|
-
channelType: sesame.v1.audio.AudioMixerChannelType;
|
|
55
|
-
sourceChannels: number[];
|
|
56
|
-
plugins: sesame.v1.audio.IAudioPlugin[];
|
|
57
|
-
level: number;
|
|
58
|
-
pan: number;
|
|
59
|
-
}
|
|
60
|
-
export interface IAudioMixerConfig {
|
|
61
|
-
channels: IAudioMixerChannel[];
|
|
62
|
-
outputType: sesame.v1.audio.AudioMixerChannelType;
|
|
63
|
-
order: number;
|
|
64
|
-
}
|
|
65
|
-
export interface ISourceConfig {
|
|
66
|
-
sourceType: sesame.v1.sources.SourceType;
|
|
67
|
-
url?: string;
|
|
68
|
-
deinterlace?: sesame.v1.sources.DeinterlaceType;
|
|
69
|
-
useAsClock?: boolean;
|
|
70
|
-
audioChannels?: number;
|
|
71
|
-
loop?: boolean;
|
|
72
|
-
playState?: sesame.v1.sources.SourceTransportState;
|
|
73
|
-
userId?: string;
|
|
74
|
-
audioOnly: boolean;
|
|
75
|
-
mipMap: boolean;
|
|
76
|
-
decoderType?: sesame.v1.sources.DecoderType;
|
|
77
|
-
decodeBufferFrames?: number;
|
|
78
|
-
textureSize?: sesame.v1.sources.SourceTextureSize;
|
|
79
|
-
moqConfig?: sesame.v1.sources.IMoqSourceConfig;
|
|
80
|
-
rttConfig?: sesame.v1.sources.IRTTSourceConfig;
|
|
81
|
-
decklinkConfig?: sesame.v1.sources.IDecklinkSourceConfig;
|
|
82
|
-
videoProcessors?: sesame.v1.sources.IVideoProcessor[];
|
|
83
|
-
fileConfig?: IFileSourceConfig;
|
|
84
|
-
ndiConfig?: INDISourceConfig;
|
|
85
|
-
srtConfig?: ISRTSourceConfig;
|
|
86
|
-
rtmpConfig?: IRTMPSourceConfig;
|
|
87
|
-
rtspConfig?: IRTSPSourceConfig;
|
|
88
|
-
recorderConfig?: IRecorderSourceConfig;
|
|
89
|
-
}
|
|
90
|
-
export interface IFileSourceConfig {
|
|
91
|
-
filename: string;
|
|
92
|
-
loop?: boolean;
|
|
93
|
-
audioRouting?: number[];
|
|
94
|
-
}
|
|
95
|
-
export interface IDecklinkSourceConfig {
|
|
96
|
-
deviceIndex: number;
|
|
97
|
-
audioRouting?: number[];
|
|
98
|
-
}
|
|
99
|
-
export interface INDISourceConfig {
|
|
100
|
-
name: string;
|
|
101
|
-
audioRouting?: number[];
|
|
102
|
-
}
|
|
103
|
-
export interface ISRTSourceConfig {
|
|
104
|
-
url: string;
|
|
105
|
-
latencyMs?: number;
|
|
106
|
-
audioRouting?: number[];
|
|
107
|
-
}
|
|
108
|
-
export interface IRTMPSourceConfig {
|
|
109
|
-
url: string;
|
|
110
|
-
audioRouting?: number[];
|
|
111
|
-
}
|
|
112
|
-
export interface IRTSPSourceConfig {
|
|
113
|
-
url: string;
|
|
114
|
-
audioRouting?: number[];
|
|
115
|
-
}
|
|
116
|
-
export interface IRecorderSourceConfig {
|
|
117
|
-
recorderId: string;
|
|
118
|
-
}
|
|
119
|
-
export interface ISourceTransportConfig {
|
|
120
|
-
cmdType: sesame.v1.sources.SourceTransportCommandType;
|
|
121
|
-
value: sesame.v1.common.IPropValue;
|
|
122
|
-
}
|
|
12
|
+
export type INodeConfig = WithRequired<Omit<sesame.v1.compositor.INodeAddRequest, 'nodeId'>, 'compositorId' | 'parentAddress' | 'nodeType'>;
|
|
13
|
+
export type IEncoderConfig = WithRequired<sesame.v1.outputs.IEncoderConfig, 'width' | 'height' | 'fps' | 'preset' | 'bitrateKbps'>;
|
|
14
|
+
export type IRecorderOutputConfig = WithRequired<Omit<sesame.v1.outputs.IEncodedRecorderOutputConfig, 'encoder'>, 'filename' | 'sizeGb' | 'groupId' | 'recorderType'>;
|
|
15
|
+
export type IFullRecorderOutputConfig = WithRequired<sesame.v1.outputs.IEncodedRecorderOutputConfig, 'filename' | 'sizeGb' | 'groupId' | 'recorderType'>;
|
|
16
|
+
export type ISuperSlowmoRecorderOutputConfig = WithRequired<Omit<sesame.v1.outputs.IEncodedSuperSlowMoRecorderOutputConfig, 'encoder'>, 'filename' | 'sizeGb' | 'groupId' | 'recorderType' | 'compositionIds' | 'sourceIds'>;
|
|
17
|
+
export type IFullSuperSlowmoRecorderOutputConfig = WithRequired<sesame.v1.outputs.IEncodedSuperSlowMoRecorderOutputConfig, 'filename' | 'sizeGb' | 'groupId' | 'recorderType' | 'compositionIds' | 'sourceIds'>;
|
|
18
|
+
export type IDecklinkOutputConfig = WithRequired<sesame.v1.outputs.IDecklinkOutputConfig, 'deviceIndex' | 'videoFormat' | 'keyAndFill'>;
|
|
19
|
+
export type IWebSocketOutputConfig = WithRequired<sesame.v1.outputs.IEncodedWebSocketOutputConfig, 'channel'>;
|
|
20
|
+
export type ISrtOutputConfig = WithRequired<sesame.v1.outputs.IEncodedSrtOutputConfig, 'url'>;
|
|
21
|
+
export type IMoqOutputConfig = WithRequired<sesame.v1.outputs.IEncodedMoqOutputConfig, 'url' | 'broadcast' | 'key'>;
|
|
22
|
+
export type ISystemAudioOutputConfig = WithRequired<sesame.v1.outputs.ISystemAudioOutputConfig, 'deviceName'>;
|
|
23
|
+
export type IOutputConfig = Omit<sesame.v1.outputs.IOutputAddRequest, 'id' | 'recorder' | 'superSlowmoRecorder' | 'decklink' | 'websocket' | 'srt' | 'moq' | 'systemAudio'> & {
|
|
24
|
+
recorder?: (IFullRecorderOutputConfig | null);
|
|
25
|
+
superSlowmoRecorder?: (IFullSuperSlowmoRecorderOutputConfig | null);
|
|
26
|
+
decklink?: (IDecklinkOutputConfig | null);
|
|
27
|
+
websocket?: (IWebSocketOutputConfig | null);
|
|
28
|
+
srt?: (ISrtOutputConfig | null);
|
|
29
|
+
moq?: (IMoqOutputConfig | null);
|
|
30
|
+
systemAudio?: (ISystemAudioOutputConfig | null);
|
|
31
|
+
};
|
|
32
|
+
export type IAudioMixerChannel = WithRequired<sesame.v1.audio.IAudioMixerChannel, 'id' | 'sourceId' | 'channelType' | 'sourceChannels' | 'plugins' | 'level' | 'pan'>;
|
|
33
|
+
export type IAudioMixerConfig = WithRequired<sesame.v1.audio.IAudioMixerConfig, 'channels' | 'outputType' | 'order'>;
|
|
34
|
+
export type ISourceConfig = Omit<sesame.v1.sources.ISourceConfig, 'file' | 'recorder' | 'browser' | 'rtt' | 'decklink' | 'systemAudio' | 'srtStream' | 'websocket' | 'moq'> & {
|
|
35
|
+
file?: (IFileSourceConfig | null);
|
|
36
|
+
recorder?: (IRecorderSourceConfig | null);
|
|
37
|
+
browser?: (IBrowserSourceConfig | null);
|
|
38
|
+
rtt?: (IRTTSourceConfig | null);
|
|
39
|
+
decklink?: (IDecklinkSourceConfig | null);
|
|
40
|
+
systemAudio?: (ISystemAudioSourceConfig | null);
|
|
41
|
+
srtStream?: (ISrtSourceConfig | null);
|
|
42
|
+
websocket?: (IWebsocketSourceConfig | null);
|
|
43
|
+
moq?: (IMoqSourceConfig | null);
|
|
44
|
+
};
|
|
45
|
+
export type IFileSourceConfig = WithRequired<sesame.v1.sources.IFileSourceConfig, 'url'>;
|
|
46
|
+
export type IRecorderSourceConfig = WithRequired<sesame.v1.sources.IRecorderSourceConfig, 'recorderId'>;
|
|
47
|
+
export type IBrowserSourceConfig = WithRequired<sesame.v1.sources.IBrowserSourceConfig, 'url' | 'width' | 'height'>;
|
|
48
|
+
export type IRTTSourceConfig = WithRequired<sesame.v1.sources.IRTTSourceConfig, 'rttId'>;
|
|
49
|
+
export type IDecklinkSourceConfig = WithRequired<sesame.v1.sources.IDecklinkSourceConfig, 'deviceIndex' | 'videoFormat'>;
|
|
50
|
+
export type ISystemAudioSourceConfig = WithRequired<sesame.v1.sources.ISystemAudioSourceConfig, 'deviceName'>;
|
|
51
|
+
export type ISrtSourceConfig = WithRequired<sesame.v1.sources.ISrtSourceConfig, 'url'>;
|
|
52
|
+
export type IWebsocketSourceConfig = WithRequired<sesame.v1.sources.IWebsocketSourceConfig, 'channel'>;
|
|
53
|
+
export type IMoqSourceConfig = WithRequired<sesame.v1.sources.IMoqSourceConfig, 'url' | 'broadcast' | 'key'>;
|
|
54
|
+
export type ISourceTransportConfig = WithRequired<Omit<sesame.v1.sources.ISourceTransportCommand, 'sourceId'>, 'cmdType' | 'value'>;
|
|
123
55
|
export interface ITransportCommand {
|
|
124
56
|
type: 'play' | 'pause' | 'stop' | 'seek' | 'seek_usertime' | 'jog' | 'live' | 'set_recorder' | 'load_playlist' | 'eject_playlist' | 'load_clip' | 'set_metadata' | 'take' | 'pre_roll' | 'post_roll' | 'next_playlist_clip' | 'skip_next_playlist_clip' | 'transitions_disabled' | 'set_scrubbing';
|
|
125
57
|
value?: number | string;
|
|
@@ -127,23 +59,7 @@ export interface ITransportCommand {
|
|
|
127
59
|
user?: string;
|
|
128
60
|
id?: string;
|
|
129
61
|
}
|
|
130
|
-
export
|
|
131
|
-
id: number;
|
|
132
|
-
recorderId: string;
|
|
133
|
-
transitionTime?: number;
|
|
134
|
-
speed?: number;
|
|
135
|
-
audioRouting?: number[];
|
|
136
|
-
transitionType?: number;
|
|
137
|
-
transitionFadeColor?: {
|
|
138
|
-
x: number;
|
|
139
|
-
y: number;
|
|
140
|
-
z: number;
|
|
141
|
-
w: number;
|
|
142
|
-
};
|
|
143
|
-
audioLevels?: number[];
|
|
144
|
-
startTime?: number;
|
|
145
|
-
endTime?: number;
|
|
146
|
-
}
|
|
62
|
+
export type IPlaylistClip = WithRequired<sesame.v1.recorder.IPlaylistItem, 'id' | 'recorderId'>;
|
|
147
63
|
export interface IPlaylist {
|
|
148
64
|
id: string;
|
|
149
65
|
duration: number;
|
|
@@ -161,8 +77,8 @@ export interface ITransactionOptions {
|
|
|
161
77
|
* @example
|
|
162
78
|
* ```typescript
|
|
163
79
|
* const cl = new CommandList();
|
|
164
|
-
* cl.
|
|
165
|
-
* cl.
|
|
80
|
+
* cl.sourceAdd('cam1', { decklink: { deviceIndex: 0, videoFormat: DecklinkVideoFormat.HD_1080i_50 } });
|
|
81
|
+
* cl.compositorAdd('main', 1920, 1080, false);
|
|
166
82
|
* await client.execute(cl);
|
|
167
83
|
* ```
|
|
168
84
|
*/
|
|
@@ -173,33 +89,31 @@ export declare class CommandList {
|
|
|
173
89
|
applyTransaction(transaction: ITransactionOptions): void;
|
|
174
90
|
getLength(): number;
|
|
175
91
|
filterCreatedAndDestroyedSources(): void;
|
|
176
|
-
|
|
177
|
-
private buildSourceConfig;
|
|
178
|
-
private buildOutputEncodedConfig;
|
|
179
|
-
private buildOutputConfig;
|
|
92
|
+
getCommandListMsg(): sesame.v1.commands.CommandList;
|
|
180
93
|
callback(event: string, data: string, timeOffsetMs?: number): sesame.v1.commands.CommandListItem;
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
}
|
|
94
|
+
compositorAdd(id: string, width: number, height: number, multisample: boolean, timeOffsetMs?: number): sesame.v1.commands.CommandListItem;
|
|
95
|
+
compositorRemove(id: string, timeOffsetMs?: number): sesame.v1.commands.CommandListItem;
|
|
96
|
+
compositorClear(id: string, timeOffsetMs?: number): sesame.v1.commands.CommandListItem;
|
|
97
|
+
sourceAdd(id: string, cfg: ISourceConfig, timeOffsetMs?: number): sesame.v1.commands.CommandListItem;
|
|
98
|
+
sourceRemove(id: string, timeOffsetMs?: number): sesame.v1.commands.CommandListItem;
|
|
99
|
+
nodeAdd(id: string, cfg: INodeConfig, timeOffsetMs?: number): sesame.v1.commands.CommandListItem;
|
|
100
|
+
nodeRemove(compositorId: string, address: string, timeOffsetMs?: number): sesame.v1.commands.CommandListItem;
|
|
101
|
+
propertySet(propertyDomain: sesame.v1.common.IPropertyDomain, addr: string, prop: string, val: sesame.v1.common.IPropValue, timeOffsetMs?: number): sesame.v1.commands.CommandListItem;
|
|
102
|
+
playlistLoad(sourceId: string, playlist: IPlaylist): sesame.v1.commands.CommandListItem;
|
|
103
|
+
playlistEject(sourceId: string): sesame.v1.commands.CommandListItem;
|
|
104
|
+
transportCommand(id: string, msg: ITransportCommand, timeOffsetMs?: number): sesame.v1.commands.CommandListItem;
|
|
105
|
+
sourceUpdate(id: string, cfg: ISourceConfig, timeOffsetMs?: number): sesame.v1.commands.CommandListItem;
|
|
106
|
+
sourceUpdateMetadata(id: string, metadata: sesame.v1.common.ITransportMetadata, timeOffsetMs?: number): sesame.v1.commands.CommandListItem;
|
|
107
|
+
sourceUpdateTransport(id: string, cfg: ISourceTransportConfig, timeOffsetMs?: number): sesame.v1.commands.CommandListItem;
|
|
108
|
+
outputAdd(id: string, cfg: IOutputConfig, timeOffsetMs?: number): sesame.v1.commands.CommandListItem;
|
|
109
|
+
outputUpdate(id: string, cfg: IOutputConfig, timeOffsetMs?: number): sesame.v1.commands.CommandListItem;
|
|
110
|
+
outputRemove(id: string, timeOffsetMs?: number): sesame.v1.commands.CommandListItem;
|
|
111
|
+
audioMixerAdd(id: string, cfg: IAudioMixerConfig, timeOffsetMs?: number): sesame.v1.commands.CommandListItem;
|
|
112
|
+
audioMixerUpdate(id: string, cfg: IAudioMixerConfig, timeOffsetMs?: number): sesame.v1.commands.CommandListItem;
|
|
113
|
+
audioMixerChannelAdd(mixerId: string, cfg: IAudioMixerChannel, timeOffsetMs?: number): sesame.v1.commands.CommandListItem;
|
|
114
|
+
audioMixerRemove(mixerId: string, timeOffsetMs?: number): sesame.v1.commands.CommandListItem;
|
|
115
|
+
audioMixerChannelRemove(mixerId: string, channelId: string, timeOffsetMs?: number): sesame.v1.commands.CommandListItem;
|
|
116
|
+
propertyAnimate(propertyDomain: sesame.v1.common.IPropertyDomain, addr: string, prop: string, before: sesame.v1.compositor.AnimationChannelEvaluationMode, after: sesame.v1.compositor.AnimationChannelEvaluationMode, keyframes: sesame.v1.compositor.IKeyFrame[], timeOffsetMs?: number): sesame.v1.commands.CommandListItem;
|
|
117
|
+
}
|
|
118
|
+
export {};
|
|
205
119
|
//# sourceMappingURL=command-list.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"command-list.d.ts","sourceRoot":"","sources":["../src/command-list.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,aAAa,CAAC;AACrC,OAAO,EAAE,QAAQ,EAAE,MAAM,qBAAqB,CAAC;AAC/C,OAAO,IAAI,MAAM,MAAM,CAAC;AAExB,wBAAgB,QAAQ,CACtB,MAAM,EAAE,MAAM,GAAG,IAAI,EACrB,KAAK,EAAE,MAAM,CAAC,EAAE,CAAC,MAAM,CAAC,UAAU,EAClC,QAAQ,CAAC,EAAE,QAAQ,EACnB,SAAS,CAAC,EAAE,QAAQ,GACnB,MAAM,CAAC,EAAE,CAAC,UAAU,CAAC,SAAS,CAEhC;AAED,MAAM,MAAM,YAAY,GAAG,MAAM,CAAC;AAClC,MAAM,MAAM,QAAQ,GAAG,MAAM,CAAC;AAC9B,MAAM,MAAM,YAAY,GAAG,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"command-list.d.ts","sourceRoot":"","sources":["../src/command-list.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,aAAa,CAAC;AACrC,OAAO,EAAE,QAAQ,EAAE,MAAM,qBAAqB,CAAC;AAC/C,OAAO,IAAI,MAAM,MAAM,CAAC;AAExB,sGAAsG;AACtG,KAAK,YAAY,CAAC,CAAC,EAAE,CAAC,SAAS,MAAM,CAAC,IAAI,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;KAAG,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;CAAE,CAAC;AAEzF,wBAAgB,QAAQ,CACtB,MAAM,EAAE,MAAM,GAAG,IAAI,EACrB,KAAK,EAAE,MAAM,CAAC,EAAE,CAAC,MAAM,CAAC,UAAU,EAClC,QAAQ,CAAC,EAAE,QAAQ,EACnB,SAAS,CAAC,EAAE,QAAQ,GACnB,MAAM,CAAC,EAAE,CAAC,UAAU,CAAC,SAAS,CAEhC;AAED,MAAM,MAAM,YAAY,GAAG,MAAM,CAAC;AAClC,MAAM,MAAM,QAAQ,GAAG,MAAM,CAAC;AAC9B,MAAM,MAAM,YAAY,GAAG,MAAM,CAAC;AAOlC,MAAM,MAAM,WAAW,GAAG,YAAY,CAAC,IAAI,CAAC,MAAM,CAAC,EAAE,CAAC,UAAU,CAAC,eAAe,EAAE,QAAQ,CAAC,EAAE,cAAc,GAAG,eAAe,GAAG,UAAU,CAAC,CAAC;AAE5I,MAAM,MAAM,cAAc,GAAG,YAAY,CAAC,MAAM,CAAC,EAAE,CAAC,OAAO,CAAC,cAAc,EAAE,OAAO,GAAG,QAAQ,GAAG,KAAK,GAAE,QAAQ,GAAG,aAAa,CAAC,CAAC;AAElI,MAAM,MAAM,qBAAqB,GAAG,YAAY,CAAC,IAAI,CAAC,MAAM,CAAC,EAAE,CAAC,OAAO,CAAC,4BAA4B,EAAE,SAAS,CAAC,EAAE,UAAU,GAAG,QAAQ,GAAG,SAAS,GAAG,cAAc,CAAC,CAAC;AAEtK,MAAM,MAAM,yBAAyB,GAAG,YAAY,CAAC,MAAM,CAAC,EAAE,CAAC,OAAO,CAAC,4BAA4B,EAAE,UAAU,GAAG,QAAQ,GAAG,SAAS,GAAG,cAAc,CAAC,CAAC;AAEzJ,MAAM,MAAM,gCAAgC,GAAG,YAAY,CAAC,IAAI,CAAC,MAAM,CAAC,EAAE,CAAC,OAAO,CAAC,uCAAuC,EAAE,SAAS,CAAC,EAAE,UAAU,GAAG,QAAQ,GAAG,SAAS,GAAG,cAAc,GAAG,gBAAgB,GAAG,WAAW,CAAC,CAAC;AAE7N,MAAM,MAAM,oCAAoC,GAAG,YAAY,CAAC,MAAM,CAAC,EAAE,CAAC,OAAO,CAAC,uCAAuC,EAAE,UAAU,GAAG,QAAQ,GAAG,SAAS,GAAG,cAAc,GAAG,gBAAgB,GAAG,WAAW,CAAC,CAAC;AAEhN,MAAM,MAAM,qBAAqB,GAAG,YAAY,CAAC,MAAM,CAAC,EAAE,CAAC,OAAO,CAAC,qBAAqB,EAAE,aAAa,GAAG,aAAa,GAAG,YAAY,CAAC,CAAC;AAExI,MAAM,MAAM,sBAAsB,GAAG,YAAY,CAAC,MAAM,CAAC,EAAE,CAAC,OAAO,CAAC,6BAA6B,EAAE,SAAS,CAAC,CAAC;AAE9G,MAAM,MAAM,gBAAgB,GAAG,YAAY,CAAC,MAAM,CAAC,EAAE,CAAC,OAAO,CAAC,uBAAuB,EAAE,KAAK,CAAC,CAAC;AAE9F,MAAM,MAAM,gBAAgB,GAAG,YAAY,CAAC,MAAM,CAAC,EAAE,CAAC,OAAO,CAAC,uBAAuB,EAAE,KAAK,GAAG,WAAW,GAAG,KAAK,CAAC,CAAC;AAEpH,MAAM,MAAM,wBAAwB,GAAG,YAAY,CAAC,MAAM,CAAC,EAAE,CAAC,OAAO,CAAC,wBAAwB,EAAE,YAAY,CAAC,CAAC;AAE9G,MAAM,MAAM,aAAa,GAAG,IAAI,CAAC,MAAM,CAAC,EAAE,CAAC,OAAO,CAAC,iBAAiB,EAAE,IAAI,GAAG,UAAU,GAAG,qBAAqB,GAAG,UAAU,GAAG,WAAW,GAAG,KAAK,GAAG,KAAK,GAAG,aAAa,CAAC,GAAG;IAC5K,QAAQ,CAAC,EAAE,CAAC,yBAAyB,GAAG,IAAI,CAAC,CAAC;IAC9C,mBAAmB,CAAC,EAAE,CAAC,oCAAoC,GAAG,IAAI,CAAC,CAAC;IACpE,QAAQ,CAAC,EAAE,CAAC,qBAAqB,GAAG,IAAI,CAAC,CAAC;IAC1C,SAAS,CAAC,EAAE,CAAC,sBAAsB,GAAG,IAAI,CAAC,CAAC;IAC5C,GAAG,CAAC,EAAE,CAAC,gBAAgB,GAAG,IAAI,CAAC,CAAC;IAChC,GAAG,CAAC,EAAE,CAAC,gBAAgB,GAAG,IAAI,CAAC,CAAC;IAChC,WAAW,CAAC,EAAE,CAAC,wBAAwB,GAAG,IAAI,CAAC,CAAC;CACjD,CAAC;AAEF,MAAM,MAAM,kBAAkB,GAAG,YAAY,CAAC,MAAM,CAAC,EAAE,CAAC,KAAK,CAAC,kBAAkB,EAAE,IAAI,GAAG,UAAU,GAAG,aAAa,GAAG,gBAAgB,GAAG,SAAS,GAAG,OAAO,GAAG,KAAK,CAAC,CAAC;AAEtK,MAAM,MAAM,iBAAiB,GAAG,YAAY,CAAC,MAAM,CAAC,EAAE,CAAC,KAAK,CAAC,iBAAiB,EAAE,UAAU,GAAG,YAAY,GAAG,OAAO,CAAC,CAAC;AAErH,MAAM,MAAM,aAAa,GAAG,IAAI,CAAC,MAAM,CAAC,EAAE,CAAC,OAAO,CAAC,aAAa,EAAE,MAAM,GAAG,UAAU,GAAG,SAAS,GAAG,KAAK,GAAG,UAAU,GAAG,aAAa,GAAG,WAAW,GAAG,WAAW,GAAG,KAAK,CAAC,GAAG;IAC5K,IAAI,CAAC,EAAE,CAAC,iBAAiB,GAAG,IAAI,CAAC,CAAC;IAClC,QAAQ,CAAC,EAAE,CAAC,qBAAqB,GAAG,IAAI,CAAC,CAAC;IAC1C,OAAO,CAAC,EAAE,CAAC,oBAAoB,GAAG,IAAI,CAAC,CAAC;IACxC,GAAG,CAAC,EAAE,CAAC,gBAAgB,GAAG,IAAI,CAAC,CAAC;IAChC,QAAQ,CAAC,EAAE,CAAC,qBAAqB,GAAG,IAAI,CAAC,CAAC;IAC1C,WAAW,CAAC,EAAE,CAAC,wBAAwB,GAAG,IAAI,CAAC,CAAC;IAChD,SAAS,CAAC,EAAE,CAAC,gBAAgB,GAAG,IAAI,CAAC,CAAC;IACtC,SAAS,CAAC,EAAE,CAAC,sBAAsB,GAAG,IAAI,CAAC,CAAC;IAC5C,GAAG,CAAC,EAAE,CAAC,gBAAgB,GAAG,IAAI,CAAC,CAAC;CACjC,CAAC;AAEF,MAAM,MAAM,iBAAiB,GAAG,YAAY,CAAC,MAAM,CAAC,EAAE,CAAC,OAAO,CAAC,iBAAiB,EAAE,KAAK,CAAC,CAAC;AAEzF,MAAM,MAAM,qBAAqB,GAAG,YAAY,CAAC,MAAM,CAAC,EAAE,CAAC,OAAO,CAAC,qBAAqB,EAAE,YAAY,CAAC,CAAC;AAExG,MAAM,MAAM,oBAAoB,GAAG,YAAY,CAAC,MAAM,CAAC,EAAE,CAAC,OAAO,CAAC,oBAAoB,EAAE,KAAK,GAAG,OAAO,GAAG,QAAQ,CAAC,CAAC;AAEpH,MAAM,MAAM,gBAAgB,GAAG,YAAY,CAAC,MAAM,CAAC,EAAE,CAAC,OAAO,CAAC,gBAAgB,EAAE,OAAO,CAAC,CAAC;AAEzF,MAAM,MAAM,qBAAqB,GAAG,YAAY,CAAC,MAAM,CAAC,EAAE,CAAC,OAAO,CAAC,qBAAqB,EAAE,aAAa,GAAG,aAAa,CAAC,CAAC;AAEzH,MAAM,MAAM,wBAAwB,GAAG,YAAY,CAAC,MAAM,CAAC,EAAE,CAAC,OAAO,CAAC,wBAAwB,EAAE,YAAY,CAAC,CAAC;AAE9G,MAAM,MAAM,gBAAgB,GAAG,YAAY,CAAC,MAAM,CAAC,EAAE,CAAC,OAAO,CAAC,gBAAgB,EAAE,KAAK,CAAC,CAAC;AAEvF,MAAM,MAAM,sBAAsB,GAAG,YAAY,CAAC,MAAM,CAAC,EAAE,CAAC,OAAO,CAAC,sBAAsB,EAAE,SAAS,CAAC,CAAC;AAEvG,MAAM,MAAM,gBAAgB,GAAG,YAAY,CAAC,MAAM,CAAC,EAAE,CAAC,OAAO,CAAC,gBAAgB,EAAE,KAAK,GAAG,WAAW,GAAG,KAAK,CAAC,CAAC;AAE7G,MAAM,MAAM,sBAAsB,GAAG,YAAY,CAAC,IAAI,CAAC,MAAM,CAAC,EAAE,CAAC,OAAO,CAAC,uBAAuB,EAAE,UAAU,CAAC,EAAE,SAAS,GAAG,OAAO,CAAC,CAAC;AAEpI,MAAM,WAAW,iBAAiB;IAChC,IAAI,EAAE,MAAM,GAAG,OAAO,GAAG,MAAM,GAAG,MAAM,GAAG,eAAe,GAAG,KAAK,GAAG,MAAM,GAAG,cAAc,GAAG,eAAe,GAAG,gBAAgB,GAAG,WAAW,GAAG,cAAc,GAAG,MAAM,GAAG,UAAU,GAAG,WAAW,GAAG,oBAAoB,GAAG,yBAAyB,GAAG,sBAAsB,GAAG,eAAe,CAAC;IACnS,KAAK,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACxB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,EAAE,CAAC,EAAE,MAAM,CAAC;CACb;AAED,MAAM,MAAM,aAAa,GAAG,YAAY,CAAC,MAAM,CAAC,EAAE,CAAC,QAAQ,CAAC,aAAa,EAAE,IAAI,GAAG,YAAY,CAAC,CAAC;AAEhG,MAAM,WAAW,SAAS;IACxB,EAAE,EAAE,MAAM,CAAC;IACX,QAAQ,EAAE,MAAM,CAAC;IACjB,KAAK,EAAE,aAAa,EAAE,CAAC;CACxB;AAED,MAAM,WAAW,mBAAmB;IAClC,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,YAAY,CAAC,EAAE,MAAM,EAAE,CAAC;CACzB;AAED;;;;;;;;;;;;GAYG;AACH,qBAAa,WAAW;IACtB,OAAO,CAAC,EAAE,CAAiC;;IAO3C,OAAO,CAAC,GAAG;IAUJ,gBAAgB,CAAC,WAAW,EAAE,mBAAmB;IAWjD,SAAS,IAAI,MAAM;IAInB,gCAAgC;IAqBhC,iBAAiB;IAIjB,QAAQ,CAAC,KAAK,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,YAAY,CAAC,EAAE,MAAM;IAM3D,aAAa,CAAC,EAAE,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAW,EAAE,OAAO,EAAE,YAAY,CAAC,EAAE,MAAM;IAMpG,gBAAgB,CAAC,EAAE,EAAE,MAAM,EAAE,YAAY,CAAC,EAAE,MAAM;IAMlD,eAAe,CAAC,EAAE,EAAE,MAAM,EAAE,YAAY,CAAC,EAAE,MAAM;IAMjD,SAAS,CAAC,EAAE,EAAE,MAAM,EAAE,GAAG,EAAE,aAAa,EAAE,YAAY,CAAC,EAAE,MAAM;IAM/D,YAAY,CAAC,EAAE,EAAE,MAAM,EAAE,YAAY,CAAC,EAAE,MAAM;IAM9C,OAAO,CAAC,EAAE,EAAE,MAAM,EAAE,GAAG,EAAE,WAAW,EAAE,YAAY,CAAC,EAAE,MAAM;IAW3D,UAAU,CAAC,YAAY,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,YAAY,CAAC,EAAE,MAAM;IAMvE,WAAW,CAAC,cAAc,EAAE,MAAM,CAAC,EAAE,CAAC,MAAM,CAAC,eAAe,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,CAAC,EAAE,CAAC,MAAM,CAAC,UAAU,EAAE,YAAY,CAAC,EAAE,MAAM;IAWjJ,YAAY,CAAC,QAAQ,EAAE,MAAM,EAAE,QAAQ,EAAE,SAAS;IAwBlD,aAAa,CAAC,QAAQ,EAAE,MAAM;IAO9B,gBAAgB,CAAC,EAAE,EAAE,MAAM,EAAE,GAAG,EAAE,iBAAiB,EAAE,YAAY,CAAC,EAAE,MAAM;IAyC1E,YAAY,CAAC,EAAE,EAAE,MAAM,EAAE,GAAG,EAAE,aAAa,EAAE,YAAY,CAAC,EAAE,MAAM;IAMlE,oBAAoB,CAAC,EAAE,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,CAAC,EAAE,CAAC,MAAM,CAAC,kBAAkB,EAAE,YAAY,CAAC,EAAE,MAAM;IAMrG,qBAAqB,CAAC,EAAE,EAAE,MAAM,EAAE,GAAG,EAAE,sBAAsB,EAAE,YAAY,CAAC,EAAE,MAAM;IAUpF,SAAS,CAAC,EAAE,EAAE,MAAM,EAAE,GAAG,EAAE,aAAa,EAAE,YAAY,CAAC,EAAE,MAAM;IAM/D,YAAY,CAAC,EAAE,EAAE,MAAM,EAAE,GAAG,EAAE,aAAa,EAAE,YAAY,CAAC,EAAE,MAAM;IAMlE,YAAY,CAAC,EAAE,EAAE,MAAM,EAAE,YAAY,CAAC,EAAE,MAAM;IAM9C,aAAa,CAAC,EAAE,EAAE,MAAM,EAAE,GAAG,EAAE,iBAAiB,EAAE,YAAY,CAAC,EAAE,MAAM;IAMvE,gBAAgB,CAAC,EAAE,EAAE,MAAM,EAAE,GAAG,EAAE,iBAAiB,EAAE,YAAY,CAAC,EAAE,MAAM;IAM1E,oBAAoB,CAAC,OAAO,EAAE,MAAM,EAAE,GAAG,EAAE,kBAAkB,EAAE,YAAY,CAAC,EAAE,MAAM;IAMpF,gBAAgB,CAAC,OAAO,EAAE,MAAM,EAAE,YAAY,CAAC,EAAE,MAAM;IAMvD,uBAAuB,CAAC,OAAO,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,EAAE,YAAY,CAAC,EAAE,MAAM;IAMjF,eAAe,CAAC,cAAc,EAAE,MAAM,CAAC,EAAE,CAAC,MAAM,CAAC,eAAe,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,EACjG,MAAM,EAAE,MAAM,CAAC,EAAE,CAAC,UAAU,CAAC,8BAA8B,EAAE,KAAK,EAAE,MAAM,CAAC,EAAE,CAAC,UAAU,CAAC,8BAA8B,EACvH,SAAS,EAAE,MAAM,CAAC,EAAE,CAAC,UAAU,CAAC,SAAS,EAAE,EAAE,YAAY,CAAC,EAAE,MAAM;CAarE"}
|