diff --git a/.changeset/egress-passthrough.md b/.changeset/egress-passthrough.md new file mode 100644 index 000000000..af02206ba --- /dev/null +++ b/.changeset/egress-passthrough.md @@ -0,0 +1,6 @@ +--- +"github.com/livekit/protocol": minor +"@livekit/protocol": minor +--- + +egress v2: add `passthrough` to the `encoding` oneof on `StartEgressRequest` and `ExportReplayRequest`; remove the unused `EgressHandler.UpdateEgress` RPC and the `livekit.UpdateEgressRequest` message diff --git a/egress/types.go b/egress/types.go index c239ca0f0..b45555e75 100644 --- a/egress/types.go +++ b/egress/types.go @@ -64,8 +64,12 @@ type EgressRequest interface { GetWeb() *livekit.WebSource GetOutputs() []*livekit.Output GetStorage() *livekit.StorageConfig + GetPassthrough() bool } +var _ EgressRequest = (*livekit.StartEgressRequest)(nil) +var _ EgressRequest = (*livekit.ExportReplayRequest)(nil) + type UploadRequest interface { GetS3() *livekit.S3Upload GetGcp() *livekit.GCPUpload diff --git a/livekit/livekit_egress.pb.go b/livekit/livekit_egress.pb.go index f71ca8cac..84078abae 100644 --- a/livekit/livekit_egress.pb.go +++ b/livekit/livekit_egress.pb.go @@ -596,7 +596,7 @@ func (x StreamInfo_Status) Number() protoreflect.EnumNumber { // Deprecated: Use StreamInfo_Status.Descriptor instead. func (StreamInfo_Status) EnumDescriptor() ([]byte, []int) { - return file_livekit_egress_proto_rawDescGZIP(), []int{26, 0} + return file_livekit_egress_proto_rawDescGZIP(), []int{25, 0} } type StartEgressRequest struct { @@ -614,6 +614,7 @@ type StartEgressRequest struct { // // *StartEgressRequest_Preset // *StartEgressRequest_Advanced + // *StartEgressRequest_Passthrough Encoding isStartEgressRequest_Encoding `protobuf_oneof:"encoding"` // At least one required Outputs []*Output `protobuf:"bytes,7,rep,name=outputs,proto3" json:"outputs,omitempty"` @@ -721,6 +722,15 @@ func (x *StartEgressRequest) GetAdvanced() *EncodingOptions { return nil } +func (x *StartEgressRequest) GetPassthrough() bool { + if x != nil { + if x, ok := x.Encoding.(*StartEgressRequest_Passthrough); ok { + return x.Passthrough + } + } + return false +} + func (x *StartEgressRequest) GetOutputs() []*Output { if x != nil { return x.Outputs @@ -776,10 +786,17 @@ type StartEgressRequest_Advanced struct { Advanced *EncodingOptions `protobuf:"bytes,6,opt,name=advanced,proto3,oneof"` } +type StartEgressRequest_Passthrough struct { + // Remux a single explicitly-identified track without decoding or re-encoding + Passthrough bool `protobuf:"varint,10,opt,name=passthrough,proto3,oneof"` +} + func (*StartEgressRequest_Preset) isStartEgressRequest_Encoding() {} func (*StartEgressRequest_Advanced) isStartEgressRequest_Encoding() {} +func (*StartEgressRequest_Passthrough) isStartEgressRequest_Encoding() {} + // Room composite recording via layout template. // Service generates token, constructs recorder URL, awaits start signal. type TemplateSource struct { @@ -2709,82 +2726,6 @@ func (x *ListEgressResponse) GetNextPageToken() *TokenPagination { return nil } -type UpdateEgressRequest struct { - state protoimpl.MessageState `protogen:"open.v1"` - EgressId string `protobuf:"bytes,1,opt,name=egress_id,json=egressId,proto3" json:"egress_id,omitempty"` - Url string `protobuf:"bytes,2,opt,name=url,proto3" json:"url,omitempty"` - Layout string `protobuf:"bytes,3,opt,name=layout,proto3" json:"layout,omitempty"` - AddStreamUrls []string `protobuf:"bytes,4,rep,name=add_stream_urls,json=addStreamUrls,proto3" json:"add_stream_urls,omitempty"` - RemoveStreamUrls []string `protobuf:"bytes,5,rep,name=remove_stream_urls,json=removeStreamUrls,proto3" json:"remove_stream_urls,omitempty"` - unknownFields protoimpl.UnknownFields - sizeCache protoimpl.SizeCache -} - -func (x *UpdateEgressRequest) Reset() { - *x = UpdateEgressRequest{} - mi := &file_livekit_egress_proto_msgTypes[23] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) -} - -func (x *UpdateEgressRequest) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*UpdateEgressRequest) ProtoMessage() {} - -func (x *UpdateEgressRequest) ProtoReflect() protoreflect.Message { - mi := &file_livekit_egress_proto_msgTypes[23] - if x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use UpdateEgressRequest.ProtoReflect.Descriptor instead. -func (*UpdateEgressRequest) Descriptor() ([]byte, []int) { - return file_livekit_egress_proto_rawDescGZIP(), []int{23} -} - -func (x *UpdateEgressRequest) GetEgressId() string { - if x != nil { - return x.EgressId - } - return "" -} - -func (x *UpdateEgressRequest) GetUrl() string { - if x != nil { - return x.Url - } - return "" -} - -func (x *UpdateEgressRequest) GetLayout() string { - if x != nil { - return x.Layout - } - return "" -} - -func (x *UpdateEgressRequest) GetAddStreamUrls() []string { - if x != nil { - return x.AddStreamUrls - } - return nil -} - -func (x *UpdateEgressRequest) GetRemoveStreamUrls() []string { - if x != nil { - return x.RemoveStreamUrls - } - return nil -} - type StopEgressRequest struct { state protoimpl.MessageState `protogen:"open.v1"` EgressId string `protobuf:"bytes,1,opt,name=egress_id,json=egressId,proto3" json:"egress_id,omitempty"` @@ -2794,7 +2735,7 @@ type StopEgressRequest struct { func (x *StopEgressRequest) Reset() { *x = StopEgressRequest{} - mi := &file_livekit_egress_proto_msgTypes[24] + mi := &file_livekit_egress_proto_msgTypes[23] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2806,7 +2747,7 @@ func (x *StopEgressRequest) String() string { func (*StopEgressRequest) ProtoMessage() {} func (x *StopEgressRequest) ProtoReflect() protoreflect.Message { - mi := &file_livekit_egress_proto_msgTypes[24] + mi := &file_livekit_egress_proto_msgTypes[23] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2819,7 +2760,7 @@ func (x *StopEgressRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use StopEgressRequest.ProtoReflect.Descriptor instead. func (*StopEgressRequest) Descriptor() ([]byte, []int) { - return file_livekit_egress_proto_rawDescGZIP(), []int{24} + return file_livekit_egress_proto_rawDescGZIP(), []int{23} } func (x *StopEgressRequest) GetEgressId() string { @@ -2873,7 +2814,7 @@ type EgressInfo struct { func (x *EgressInfo) Reset() { *x = EgressInfo{} - mi := &file_livekit_egress_proto_msgTypes[25] + mi := &file_livekit_egress_proto_msgTypes[24] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2885,7 +2826,7 @@ func (x *EgressInfo) String() string { func (*EgressInfo) ProtoMessage() {} func (x *EgressInfo) ProtoReflect() protoreflect.Message { - mi := &file_livekit_egress_proto_msgTypes[25] + mi := &file_livekit_egress_proto_msgTypes[24] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2898,7 +2839,7 @@ func (x *EgressInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use EgressInfo.ProtoReflect.Descriptor instead. func (*EgressInfo) Descriptor() ([]byte, []int) { - return file_livekit_egress_proto_rawDescGZIP(), []int{25} + return file_livekit_egress_proto_rawDescGZIP(), []int{24} } func (x *EgressInfo) GetEgressId() string { @@ -3222,7 +3163,7 @@ type StreamInfo struct { func (x *StreamInfo) Reset() { *x = StreamInfo{} - mi := &file_livekit_egress_proto_msgTypes[26] + mi := &file_livekit_egress_proto_msgTypes[25] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3234,7 +3175,7 @@ func (x *StreamInfo) String() string { func (*StreamInfo) ProtoMessage() {} func (x *StreamInfo) ProtoReflect() protoreflect.Message { - mi := &file_livekit_egress_proto_msgTypes[26] + mi := &file_livekit_egress_proto_msgTypes[25] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3247,7 +3188,7 @@ func (x *StreamInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use StreamInfo.ProtoReflect.Descriptor instead. func (*StreamInfo) Descriptor() ([]byte, []int) { - return file_livekit_egress_proto_rawDescGZIP(), []int{26} + return file_livekit_egress_proto_rawDescGZIP(), []int{25} } func (x *StreamInfo) GetUrl() string { @@ -3320,7 +3261,7 @@ type FileInfo struct { func (x *FileInfo) Reset() { *x = FileInfo{} - mi := &file_livekit_egress_proto_msgTypes[27] + mi := &file_livekit_egress_proto_msgTypes[26] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3332,7 +3273,7 @@ func (x *FileInfo) String() string { func (*FileInfo) ProtoMessage() {} func (x *FileInfo) ProtoReflect() protoreflect.Message { - mi := &file_livekit_egress_proto_msgTypes[27] + mi := &file_livekit_egress_proto_msgTypes[26] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3345,7 +3286,7 @@ func (x *FileInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use FileInfo.ProtoReflect.Descriptor instead. func (*FileInfo) Descriptor() ([]byte, []int) { - return file_livekit_egress_proto_rawDescGZIP(), []int{27} + return file_livekit_egress_proto_rawDescGZIP(), []int{26} } func (x *FileInfo) GetFilename() string { @@ -3407,7 +3348,7 @@ type SegmentsInfo struct { func (x *SegmentsInfo) Reset() { *x = SegmentsInfo{} - mi := &file_livekit_egress_proto_msgTypes[28] + mi := &file_livekit_egress_proto_msgTypes[27] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3419,7 +3360,7 @@ func (x *SegmentsInfo) String() string { func (*SegmentsInfo) ProtoMessage() {} func (x *SegmentsInfo) ProtoReflect() protoreflect.Message { - mi := &file_livekit_egress_proto_msgTypes[28] + mi := &file_livekit_egress_proto_msgTypes[27] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3432,7 +3373,7 @@ func (x *SegmentsInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use SegmentsInfo.ProtoReflect.Descriptor instead. func (*SegmentsInfo) Descriptor() ([]byte, []int) { - return file_livekit_egress_proto_rawDescGZIP(), []int{28} + return file_livekit_egress_proto_rawDescGZIP(), []int{27} } func (x *SegmentsInfo) GetPlaylistName() string { @@ -3510,7 +3451,7 @@ type ImagesInfo struct { func (x *ImagesInfo) Reset() { *x = ImagesInfo{} - mi := &file_livekit_egress_proto_msgTypes[29] + mi := &file_livekit_egress_proto_msgTypes[28] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3522,7 +3463,7 @@ func (x *ImagesInfo) String() string { func (*ImagesInfo) ProtoMessage() {} func (x *ImagesInfo) ProtoReflect() protoreflect.Message { - mi := &file_livekit_egress_proto_msgTypes[29] + mi := &file_livekit_egress_proto_msgTypes[28] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3535,7 +3476,7 @@ func (x *ImagesInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ImagesInfo.ProtoReflect.Descriptor instead. func (*ImagesInfo) Descriptor() ([]byte, []int) { - return file_livekit_egress_proto_rawDescGZIP(), []int{29} + return file_livekit_egress_proto_rawDescGZIP(), []int{28} } func (x *ImagesInfo) GetFilenamePrefix() string { @@ -3581,7 +3522,7 @@ type AutoParticipantEgress struct { func (x *AutoParticipantEgress) Reset() { *x = AutoParticipantEgress{} - mi := &file_livekit_egress_proto_msgTypes[30] + mi := &file_livekit_egress_proto_msgTypes[29] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3593,7 +3534,7 @@ func (x *AutoParticipantEgress) String() string { func (*AutoParticipantEgress) ProtoMessage() {} func (x *AutoParticipantEgress) ProtoReflect() protoreflect.Message { - mi := &file_livekit_egress_proto_msgTypes[30] + mi := &file_livekit_egress_proto_msgTypes[29] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3606,7 +3547,7 @@ func (x *AutoParticipantEgress) ProtoReflect() protoreflect.Message { // Deprecated: Use AutoParticipantEgress.ProtoReflect.Descriptor instead. func (*AutoParticipantEgress) Descriptor() ([]byte, []int) { - return file_livekit_egress_proto_rawDescGZIP(), []int{30} + return file_livekit_egress_proto_rawDescGZIP(), []int{29} } func (x *AutoParticipantEgress) GetOptions() isAutoParticipantEgress_Options { @@ -3681,7 +3622,7 @@ type AutoTrackEgress struct { func (x *AutoTrackEgress) Reset() { *x = AutoTrackEgress{} - mi := &file_livekit_egress_proto_msgTypes[31] + mi := &file_livekit_egress_proto_msgTypes[30] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3693,7 +3634,7 @@ func (x *AutoTrackEgress) String() string { func (*AutoTrackEgress) ProtoMessage() {} func (x *AutoTrackEgress) ProtoReflect() protoreflect.Message { - mi := &file_livekit_egress_proto_msgTypes[31] + mi := &file_livekit_egress_proto_msgTypes[30] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3706,7 +3647,7 @@ func (x *AutoTrackEgress) ProtoReflect() protoreflect.Message { // Deprecated: Use AutoTrackEgress.ProtoReflect.Descriptor instead. func (*AutoTrackEgress) Descriptor() ([]byte, []int) { - return file_livekit_egress_proto_rawDescGZIP(), []int{31} + return file_livekit_egress_proto_rawDescGZIP(), []int{30} } func (x *AutoTrackEgress) GetFilepath() string { @@ -3809,6 +3750,7 @@ type ExportReplayRequest struct { // // *ExportReplayRequest_Preset // *ExportReplayRequest_Advanced + // *ExportReplayRequest_Passthrough Encoding isExportReplayRequest_Encoding `protobuf_oneof:"encoding"` Outputs []*Output `protobuf:"bytes,9,rep,name=outputs,proto3" json:"outputs,omitempty"` Storage *StorageConfig `protobuf:"bytes,10,opt,name=storage,proto3" json:"storage,omitempty"` @@ -3819,7 +3761,7 @@ type ExportReplayRequest struct { func (x *ExportReplayRequest) Reset() { *x = ExportReplayRequest{} - mi := &file_livekit_egress_proto_msgTypes[32] + mi := &file_livekit_egress_proto_msgTypes[31] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3831,7 +3773,7 @@ func (x *ExportReplayRequest) String() string { func (*ExportReplayRequest) ProtoMessage() {} func (x *ExportReplayRequest) ProtoReflect() protoreflect.Message { - mi := &file_livekit_egress_proto_msgTypes[32] + mi := &file_livekit_egress_proto_msgTypes[31] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3844,7 +3786,7 @@ func (x *ExportReplayRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ExportReplayRequest.ProtoReflect.Descriptor instead. func (*ExportReplayRequest) Descriptor() ([]byte, []int) { - return file_livekit_egress_proto_rawDescGZIP(), []int{32} + return file_livekit_egress_proto_rawDescGZIP(), []int{31} } func (x *ExportReplayRequest) GetReplayId() string { @@ -3927,6 +3869,15 @@ func (x *ExportReplayRequest) GetAdvanced() *EncodingOptions { return nil } +func (x *ExportReplayRequest) GetPassthrough() bool { + if x != nil { + if x, ok := x.Encoding.(*ExportReplayRequest_Passthrough); ok { + return x.Passthrough + } + } + return false +} + func (x *ExportReplayRequest) GetOutputs() []*Output { if x != nil { return x.Outputs @@ -3982,10 +3933,17 @@ type ExportReplayRequest_Advanced struct { Advanced *EncodingOptions `protobuf:"bytes,8,opt,name=advanced,proto3,oneof"` } +type ExportReplayRequest_Passthrough struct { + // Remux a single explicitly-identified track without decoding or re-encoding + Passthrough bool `protobuf:"varint,12,opt,name=passthrough,proto3,oneof"` +} + func (*ExportReplayRequest_Preset) isExportReplayRequest_Encoding() {} func (*ExportReplayRequest_Advanced) isExportReplayRequest_Encoding() {} +func (*ExportReplayRequest_Passthrough) isExportReplayRequest_Encoding() {} + type RoomCompositeEgressRequest struct { state protoimpl.MessageState `protogen:"open.v1"` RoomName string `protobuf:"bytes,1,opt,name=room_name,json=roomName,proto3" json:"room_name,omitempty"` @@ -4016,7 +3974,7 @@ type RoomCompositeEgressRequest struct { func (x *RoomCompositeEgressRequest) Reset() { *x = RoomCompositeEgressRequest{} - mi := &file_livekit_egress_proto_msgTypes[33] + mi := &file_livekit_egress_proto_msgTypes[32] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4028,7 +3986,7 @@ func (x *RoomCompositeEgressRequest) String() string { func (*RoomCompositeEgressRequest) ProtoMessage() {} func (x *RoomCompositeEgressRequest) ProtoReflect() protoreflect.Message { - mi := &file_livekit_egress_proto_msgTypes[33] + mi := &file_livekit_egress_proto_msgTypes[32] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4041,7 +3999,7 @@ func (x *RoomCompositeEgressRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use RoomCompositeEgressRequest.ProtoReflect.Descriptor instead. func (*RoomCompositeEgressRequest) Descriptor() ([]byte, []int) { - return file_livekit_egress_proto_rawDescGZIP(), []int{33} + return file_livekit_egress_proto_rawDescGZIP(), []int{32} } func (x *RoomCompositeEgressRequest) GetRoomName() string { @@ -4252,7 +4210,7 @@ type WebEgressRequest struct { func (x *WebEgressRequest) Reset() { *x = WebEgressRequest{} - mi := &file_livekit_egress_proto_msgTypes[34] + mi := &file_livekit_egress_proto_msgTypes[33] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4264,7 +4222,7 @@ func (x *WebEgressRequest) String() string { func (*WebEgressRequest) ProtoMessage() {} func (x *WebEgressRequest) ProtoReflect() protoreflect.Message { - mi := &file_livekit_egress_proto_msgTypes[34] + mi := &file_livekit_egress_proto_msgTypes[33] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4277,7 +4235,7 @@ func (x *WebEgressRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use WebEgressRequest.ProtoReflect.Descriptor instead. func (*WebEgressRequest) Descriptor() ([]byte, []int) { - return file_livekit_egress_proto_rawDescGZIP(), []int{34} + return file_livekit_egress_proto_rawDescGZIP(), []int{33} } func (x *WebEgressRequest) GetUrl() string { @@ -4467,7 +4425,7 @@ type ParticipantEgressRequest struct { func (x *ParticipantEgressRequest) Reset() { *x = ParticipantEgressRequest{} - mi := &file_livekit_egress_proto_msgTypes[35] + mi := &file_livekit_egress_proto_msgTypes[34] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4479,7 +4437,7 @@ func (x *ParticipantEgressRequest) String() string { func (*ParticipantEgressRequest) ProtoMessage() {} func (x *ParticipantEgressRequest) ProtoReflect() protoreflect.Message { - mi := &file_livekit_egress_proto_msgTypes[35] + mi := &file_livekit_egress_proto_msgTypes[34] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4492,7 +4450,7 @@ func (x *ParticipantEgressRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ParticipantEgressRequest.ProtoReflect.Descriptor instead. func (*ParticipantEgressRequest) Descriptor() ([]byte, []int) { - return file_livekit_egress_proto_rawDescGZIP(), []int{35} + return file_livekit_egress_proto_rawDescGZIP(), []int{34} } func (x *ParticipantEgressRequest) GetRoomName() string { @@ -4619,7 +4577,7 @@ type TrackCompositeEgressRequest struct { func (x *TrackCompositeEgressRequest) Reset() { *x = TrackCompositeEgressRequest{} - mi := &file_livekit_egress_proto_msgTypes[36] + mi := &file_livekit_egress_proto_msgTypes[35] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4631,7 +4589,7 @@ func (x *TrackCompositeEgressRequest) String() string { func (*TrackCompositeEgressRequest) ProtoMessage() {} func (x *TrackCompositeEgressRequest) ProtoReflect() protoreflect.Message { - mi := &file_livekit_egress_proto_msgTypes[36] + mi := &file_livekit_egress_proto_msgTypes[35] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4644,7 +4602,7 @@ func (x *TrackCompositeEgressRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use TrackCompositeEgressRequest.ProtoReflect.Descriptor instead. func (*TrackCompositeEgressRequest) Descriptor() ([]byte, []int) { - return file_livekit_egress_proto_rawDescGZIP(), []int{36} + return file_livekit_egress_proto_rawDescGZIP(), []int{35} } func (x *TrackCompositeEgressRequest) GetRoomName() string { @@ -4822,7 +4780,7 @@ type TrackEgressRequest struct { func (x *TrackEgressRequest) Reset() { *x = TrackEgressRequest{} - mi := &file_livekit_egress_proto_msgTypes[37] + mi := &file_livekit_egress_proto_msgTypes[36] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4834,7 +4792,7 @@ func (x *TrackEgressRequest) String() string { func (*TrackEgressRequest) ProtoMessage() {} func (x *TrackEgressRequest) ProtoReflect() protoreflect.Message { - mi := &file_livekit_egress_proto_msgTypes[37] + mi := &file_livekit_egress_proto_msgTypes[36] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4847,7 +4805,7 @@ func (x *TrackEgressRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use TrackEgressRequest.ProtoReflect.Descriptor instead. func (*TrackEgressRequest) Descriptor() ([]byte, []int) { - return file_livekit_egress_proto_rawDescGZIP(), []int{37} + return file_livekit_egress_proto_rawDescGZIP(), []int{36} } func (x *TrackEgressRequest) GetRoomName() string { @@ -4929,7 +4887,7 @@ type DirectFileOutput struct { func (x *DirectFileOutput) Reset() { *x = DirectFileOutput{} - mi := &file_livekit_egress_proto_msgTypes[38] + mi := &file_livekit_egress_proto_msgTypes[37] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4941,7 +4899,7 @@ func (x *DirectFileOutput) String() string { func (*DirectFileOutput) ProtoMessage() {} func (x *DirectFileOutput) ProtoReflect() protoreflect.Message { - mi := &file_livekit_egress_proto_msgTypes[38] + mi := &file_livekit_egress_proto_msgTypes[37] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4954,7 +4912,7 @@ func (x *DirectFileOutput) ProtoReflect() protoreflect.Message { // Deprecated: Use DirectFileOutput.ProtoReflect.Descriptor instead. func (*DirectFileOutput) Descriptor() ([]byte, []int) { - return file_livekit_egress_proto_rawDescGZIP(), []int{38} + return file_livekit_egress_proto_rawDescGZIP(), []int{37} } func (x *DirectFileOutput) GetFilepath() string { @@ -5060,7 +5018,7 @@ type EncodedFileOutput struct { func (x *EncodedFileOutput) Reset() { *x = EncodedFileOutput{} - mi := &file_livekit_egress_proto_msgTypes[39] + mi := &file_livekit_egress_proto_msgTypes[38] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5072,7 +5030,7 @@ func (x *EncodedFileOutput) String() string { func (*EncodedFileOutput) ProtoMessage() {} func (x *EncodedFileOutput) ProtoReflect() protoreflect.Message { - mi := &file_livekit_egress_proto_msgTypes[39] + mi := &file_livekit_egress_proto_msgTypes[38] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5085,7 +5043,7 @@ func (x *EncodedFileOutput) ProtoReflect() protoreflect.Message { // Deprecated: Use EncodedFileOutput.ProtoReflect.Descriptor instead. func (*EncodedFileOutput) Descriptor() ([]byte, []int) { - return file_livekit_egress_proto_rawDescGZIP(), []int{39} + return file_livekit_egress_proto_rawDescGZIP(), []int{38} } func (x *EncodedFileOutput) GetFileType() EncodedFileType { @@ -5190,7 +5148,7 @@ type UpdateLayoutRequest struct { func (x *UpdateLayoutRequest) Reset() { *x = UpdateLayoutRequest{} - mi := &file_livekit_egress_proto_msgTypes[40] + mi := &file_livekit_egress_proto_msgTypes[39] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5202,7 +5160,7 @@ func (x *UpdateLayoutRequest) String() string { func (*UpdateLayoutRequest) ProtoMessage() {} func (x *UpdateLayoutRequest) ProtoReflect() protoreflect.Message { - mi := &file_livekit_egress_proto_msgTypes[40] + mi := &file_livekit_egress_proto_msgTypes[39] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5215,7 +5173,7 @@ func (x *UpdateLayoutRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateLayoutRequest.ProtoReflect.Descriptor instead. func (*UpdateLayoutRequest) Descriptor() ([]byte, []int) { - return file_livekit_egress_proto_rawDescGZIP(), []int{40} + return file_livekit_egress_proto_rawDescGZIP(), []int{39} } func (x *UpdateLayoutRequest) GetEgressId() string { @@ -5243,7 +5201,7 @@ type UpdateStreamRequest struct { func (x *UpdateStreamRequest) Reset() { *x = UpdateStreamRequest{} - mi := &file_livekit_egress_proto_msgTypes[41] + mi := &file_livekit_egress_proto_msgTypes[40] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5255,7 +5213,7 @@ func (x *UpdateStreamRequest) String() string { func (*UpdateStreamRequest) ProtoMessage() {} func (x *UpdateStreamRequest) ProtoReflect() protoreflect.Message { - mi := &file_livekit_egress_proto_msgTypes[41] + mi := &file_livekit_egress_proto_msgTypes[40] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5268,7 +5226,7 @@ func (x *UpdateStreamRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateStreamRequest.ProtoReflect.Descriptor instead. func (*UpdateStreamRequest) Descriptor() ([]byte, []int) { - return file_livekit_egress_proto_rawDescGZIP(), []int{41} + return file_livekit_egress_proto_rawDescGZIP(), []int{40} } func (x *UpdateStreamRequest) GetEgressId() string { @@ -5301,7 +5259,7 @@ type StreamInfoList struct { func (x *StreamInfoList) Reset() { *x = StreamInfoList{} - mi := &file_livekit_egress_proto_msgTypes[42] + mi := &file_livekit_egress_proto_msgTypes[41] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5313,7 +5271,7 @@ func (x *StreamInfoList) String() string { func (*StreamInfoList) ProtoMessage() {} func (x *StreamInfoList) ProtoReflect() protoreflect.Message { - mi := &file_livekit_egress_proto_msgTypes[42] + mi := &file_livekit_egress_proto_msgTypes[41] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5326,7 +5284,7 @@ func (x *StreamInfoList) ProtoReflect() protoreflect.Message { // Deprecated: Use StreamInfoList.ProtoReflect.Descriptor instead. func (*StreamInfoList) Descriptor() ([]byte, []int) { - return file_livekit_egress_proto_rawDescGZIP(), []int{42} + return file_livekit_egress_proto_rawDescGZIP(), []int{41} } func (x *StreamInfoList) GetInfo() []*StreamInfo { @@ -5340,14 +5298,16 @@ var File_livekit_egress_proto protoreflect.FileDescriptor const file_livekit_egress_proto_rawDesc = "" + "\n" + - "\x14livekit_egress.proto\x12\alivekit\x1a\x14livekit_models.proto\x1a\x14logger/options.proto\"\xd7\x03\n" + + "\x14livekit_egress.proto\x12\alivekit\x1a\x14livekit_models.proto\x1a\x14logger/options.proto\"\xfb\x03\n" + "\x12StartEgressRequest\x12\x1b\n" + "\troom_name\x18\x01 \x01(\tR\broomName\x125\n" + "\btemplate\x18\x02 \x01(\v2\x17.livekit.TemplateSourceH\x00R\btemplate\x12&\n" + "\x03web\x18\x03 \x01(\v2\x12.livekit.WebSourceH\x00R\x03web\x12,\n" + "\x05media\x18\x04 \x01(\v2\x14.livekit.MediaSourceH\x00R\x05media\x128\n" + "\x06preset\x18\x05 \x01(\x0e2\x1e.livekit.EncodingOptionsPresetH\x01R\x06preset\x126\n" + - "\badvanced\x18\x06 \x01(\v2\x18.livekit.EncodingOptionsH\x01R\badvanced\x12)\n" + + "\badvanced\x18\x06 \x01(\v2\x18.livekit.EncodingOptionsH\x01R\badvanced\x12\"\n" + + "\vpassthrough\x18\n" + + " \x01(\bH\x01R\vpassthrough\x12)\n" + "\aoutputs\x18\a \x03(\v2\x0f.livekit.OutputR\aoutputs\x120\n" + "\astorage\x18\b \x01(\v2\x16.livekit.StorageConfigR\astorage\x122\n" + "\bwebhooks\x18\t \x03(\v2\x16.livekit.WebhookConfigR\bwebhooksB\b\n" + @@ -5512,13 +5472,7 @@ const file_livekit_egress_proto_rawDesc = "" + "page_token\x18\x04 \x01(\v2\x18.livekit.TokenPaginationR\tpageToken\"\x81\x01\n" + "\x12ListEgressResponse\x12)\n" + "\x05items\x18\x01 \x03(\v2\x13.livekit.EgressInfoR\x05items\x12@\n" + - "\x0fnext_page_token\x18\x02 \x01(\v2\x18.livekit.TokenPaginationR\rnextPageToken\"\xbf\x01\n" + - "\x13UpdateEgressRequest\x12(\n" + - "\tegress_id\x18\x01 \x01(\tB\v\xbaP\begressIDR\begressId\x12\x10\n" + - "\x03url\x18\x02 \x01(\tR\x03url\x12\x16\n" + - "\x06layout\x18\x03 \x01(\tR\x06layout\x12&\n" + - "\x0fadd_stream_urls\x18\x04 \x03(\tR\raddStreamUrls\x12,\n" + - "\x12remove_stream_urls\x18\x05 \x03(\tR\x10removeStreamUrls\"=\n" + + "\x0fnext_page_token\x18\x02 \x01(\v2\x18.livekit.TokenPaginationR\rnextPageToken\"=\n" + "\x11StopEgressRequest\x12(\n" + "\tegress_id\x18\x01 \x01(\tB\v\xbaP\begressIDR\begressId\"\xdf\n" + "\n" + @@ -5617,7 +5571,7 @@ const file_livekit_egress_proto_rawDesc = "" + "\x03gcp\x18\x03 \x01(\v2\x12.livekit.GCPUploadH\x00R\x03gcp\x120\n" + "\x05azure\x18\x04 \x01(\v2\x18.livekit.AzureBlobUploadH\x00R\x05azure\x12/\n" + "\x06aliOSS\x18\x06 \x01(\v2\x15.livekit.AliOSSUploadH\x00R\x06aliOSSB\b\n" + - "\x06output\"\xb1\x04\n" + + "\x06output\"\xd5\x04\n" + "\x13ExportReplayRequest\x12(\n" + "\treplay_id\x18\x01 \x01(\tB\v\xbaP\breplayIDR\breplayId\x12&\n" + "\x0fstart_offset_ms\x18\x02 \x01(\x03R\rstartOffsetMs\x12\"\n" + @@ -5626,7 +5580,8 @@ const file_livekit_egress_proto_rawDesc = "" + "\x03web\x18\x05 \x01(\v2\x12.livekit.WebSourceH\x00R\x03web\x12,\n" + "\x05media\x18\x06 \x01(\v2\x14.livekit.MediaSourceH\x00R\x05media\x128\n" + "\x06preset\x18\a \x01(\x0e2\x1e.livekit.EncodingOptionsPresetH\x01R\x06preset\x126\n" + - "\badvanced\x18\b \x01(\v2\x18.livekit.EncodingOptionsH\x01R\badvanced\x12)\n" + + "\badvanced\x18\b \x01(\v2\x18.livekit.EncodingOptionsH\x01R\badvanced\x12\"\n" + + "\vpassthrough\x18\f \x01(\bH\x01R\vpassthrough\x12)\n" + "\aoutputs\x18\t \x03(\v2\x0f.livekit.OutputR\aoutputs\x120\n" + "\astorage\x18\n" + " \x01(\v2\x16.livekit.StorageConfigR\astorage\x122\n" + @@ -5814,7 +5769,7 @@ func file_livekit_egress_proto_rawDescGZIP() []byte { } var file_livekit_egress_proto_enumTypes = make([]protoimpl.EnumInfo, 11) -var file_livekit_egress_proto_msgTypes = make([]protoimpl.MessageInfo, 44) +var file_livekit_egress_proto_msgTypes = make([]protoimpl.MessageInfo, 43) var file_livekit_egress_proto_goTypes = []any{ (AudioChannel)(0), // 0: livekit.AudioChannel (EncodingOptionsPreset)(0), // 1: livekit.EncodingOptionsPreset @@ -5850,33 +5805,32 @@ var file_livekit_egress_proto_goTypes = []any{ (*ProxyConfig)(nil), // 31: livekit.ProxyConfig (*ListEgressRequest)(nil), // 32: livekit.ListEgressRequest (*ListEgressResponse)(nil), // 33: livekit.ListEgressResponse - (*UpdateEgressRequest)(nil), // 34: livekit.UpdateEgressRequest - (*StopEgressRequest)(nil), // 35: livekit.StopEgressRequest - (*EgressInfo)(nil), // 36: livekit.EgressInfo - (*StreamInfo)(nil), // 37: livekit.StreamInfo - (*FileInfo)(nil), // 38: livekit.FileInfo - (*SegmentsInfo)(nil), // 39: livekit.SegmentsInfo - (*ImagesInfo)(nil), // 40: livekit.ImagesInfo - (*AutoParticipantEgress)(nil), // 41: livekit.AutoParticipantEgress - (*AutoTrackEgress)(nil), // 42: livekit.AutoTrackEgress - (*ExportReplayRequest)(nil), // 43: livekit.ExportReplayRequest - (*RoomCompositeEgressRequest)(nil), // 44: livekit.RoomCompositeEgressRequest - (*WebEgressRequest)(nil), // 45: livekit.WebEgressRequest - (*ParticipantEgressRequest)(nil), // 46: livekit.ParticipantEgressRequest - (*TrackCompositeEgressRequest)(nil), // 47: livekit.TrackCompositeEgressRequest - (*TrackEgressRequest)(nil), // 48: livekit.TrackEgressRequest - (*DirectFileOutput)(nil), // 49: livekit.DirectFileOutput - (*EncodedFileOutput)(nil), // 50: livekit.EncodedFileOutput - (*UpdateLayoutRequest)(nil), // 51: livekit.UpdateLayoutRequest - (*UpdateStreamRequest)(nil), // 52: livekit.UpdateStreamRequest - (*StreamInfoList)(nil), // 53: livekit.StreamInfoList - nil, // 54: livekit.S3Upload.MetadataEntry - (*WebhookConfig)(nil), // 55: livekit.WebhookConfig - (ParticipantInfo_Kind)(0), // 56: livekit.ParticipantInfo.Kind - (AudioCodec)(0), // 57: livekit.AudioCodec - (VideoCodec)(0), // 58: livekit.VideoCodec - (ImageCodec)(0), // 59: livekit.ImageCodec - (*TokenPagination)(nil), // 60: livekit.TokenPagination + (*StopEgressRequest)(nil), // 34: livekit.StopEgressRequest + (*EgressInfo)(nil), // 35: livekit.EgressInfo + (*StreamInfo)(nil), // 36: livekit.StreamInfo + (*FileInfo)(nil), // 37: livekit.FileInfo + (*SegmentsInfo)(nil), // 38: livekit.SegmentsInfo + (*ImagesInfo)(nil), // 39: livekit.ImagesInfo + (*AutoParticipantEgress)(nil), // 40: livekit.AutoParticipantEgress + (*AutoTrackEgress)(nil), // 41: livekit.AutoTrackEgress + (*ExportReplayRequest)(nil), // 42: livekit.ExportReplayRequest + (*RoomCompositeEgressRequest)(nil), // 43: livekit.RoomCompositeEgressRequest + (*WebEgressRequest)(nil), // 44: livekit.WebEgressRequest + (*ParticipantEgressRequest)(nil), // 45: livekit.ParticipantEgressRequest + (*TrackCompositeEgressRequest)(nil), // 46: livekit.TrackCompositeEgressRequest + (*TrackEgressRequest)(nil), // 47: livekit.TrackEgressRequest + (*DirectFileOutput)(nil), // 48: livekit.DirectFileOutput + (*EncodedFileOutput)(nil), // 49: livekit.EncodedFileOutput + (*UpdateLayoutRequest)(nil), // 50: livekit.UpdateLayoutRequest + (*UpdateStreamRequest)(nil), // 51: livekit.UpdateStreamRequest + (*StreamInfoList)(nil), // 52: livekit.StreamInfoList + nil, // 53: livekit.S3Upload.MetadataEntry + (*WebhookConfig)(nil), // 54: livekit.WebhookConfig + (ParticipantInfo_Kind)(0), // 55: livekit.ParticipantInfo.Kind + (AudioCodec)(0), // 56: livekit.AudioCodec + (VideoCodec)(0), // 57: livekit.VideoCodec + (ImageCodec)(0), // 58: livekit.ImageCodec + (*TokenPagination)(nil), // 59: livekit.TokenPagination } var file_livekit_egress_proto_depIdxs = []int32{ 12, // 0: livekit.StartEgressRequest.template:type_name -> livekit.TemplateSource @@ -5886,15 +5840,15 @@ var file_livekit_egress_proto_depIdxs = []int32{ 20, // 4: livekit.StartEgressRequest.advanced:type_name -> livekit.EncodingOptions 21, // 5: livekit.StartEgressRequest.outputs:type_name -> livekit.Output 26, // 6: livekit.StartEgressRequest.storage:type_name -> livekit.StorageConfig - 55, // 7: livekit.StartEgressRequest.webhooks:type_name -> livekit.WebhookConfig + 54, // 7: livekit.StartEgressRequest.webhooks:type_name -> livekit.WebhookConfig 15, // 8: livekit.MediaSource.participant_video:type_name -> livekit.ParticipantVideo 16, // 9: livekit.MediaSource.audio:type_name -> livekit.AudioConfig 17, // 10: livekit.AudioConfig.routes:type_name -> livekit.AudioRoute - 56, // 11: livekit.AudioRoute.participant_kind:type_name -> livekit.ParticipantInfo.Kind + 55, // 11: livekit.AudioRoute.participant_kind:type_name -> livekit.ParticipantInfo.Kind 0, // 12: livekit.AudioRoute.channel:type_name -> livekit.AudioChannel 19, // 13: livekit.DataConfig.selectors:type_name -> livekit.DataSelector - 57, // 14: livekit.EncodingOptions.audio_codec:type_name -> livekit.AudioCodec - 58, // 15: livekit.EncodingOptions.video_codec:type_name -> livekit.VideoCodec + 56, // 14: livekit.EncodingOptions.audio_codec:type_name -> livekit.AudioCodec + 57, // 15: livekit.EncodingOptions.video_codec:type_name -> livekit.VideoCodec 22, // 16: livekit.Output.file:type_name -> livekit.FileOutput 23, // 17: livekit.Output.stream:type_name -> livekit.StreamOutput 24, // 18: livekit.Output.segments:type_name -> livekit.SegmentedFileOutput @@ -5909,7 +5863,7 @@ var file_livekit_egress_proto_depIdxs = []int32{ 29, // 27: livekit.SegmentedFileOutput.azure:type_name -> livekit.AzureBlobUpload 30, // 28: livekit.SegmentedFileOutput.aliOSS:type_name -> livekit.AliOSSUpload 6, // 29: livekit.ImageOutput.filename_suffix:type_name -> livekit.ImageFileSuffix - 59, // 30: livekit.ImageOutput.image_codec:type_name -> livekit.ImageCodec + 58, // 30: livekit.ImageOutput.image_codec:type_name -> livekit.ImageCodec 27, // 31: livekit.ImageOutput.s3:type_name -> livekit.S3Upload 28, // 32: livekit.ImageOutput.gcp:type_name -> livekit.GCPUpload 29, // 33: livekit.ImageOutput.azure:type_name -> livekit.AzureBlobUpload @@ -5918,32 +5872,32 @@ var file_livekit_egress_proto_depIdxs = []int32{ 28, // 36: livekit.StorageConfig.gcp:type_name -> livekit.GCPUpload 29, // 37: livekit.StorageConfig.azure:type_name -> livekit.AzureBlobUpload 30, // 38: livekit.StorageConfig.aliOSS:type_name -> livekit.AliOSSUpload - 54, // 39: livekit.S3Upload.metadata:type_name -> livekit.S3Upload.MetadataEntry + 53, // 39: livekit.S3Upload.metadata:type_name -> livekit.S3Upload.MetadataEntry 31, // 40: livekit.S3Upload.proxy:type_name -> livekit.ProxyConfig 31, // 41: livekit.GCPUpload.proxy:type_name -> livekit.ProxyConfig - 60, // 42: livekit.ListEgressRequest.page_token:type_name -> livekit.TokenPagination - 36, // 43: livekit.ListEgressResponse.items:type_name -> livekit.EgressInfo - 60, // 44: livekit.ListEgressResponse.next_page_token:type_name -> livekit.TokenPagination + 59, // 42: livekit.ListEgressRequest.page_token:type_name -> livekit.TokenPagination + 35, // 43: livekit.ListEgressResponse.items:type_name -> livekit.EgressInfo + 59, // 44: livekit.ListEgressResponse.next_page_token:type_name -> livekit.TokenPagination 7, // 45: livekit.EgressInfo.source_type:type_name -> livekit.EgressSourceType 8, // 46: livekit.EgressInfo.status:type_name -> livekit.EgressStatus 11, // 47: livekit.EgressInfo.egress:type_name -> livekit.StartEgressRequest - 43, // 48: livekit.EgressInfo.replay:type_name -> livekit.ExportReplayRequest - 44, // 49: livekit.EgressInfo.room_composite:type_name -> livekit.RoomCompositeEgressRequest - 45, // 50: livekit.EgressInfo.web:type_name -> livekit.WebEgressRequest - 46, // 51: livekit.EgressInfo.participant:type_name -> livekit.ParticipantEgressRequest - 47, // 52: livekit.EgressInfo.track_composite:type_name -> livekit.TrackCompositeEgressRequest - 48, // 53: livekit.EgressInfo.track:type_name -> livekit.TrackEgressRequest - 37, // 54: livekit.EgressInfo.stream_results:type_name -> livekit.StreamInfo - 38, // 55: livekit.EgressInfo.file_results:type_name -> livekit.FileInfo - 39, // 56: livekit.EgressInfo.segment_results:type_name -> livekit.SegmentsInfo - 40, // 57: livekit.EgressInfo.image_results:type_name -> livekit.ImagesInfo - 53, // 58: livekit.EgressInfo.stream:type_name -> livekit.StreamInfoList - 38, // 59: livekit.EgressInfo.file:type_name -> livekit.FileInfo - 39, // 60: livekit.EgressInfo.segments:type_name -> livekit.SegmentsInfo + 42, // 48: livekit.EgressInfo.replay:type_name -> livekit.ExportReplayRequest + 43, // 49: livekit.EgressInfo.room_composite:type_name -> livekit.RoomCompositeEgressRequest + 44, // 50: livekit.EgressInfo.web:type_name -> livekit.WebEgressRequest + 45, // 51: livekit.EgressInfo.participant:type_name -> livekit.ParticipantEgressRequest + 46, // 52: livekit.EgressInfo.track_composite:type_name -> livekit.TrackCompositeEgressRequest + 47, // 53: livekit.EgressInfo.track:type_name -> livekit.TrackEgressRequest + 36, // 54: livekit.EgressInfo.stream_results:type_name -> livekit.StreamInfo + 37, // 55: livekit.EgressInfo.file_results:type_name -> livekit.FileInfo + 38, // 56: livekit.EgressInfo.segment_results:type_name -> livekit.SegmentsInfo + 39, // 57: livekit.EgressInfo.image_results:type_name -> livekit.ImagesInfo + 52, // 58: livekit.EgressInfo.stream:type_name -> livekit.StreamInfoList + 37, // 59: livekit.EgressInfo.file:type_name -> livekit.FileInfo + 38, // 60: livekit.EgressInfo.segments:type_name -> livekit.SegmentsInfo 10, // 61: livekit.StreamInfo.status:type_name -> livekit.StreamInfo.Status 1, // 62: livekit.AutoParticipantEgress.preset:type_name -> livekit.EncodingOptionsPreset 20, // 63: livekit.AutoParticipantEgress.advanced:type_name -> livekit.EncodingOptions - 50, // 64: livekit.AutoParticipantEgress.file_outputs:type_name -> livekit.EncodedFileOutput + 49, // 64: livekit.AutoParticipantEgress.file_outputs:type_name -> livekit.EncodedFileOutput 24, // 65: livekit.AutoParticipantEgress.segment_outputs:type_name -> livekit.SegmentedFileOutput 27, // 66: livekit.AutoTrackEgress.s3:type_name -> livekit.S3Upload 28, // 67: livekit.AutoTrackEgress.gcp:type_name -> livekit.GCPUpload @@ -5956,47 +5910,47 @@ var file_livekit_egress_proto_depIdxs = []int32{ 20, // 74: livekit.ExportReplayRequest.advanced:type_name -> livekit.EncodingOptions 21, // 75: livekit.ExportReplayRequest.outputs:type_name -> livekit.Output 26, // 76: livekit.ExportReplayRequest.storage:type_name -> livekit.StorageConfig - 55, // 77: livekit.ExportReplayRequest.webhooks:type_name -> livekit.WebhookConfig + 54, // 77: livekit.ExportReplayRequest.webhooks:type_name -> livekit.WebhookConfig 9, // 78: livekit.RoomCompositeEgressRequest.audio_mixing:type_name -> livekit.AudioMixing - 50, // 79: livekit.RoomCompositeEgressRequest.file:type_name -> livekit.EncodedFileOutput + 49, // 79: livekit.RoomCompositeEgressRequest.file:type_name -> livekit.EncodedFileOutput 23, // 80: livekit.RoomCompositeEgressRequest.stream:type_name -> livekit.StreamOutput 24, // 81: livekit.RoomCompositeEgressRequest.segments:type_name -> livekit.SegmentedFileOutput 1, // 82: livekit.RoomCompositeEgressRequest.preset:type_name -> livekit.EncodingOptionsPreset 20, // 83: livekit.RoomCompositeEgressRequest.advanced:type_name -> livekit.EncodingOptions - 50, // 84: livekit.RoomCompositeEgressRequest.file_outputs:type_name -> livekit.EncodedFileOutput + 49, // 84: livekit.RoomCompositeEgressRequest.file_outputs:type_name -> livekit.EncodedFileOutput 23, // 85: livekit.RoomCompositeEgressRequest.stream_outputs:type_name -> livekit.StreamOutput 24, // 86: livekit.RoomCompositeEgressRequest.segment_outputs:type_name -> livekit.SegmentedFileOutput 25, // 87: livekit.RoomCompositeEgressRequest.image_outputs:type_name -> livekit.ImageOutput - 55, // 88: livekit.RoomCompositeEgressRequest.webhooks:type_name -> livekit.WebhookConfig - 50, // 89: livekit.WebEgressRequest.file:type_name -> livekit.EncodedFileOutput + 54, // 88: livekit.RoomCompositeEgressRequest.webhooks:type_name -> livekit.WebhookConfig + 49, // 89: livekit.WebEgressRequest.file:type_name -> livekit.EncodedFileOutput 23, // 90: livekit.WebEgressRequest.stream:type_name -> livekit.StreamOutput 24, // 91: livekit.WebEgressRequest.segments:type_name -> livekit.SegmentedFileOutput 1, // 92: livekit.WebEgressRequest.preset:type_name -> livekit.EncodingOptionsPreset 20, // 93: livekit.WebEgressRequest.advanced:type_name -> livekit.EncodingOptions - 50, // 94: livekit.WebEgressRequest.file_outputs:type_name -> livekit.EncodedFileOutput + 49, // 94: livekit.WebEgressRequest.file_outputs:type_name -> livekit.EncodedFileOutput 23, // 95: livekit.WebEgressRequest.stream_outputs:type_name -> livekit.StreamOutput 24, // 96: livekit.WebEgressRequest.segment_outputs:type_name -> livekit.SegmentedFileOutput 25, // 97: livekit.WebEgressRequest.image_outputs:type_name -> livekit.ImageOutput - 55, // 98: livekit.WebEgressRequest.webhooks:type_name -> livekit.WebhookConfig + 54, // 98: livekit.WebEgressRequest.webhooks:type_name -> livekit.WebhookConfig 1, // 99: livekit.ParticipantEgressRequest.preset:type_name -> livekit.EncodingOptionsPreset 20, // 100: livekit.ParticipantEgressRequest.advanced:type_name -> livekit.EncodingOptions - 50, // 101: livekit.ParticipantEgressRequest.file_outputs:type_name -> livekit.EncodedFileOutput + 49, // 101: livekit.ParticipantEgressRequest.file_outputs:type_name -> livekit.EncodedFileOutput 23, // 102: livekit.ParticipantEgressRequest.stream_outputs:type_name -> livekit.StreamOutput 24, // 103: livekit.ParticipantEgressRequest.segment_outputs:type_name -> livekit.SegmentedFileOutput 25, // 104: livekit.ParticipantEgressRequest.image_outputs:type_name -> livekit.ImageOutput - 55, // 105: livekit.ParticipantEgressRequest.webhooks:type_name -> livekit.WebhookConfig - 50, // 106: livekit.TrackCompositeEgressRequest.file:type_name -> livekit.EncodedFileOutput + 54, // 105: livekit.ParticipantEgressRequest.webhooks:type_name -> livekit.WebhookConfig + 49, // 106: livekit.TrackCompositeEgressRequest.file:type_name -> livekit.EncodedFileOutput 23, // 107: livekit.TrackCompositeEgressRequest.stream:type_name -> livekit.StreamOutput 24, // 108: livekit.TrackCompositeEgressRequest.segments:type_name -> livekit.SegmentedFileOutput 1, // 109: livekit.TrackCompositeEgressRequest.preset:type_name -> livekit.EncodingOptionsPreset 20, // 110: livekit.TrackCompositeEgressRequest.advanced:type_name -> livekit.EncodingOptions - 50, // 111: livekit.TrackCompositeEgressRequest.file_outputs:type_name -> livekit.EncodedFileOutput + 49, // 111: livekit.TrackCompositeEgressRequest.file_outputs:type_name -> livekit.EncodedFileOutput 23, // 112: livekit.TrackCompositeEgressRequest.stream_outputs:type_name -> livekit.StreamOutput 24, // 113: livekit.TrackCompositeEgressRequest.segment_outputs:type_name -> livekit.SegmentedFileOutput 25, // 114: livekit.TrackCompositeEgressRequest.image_outputs:type_name -> livekit.ImageOutput - 55, // 115: livekit.TrackCompositeEgressRequest.webhooks:type_name -> livekit.WebhookConfig - 49, // 116: livekit.TrackEgressRequest.file:type_name -> livekit.DirectFileOutput - 55, // 117: livekit.TrackEgressRequest.webhooks:type_name -> livekit.WebhookConfig + 54, // 115: livekit.TrackCompositeEgressRequest.webhooks:type_name -> livekit.WebhookConfig + 48, // 116: livekit.TrackEgressRequest.file:type_name -> livekit.DirectFileOutput + 54, // 117: livekit.TrackEgressRequest.webhooks:type_name -> livekit.WebhookConfig 27, // 118: livekit.DirectFileOutput.s3:type_name -> livekit.S3Upload 28, // 119: livekit.DirectFileOutput.gcp:type_name -> livekit.GCPUpload 29, // 120: livekit.DirectFileOutput.azure:type_name -> livekit.AzureBlobUpload @@ -6006,27 +5960,27 @@ var file_livekit_egress_proto_depIdxs = []int32{ 28, // 124: livekit.EncodedFileOutput.gcp:type_name -> livekit.GCPUpload 29, // 125: livekit.EncodedFileOutput.azure:type_name -> livekit.AzureBlobUpload 30, // 126: livekit.EncodedFileOutput.aliOSS:type_name -> livekit.AliOSSUpload - 37, // 127: livekit.StreamInfoList.info:type_name -> livekit.StreamInfo + 36, // 127: livekit.StreamInfoList.info:type_name -> livekit.StreamInfo 11, // 128: livekit.Egress.StartEgress:input_type -> livekit.StartEgressRequest - 51, // 129: livekit.Egress.UpdateLayout:input_type -> livekit.UpdateLayoutRequest - 52, // 130: livekit.Egress.UpdateStream:input_type -> livekit.UpdateStreamRequest + 50, // 129: livekit.Egress.UpdateLayout:input_type -> livekit.UpdateLayoutRequest + 51, // 130: livekit.Egress.UpdateStream:input_type -> livekit.UpdateStreamRequest 32, // 131: livekit.Egress.ListEgress:input_type -> livekit.ListEgressRequest - 35, // 132: livekit.Egress.StopEgress:input_type -> livekit.StopEgressRequest - 44, // 133: livekit.Egress.StartRoomCompositeEgress:input_type -> livekit.RoomCompositeEgressRequest - 45, // 134: livekit.Egress.StartWebEgress:input_type -> livekit.WebEgressRequest - 46, // 135: livekit.Egress.StartParticipantEgress:input_type -> livekit.ParticipantEgressRequest - 47, // 136: livekit.Egress.StartTrackCompositeEgress:input_type -> livekit.TrackCompositeEgressRequest - 48, // 137: livekit.Egress.StartTrackEgress:input_type -> livekit.TrackEgressRequest - 36, // 138: livekit.Egress.StartEgress:output_type -> livekit.EgressInfo - 36, // 139: livekit.Egress.UpdateLayout:output_type -> livekit.EgressInfo - 36, // 140: livekit.Egress.UpdateStream:output_type -> livekit.EgressInfo + 34, // 132: livekit.Egress.StopEgress:input_type -> livekit.StopEgressRequest + 43, // 133: livekit.Egress.StartRoomCompositeEgress:input_type -> livekit.RoomCompositeEgressRequest + 44, // 134: livekit.Egress.StartWebEgress:input_type -> livekit.WebEgressRequest + 45, // 135: livekit.Egress.StartParticipantEgress:input_type -> livekit.ParticipantEgressRequest + 46, // 136: livekit.Egress.StartTrackCompositeEgress:input_type -> livekit.TrackCompositeEgressRequest + 47, // 137: livekit.Egress.StartTrackEgress:input_type -> livekit.TrackEgressRequest + 35, // 138: livekit.Egress.StartEgress:output_type -> livekit.EgressInfo + 35, // 139: livekit.Egress.UpdateLayout:output_type -> livekit.EgressInfo + 35, // 140: livekit.Egress.UpdateStream:output_type -> livekit.EgressInfo 33, // 141: livekit.Egress.ListEgress:output_type -> livekit.ListEgressResponse - 36, // 142: livekit.Egress.StopEgress:output_type -> livekit.EgressInfo - 36, // 143: livekit.Egress.StartRoomCompositeEgress:output_type -> livekit.EgressInfo - 36, // 144: livekit.Egress.StartWebEgress:output_type -> livekit.EgressInfo - 36, // 145: livekit.Egress.StartParticipantEgress:output_type -> livekit.EgressInfo - 36, // 146: livekit.Egress.StartTrackCompositeEgress:output_type -> livekit.EgressInfo - 36, // 147: livekit.Egress.StartTrackEgress:output_type -> livekit.EgressInfo + 35, // 142: livekit.Egress.StopEgress:output_type -> livekit.EgressInfo + 35, // 143: livekit.Egress.StartRoomCompositeEgress:output_type -> livekit.EgressInfo + 35, // 144: livekit.Egress.StartWebEgress:output_type -> livekit.EgressInfo + 35, // 145: livekit.Egress.StartParticipantEgress:output_type -> livekit.EgressInfo + 35, // 146: livekit.Egress.StartTrackCompositeEgress:output_type -> livekit.EgressInfo + 35, // 147: livekit.Egress.StartTrackEgress:output_type -> livekit.EgressInfo 138, // [138:148] is the sub-list for method output_type 128, // [128:138] is the sub-list for method input_type 128, // [128:128] is the sub-list for extension type_name @@ -6046,6 +6000,7 @@ func file_livekit_egress_proto_init() { (*StartEgressRequest_Media)(nil), (*StartEgressRequest_Preset)(nil), (*StartEgressRequest_Advanced)(nil), + (*StartEgressRequest_Passthrough)(nil), } file_livekit_egress_proto_msgTypes[3].OneofWrappers = []any{ (*MediaSource_VideoTrackId)(nil), @@ -6084,7 +6039,7 @@ func file_livekit_egress_proto_init() { (*StorageConfig_Azure)(nil), (*StorageConfig_AliOSS)(nil), } - file_livekit_egress_proto_msgTypes[25].OneofWrappers = []any{ + file_livekit_egress_proto_msgTypes[24].OneofWrappers = []any{ (*EgressInfo_Egress)(nil), (*EgressInfo_Replay)(nil), (*EgressInfo_RoomComposite)(nil), @@ -6096,59 +6051,60 @@ func file_livekit_egress_proto_init() { (*EgressInfo_File)(nil), (*EgressInfo_Segments)(nil), } - file_livekit_egress_proto_msgTypes[30].OneofWrappers = []any{ + file_livekit_egress_proto_msgTypes[29].OneofWrappers = []any{ (*AutoParticipantEgress_Preset)(nil), (*AutoParticipantEgress_Advanced)(nil), } - file_livekit_egress_proto_msgTypes[31].OneofWrappers = []any{ + file_livekit_egress_proto_msgTypes[30].OneofWrappers = []any{ (*AutoTrackEgress_S3)(nil), (*AutoTrackEgress_Gcp)(nil), (*AutoTrackEgress_Azure)(nil), (*AutoTrackEgress_AliOSS)(nil), } - file_livekit_egress_proto_msgTypes[32].OneofWrappers = []any{ + file_livekit_egress_proto_msgTypes[31].OneofWrappers = []any{ (*ExportReplayRequest_Template)(nil), (*ExportReplayRequest_Web)(nil), (*ExportReplayRequest_Media)(nil), (*ExportReplayRequest_Preset)(nil), (*ExportReplayRequest_Advanced)(nil), + (*ExportReplayRequest_Passthrough)(nil), } - file_livekit_egress_proto_msgTypes[33].OneofWrappers = []any{ + file_livekit_egress_proto_msgTypes[32].OneofWrappers = []any{ (*RoomCompositeEgressRequest_File)(nil), (*RoomCompositeEgressRequest_Stream)(nil), (*RoomCompositeEgressRequest_Segments)(nil), (*RoomCompositeEgressRequest_Preset)(nil), (*RoomCompositeEgressRequest_Advanced)(nil), } - file_livekit_egress_proto_msgTypes[34].OneofWrappers = []any{ + file_livekit_egress_proto_msgTypes[33].OneofWrappers = []any{ (*WebEgressRequest_File)(nil), (*WebEgressRequest_Stream)(nil), (*WebEgressRequest_Segments)(nil), (*WebEgressRequest_Preset)(nil), (*WebEgressRequest_Advanced)(nil), } - file_livekit_egress_proto_msgTypes[35].OneofWrappers = []any{ + file_livekit_egress_proto_msgTypes[34].OneofWrappers = []any{ (*ParticipantEgressRequest_Preset)(nil), (*ParticipantEgressRequest_Advanced)(nil), } - file_livekit_egress_proto_msgTypes[36].OneofWrappers = []any{ + file_livekit_egress_proto_msgTypes[35].OneofWrappers = []any{ (*TrackCompositeEgressRequest_File)(nil), (*TrackCompositeEgressRequest_Stream)(nil), (*TrackCompositeEgressRequest_Segments)(nil), (*TrackCompositeEgressRequest_Preset)(nil), (*TrackCompositeEgressRequest_Advanced)(nil), } - file_livekit_egress_proto_msgTypes[37].OneofWrappers = []any{ + file_livekit_egress_proto_msgTypes[36].OneofWrappers = []any{ (*TrackEgressRequest_File)(nil), (*TrackEgressRequest_WebsocketUrl)(nil), } - file_livekit_egress_proto_msgTypes[38].OneofWrappers = []any{ + file_livekit_egress_proto_msgTypes[37].OneofWrappers = []any{ (*DirectFileOutput_S3)(nil), (*DirectFileOutput_Gcp)(nil), (*DirectFileOutput_Azure)(nil), (*DirectFileOutput_AliOSS)(nil), } - file_livekit_egress_proto_msgTypes[39].OneofWrappers = []any{ + file_livekit_egress_proto_msgTypes[38].OneofWrappers = []any{ (*EncodedFileOutput_S3)(nil), (*EncodedFileOutput_Gcp)(nil), (*EncodedFileOutput_Azure)(nil), @@ -6160,7 +6116,7 @@ func file_livekit_egress_proto_init() { GoPackagePath: reflect.TypeOf(x{}).PkgPath(), RawDescriptor: unsafe.Slice(unsafe.StringData(file_livekit_egress_proto_rawDesc), len(file_livekit_egress_proto_rawDesc)), NumEnums: 11, - NumMessages: 44, + NumMessages: 43, NumExtensions: 0, NumServices: 1, }, diff --git a/livekit/livekit_egress.twirp.go b/livekit/livekit_egress.twirp.go index 86cf46b7c..2cdcc60ce 100644 --- a/livekit/livekit_egress.twirp.go +++ b/livekit/livekit_egress.twirp.go @@ -31,7 +31,6 @@ type Egress interface { StartEgress(context.Context, *StartEgressRequest) (*EgressInfo, error) // Update url/template or stream outputs - // rpc UpdateEgress(UpdateEgressRequest) returns (EgressInfo); UpdateLayout(context.Context, *UpdateLayoutRequest) (*EgressInfo, error) UpdateStream(context.Context, *UpdateStreamRequest) (*EgressInfo, error) @@ -3034,272 +3033,270 @@ func (s *egressServer) PathPrefix() string { } var twirpFileDescriptor3 = []byte{ - // 4257 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x3b, 0x4b, 0x70, 0x1c, 0x59, - 0x52, 0xaa, 0xea, 0x7f, 0xf6, 0xaf, 0xf4, 0x24, 0x6b, 0xda, 0xf2, 0x7a, 0xec, 0x6d, 0xef, 0x8c, - 0x3d, 0xf2, 0xac, 0x6c, 0x24, 0xaf, 0x3d, 0x6b, 0x98, 0x65, 0x5a, 0xea, 0x92, 0xd5, 0x6b, 0x49, - 0xdd, 0x5b, 0xdd, 0x1a, 0x0f, 0x9f, 0xa0, 0xa2, 0xd4, 0xf5, 0xd4, 0xaa, 0x50, 0x77, 0x55, 0x6f, - 0x55, 0xb5, 0x6c, 0xed, 0x8d, 0x0b, 0x11, 0x10, 0x40, 0x10, 0x10, 0x5c, 0xe0, 0xc0, 0x85, 0xe0, - 0x00, 0x7b, 0xe1, 0xea, 0x0b, 0x5c, 0x38, 0xed, 0x81, 0x08, 0x08, 0x82, 0x13, 0xc1, 0x1d, 0x02, - 0x82, 0x0b, 0x77, 0xe2, 0x7d, 0xaa, 0xea, 0x75, 0xa9, 0x24, 0x77, 0x5b, 0xc3, 0xec, 0x65, 0x4f, - 0xea, 0x97, 0x99, 0xef, 0x55, 0xbe, 0x7c, 0x99, 0xf9, 0x32, 0xf3, 0xa5, 0x60, 0x79, 0x68, 0x9d, - 0xe1, 0x53, 0xcb, 0xd7, 0xf1, 0xc0, 0xc5, 0x9e, 0xb7, 0x3e, 0x76, 0x1d, 0xdf, 0x41, 0x39, 0x0e, - 0x5d, 0x0d, 0xd1, 0x23, 0xc7, 0xc4, 0x43, 0x8e, 0x5e, 0x5d, 0x1e, 0x3a, 0x83, 0x01, 0x76, 0x1f, - 0x39, 0x63, 0xdf, 0x72, 0x6c, 0x0e, 0xad, 0xff, 0x6b, 0x0a, 0x50, 0xd7, 0x37, 0x5c, 0x5f, 0xa5, - 0x4b, 0x69, 0xf8, 0xc7, 0x13, 0xec, 0xf9, 0xe8, 0x16, 0x14, 0x5c, 0xc7, 0x19, 0xe9, 0xb6, 0x31, - 0xc2, 0x35, 0xe9, 0xae, 0xf4, 0xa0, 0xa0, 0xe5, 0x09, 0xe0, 0xc0, 0x18, 0x61, 0xf4, 0x3d, 0xc8, - 0xfb, 0x78, 0x34, 0x1e, 0x1a, 0x3e, 0xae, 0xc9, 0x77, 0xa5, 0x07, 0xc5, 0x8d, 0x0f, 0xd6, 0xf9, - 0x27, 0xd7, 0x7b, 0x1c, 0xd1, 0x75, 0x26, 0x6e, 0x1f, 0xef, 0x2e, 0x68, 0x21, 0x29, 0xfa, 0x18, - 0x52, 0xaf, 0xf1, 0x51, 0x2d, 0x45, 0x67, 0xa0, 0x70, 0xc6, 0x2b, 0x7c, 0x14, 0x12, 0x13, 0x02, - 0xf4, 0x29, 0x64, 0x46, 0xd8, 0xb4, 0x8c, 0x5a, 0x9a, 0x52, 0x2e, 0x87, 0x94, 0xfb, 0x04, 0x1a, - 0xd2, 0x32, 0x22, 0xf4, 0x19, 0x64, 0xc7, 0x2e, 0xf6, 0xb0, 0x5f, 0xcb, 0xdc, 0x95, 0x1e, 0x54, - 0x36, 0x3e, 0x0c, 0xc9, 0x55, 0xbb, 0xef, 0x98, 0x96, 0x3d, 0x68, 0xb3, 0x0d, 0x77, 0x28, 0xd5, - 0xae, 0xa4, 0x71, 0x7a, 0xf4, 0x14, 0xf2, 0x86, 0x79, 0x66, 0xd8, 0x7d, 0x6c, 0xd6, 0xb2, 0xf4, - 0x53, 0xb5, 0xcb, 0xe6, 0xee, 0x4a, 0x5a, 0x48, 0x8b, 0x3e, 0x81, 0x9c, 0x33, 0xf1, 0xc7, 0x13, - 0xdf, 0xab, 0xe5, 0xee, 0xa6, 0x1e, 0x14, 0x37, 0xaa, 0xe1, 0xb4, 0x36, 0x85, 0x6b, 0x01, 0x1e, - 0x3d, 0x86, 0x9c, 0xe7, 0x3b, 0xae, 0x31, 0xc0, 0xb5, 0x3c, 0xfd, 0xc2, 0x4a, 0x48, 0xda, 0x65, - 0xf0, 0x6d, 0xc7, 0x3e, 0xb6, 0x06, 0x5a, 0x40, 0x86, 0x36, 0x20, 0xff, 0x1a, 0x1f, 0x9d, 0x38, - 0xce, 0xa9, 0x57, 0x2b, 0xd0, 0xd5, 0x57, 0x44, 0x49, 0x11, 0x04, 0x9f, 0x12, 0xd2, 0x6d, 0xe5, - 0x21, 0xeb, 0x51, 0xa9, 0x6c, 0x01, 0xe4, 0x31, 0xe7, 0xbc, 0xfe, 0x87, 0x12, 0x54, 0xa6, 0x4f, - 0x03, 0xad, 0x40, 0x76, 0x68, 0x9c, 0x3b, 0x13, 0x9f, 0x1f, 0x29, 0x1f, 0xa1, 0xdb, 0x00, 0xc6, - 0xc4, 0xb4, 0x1c, 0xdd, 0xb1, 0x87, 0xe7, 0xf4, 0x48, 0xf3, 0x5a, 0x81, 0x42, 0xda, 0xf6, 0xf0, - 0x9c, 0xa0, 0xcf, 0x2c, 0x13, 0x73, 0x74, 0x8a, 0xa1, 0x29, 0x84, 0xa2, 0x3f, 0x86, 0x6a, 0x7f, - 0xe2, 0xf9, 0xce, 0x48, 0x3f, 0x32, 0x3c, 0xac, 0x4f, 0xdc, 0x21, 0x3d, 0xb9, 0x82, 0x56, 0x66, - 0xe0, 0x2d, 0xc3, 0xc3, 0x87, 0xee, 0xb0, 0xfe, 0xbb, 0x12, 0x14, 0xc2, 0xc3, 0x46, 0x0a, 0xa4, - 0x08, 0x25, 0x63, 0x84, 0xfc, 0xbc, 0x26, 0x17, 0x9f, 0x02, 0x32, 0x5e, 0x1b, 0x96, 0xaf, 0x7b, - 0x44, 0x9b, 0x75, 0xcf, 0x1a, 0xd8, 0x06, 0x63, 0x24, 0xaf, 0x29, 0x14, 0x43, 0xd5, 0xbc, 0x4b, - 0xe1, 0xf5, 0x7f, 0x90, 0xa0, 0x28, 0xa8, 0x13, 0x7a, 0x06, 0x15, 0xb6, 0xb8, 0xef, 0x1a, 0xfd, - 0x53, 0xdd, 0x32, 0x19, 0x63, 0x5b, 0xd5, 0xb7, 0x9d, 0x12, 0x45, 0xf4, 0x08, 0xbc, 0xd5, 0xdc, - 0x5d, 0xd0, 0xc4, 0xb1, 0x89, 0x76, 0x61, 0x71, 0x6c, 0xb8, 0xbe, 0xd5, 0xb7, 0xc6, 0x86, 0xed, - 0xeb, 0x14, 0xc7, 0x8d, 0xe2, 0x66, 0x78, 0x70, 0x9d, 0x88, 0xe2, 0x4b, 0x42, 0xb0, 0xbb, 0xa0, - 0x29, 0xe3, 0x18, 0x0c, 0xad, 0x41, 0x86, 0x6e, 0x96, 0x1b, 0x48, 0xa4, 0xf6, 0x0d, 0x02, 0xe5, - 0x87, 0xce, 0x48, 0xb6, 0x72, 0x90, 0xa1, 0x5f, 0xaa, 0xff, 0x16, 0x28, 0xf1, 0xc5, 0xd1, 0x2a, - 0xe4, 0x2d, 0x13, 0xdb, 0xbe, 0xe5, 0x9f, 0x07, 0xa6, 0x1b, 0x8c, 0xd1, 0x3a, 0x2c, 0x8d, 0x5d, - 0x7c, 0x8c, 0x5d, 0xdd, 0xeb, 0xbb, 0x18, 0xdb, 0xba, 0x77, 0x62, 0xb8, 0x98, 0x0b, 0x7b, 0x91, - 0xa1, 0xba, 0x14, 0xd3, 0x25, 0x88, 0xfa, 0x6f, 0x40, 0x51, 0xf8, 0x3c, 0xba, 0x03, 0xc5, 0xbe, - 0x31, 0xf6, 0x27, 0x2e, 0xd6, 0x8d, 0x21, 0x3b, 0xbc, 0xbc, 0x06, 0x1c, 0xd4, 0x18, 0x0e, 0xd1, - 0x43, 0xc8, 0xba, 0xce, 0xc4, 0xc7, 0x5e, 0x4d, 0xa6, 0xca, 0xbb, 0x34, 0xbd, 0x0b, 0x8d, 0xe0, - 0x34, 0x4e, 0x52, 0xff, 0x1f, 0x09, 0x20, 0x02, 0xa3, 0xfb, 0x90, 0x8f, 0x49, 0x1f, 0xde, 0x76, - 0x72, 0x7e, 0x28, 0x78, 0xfe, 0xd3, 0x44, 0x9b, 0xb0, 0x2c, 0xca, 0x3c, 0xdc, 0x2c, 0xd9, 0x45, - 0x61, 0x77, 0x41, 0x5b, 0x12, 0xb0, 0xad, 0x60, 0xe7, 0x3f, 0x04, 0x51, 0xe4, 0xfa, 0xa9, 0x65, - 0x9b, 0x54, 0xd2, 0x95, 0x8d, 0xdb, 0x49, 0xe7, 0xd4, 0xb2, 0x8f, 0x9d, 0xf5, 0x97, 0x96, 0x6d, - 0xee, 0x2e, 0x68, 0x55, 0x61, 0x22, 0x01, 0xa1, 0x47, 0x90, 0xeb, 0x9f, 0x18, 0xb6, 0x8d, 0x99, - 0x82, 0x55, 0x36, 0x6e, 0xc4, 0x0e, 0x8b, 0x21, 0xb5, 0x80, 0x8a, 0x9c, 0xd7, 0xc8, 0xf0, 0xfb, - 0x27, 0xf5, 0x23, 0x80, 0xa6, 0xe1, 0x1b, 0xb3, 0x8a, 0x73, 0x13, 0x0a, 0x1e, 0x1e, 0xe2, 0xbe, - 0xef, 0xb8, 0x81, 0x44, 0xa3, 0x4f, 0x91, 0x85, 0xba, 0x1c, 0xab, 0x45, 0x74, 0xf5, 0x09, 0x94, - 0x44, 0xd4, 0xff, 0xaf, 0x5c, 0xa3, 0xad, 0xfd, 0x53, 0x0a, 0xaa, 0x31, 0xb7, 0x89, 0x96, 0x21, - 0xf3, 0xda, 0x32, 0xfd, 0x13, 0xfa, 0xdd, 0x8c, 0xc6, 0x06, 0xc4, 0x0d, 0x9d, 0x60, 0x6b, 0x70, - 0xe2, 0xd3, 0x95, 0x33, 0x1a, 0x1f, 0x11, 0x6a, 0x13, 0x8f, 0xfd, 0x13, 0x7a, 0x2e, 0x19, 0x8d, - 0x0d, 0xd0, 0xb7, 0xa0, 0x70, 0xec, 0x1a, 0x23, 0xec, 0x92, 0xeb, 0x26, 0x4d, 0x31, 0x11, 0x00, - 0x3d, 0x81, 0x22, 0x73, 0x1a, 0x7d, 0xc7, 0xc4, 0x7d, 0x7e, 0x07, 0x2c, 0xc5, 0x6d, 0xc7, 0xc4, - 0x7d, 0x8d, 0x39, 0x17, 0xfa, 0x1b, 0xdd, 0x83, 0x32, 0x9b, 0x75, 0x64, 0xf9, 0x74, 0xdd, 0x2c, - 0x5d, 0xb7, 0xc4, 0xac, 0x8b, 0xc1, 0xd0, 0x7d, 0xa8, 0x32, 0xa2, 0x63, 0x97, 0xdc, 0x8a, 0x76, - 0xff, 0xbc, 0x96, 0xa3, 0x64, 0x15, 0x0a, 0xde, 0x09, 0xa0, 0x84, 0x07, 0xe6, 0x3c, 0x18, 0x0f, - 0xf9, 0x18, 0x0f, 0xd4, 0x2a, 0x39, 0x0f, 0x67, 0xe1, 0x6f, 0xc2, 0x03, 0x9b, 0x15, 0xf0, 0x50, - 0x60, 0x3c, 0x50, 0x60, 0xc0, 0xc3, 0xa7, 0x80, 0x4e, 0xf1, 0xb9, 0x4e, 0xf7, 0xab, 0x5b, 0xb6, - 0x8f, 0xdd, 0x33, 0x63, 0x58, 0x83, 0xbb, 0xd2, 0x03, 0x49, 0x53, 0x4e, 0xf1, 0xf9, 0x0e, 0x41, - 0xb4, 0x38, 0x1c, 0xdd, 0x0f, 0xb6, 0xf5, 0xe3, 0x89, 0x31, 0x24, 0x27, 0x57, 0x24, 0x4b, 0x6e, - 0xc9, 0x35, 0x89, 0x6f, 0xed, 0x47, 0x0c, 0x4e, 0x08, 0xd9, 0xb7, 0x03, 0xc2, 0x52, 0x44, 0x48, - 0x11, 0x9c, 0xb0, 0xfe, 0xfb, 0x32, 0x64, 0xd9, 0xa5, 0x86, 0x3e, 0x81, 0xf4, 0xb1, 0x35, 0x64, - 0xd1, 0x80, 0x68, 0xd8, 0x3b, 0xd6, 0x10, 0x33, 0x92, 0xdd, 0x05, 0x8d, 0x92, 0xa0, 0x47, 0x90, - 0xf5, 0x7c, 0x17, 0x1b, 0x23, 0xee, 0x09, 0x6f, 0x08, 0xb7, 0x1e, 0x01, 0x87, 0xe4, 0x9c, 0x0c, - 0x3d, 0x87, 0xbc, 0x87, 0x07, 0x23, 0x6c, 0xfb, 0x1e, 0x77, 0x7f, 0xdf, 0x8a, 0xa6, 0x30, 0x04, - 0x36, 0xa7, 0x3e, 0x14, 0xd2, 0xa3, 0x75, 0xc8, 0x5a, 0x23, 0x63, 0x80, 0xbd, 0x0b, 0xf1, 0x42, - 0x8b, 0x80, 0xa3, 0x6f, 0x31, 0x2a, 0xf1, 0x4e, 0xce, 0xce, 0x74, 0x27, 0x93, 0xfb, 0xb5, 0x4f, - 0x41, 0xf5, 0xdf, 0x93, 0x00, 0x22, 0x36, 0xd0, 0xf7, 0xa0, 0x40, 0xf6, 0xab, 0xfb, 0xe7, 0x63, - 0x26, 0x97, 0x4a, 0x3c, 0x84, 0x60, 0x5c, 0xf7, 0xce, 0xc7, 0x58, 0xcb, 0x1f, 0xf3, 0x5f, 0xc4, - 0x41, 0x93, 0xdf, 0x63, 0xc3, 0x3f, 0x61, 0xb6, 0xa5, 0x85, 0x63, 0xf4, 0x09, 0x28, 0xa6, 0xe5, - 0x19, 0x47, 0x43, 0xac, 0x8f, 0x0c, 0xdb, 0x3a, 0xc6, 0x9e, 0xcf, 0xef, 0xba, 0x2a, 0x87, 0xef, - 0x73, 0x70, 0xfd, 0x15, 0x94, 0x44, 0x71, 0xa2, 0x4d, 0xc8, 0xd3, 0x98, 0xae, 0xef, 0x0c, 0x39, - 0x33, 0x1f, 0xc4, 0xe4, 0xde, 0xe1, 0x68, 0x2d, 0x24, 0x44, 0x08, 0xd2, 0x13, 0x77, 0xc8, 0x9c, - 0x4b, 0x41, 0xa3, 0xbf, 0xeb, 0x7f, 0x99, 0x86, 0xa5, 0x04, 0xa9, 0x93, 0x53, 0x8a, 0x7d, 0xe0, - 0xc3, 0xe4, 0x53, 0x4a, 0xf8, 0xce, 0x7d, 0xa8, 0x92, 0x3d, 0x92, 0x78, 0x52, 0x27, 0xd7, 0x8c, - 0xf5, 0x86, 0x6f, 0xbd, 0x12, 0x80, 0x3b, 0x14, 0x4a, 0xcc, 0x62, 0x3c, 0x34, 0xce, 0x87, 0x96, - 0xe7, 0xb3, 0xe8, 0x33, 0x45, 0xc9, 0x4a, 0x01, 0x90, 0x46, 0xa0, 0x9f, 0x02, 0x22, 0x1f, 0xd6, - 0xa7, 0x29, 0x8b, 0x94, 0x52, 0x21, 0x98, 0x8e, 0x48, 0xfd, 0x09, 0x28, 0x5c, 0x5b, 0x74, 0x73, - 0xe2, 0x1a, 0xc4, 0x35, 0x51, 0x5d, 0x29, 0x6b, 0x55, 0x0e, 0x6f, 0x72, 0x30, 0x52, 0x05, 0x36, - 0xbd, 0xc9, 0x31, 0x61, 0x13, 0xe8, 0x4e, 0x2f, 0xd1, 0xc7, 0x2e, 0xa5, 0x89, 0x36, 0xc1, 0xc6, - 0x89, 0xa7, 0x98, 0x4f, 0x3c, 0x45, 0x74, 0x0f, 0x64, 0x6f, 0x93, 0xfa, 0xad, 0xe2, 0xc6, 0x62, - 0xf4, 0x91, 0xcd, 0xc3, 0xf1, 0xd0, 0x31, 0xc8, 0xed, 0x23, 0x7b, 0x9b, 0x24, 0x74, 0x1e, 0xf4, - 0xc7, 0x5c, 0x5f, 0xa3, 0xd0, 0xf9, 0xc5, 0x76, 0x27, 0x24, 0x23, 0x04, 0xe8, 0x31, 0x64, 0x8c, - 0x9f, 0x4c, 0x5c, 0x4c, 0x1d, 0x95, 0x18, 0xcf, 0x36, 0x08, 0x74, 0x6b, 0xe8, 0x1c, 0x85, 0xf4, - 0x8c, 0x90, 0x98, 0xaa, 0x31, 0xb4, 0xda, 0xdd, 0x2e, 0x75, 0x3f, 0xa2, 0xa9, 0x36, 0x28, 0x38, - 0xa4, 0xe7, 0x64, 0xc4, 0x18, 0x58, 0x74, 0x5b, 0xff, 0xaf, 0x14, 0x14, 0x05, 0x13, 0x23, 0x9b, - 0x0e, 0x6e, 0xb3, 0xd0, 0x53, 0x49, 0x4c, 0xcc, 0x1c, 0x1e, 0x3a, 0xaa, 0xf0, 0x5e, 0x90, 0x93, - 0xef, 0x85, 0xd4, 0xd4, 0xbd, 0x90, 0xa0, 0x3b, 0xe9, 0x44, 0xdd, 0x69, 0x5c, 0x3c, 0xbd, 0x4c, - 0xcc, 0x2a, 0x29, 0xc3, 0x57, 0x9c, 0xdc, 0x13, 0x28, 0x52, 0x3f, 0xc1, 0x7d, 0x79, 0x36, 0xe6, - 0xcb, 0xe9, 0x74, 0xee, 0xcb, 0xad, 0xf0, 0x77, 0xe2, 0x79, 0xe7, 0xae, 0x3a, 0xef, 0xfc, 0x4c, - 0xe7, 0x5d, 0x98, 0xf9, 0xbc, 0x61, 0xfe, 0xf3, 0x2e, 0xce, 0x7b, 0xde, 0x3f, 0x93, 0xa0, 0x3c, - 0xe5, 0x21, 0xf9, 0x5e, 0xa4, 0x99, 0xf6, 0x22, 0xcf, 0xbc, 0x97, 0xd4, 0xfc, 0x7b, 0x49, 0xcf, - 0xb6, 0x17, 0xa0, 0x0e, 0x8c, 0x5c, 0x70, 0x6e, 0xfd, 0x3f, 0xd3, 0x90, 0x0f, 0x38, 0x45, 0x75, - 0x00, 0xa3, 0xdf, 0xc7, 0x9e, 0xa7, 0x9f, 0x62, 0x1e, 0x34, 0x6f, 0xa5, 0xfe, 0xbe, 0x23, 0x6b, - 0x05, 0x06, 0x7e, 0x89, 0xcf, 0xd1, 0x2d, 0xc8, 0x7a, 0xb8, 0xef, 0x62, 0x16, 0xb5, 0x70, 0x3c, - 0x07, 0xa1, 0x07, 0x50, 0xf6, 0xb0, 0xe7, 0x59, 0x8e, 0xad, 0xfb, 0xce, 0x29, 0xb6, 0x99, 0x2f, - 0x62, 0x34, 0x25, 0x8e, 0xe9, 0x11, 0x04, 0x7a, 0x08, 0x55, 0xc3, 0xf3, 0x26, 0x23, 0xac, 0xbb, - 0xce, 0x10, 0xeb, 0x86, 0x6b, 0xd3, 0xcb, 0x97, 0xd2, 0x4a, 0x5a, 0x99, 0xe1, 0x34, 0x67, 0x88, - 0x1b, 0xae, 0x8d, 0x7e, 0x04, 0x1f, 0x88, 0xc4, 0xf8, 0x8d, 0x8f, 0x5d, 0xdb, 0x18, 0x92, 0x48, - 0xae, 0x4c, 0x27, 0xad, 0xbe, 0xed, 0x2c, 0x47, 0x53, 0x54, 0x8e, 0x6f, 0x35, 0xc9, 0x77, 0x93, - 0x10, 0x26, 0x31, 0x32, 0x17, 0x0f, 0x88, 0x0b, 0x64, 0x8e, 0x95, 0x8f, 0xc8, 0xa5, 0x84, 0x6d, - 0x73, 0xec, 0x58, 0xb6, 0xcf, 0xad, 0x2b, 0x1c, 0x93, 0x39, 0x47, 0x93, 0xfe, 0x29, 0xcf, 0xb1, - 0x0b, 0x1a, 0x1f, 0xa1, 0x07, 0xa0, 0x1c, 0x3b, 0x6e, 0x1f, 0xeb, 0xe4, 0xea, 0xd2, 0x3d, 0xff, - 0x7c, 0xc8, 0xee, 0xd4, 0xbc, 0x56, 0xa1, 0xf0, 0x8e, 0xe1, 0x9f, 0x74, 0x09, 0x14, 0x7d, 0x01, - 0xf9, 0x11, 0xf6, 0x0d, 0xd3, 0xf0, 0x0d, 0x9e, 0x34, 0xdf, 0xb9, 0xa0, 0x2f, 0xeb, 0xfb, 0x9c, - 0x42, 0xb5, 0x7d, 0xf7, 0x9c, 0xc9, 0x23, 0x9c, 0x85, 0x6e, 0x43, 0xce, 0x37, 0x06, 0x03, 0xcb, - 0x1e, 0x50, 0xe3, 0xe1, 0xf2, 0x0a, 0x60, 0xe8, 0x09, 0x2c, 0xf5, 0x1d, 0xdb, 0xa7, 0x3e, 0xde, - 0xf2, 0xc6, 0x8e, 0x67, 0x51, 0x37, 0x5f, 0x88, 0x48, 0x11, 0xc7, 0x37, 0x23, 0x34, 0xc9, 0xb9, - 0xc6, 0xae, 0xf3, 0xe6, 0x9c, 0xdb, 0x4f, 0x14, 0x3a, 0x74, 0x08, 0x34, 0xc8, 0xb9, 0x28, 0xc9, - 0xea, 0x2f, 0x43, 0x79, 0x8a, 0x41, 0x92, 0xc1, 0x86, 0xda, 0xa2, 0x91, 0x9f, 0xc4, 0xad, 0x9d, - 0x19, 0xc3, 0x09, 0xe6, 0x57, 0x1b, 0x1b, 0x3c, 0x97, 0x3f, 0x93, 0xea, 0x67, 0x50, 0x08, 0x15, - 0x1e, 0x7d, 0x04, 0xc5, 0xbe, 0x8b, 0x69, 0x00, 0x6d, 0x0c, 0x3d, 0x51, 0xdd, 0x44, 0xb8, 0x20, - 0x75, 0x79, 0x4a, 0xea, 0x21, 0xd3, 0xa9, 0x77, 0x32, 0x5d, 0xff, 0x1d, 0x09, 0xaa, 0x31, 0xfb, - 0x41, 0x1f, 0x43, 0xc9, 0xe8, 0xf7, 0x9d, 0x89, 0xed, 0x0b, 0xe5, 0x1d, 0x26, 0xa3, 0x22, 0x47, - 0xd0, 0x6b, 0xf3, 0x3b, 0x10, 0x0c, 0xa9, 0x55, 0x08, 0x5a, 0x0f, 0x1c, 0x4e, 0xcc, 0xe2, 0x23, - 0xa8, 0x10, 0xc1, 0x1a, 0x96, 0x8d, 0x5d, 0xf1, 0xc2, 0x2e, 0x87, 0x50, 0xb2, 0x58, 0xfd, 0xcf, - 0x25, 0x28, 0x89, 0x56, 0x79, 0x7d, 0x93, 0xfb, 0x1a, 0x15, 0xb9, 0xfe, 0x9b, 0x50, 0x14, 0x84, - 0x97, 0x50, 0x9b, 0x58, 0x85, 0xfc, 0xc4, 0x23, 0x26, 0x34, 0x0a, 0x0e, 0x37, 0x1c, 0xa3, 0x3b, - 0x90, 0x1f, 0x1b, 0x9e, 0xf7, 0xda, 0x71, 0x59, 0x46, 0xc9, 0xf9, 0x0c, 0x81, 0xf5, 0xbf, 0x91, - 0x60, 0x71, 0xcf, 0xf2, 0xe6, 0x29, 0xb1, 0x3d, 0x80, 0x02, 0xab, 0xed, 0x11, 0x53, 0x67, 0x9b, - 0x2f, 0xbe, 0xed, 0xe4, 0x19, 0xac, 0xd5, 0xd4, 0x82, 0x5f, 0xd4, 0x9e, 0x8d, 0xbe, 0x6f, 0x9d, - 0x61, 0x1e, 0x26, 0xf2, 0x11, 0x7a, 0x06, 0x30, 0x26, 0xf7, 0x18, 0x73, 0x47, 0xe9, 0x98, 0x4f, - 0xa5, 0xbe, 0xa8, 0x63, 0x0c, 0x2c, 0x9b, 0xc6, 0x3d, 0x5a, 0x81, 0xd0, 0x52, 0x60, 0xfd, 0xb7, - 0x25, 0x40, 0x22, 0xb7, 0xde, 0xd8, 0xb1, 0x3d, 0x12, 0x44, 0x65, 0x2c, 0x1f, 0x8f, 0x88, 0xba, - 0x4e, 0x27, 0xf6, 0x8c, 0x8e, 0xe4, 0xcb, 0x1a, 0xa3, 0x40, 0x5f, 0x40, 0xd5, 0xc6, 0x6f, 0x7c, - 0x5d, 0xf8, 0xbe, 0xfc, 0x8e, 0xef, 0x97, 0xc9, 0x84, 0x4e, 0xc8, 0xc3, 0xdf, 0x49, 0xb0, 0x74, - 0x38, 0x36, 0x0d, 0x1f, 0x4f, 0xcb, 0x6c, 0x4a, 0x2c, 0xd2, 0x55, 0x62, 0xe1, 0x47, 0x28, 0x47, - 0x47, 0x18, 0x15, 0xbf, 0x52, 0x53, 0xc5, 0xaf, 0x8f, 0xa1, 0x6a, 0x98, 0xa6, 0xce, 0x32, 0x11, - 0x9d, 0x06, 0xc3, 0x69, 0x1a, 0x0c, 0x97, 0x0d, 0xd3, 0x64, 0x71, 0xf3, 0xa1, 0x3b, 0xf4, 0x48, - 0xcc, 0xe9, 0xe2, 0x91, 0x73, 0x86, 0xa7, 0x48, 0x33, 0x94, 0x54, 0x61, 0x98, 0x88, 0xba, 0xfe, - 0x39, 0x2c, 0x76, 0x7d, 0x67, 0xfc, 0x9e, 0xec, 0xd7, 0xff, 0x1d, 0x00, 0x22, 0xc1, 0xce, 0xb1, - 0xef, 0x3a, 0xe4, 0xa8, 0x56, 0x85, 0x6a, 0x53, 0x78, 0xdb, 0xc9, 0x12, 0x48, 0xab, 0xa9, 0xb1, - 0xbf, 0xe6, 0xb4, 0xe6, 0x95, 0x63, 0x9a, 0xf7, 0x1c, 0x8a, 0xac, 0x98, 0xc8, 0xb2, 0x9a, 0x55, - 0x1a, 0x00, 0xdd, 0x8c, 0x9d, 0x36, 0xab, 0x9a, 0xd1, 0xb4, 0x06, 0xbc, 0xf0, 0x37, 0xfa, 0x2e, - 0xc9, 0xfb, 0x0c, 0x7f, 0xe2, 0xf1, 0xca, 0xca, 0x8d, 0xf8, 0x34, 0x8a, 0xd4, 0x38, 0x11, 0xba, - 0x0d, 0x40, 0x8b, 0x75, 0xd8, 0xd4, 0x0d, 0x9f, 0xba, 0xe0, 0x94, 0x56, 0xe0, 0x90, 0x86, 0x8f, - 0x6e, 0x52, 0x43, 0x66, 0xc8, 0x22, 0x45, 0xe6, 0xe8, 0xb8, 0x41, 0x0b, 0x96, 0x13, 0xaa, 0x1e, - 0x14, 0x89, 0xd8, 0x4c, 0x0e, 0x69, 0x90, 0xbc, 0x2c, 0xcb, 0x04, 0x52, 0xbb, 0x4d, 0xf5, 0xee, - 0x96, 0x90, 0x07, 0xc5, 0x4b, 0xdd, 0x24, 0x3c, 0x60, 0xc4, 0xe8, 0x29, 0xf1, 0x28, 0x24, 0xa5, - 0xa8, 0x7d, 0x18, 0xcb, 0x41, 0xd5, 0x37, 0x63, 0xc7, 0xf5, 0x35, 0x8a, 0x14, 0xe6, 0x31, 0x6a, - 0xb4, 0x07, 0x15, 0x2a, 0xcf, 0xbe, 0x33, 0xa2, 0x37, 0x0b, 0xe6, 0xe6, 0x76, 0x2f, 0x9c, 0xaf, - 0x39, 0xce, 0x68, 0x3b, 0xc0, 0xc6, 0x3f, 0x5f, 0x76, 0x45, 0x2c, 0xfa, 0x2e, 0x2b, 0x93, 0x57, - 0x62, 0x35, 0xc4, 0x57, 0xf8, 0x28, 0x3e, 0x91, 0x56, 0xcb, 0x55, 0x28, 0x0a, 0x65, 0x99, 0xda, - 0x12, 0x9d, 0xf6, 0xed, 0xa4, 0x92, 0x56, 0x7c, 0xba, 0x38, 0x0f, 0xb5, 0xa1, 0xca, 0x8a, 0x44, - 0xd1, 0x26, 0x58, 0x4e, 0xf2, 0x9d, 0xc8, 0x66, 0x09, 0xfe, 0xd2, 0x5d, 0x54, 0xfc, 0x29, 0x34, - 0xda, 0x84, 0x0c, 0x85, 0xf0, 0xa4, 0xe5, 0xd6, 0xf4, 0x32, 0xf1, 0xd9, 0x8c, 0x16, 0x3d, 0x87, - 0x0a, 0x37, 0x2e, 0x17, 0x7b, 0x93, 0xa1, 0xef, 0xd5, 0xaa, 0x31, 0x6f, 0xc3, 0x4c, 0x8c, 0x7a, - 0x9b, 0x32, 0x23, 0xd5, 0x18, 0x25, 0x7a, 0x02, 0x25, 0x9a, 0x8c, 0x07, 0x33, 0x15, 0x3a, 0x73, - 0x71, 0xaa, 0x4e, 0x41, 0xe7, 0x15, 0x09, 0x59, 0x30, 0xeb, 0x07, 0x10, 0xe4, 0x80, 0xe1, 0xc4, - 0xc5, 0x58, 0x9d, 0x8d, 0x27, 0x7c, 0xcc, 0xc5, 0x55, 0x38, 0x75, 0x30, 0xff, 0x33, 0x28, 0xb3, - 0x7c, 0x21, 0x98, 0xbd, 0x1c, 0x63, 0x98, 0x66, 0x0c, 0x6c, 0x6e, 0x89, 0x52, 0x06, 0x33, 0x97, - 0x21, 0x83, 0x5d, 0xd7, 0x71, 0x59, 0x8c, 0xa2, 0xb1, 0x01, 0xd1, 0x6c, 0xfa, 0x83, 0xe6, 0x1f, - 0xb5, 0x15, 0x56, 0xee, 0xa2, 0x10, 0x92, 0x69, 0xa0, 0x1a, 0xe4, 0x4c, 0xec, 0x1b, 0xd6, 0xd0, - 0xab, 0xdd, 0xa0, 0xd3, 0x82, 0x21, 0x7a, 0x08, 0x8b, 0x41, 0xea, 0xa1, 0x0f, 0x9d, 0x3e, 0xcb, - 0x72, 0x3f, 0x60, 0x19, 0x71, 0x80, 0xd8, 0xe3, 0x70, 0xb4, 0x0e, 0x4b, 0x47, 0x46, 0xff, 0x74, - 0x32, 0xd6, 0x79, 0x8d, 0x43, 0x9f, 0x78, 0xd8, 0xac, 0xdd, 0x64, 0x65, 0x60, 0x86, 0xe2, 0xa1, - 0xfe, 0xa1, 0x87, 0x4d, 0x74, 0x07, 0x8a, 0x2e, 0xf6, 0xdd, 0x73, 0x9d, 0x5e, 0xfb, 0xb5, 0x5b, - 0x94, 0x2d, 0xa0, 0xa0, 0x6d, 0x02, 0x21, 0x16, 0xc7, 0x2b, 0x3e, 0xb9, 0xd8, 0x83, 0x50, 0x74, - 0x60, 0xe4, 0x52, 0xd9, 0x92, 0x6b, 0xd2, 0xae, 0x14, 0xd6, 0x7d, 0x1e, 0xf2, 0x9a, 0x52, 0x3c, - 0x1d, 0x0a, 0xce, 0x8a, 0x93, 0xb3, 0xaa, 0xd2, 0x33, 0xa1, 0x48, 0x54, 0x8a, 0xd7, 0x95, 0x84, - 0x33, 0xe2, 0x93, 0x42, 0xe2, 0xad, 0x02, 0xe4, 0x5c, 0xa6, 0x69, 0x24, 0x9b, 0x61, 0x07, 0x55, - 0xff, 0xa9, 0x0c, 0x10, 0xf1, 0x96, 0xfc, 0x1c, 0x21, 0x78, 0x27, 0xf9, 0x2a, 0xef, 0x94, 0x9a, - 0xf6, 0x4e, 0xab, 0x90, 0x9f, 0xaa, 0x33, 0xa4, 0xb4, 0x70, 0x8c, 0x36, 0x42, 0x17, 0xc9, 0x32, - 0xd3, 0xd5, 0x04, 0x41, 0xad, 0xc7, 0xfc, 0x64, 0xa8, 0x29, 0x59, 0x51, 0x53, 0xea, 0x50, 0x1e, - 0x1a, 0x1e, 0x51, 0x5b, 0x72, 0x30, 0x06, 0x4b, 0x38, 0x53, 0x5a, 0x91, 0x00, 0x35, 0x02, 0x6b, - 0xf8, 0x44, 0x5d, 0x08, 0xda, 0xc2, 0x1e, 0x15, 0x71, 0x59, 0x0b, 0x86, 0xf5, 0x75, 0xc8, 0xb2, - 0xaf, 0x20, 0x80, 0x6c, 0x63, 0xbb, 0xd7, 0xfa, 0x52, 0x55, 0x16, 0x50, 0x09, 0xf2, 0x3b, 0xad, - 0x83, 0x56, 0x77, 0x57, 0x6d, 0x2a, 0x12, 0xc1, 0xec, 0x34, 0x5a, 0x7b, 0x6a, 0x53, 0x91, 0xeb, - 0x3f, 0x95, 0x20, 0x1f, 0x9c, 0x4a, 0x50, 0xc0, 0x12, 0x23, 0x97, 0x60, 0xfc, 0x35, 0x89, 0x2d, - 0x1b, 0x13, 0x1b, 0x82, 0xb4, 0x67, 0xfd, 0x04, 0x73, 0x71, 0xd2, 0xdf, 0x84, 0x3e, 0x54, 0x74, - 0x16, 0xce, 0x85, 0xe3, 0xfa, 0x3f, 0xcb, 0x50, 0x12, 0x75, 0xe2, 0x62, 0x59, 0x49, 0x9a, 0xb9, - 0xac, 0x94, 0xbf, 0xa4, 0xac, 0x24, 0xf2, 0x2b, 0x5f, 0xc2, 0x6f, 0x4a, 0xe0, 0xf7, 0x21, 0x2c, - 0x86, 0x0b, 0x87, 0x8c, 0xb3, 0x08, 0x55, 0x09, 0x10, 0xa1, 0x85, 0x3e, 0x81, 0x95, 0x69, 0x56, - 0xc2, 0x19, 0xcc, 0x5d, 0x2c, 0x8b, 0xec, 0x84, 0xb3, 0xee, 0x91, 0x34, 0x94, 0x79, 0x33, 0x66, - 0xa9, 0x19, 0xfa, 0xfd, 0x12, 0x07, 0x32, 0x5b, 0x9d, 0x3e, 0xa1, 0xec, 0x55, 0x27, 0x94, 0x9b, - 0x3a, 0xa1, 0xfa, 0x1f, 0x49, 0x00, 0x91, 0x3f, 0x9b, 0xbd, 0x2e, 0x73, 0x27, 0x2a, 0xaa, 0x10, - 0xa6, 0x24, 0xba, 0x6a, 0x50, 0x3f, 0xb9, 0xc8, 0xd2, 0x1c, 0x4a, 0x53, 0xff, 0x33, 0x19, 0x6e, - 0x34, 0x26, 0xbe, 0x73, 0xe1, 0x9e, 0x13, 0x1e, 0x86, 0xa5, 0x99, 0x1e, 0x86, 0x17, 0x12, 0x1f, - 0x86, 0xe5, 0x77, 0x3c, 0x0c, 0x2f, 0x08, 0x0f, 0xc3, 0x9f, 0xf3, 0x1b, 0x28, 0x78, 0x1d, 0x4e, - 0xd1, 0xab, 0x60, 0x35, 0xa9, 0x22, 0xcc, 0x1f, 0x8a, 0xe9, 0x55, 0xd4, 0xe6, 0x8f, 0xc5, 0x6a, - 0x74, 0x15, 0x05, 0x2b, 0xa4, 0xe9, 0x0a, 0x57, 0xd6, 0xc2, 0xc3, 0x1b, 0x89, 0x2f, 0x43, 0xbc, - 0x1d, 0x7f, 0xe2, 0xaf, 0xff, 0xb1, 0x0c, 0x55, 0x22, 0x1c, 0xe1, 0xca, 0x9d, 0x2a, 0x3e, 0x4b, - 0x33, 0x14, 0x9f, 0x33, 0x57, 0x95, 0xb1, 0xe4, 0x99, 0x4a, 0x3f, 0xa9, 0x99, 0x4b, 0x3f, 0xe9, - 0xf9, 0x4b, 0x3f, 0xd9, 0x79, 0xcb, 0x58, 0x7f, 0x9b, 0x86, 0xa5, 0x84, 0x78, 0x8e, 0xc4, 0xd8, - 0x2c, 0x9e, 0x9b, 0x8e, 0xb1, 0x19, 0x8c, 0xc4, 0xd8, 0xfc, 0x17, 0x49, 0xa0, 0xab, 0xec, 0x91, - 0xd9, 0x39, 0x3e, 0xf6, 0xb0, 0xaf, 0x8f, 0x3c, 0xae, 0xb2, 0x65, 0x0a, 0x6e, 0x53, 0xe8, 0xbe, - 0x47, 0x3c, 0x34, 0xb6, 0x4d, 0x81, 0x8a, 0xe9, 0x6e, 0x11, 0xdb, 0x66, 0x48, 0x23, 0xf6, 0x52, - 0xa4, 0xe7, 0xee, 0xa5, 0xc8, 0xcc, 0xdc, 0x4b, 0x91, 0x9d, 0xaf, 0x97, 0x22, 0x77, 0x8d, 0x5e, - 0x8a, 0xfc, 0xfb, 0xf5, 0x52, 0x14, 0x66, 0xef, 0xa5, 0x80, 0xf9, 0x7b, 0x29, 0x8a, 0xd7, 0xea, - 0xa5, 0xf8, 0x97, 0x2c, 0xac, 0x5e, 0x1e, 0xc3, 0x5f, 0x9d, 0xca, 0x47, 0x79, 0xa7, 0x7c, 0x45, - 0xd3, 0x45, 0x2a, 0xde, 0xee, 0xf0, 0x0c, 0xd8, 0x93, 0x9d, 0x3e, 0xb2, 0xde, 0x58, 0xf6, 0xa0, - 0x56, 0xa5, 0x27, 0x12, 0xeb, 0x0a, 0xd8, 0xa7, 0x38, 0x8d, 0x3d, 0x81, 0xb2, 0x41, 0xac, 0x4f, - 0x22, 0x3d, 0x43, 0xb7, 0x46, 0x26, 0xa1, 0x5b, 0x03, 0x3d, 0xe1, 0xa1, 0x19, 0x53, 0x9c, 0x2b, - 0x9c, 0x18, 0x0d, 0xb7, 0x82, 0x97, 0xbf, 0xcd, 0x58, 0x1c, 0x98, 0xfc, 0xf2, 0xc7, 0xa7, 0x04, - 0x51, 0xe0, 0x0f, 0x84, 0xc0, 0x0e, 0xde, 0xfd, 0xfa, 0xc7, 0x67, 0x47, 0x2f, 0x80, 0x91, 0xda, - 0xe6, 0xaf, 0xa1, 0xb6, 0x85, 0x39, 0xd4, 0x36, 0xee, 0xe9, 0x8b, 0xf3, 0x79, 0xfa, 0x5f, 0x09, - 0xd3, 0x9c, 0x60, 0x81, 0x52, 0x3c, 0xe7, 0x10, 0xa4, 0x15, 0x24, 0x3a, 0x57, 0xdc, 0x13, 0xe5, - 0xf9, 0xef, 0x09, 0xf4, 0xfd, 0x20, 0x73, 0x09, 0x16, 0xa9, 0xd0, 0x45, 0x12, 0x9f, 0x4f, 0x79, - 0xea, 0x12, 0x4c, 0x15, 0x0d, 0x4b, 0x99, 0xdd, 0xb0, 0xd8, 0x87, 0xc4, 0x0b, 0xea, 0x7f, 0x33, - 0xa0, 0xc4, 0x13, 0xdb, 0x6f, 0xa8, 0x33, 0xa8, 0x94, 0xdc, 0x19, 0x14, 0xea, 0x7d, 0xfa, 0x3d, - 0xf5, 0x3e, 0xf3, 0x7e, 0x7a, 0x9f, 0xbd, 0x96, 0xde, 0x7f, 0x53, 0xee, 0x3a, 0xae, 0xf7, 0x85, - 0xeb, 0xea, 0x3d, 0x5c, 0x4f, 0xef, 0x8b, 0x5f, 0x87, 0xde, 0x97, 0xdf, 0x4b, 0xef, 0x2b, 0xd7, - 0xd1, 0xfb, 0xbf, 0x4a, 0x43, 0xed, 0xb2, 0xca, 0xcc, 0xd5, 0xb7, 0x89, 0xd8, 0xdc, 0x25, 0xc7, - 0x9a, 0xbb, 0xbe, 0x0d, 0xa5, 0xa9, 0xae, 0x2e, 0x66, 0x09, 0x45, 0x2f, 0xea, 0xe7, 0x12, 0x54, - 0x26, 0x7d, 0x8d, 0xa0, 0x38, 0x73, 0x8d, 0xa0, 0x38, 0x7b, 0x5d, 0x95, 0xc9, 0x5d, 0x4f, 0x65, - 0xf2, 0x5f, 0x87, 0xca, 0x14, 0xde, 0x4b, 0x65, 0x60, 0x46, 0x95, 0x11, 0x14, 0xe5, 0x0f, 0xb2, - 0x70, 0xeb, 0x8a, 0xba, 0xdb, 0xbb, 0xfa, 0x74, 0x59, 0xa7, 0x52, 0xd4, 0xd4, 0x28, 0x87, 0x4d, - 0x8d, 0x14, 0xc1, 0x9b, 0x1a, 0x35, 0x71, 0x64, 0x92, 0x69, 0xb1, 0x5e, 0xc8, 0x54, 0x62, 0x2f, - 0x64, 0xac, 0x13, 0xf2, 0xe7, 0xe4, 0x38, 0xf3, 0xd7, 0x72, 0x9c, 0xd9, 0x6b, 0x38, 0xce, 0xdc, - 0x2f, 0x02, 0x86, 0xf7, 0xb1, 0x82, 0xea, 0x75, 0x1c, 0xe7, 0x7f, 0x4b, 0x80, 0x2e, 0x16, 0x90, - 0xaf, 0x36, 0x83, 0x8f, 0x84, 0xfe, 0x47, 0x39, 0xde, 0xff, 0x18, 0x75, 0x3f, 0x3e, 0xe2, 0xfa, - 0x9b, 0x8a, 0x15, 0xde, 0x9b, 0x96, 0x8b, 0xfb, 0x7e, 0x42, 0x97, 0xdb, 0x47, 0x50, 0x7e, 0x8d, - 0x8f, 0x3c, 0xa7, 0x7f, 0x8a, 0xfd, 0xa8, 0xeb, 0x79, 0x77, 0x41, 0x2b, 0x85, 0x60, 0x12, 0x48, - 0x8b, 0x7b, 0xcf, 0xcc, 0xbb, 0xf7, 0xfa, 0x9f, 0xc8, 0xa0, 0xc4, 0x39, 0xf8, 0x45, 0x0e, 0xff, - 0x33, 0x19, 0x16, 0x2f, 0x98, 0xcc, 0x37, 0xd5, 0x8e, 0x97, 0xbd, 0x4a, 0x9a, 0xa9, 0x99, 0xa4, - 0x99, 0x9e, 0x59, 0x9a, 0x99, 0xf9, 0xa5, 0x99, 0x9b, 0x57, 0x9a, 0xaf, 0x82, 0xc7, 0xd6, 0x3d, - 0x9a, 0x99, 0xce, 0xff, 0xd8, 0x7a, 0x49, 0x8a, 0x5b, 0xff, 0xd3, 0xf0, 0x19, 0xb7, 0xcb, 0x9f, - 0x6a, 0xe6, 0x5d, 0x99, 0x3f, 0xce, 0x32, 0x46, 0x75, 0xa1, 0x53, 0xb1, 0x6c, 0x98, 0x26, 0x3b, - 0xf6, 0xd8, 0xe3, 0xac, 0x48, 0x9a, 0x12, 0x1f, 0x67, 0x23, 0xea, 0xfa, 0xf7, 0xa1, 0x32, 0xfd, - 0x2c, 0x81, 0xee, 0x43, 0xda, 0xb2, 0x8f, 0x9d, 0x0b, 0x8f, 0xdb, 0xc2, 0x73, 0x13, 0x25, 0x58, - 0x7b, 0x05, 0x25, 0xb1, 0xc5, 0x1b, 0xad, 0x00, 0x6a, 0x1c, 0x36, 0x5b, 0x6d, 0x7d, 0x7b, 0xb7, - 0x71, 0x70, 0xa0, 0xee, 0xe9, 0x5b, 0xed, 0xde, 0xae, 0xb2, 0x70, 0x11, 0xbe, 0xa7, 0xee, 0xf4, - 0x14, 0x09, 0x7d, 0x00, 0x4b, 0xd3, 0x70, 0xad, 0xf5, 0x62, 0xb7, 0xa7, 0xc8, 0x6b, 0xff, 0x28, - 0xc1, 0x8d, 0xc4, 0xdb, 0x07, 0x29, 0x50, 0xda, 0xdd, 0x78, 0xfa, 0x44, 0x7f, 0xb6, 0xf1, 0xb8, - 0xa3, 0x6f, 0x3e, 0x56, 0x16, 0xa6, 0x21, 0x4f, 0x1f, 0x2b, 0x12, 0x5a, 0x84, 0x32, 0x85, 0xfc, - 0xd2, 0xe3, 0xcf, 0x18, 0x91, 0x1c, 0x03, 0x3d, 0x7d, 0xac, 0xa4, 0xd0, 0x4d, 0xb8, 0xd1, 0x69, - 0x6b, 0x3d, 0xad, 0xd1, 0xea, 0xe9, 0x53, 0x4b, 0xa6, 0x2f, 0x41, 0x3d, 0x7d, 0xac, 0x64, 0xd0, - 0x2a, 0xac, 0x4c, 0xa3, 0xc2, 0x8f, 0x64, 0x2f, 0xc3, 0x3d, 0x7d, 0xac, 0xe4, 0xd6, 0xb6, 0x78, - 0x3f, 0x78, 0x64, 0x74, 0x68, 0x19, 0x94, 0xa6, 0xba, 0xd3, 0x38, 0xdc, 0xeb, 0xe9, 0x3b, 0xad, - 0x3d, 0xb5, 0xf7, 0x6b, 0x1d, 0x55, 0x59, 0x40, 0x39, 0x48, 0xed, 0x77, 0x9e, 0x28, 0x12, 0xf9, - 0xd1, 0x7e, 0xf1, 0x42, 0x91, 0x19, 0x64, 0x53, 0x49, 0xad, 0xed, 0x06, 0x27, 0x15, 0xb4, 0x94, - 0x8a, 0x4b, 0x74, 0xb4, 0x76, 0xaf, 0xbd, 0xdd, 0xde, 0x53, 0x16, 0x50, 0x1e, 0xd2, 0x5a, 0x6f, - 0xbf, 0xc3, 0xd6, 0xe8, 0x6a, 0x3d, 0x45, 0x46, 0x65, 0x28, 0xbc, 0x52, 0xb7, 0xba, 0xed, 0xed, - 0x97, 0x6a, 0x4f, 0x49, 0xad, 0x1d, 0xc0, 0x8d, 0xc4, 0x1e, 0x55, 0x74, 0x0f, 0xee, 0x04, 0x0b, - 0x76, 0xd5, 0x17, 0xfb, 0xea, 0x41, 0x4f, 0x6d, 0x52, 0xee, 0xc4, 0xf5, 0x89, 0xc4, 0xf7, 0xba, - 0x11, 0x44, 0x5a, 0x7b, 0x14, 0xeb, 0x91, 0xe5, 0xfd, 0x83, 0x05, 0xc8, 0xb4, 0x0e, 0x9a, 0xea, - 0x57, 0xca, 0x02, 0x61, 0xa0, 0xd7, 0xda, 0x57, 0xbb, 0xbd, 0x06, 0x61, 0x6c, 0xed, 0x18, 0xaa, - 0xb1, 0xe6, 0x43, 0xa2, 0x24, 0xad, 0xfd, 0xc6, 0x0b, 0x55, 0xef, 0x1e, 0xee, 0xec, 0xb4, 0xbe, - 0xd2, 0x83, 0x99, 0xab, 0xb0, 0x32, 0x05, 0x17, 0x96, 0x41, 0x77, 0xe0, 0xd6, 0x14, 0xee, 0xa0, - 0x7d, 0xa0, 0xea, 0xed, 0x2f, 0x55, 0xed, 0x95, 0xd6, 0xea, 0xa9, 0x8a, 0xbc, 0xf6, 0x43, 0x50, - 0xe2, 0x8f, 0xf4, 0x64, 0x41, 0xf5, 0x85, 0xa6, 0x76, 0xbb, 0x7a, 0xb7, 0x7d, 0xa8, 0x6d, 0xab, - 0x3a, 0x91, 0xbc, 0xfe, 0x4a, 0xdd, 0x62, 0x1f, 0x4b, 0xc0, 0x75, 0x9b, 0x2f, 0x15, 0x69, 0xed, - 0x2f, 0x24, 0x28, 0x89, 0x4f, 0xf7, 0x68, 0x09, 0xaa, 0x01, 0x71, 0xaf, 0xa1, 0xf5, 0x5a, 0x07, - 0x2f, 0x94, 0x05, 0xa2, 0x69, 0x1c, 0xc8, 0x1f, 0x92, 0x24, 0x01, 0xa4, 0x1e, 0x34, 0x09, 0x95, - 0x2c, 0x4c, 0xdd, 0x6e, 0xef, 0x77, 0xf6, 0xd4, 0x9e, 0xaa, 0xa4, 0x04, 0x3a, 0xfe, 0xd2, 0x94, - 0x46, 0x08, 0x2a, 0xc1, 0x6a, 0x5b, 0x6d, 0xad, 0xa7, 0x36, 0x95, 0x0c, 0xaa, 0xc1, 0x32, 0x87, - 0xed, 0xb5, 0xf6, 0x5b, 0x3d, 0x5d, 0x53, 0x1b, 0xdb, 0xbb, 0x6a, 0x53, 0xc9, 0xae, 0x1d, 0xf2, - 0x7f, 0x50, 0xe1, 0xc5, 0x2f, 0x04, 0x95, 0xe0, 0x30, 0xf7, 0x5b, 0x5f, 0x31, 0xf6, 0x56, 0x00, - 0x35, 0x0f, 0x1b, 0x7b, 0xa1, 0xc5, 0x35, 0x5e, 0xa8, 0x07, 0xc4, 0x14, 0x57, 0x61, 0x65, 0x1a, - 0xbe, 0xd7, 0x53, 0xb5, 0x83, 0x06, 0x11, 0xe2, 0xc6, 0xbf, 0x65, 0x20, 0xcb, 0x0b, 0xe6, 0xbf, - 0x0a, 0x45, 0xa1, 0x6b, 0x00, 0x5d, 0xd5, 0x4b, 0xb0, 0x9a, 0xd4, 0x15, 0x83, 0x1a, 0x50, 0x12, - 0xdd, 0x2b, 0x8a, 0xa2, 0xae, 0x04, 0xaf, 0xfb, 0x8e, 0x25, 0x98, 0x31, 0x5c, 0x58, 0x62, 0xca, - 0xbd, 0x26, 0x2f, 0xa1, 0x02, 0x44, 0x5d, 0x3d, 0x28, 0x8a, 0x3c, 0x2f, 0x34, 0x26, 0xad, 0xde, - 0x4a, 0xc4, 0xf1, 0x36, 0xa0, 0xcf, 0x01, 0xa2, 0xbe, 0x16, 0x24, 0xbe, 0x5e, 0xc6, 0x9a, 0x5d, - 0x92, 0xb9, 0xe8, 0x41, 0x8d, 0x8a, 0x2d, 0xa1, 0x98, 0x8a, 0x66, 0x69, 0x97, 0x48, 0x5e, 0xf5, - 0x0b, 0xe2, 0x25, 0x0c, 0xd7, 0x0f, 0x4b, 0x49, 0xe8, 0xf2, 0xbe, 0x89, 0xe4, 0x15, 0x3a, 0xb0, - 0x42, 0x57, 0xb8, 0xf8, 0x8c, 0xf4, 0xee, 0x56, 0x8a, 0xe4, 0x15, 0xbf, 0x84, 0x9b, 0x74, 0xc5, - 0xa4, 0xec, 0x0d, 0xcd, 0xd4, 0x54, 0x91, 0xbc, 0x6e, 0x13, 0x94, 0x68, 0xdd, 0x0b, 0x3a, 0x79, - 0x31, 0x36, 0x4e, 0x5c, 0x65, 0x6b, 0xe7, 0xd7, 0xef, 0x0d, 0x2c, 0xff, 0x64, 0x72, 0xb4, 0xde, - 0x77, 0x46, 0x8f, 0x38, 0xc1, 0xa3, 0xa0, 0x5b, 0x3f, 0x00, 0xfc, 0xb5, 0x5c, 0xde, 0xb3, 0xce, - 0xf0, 0x4b, 0xd6, 0x5b, 0xe8, 0x3b, 0xff, 0x21, 0x57, 0xf8, 0xf8, 0xf9, 0x73, 0x0a, 0x38, 0xca, - 0xd2, 0x29, 0x9b, 0xff, 0x17, 0x00, 0x00, 0xff, 0xff, 0xbf, 0x6f, 0x82, 0x0b, 0x92, 0x3a, 0x00, - 0x00, + // 4232 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x3b, 0x4d, 0x73, 0x1c, 0x49, + 0x56, 0xaa, 0xfe, 0xee, 0xd7, 0x5f, 0xa5, 0x94, 0x2c, 0xb7, 0xe5, 0xf5, 0xda, 0xdb, 0xde, 0x19, + 0x7b, 0xe4, 0x59, 0xd9, 0x48, 0x5e, 0x7b, 0xd6, 0x30, 0xcb, 0xb4, 0xd4, 0x25, 0x77, 0xaf, 0x25, + 0x75, 0x6f, 0x75, 0x6b, 0x3c, 0x7c, 0x04, 0x15, 0xa5, 0xae, 0x54, 0xab, 0x42, 0xd5, 0x55, 0xbd, + 0x55, 0xd5, 0xb2, 0xb5, 0x37, 0x2e, 0x44, 0x40, 0x00, 0x41, 0x40, 0x70, 0x81, 0x03, 0x17, 0x82, + 0x03, 0xec, 0x2f, 0xf0, 0x89, 0x0b, 0xa7, 0x3d, 0x10, 0x01, 0xb1, 0x47, 0x82, 0x3b, 0x04, 0x04, + 0x17, 0x4e, 0x5c, 0x88, 0xfc, 0xa8, 0xaa, 0xec, 0x52, 0x49, 0x6e, 0x59, 0xc3, 0x70, 0xd9, 0x93, + 0x3a, 0xdf, 0x47, 0xd6, 0xcb, 0x97, 0xef, 0xbd, 0x7c, 0xf9, 0xf2, 0x09, 0x96, 0x2d, 0xf3, 0x14, + 0x9f, 0x98, 0xbe, 0x86, 0x47, 0x2e, 0xf6, 0xbc, 0xf5, 0x89, 0xeb, 0xf8, 0x0e, 0xca, 0x73, 0xe8, + 0x6a, 0x88, 0x1e, 0x3b, 0x06, 0xb6, 0x38, 0x7a, 0x75, 0xd9, 0x72, 0x46, 0x23, 0xec, 0x3e, 0x76, + 0x26, 0xbe, 0xe9, 0xd8, 0x1c, 0xda, 0xf8, 0x9f, 0x34, 0xa0, 0xbe, 0xaf, 0xbb, 0xbe, 0x42, 0xa7, + 0x52, 0xf1, 0x4f, 0xa6, 0xd8, 0xf3, 0xd1, 0x6d, 0x28, 0xba, 0x8e, 0x33, 0xd6, 0x6c, 0x7d, 0x8c, + 0xeb, 0xd2, 0x3d, 0xe9, 0x61, 0x51, 0x2d, 0x10, 0xc0, 0xbe, 0x3e, 0xc6, 0xe8, 0xfb, 0x50, 0xf0, + 0xf1, 0x78, 0x62, 0xe9, 0x3e, 0xae, 0xa7, 0xee, 0x49, 0x0f, 0x4b, 0x1b, 0x37, 0xd7, 0xf9, 0x27, + 0xd7, 0x07, 0x1c, 0xd1, 0x77, 0xa6, 0xee, 0x10, 0xb7, 0x17, 0xd4, 0x90, 0x14, 0x7d, 0x0c, 0xe9, + 0x37, 0xf8, 0xb0, 0x9e, 0xa6, 0x1c, 0x28, 0xe4, 0x78, 0x8d, 0x0f, 0x43, 0x62, 0x42, 0x80, 0x3e, + 0x85, 0xec, 0x18, 0x1b, 0xa6, 0x5e, 0xcf, 0x50, 0xca, 0xe5, 0x90, 0x72, 0x8f, 0x40, 0x43, 0x5a, + 0x46, 0x84, 0x3e, 0x83, 0xdc, 0xc4, 0xc5, 0x1e, 0xf6, 0xeb, 0xd9, 0x7b, 0xd2, 0xc3, 0xea, 0xc6, + 0xb7, 0x43, 0x72, 0xc5, 0x1e, 0x3a, 0x86, 0x69, 0x8f, 0xba, 0x6c, 0xc1, 0x3d, 0x4a, 0xd5, 0x96, + 0x54, 0x4e, 0x8f, 0x9e, 0x41, 0x41, 0x37, 0x4e, 0x75, 0x7b, 0x88, 0x8d, 0x7a, 0x8e, 0x7e, 0xaa, + 0x7e, 0x11, 0x6f, 0x5b, 0x52, 0x43, 0x5a, 0xd4, 0x80, 0xd2, 0x44, 0xf7, 0x3c, 0xff, 0xd8, 0x75, + 0xa6, 0xa3, 0xe3, 0x3a, 0xdc, 0x93, 0x1e, 0x16, 0xda, 0x92, 0x2a, 0x02, 0xd1, 0x27, 0x90, 0x77, + 0xa6, 0xfe, 0x64, 0xea, 0x7b, 0xf5, 0xfc, 0xbd, 0xf4, 0xc3, 0xd2, 0x46, 0x2d, 0x9c, 0xba, 0x4b, + 0xe1, 0x6a, 0x80, 0x47, 0x4f, 0x20, 0xef, 0xf9, 0x8e, 0xab, 0x8f, 0x70, 0xbd, 0x40, 0xa5, 0x58, + 0x09, 0x49, 0xfb, 0x0c, 0xbe, 0xed, 0xd8, 0x47, 0xe6, 0x48, 0x0d, 0xc8, 0xd0, 0x06, 0x14, 0xde, + 0xe0, 0xc3, 0x63, 0xc7, 0x39, 0xf1, 0xea, 0x45, 0x3a, 0xfb, 0x8a, 0xa8, 0x4d, 0x82, 0xe0, 0x2c, + 0x21, 0xdd, 0x56, 0x01, 0x72, 0x1e, 0xd5, 0xdc, 0x16, 0x40, 0x01, 0xf3, 0xd5, 0x35, 0xfe, 0x58, + 0x82, 0xea, 0xec, 0x8e, 0xa1, 0x15, 0xc8, 0x59, 0xfa, 0x99, 0x33, 0xf5, 0xf9, 0xb6, 0xf3, 0x11, + 0xba, 0x03, 0xa0, 0x4f, 0x0d, 0xd3, 0xd1, 0x1c, 0xdb, 0x3a, 0xa3, 0xdb, 0x5e, 0x50, 0x8b, 0x14, + 0xd2, 0xb5, 0xad, 0x33, 0x82, 0x3e, 0x35, 0x0d, 0xcc, 0xd1, 0x69, 0x86, 0xa6, 0x10, 0x8a, 0xfe, + 0x18, 0x6a, 0xc3, 0xa9, 0xe7, 0x3b, 0x63, 0xed, 0x50, 0xf7, 0xb0, 0x36, 0x75, 0x2d, 0xba, 0xbb, + 0x45, 0xb5, 0xc2, 0xc0, 0x5b, 0xba, 0x87, 0x0f, 0x5c, 0xab, 0xf1, 0xfb, 0x12, 0x14, 0x43, 0x83, + 0x40, 0x32, 0xa4, 0x09, 0x25, 0x13, 0x84, 0xfc, 0xbc, 0xa6, 0x14, 0x9f, 0x02, 0xd2, 0xdf, 0xe8, + 0xa6, 0xaf, 0x79, 0xc4, 0xe2, 0x35, 0xcf, 0x1c, 0xd9, 0x3a, 0x13, 0xa4, 0xa0, 0xca, 0x14, 0x43, + 0x5d, 0xa1, 0x4f, 0xe1, 0x8d, 0x7f, 0x90, 0xa0, 0x24, 0x98, 0x1c, 0x7a, 0x0e, 0x55, 0x36, 0xb9, + 0xef, 0xea, 0xc3, 0x13, 0xcd, 0x34, 0x98, 0x60, 0x5b, 0xb5, 0x77, 0xbd, 0x32, 0x45, 0x0c, 0x08, + 0xbc, 0xd3, 0x6a, 0x2f, 0xa8, 0xe2, 0xd8, 0x40, 0x6d, 0x58, 0x9c, 0xe8, 0xae, 0x6f, 0x0e, 0xcd, + 0x89, 0x6e, 0xfb, 0x1a, 0xc5, 0x71, 0xc7, 0xb9, 0x15, 0x6e, 0x5c, 0x2f, 0xa2, 0xf8, 0x92, 0x10, + 0xb4, 0x17, 0x54, 0x79, 0x12, 0x83, 0xa1, 0x35, 0xc8, 0xd2, 0xc5, 0x72, 0x27, 0x8a, 0x5c, 0xa3, + 0x49, 0xa0, 0x7c, 0xd3, 0x19, 0xc9, 0x56, 0x1e, 0xb2, 0xf4, 0x4b, 0x8d, 0xdf, 0x01, 0x39, 0x3e, + 0x39, 0x5a, 0x85, 0x82, 0x69, 0x60, 0xdb, 0x37, 0xfd, 0xb3, 0xc0, 0xbd, 0x83, 0x31, 0x5a, 0x87, + 0xa5, 0x89, 0x8b, 0x8f, 0xb0, 0xab, 0x79, 0x43, 0x17, 0x63, 0x5b, 0xf3, 0x8e, 0x75, 0x17, 0x73, + 0x65, 0x2f, 0x32, 0x54, 0x9f, 0x62, 0xfa, 0x04, 0xd1, 0xf8, 0x2d, 0x28, 0x09, 0x9f, 0x47, 0x77, + 0xa1, 0x34, 0xd4, 0x27, 0xfe, 0xd4, 0xc5, 0x9a, 0x6e, 0xb1, 0xcd, 0x2b, 0xa8, 0xc0, 0x41, 0x4d, + 0xcb, 0x42, 0x8f, 0x20, 0xe7, 0x3a, 0x53, 0x1f, 0x7b, 0xf5, 0x14, 0x35, 0xde, 0xa5, 0xd9, 0x55, + 0xa8, 0x04, 0xa7, 0x72, 0x92, 0xc6, 0x7f, 0x49, 0x00, 0x11, 0x18, 0x3d, 0x80, 0x42, 0x4c, 0xfb, + 0xf0, 0xae, 0x97, 0xf7, 0x43, 0xc5, 0xf3, 0x9f, 0x06, 0xda, 0x84, 0x65, 0x51, 0xe7, 0xe1, 0x62, + 0xc9, 0x2a, 0x8a, 0xed, 0x05, 0x75, 0x49, 0xc0, 0x76, 0x82, 0x95, 0xff, 0x08, 0x44, 0x95, 0x6b, + 0x27, 0xa6, 0x6d, 0x50, 0x4d, 0x57, 0x37, 0xee, 0x24, 0xed, 0x53, 0xc7, 0x3e, 0x72, 0xd6, 0x5f, + 0x99, 0xb6, 0xd1, 0x5e, 0x50, 0x6b, 0x02, 0x23, 0x01, 0xa1, 0xc7, 0x90, 0x1f, 0x1e, 0xeb, 0xb6, + 0x8d, 0x99, 0x81, 0x55, 0x37, 0x6e, 0xc4, 0x36, 0x8b, 0x21, 0xd5, 0x80, 0x8a, 0xec, 0xd7, 0x58, + 0xf7, 0x87, 0xc7, 0x8d, 0x43, 0x80, 0x96, 0xee, 0xeb, 0xf3, 0xaa, 0x73, 0x13, 0x8a, 0x1e, 0xb6, + 0xf0, 0xd0, 0x77, 0xdc, 0x40, 0xa3, 0xd1, 0xa7, 0xc8, 0x44, 0x7d, 0x8e, 0x55, 0x23, 0xba, 0xc6, + 0x14, 0xca, 0x22, 0xea, 0xff, 0x56, 0xaf, 0xd1, 0xd2, 0xfe, 0x29, 0x0d, 0xb5, 0x58, 0x68, 0x45, + 0xcb, 0x90, 0x7d, 0x63, 0x1a, 0xfe, 0x31, 0xfd, 0x6e, 0x56, 0x65, 0x03, 0x12, 0x86, 0x8e, 0xb1, + 0x39, 0x3a, 0xf6, 0xe9, 0xcc, 0x59, 0x95, 0x8f, 0x08, 0xb5, 0x81, 0x27, 0xfe, 0x31, 0xdd, 0x97, + 0xac, 0xca, 0x06, 0xe8, 0x5b, 0x50, 0x3c, 0x72, 0xf5, 0x31, 0x76, 0xc9, 0x91, 0x94, 0xa1, 0x98, + 0x08, 0x80, 0x9e, 0x42, 0x89, 0x05, 0x8d, 0xa1, 0x63, 0xe0, 0x21, 0x3f, 0x27, 0x96, 0xe2, 0xbe, + 0x63, 0xe0, 0xa1, 0xca, 0x82, 0x0b, 0xfd, 0x8d, 0xee, 0x43, 0x85, 0x71, 0x1d, 0x9a, 0x3e, 0x9d, + 0x37, 0x47, 0xe7, 0x2d, 0x33, 0xef, 0x62, 0x30, 0xf4, 0x00, 0x6a, 0x8c, 0xe8, 0xc8, 0x25, 0x27, + 0xa7, 0x3d, 0x3c, 0xab, 0xe7, 0x29, 0x59, 0x95, 0x82, 0x77, 0x02, 0x28, 0x91, 0x81, 0x05, 0x0f, + 0x26, 0x43, 0x21, 0x26, 0x03, 0xf5, 0x4a, 0x2e, 0xc3, 0x69, 0xf8, 0x9b, 0xc8, 0xc0, 0xb8, 0x02, + 0x19, 0x8a, 0x4c, 0x06, 0x0a, 0x0c, 0x64, 0xf8, 0x14, 0xd0, 0x09, 0x3e, 0xd3, 0xe8, 0x7a, 0x35, + 0xd3, 0xf6, 0xb1, 0x7b, 0xaa, 0x5b, 0xf4, 0x58, 0x92, 0x54, 0xf9, 0x04, 0x9f, 0xed, 0x10, 0x44, + 0x87, 0xc3, 0xd1, 0x83, 0x60, 0x59, 0x3f, 0x99, 0xea, 0x16, 0xd9, 0xb9, 0x12, 0x99, 0x72, 0x2b, + 0x55, 0x97, 0xf8, 0xd2, 0x7e, 0xcc, 0xe0, 0x84, 0x90, 0x7d, 0x3b, 0x20, 0x2c, 0x47, 0x84, 0x14, + 0xc1, 0x09, 0x1b, 0x7f, 0x98, 0x82, 0x1c, 0x3b, 0xd4, 0xd0, 0x27, 0x90, 0x39, 0x32, 0x2d, 0x96, + 0x31, 0x88, 0x8e, 0xbd, 0x63, 0x5a, 0x98, 0x91, 0xb4, 0x17, 0x54, 0x4a, 0x82, 0x1e, 0x43, 0xce, + 0xf3, 0x5d, 0xac, 0x8f, 0x79, 0x24, 0xbc, 0x21, 0x9c, 0x7a, 0x04, 0x1c, 0x92, 0x73, 0x32, 0xf4, + 0x02, 0x0a, 0x1e, 0x1e, 0x8d, 0xb1, 0xed, 0x7b, 0x3c, 0xfc, 0x7d, 0x2b, 0x62, 0x61, 0x08, 0x6c, + 0xcc, 0x7c, 0x28, 0xa4, 0x47, 0xeb, 0x90, 0x33, 0xc7, 0xfa, 0x08, 0x7b, 0xe7, 0x72, 0x8a, 0x0e, + 0x01, 0x47, 0xdf, 0x62, 0x54, 0xe2, 0x99, 0x9c, 0x9b, 0xeb, 0x4c, 0x26, 0xe7, 0xeb, 0x90, 0x82, + 0x1a, 0x7f, 0x20, 0x01, 0x44, 0x62, 0xa0, 0xef, 0x43, 0x91, 0xac, 0x57, 0xf3, 0xcf, 0x26, 0x4c, + 0x2f, 0xd5, 0x78, 0x9a, 0xc1, 0xa4, 0x1e, 0x9c, 0x4d, 0xb0, 0x5a, 0x38, 0xe2, 0xbf, 0x48, 0x80, + 0x26, 0xbf, 0x27, 0xba, 0x7f, 0xcc, 0x7c, 0x4b, 0x0d, 0xc7, 0xe8, 0x13, 0x90, 0x0d, 0xd3, 0xd3, + 0x0f, 0x2d, 0xac, 0x8d, 0x75, 0xdb, 0x3c, 0xc2, 0x9e, 0xcf, 0xcf, 0xba, 0x1a, 0x87, 0xef, 0x71, + 0x70, 0xe3, 0x35, 0x94, 0x45, 0x75, 0xa2, 0x4d, 0x28, 0xd0, 0xbc, 0x6f, 0xe8, 0x58, 0x5c, 0x98, + 0x9b, 0x31, 0xbd, 0xf7, 0x38, 0x5a, 0x0d, 0x09, 0x11, 0x82, 0xcc, 0xd4, 0xb5, 0x58, 0x70, 0x29, + 0xaa, 0xf4, 0x77, 0xe3, 0xaf, 0x33, 0xb0, 0x94, 0xa0, 0x75, 0xb2, 0x4b, 0xb1, 0x0f, 0x7c, 0x3b, + 0x79, 0x97, 0x12, 0xbe, 0xf3, 0x00, 0x6a, 0x64, 0x8d, 0x24, 0xe7, 0xd4, 0xc8, 0x31, 0x63, 0xbe, + 0xe5, 0x4b, 0xaf, 0x06, 0xe0, 0x1e, 0x85, 0x12, 0xb7, 0x98, 0x58, 0xfa, 0x99, 0x65, 0x7a, 0x3e, + 0xcb, 0x50, 0xd3, 0x94, 0xac, 0x1c, 0x00, 0x69, 0x96, 0xfa, 0x29, 0x20, 0xf2, 0x61, 0x6d, 0x96, + 0xb2, 0x44, 0x29, 0x65, 0x82, 0xe9, 0x89, 0xd4, 0x9f, 0x80, 0xcc, 0xad, 0x45, 0x33, 0xa6, 0xae, + 0x4e, 0x42, 0x13, 0xb5, 0x95, 0x8a, 0x5a, 0xe3, 0xf0, 0x16, 0x07, 0x23, 0x45, 0x10, 0xd3, 0x9b, + 0x1e, 0x11, 0x31, 0x81, 0xae, 0xf4, 0x02, 0x7b, 0xec, 0x53, 0x9a, 0x68, 0x11, 0x6c, 0x9c, 0xb8, + 0x8b, 0x85, 0xc4, 0x5d, 0x44, 0xf7, 0x21, 0xe5, 0x6d, 0xd2, 0xb8, 0x55, 0xda, 0x58, 0x8c, 0x3e, + 0xb2, 0x79, 0x30, 0xb1, 0x1c, 0x9d, 0x9c, 0x3e, 0x29, 0x6f, 0x93, 0xa4, 0xd7, 0xa3, 0xe1, 0x84, + 0xdb, 0x6b, 0x94, 0x5e, 0xbf, 0xdc, 0xee, 0x85, 0x64, 0x84, 0x00, 0x3d, 0x81, 0xac, 0xfe, 0xd3, + 0xa9, 0x8b, 0x69, 0xa0, 0x12, 0x73, 0xde, 0x26, 0x81, 0x6e, 0x59, 0xce, 0x61, 0x48, 0xcf, 0x08, + 0x89, 0xab, 0xea, 0x96, 0xd9, 0xed, 0xf7, 0x69, 0xf8, 0x11, 0x5d, 0xb5, 0x49, 0xc1, 0x21, 0x3d, + 0x27, 0x23, 0xce, 0xc0, 0xb2, 0xdb, 0xc6, 0x7f, 0xa4, 0xa1, 0x24, 0xb8, 0x18, 0x59, 0x74, 0x70, + 0x9a, 0x85, 0x91, 0x4a, 0x62, 0x6a, 0xe6, 0xf0, 0x30, 0x50, 0x85, 0xe7, 0x42, 0x2a, 0xf9, 0x5c, + 0x48, 0xcf, 0x9c, 0x0b, 0x09, 0xb6, 0x93, 0x49, 0xb4, 0x9d, 0xe6, 0xf9, 0xdd, 0xcb, 0xc6, 0xbc, + 0x92, 0x0a, 0x7c, 0xc9, 0xce, 0x3d, 0x85, 0x12, 0x8d, 0x13, 0x3c, 0x96, 0xe7, 0x62, 0xb1, 0x9c, + 0xb2, 0xf3, 0x58, 0x6e, 0x86, 0xbf, 0x13, 0xf7, 0x3b, 0x7f, 0xd9, 0x7e, 0x17, 0xe6, 0xda, 0xef, + 0xe2, 0xdc, 0xfb, 0x0d, 0x57, 0xdf, 0xef, 0xd2, 0x55, 0xf7, 0xfb, 0xe7, 0x12, 0x54, 0x66, 0x22, + 0x24, 0x5f, 0x8b, 0x34, 0xd7, 0x5a, 0x52, 0x73, 0xaf, 0x25, 0x7d, 0xf5, 0xb5, 0x64, 0xe6, 0x5b, + 0x0b, 0xd0, 0x00, 0x46, 0x0e, 0x38, 0xb7, 0xf1, 0xef, 0x19, 0x28, 0x04, 0x92, 0xa2, 0x06, 0x80, + 0x3e, 0x1c, 0x62, 0xcf, 0xd3, 0x4e, 0x30, 0x4f, 0x9a, 0xb7, 0xd2, 0x7f, 0xdf, 0x4b, 0xa9, 0x45, + 0x06, 0x7e, 0x85, 0xcf, 0xd0, 0x6d, 0xc8, 0x79, 0x78, 0xe8, 0x62, 0x96, 0xb5, 0x70, 0x3c, 0x07, + 0xa1, 0x87, 0x50, 0xf1, 0xb0, 0xe7, 0x99, 0x8e, 0xad, 0xf9, 0xce, 0x09, 0xb6, 0x59, 0x2c, 0x62, + 0x34, 0x65, 0x8e, 0x19, 0x10, 0x04, 0x7a, 0x04, 0x35, 0xdd, 0xf3, 0xa6, 0x63, 0xac, 0xb9, 0x8e, + 0x85, 0x35, 0xdd, 0xb5, 0xe9, 0xe1, 0x4b, 0x69, 0x25, 0xb5, 0xc2, 0x70, 0xaa, 0x63, 0xe1, 0xa6, + 0x6b, 0xa3, 0x1f, 0xc3, 0x4d, 0x91, 0x18, 0xbf, 0xf5, 0xb1, 0x6b, 0xeb, 0x16, 0xc9, 0xe4, 0x2a, + 0x94, 0x69, 0xf5, 0x5d, 0x6f, 0x39, 0x62, 0x51, 0x38, 0xbe, 0xd3, 0x22, 0xdf, 0x4d, 0x42, 0x18, + 0xc4, 0xc9, 0x5c, 0x3c, 0x22, 0x21, 0x90, 0x05, 0x56, 0x3e, 0x22, 0x87, 0x12, 0xb6, 0x8d, 0x89, + 0x63, 0xda, 0x3e, 0xf7, 0xae, 0x70, 0x4c, 0x78, 0x0e, 0xa7, 0xc3, 0x13, 0x7e, 0x0f, 0x2f, 0xaa, + 0x7c, 0x84, 0x1e, 0x82, 0x7c, 0xe4, 0xb8, 0x43, 0xac, 0x91, 0xa3, 0x4b, 0xf3, 0xfc, 0x33, 0x8b, + 0x9d, 0xa9, 0x05, 0xb5, 0x4a, 0xe1, 0x3d, 0xdd, 0x3f, 0xee, 0x13, 0x28, 0xfa, 0x02, 0x0a, 0x63, + 0xec, 0xeb, 0x86, 0xee, 0xeb, 0xfc, 0xd2, 0x7c, 0xf7, 0x9c, 0xbd, 0xac, 0xef, 0x71, 0x0a, 0xc5, + 0xf6, 0xdd, 0x33, 0xa6, 0x8f, 0x90, 0x0b, 0xdd, 0x81, 0xbc, 0xaf, 0x8f, 0x46, 0xa6, 0x3d, 0xa2, + 0xce, 0xc3, 0xf5, 0x15, 0xc0, 0xd0, 0x53, 0x58, 0x1a, 0x3a, 0xb6, 0x4f, 0x63, 0xbc, 0xe9, 0x4d, + 0x1c, 0xcf, 0xa4, 0x61, 0xbe, 0x18, 0x91, 0x22, 0x8e, 0x6f, 0x45, 0x68, 0x72, 0xe7, 0x9a, 0xb8, + 0xce, 0xdb, 0x33, 0xee, 0x3f, 0x51, 0xea, 0xd0, 0x23, 0xd0, 0xe0, 0xce, 0x45, 0x49, 0x56, 0x7f, + 0x15, 0x2a, 0x33, 0x02, 0x92, 0x1b, 0x6c, 0x68, 0x2d, 0x2a, 0xf9, 0x49, 0xc2, 0xda, 0xa9, 0x6e, + 0x4d, 0x31, 0x3f, 0xda, 0xd8, 0xe0, 0x45, 0xea, 0x33, 0xa9, 0x71, 0x0a, 0xc5, 0xd0, 0xe0, 0xd1, + 0x47, 0x50, 0x1a, 0xba, 0x98, 0x26, 0xd0, 0xba, 0xe5, 0x89, 0xe6, 0x26, 0xc2, 0x05, 0xad, 0xa7, + 0x66, 0xb4, 0x1e, 0x0a, 0x9d, 0x7e, 0xaf, 0xd0, 0x8d, 0xdf, 0x93, 0xa0, 0x16, 0xf3, 0x1f, 0xf4, + 0x31, 0x94, 0xf5, 0xe1, 0xd0, 0x99, 0xda, 0xbe, 0x50, 0x02, 0x62, 0x3a, 0x2a, 0x71, 0x04, 0x3d, + 0x36, 0xbf, 0x0b, 0xc1, 0x90, 0x7a, 0x85, 0x60, 0xf5, 0xc0, 0xe1, 0xc4, 0x2d, 0x3e, 0x82, 0x2a, + 0x51, 0xac, 0x6e, 0xda, 0xd8, 0x15, 0x0f, 0xec, 0x4a, 0x08, 0x25, 0x93, 0x35, 0xfe, 0x52, 0x82, + 0xb2, 0xe8, 0x95, 0xd7, 0x77, 0xb9, 0xaf, 0xd1, 0x90, 0x1b, 0xbf, 0x0d, 0x25, 0x41, 0x79, 0x09, + 0xb5, 0x89, 0x55, 0x28, 0x4c, 0x3d, 0xe2, 0x42, 0xe3, 0x60, 0x73, 0xc3, 0x31, 0xba, 0x0b, 0x85, + 0x89, 0xee, 0x79, 0x6f, 0x1c, 0x97, 0xdd, 0x28, 0xb9, 0x9c, 0x21, 0xb0, 0xf1, 0x77, 0x12, 0x2c, + 0xee, 0x9a, 0xde, 0x55, 0xca, 0x70, 0x0f, 0xa1, 0xc8, 0xea, 0x7f, 0xc4, 0xd5, 0xd9, 0xe2, 0x4b, + 0xef, 0x7a, 0x05, 0x06, 0xeb, 0xb4, 0xd4, 0xe0, 0x17, 0xf5, 0x67, 0x7d, 0xe8, 0x9b, 0xa7, 0x98, + 0xa7, 0x89, 0x7c, 0x84, 0x9e, 0x03, 0x4c, 0xc8, 0x39, 0xc6, 0xc2, 0x51, 0x26, 0x16, 0x53, 0x69, + 0x2c, 0xea, 0xe9, 0x23, 0xd3, 0xa6, 0x79, 0x8f, 0x5a, 0x24, 0xb4, 0x14, 0xd8, 0xf8, 0x5d, 0x09, + 0x90, 0x28, 0xad, 0x37, 0x71, 0x6c, 0x8f, 0x24, 0x51, 0x59, 0xd3, 0xc7, 0x63, 0x62, 0xae, 0xb3, + 0x17, 0x7b, 0x46, 0x47, 0xee, 0xcb, 0x2a, 0xa3, 0x40, 0x5f, 0x40, 0xcd, 0xc6, 0x6f, 0x7d, 0x4d, + 0xf8, 0x7e, 0xea, 0x3d, 0xdf, 0xaf, 0x10, 0x86, 0x5e, 0x28, 0xc3, 0xe7, 0xb0, 0xd8, 0xf7, 0x9d, + 0xc9, 0xac, 0xc2, 0x66, 0x74, 0x22, 0x5d, 0xa2, 0x93, 0xc6, 0xbf, 0x02, 0x40, 0x24, 0xd6, 0xfc, + 0x8c, 0xa8, 0x01, 0x79, 0xba, 0x27, 0xa1, 0xd2, 0x8b, 0xef, 0x7a, 0x39, 0x02, 0xe9, 0xb4, 0x54, + 0xf6, 0xd7, 0x98, 0xdd, 0xb7, 0x4a, 0x6c, 0xdf, 0x5e, 0x40, 0x89, 0x95, 0xe2, 0xd8, 0x9d, 0x60, + 0x95, 0xa6, 0x0f, 0xb7, 0x62, 0xba, 0x62, 0x35, 0x27, 0x7a, 0x29, 0x00, 0x2f, 0xfc, 0x8d, 0xbe, + 0x47, 0x6e, 0x4d, 0xba, 0x3f, 0xf5, 0x78, 0x5d, 0xe2, 0x46, 0x9c, 0x8d, 0x22, 0x55, 0x4e, 0x84, + 0xee, 0x00, 0xd0, 0x52, 0x17, 0x36, 0x34, 0xdd, 0xa7, 0x01, 0x2c, 0xad, 0x16, 0x39, 0xa4, 0xe9, + 0xa3, 0x5b, 0xd4, 0x0d, 0x18, 0xb2, 0x44, 0x91, 0x79, 0x3a, 0x6e, 0xd2, 0x72, 0xdf, 0x74, 0x62, + 0xe8, 0x9c, 0x13, 0x31, 0x4e, 0x0e, 0x69, 0x92, 0x5b, 0x4d, 0x8e, 0x29, 0xa4, 0x7e, 0x87, 0xee, + 0xda, 0x6d, 0xe1, 0x16, 0x11, 0x2f, 0x26, 0x93, 0xc3, 0x95, 0x11, 0xa3, 0x67, 0xc4, 0x1f, 0x49, + 0x42, 0x5e, 0xff, 0x76, 0xec, 0x06, 0xa7, 0xbc, 0x9d, 0x38, 0xae, 0xaf, 0x52, 0xa4, 0xc0, 0xc7, + 0xa8, 0xd1, 0x2e, 0x54, 0xa9, 0x3e, 0x87, 0xce, 0x98, 0xc6, 0x65, 0xcc, 0x8d, 0xf5, 0x7e, 0xc8, + 0xaf, 0x3a, 0xce, 0x78, 0x3b, 0xc0, 0xc6, 0x3f, 0x5f, 0x71, 0x45, 0x2c, 0xfa, 0x1e, 0x2b, 0x44, + 0x57, 0x63, 0x15, 0xb8, 0xd7, 0xf8, 0x30, 0xce, 0x48, 0xeb, 0xd1, 0x0a, 0x94, 0x84, 0xa2, 0x46, + 0x7d, 0x89, 0xb2, 0x7d, 0x27, 0xa9, 0x20, 0x14, 0x67, 0x17, 0xf9, 0x50, 0x17, 0x6a, 0xac, 0xc4, + 0x12, 0x2d, 0x82, 0x65, 0xf4, 0xdf, 0x8d, 0x2c, 0x9e, 0xe0, 0x2f, 0x5c, 0x45, 0xd5, 0x9f, 0x41, + 0xa3, 0x4d, 0xc8, 0x52, 0x08, 0x4f, 0xf9, 0x6f, 0xcf, 0x4e, 0x13, 0xe7, 0x66, 0xb4, 0xe8, 0x05, + 0x54, 0xd9, 0x7d, 0x5a, 0x73, 0xb1, 0x37, 0xb5, 0x7c, 0xaf, 0x5e, 0x8b, 0xf9, 0x2a, 0xbb, 0x06, + 0x52, 0x5f, 0xad, 0x30, 0x52, 0x95, 0x51, 0xa2, 0xa7, 0x50, 0xa6, 0x57, 0xd9, 0x80, 0x53, 0xa6, + 0x9c, 0x8b, 0x33, 0xb7, 0x7c, 0xca, 0x57, 0x22, 0x64, 0x01, 0xd7, 0x0f, 0x21, 0xb8, 0x41, 0x85, + 0x8c, 0x8b, 0xb1, 0x2a, 0x15, 0xbf, 0x2e, 0xb1, 0x00, 0x51, 0xe5, 0xd4, 0x01, 0xff, 0x67, 0x50, + 0x61, 0xd9, 0x76, 0xc0, 0xbd, 0x1c, 0x13, 0x98, 0xe6, 0xdb, 0x8c, 0xb7, 0x4c, 0x29, 0x03, 0xce, + 0x65, 0xc8, 0x62, 0xd7, 0x75, 0x5c, 0x76, 0xc2, 0xab, 0x6c, 0x40, 0x2c, 0x9b, 0xfe, 0xa0, 0xd9, + 0x7b, 0x7d, 0x85, 0x15, 0x8b, 0x28, 0x84, 0xe4, 0xe9, 0xa8, 0x0e, 0x79, 0x03, 0xfb, 0xba, 0x69, + 0x79, 0xf5, 0x1b, 0x94, 0x2d, 0x18, 0xa2, 0x47, 0xb0, 0x18, 0x24, 0xee, 0x9a, 0xe5, 0x0c, 0xd9, + 0x1d, 0xf1, 0x26, 0xbb, 0x4f, 0x06, 0x88, 0x5d, 0x0e, 0x47, 0xeb, 0xb0, 0x74, 0xa8, 0x0f, 0x4f, + 0xa6, 0x13, 0x8d, 0x57, 0x08, 0xb4, 0xa9, 0x87, 0x8d, 0xfa, 0x2d, 0x56, 0x44, 0x65, 0x28, 0x9e, + 0x28, 0x1f, 0x78, 0xd8, 0x40, 0x77, 0xa1, 0xe4, 0x62, 0xdf, 0x3d, 0xd3, 0xe8, 0xa1, 0x59, 0xbf, + 0x4d, 0xc5, 0x02, 0x0a, 0xda, 0x26, 0x10, 0xe2, 0x71, 0xbc, 0x5e, 0x92, 0x8f, 0x3d, 0xb9, 0x44, + 0x1b, 0x46, 0x42, 0xf2, 0x56, 0xaa, 0x2e, 0xb5, 0xa5, 0xb0, 0x6a, 0xf2, 0x88, 0x57, 0x64, 0xe2, + 0x97, 0x89, 0x60, 0xaf, 0x38, 0x39, 0xab, 0xc9, 0x3c, 0x17, 0x4a, 0x2c, 0xe5, 0x78, 0x55, 0x46, + 0xd8, 0x23, 0xce, 0x14, 0x12, 0x6f, 0x15, 0x21, 0xef, 0x32, 0x4b, 0x23, 0x77, 0x01, 0xb6, 0x51, + 0x8d, 0x9f, 0xa5, 0x00, 0x22, 0xd9, 0x92, 0x8b, 0xf9, 0x42, 0x74, 0x4a, 0x5d, 0x16, 0x9d, 0xd2, + 0xb3, 0xd1, 0x69, 0x15, 0x0a, 0x33, 0xb7, 0xf4, 0xb4, 0x1a, 0x8e, 0xd1, 0x46, 0x18, 0x22, 0xd9, + 0xbd, 0x6e, 0x35, 0x41, 0x51, 0xeb, 0xb1, 0x38, 0x19, 0x5a, 0x4a, 0x4e, 0xb4, 0x94, 0x06, 0x54, + 0x2c, 0xdd, 0x23, 0x66, 0x4b, 0x36, 0x46, 0x67, 0xd7, 0xb5, 0xb4, 0x5a, 0x22, 0x40, 0x95, 0xc0, + 0x9a, 0x3e, 0x31, 0x17, 0x82, 0x36, 0xb1, 0x47, 0x55, 0x5c, 0x51, 0x83, 0x61, 0x63, 0x1d, 0x72, + 0xec, 0x2b, 0x08, 0x20, 0xd7, 0xdc, 0x1e, 0x74, 0xbe, 0x54, 0xe4, 0x05, 0x54, 0x86, 0xc2, 0x4e, + 0x67, 0xbf, 0xd3, 0x6f, 0x2b, 0x2d, 0x59, 0x22, 0x98, 0x9d, 0x66, 0x67, 0x57, 0x69, 0xc9, 0xa9, + 0xc6, 0xcf, 0x24, 0x28, 0x04, 0xbb, 0x12, 0x94, 0x7f, 0xc4, 0x73, 0x3f, 0x18, 0x7f, 0x4d, 0x6a, + 0xcb, 0xc5, 0xd4, 0x86, 0x20, 0xe3, 0x99, 0x3f, 0xc5, 0x5c, 0x9d, 0xf4, 0x37, 0xa1, 0x0f, 0x0d, + 0x9d, 0x25, 0x43, 0xe1, 0xb8, 0xf1, 0xcf, 0x29, 0x28, 0x8b, 0x36, 0x71, 0xbe, 0x28, 0x23, 0xcd, + 0x5d, 0x94, 0x29, 0x5c, 0x50, 0x94, 0x11, 0xe5, 0x4d, 0x5d, 0x20, 0x6f, 0x5a, 0x90, 0xf7, 0x11, + 0x2c, 0x86, 0x13, 0x87, 0x82, 0xb3, 0xfc, 0x4e, 0x0e, 0x10, 0xa1, 0x87, 0x3e, 0x85, 0x95, 0x59, + 0x51, 0x42, 0x0e, 0x16, 0x2e, 0x96, 0x45, 0x71, 0x42, 0xae, 0xfb, 0xe4, 0x12, 0xc7, 0xa2, 0x19, + 0xf3, 0xd4, 0x2c, 0xfd, 0x7e, 0x99, 0x03, 0x99, 0xaf, 0xce, 0xee, 0x50, 0xee, 0xb2, 0x1d, 0xca, + 0xcf, 0xec, 0x50, 0xe3, 0x4f, 0x24, 0x80, 0x28, 0x9e, 0xcd, 0x5f, 0xd5, 0xb8, 0x1b, 0x95, 0x24, + 0x88, 0x50, 0x12, 0x9d, 0x35, 0xa8, 0x3e, 0x9c, 0x17, 0xe9, 0x0a, 0x46, 0xd3, 0xf8, 0x8b, 0x14, + 0xdc, 0x68, 0x4e, 0x7d, 0xe7, 0xdc, 0x39, 0x27, 0x3c, 0xbd, 0x4a, 0x73, 0x3d, 0xbd, 0x2e, 0x24, + 0x3e, 0xbd, 0xa6, 0xde, 0xf3, 0xf4, 0xba, 0x20, 0x3c, 0xbd, 0x7e, 0xce, 0x4f, 0xa0, 0xe0, 0x6d, + 0x35, 0x4d, 0x8f, 0x82, 0xd5, 0xa4, 0x7a, 0x2a, 0x7f, 0x66, 0xa5, 0x47, 0x51, 0x97, 0x3f, 0xb5, + 0x2a, 0xd1, 0x51, 0x14, 0xcc, 0x90, 0xa1, 0x33, 0x5c, 0x5a, 0x49, 0x0e, 0x4f, 0x24, 0x3e, 0x0d, + 0x89, 0x76, 0xfc, 0x11, 0xbd, 0xf1, 0xa7, 0x29, 0xa8, 0x11, 0xe5, 0x08, 0x47, 0xee, 0x4c, 0xe9, + 0x56, 0x9a, 0xa3, 0x74, 0x9b, 0xbd, 0xac, 0x08, 0x94, 0x9a, 0xab, 0x70, 0x92, 0x9e, 0xbb, 0x70, + 0x92, 0xb9, 0x7a, 0xe1, 0x24, 0x77, 0xd5, 0x22, 0xd0, 0x2f, 0x32, 0xb0, 0x94, 0x90, 0xcf, 0x91, + 0x1c, 0x9b, 0xe5, 0x73, 0xb3, 0x39, 0x36, 0x83, 0x91, 0x1c, 0x9b, 0xff, 0x22, 0xd7, 0xcf, 0x1a, + 0x7b, 0xa2, 0x75, 0x8e, 0x8e, 0x3c, 0xec, 0x6b, 0x63, 0x8f, 0x9b, 0x6c, 0x85, 0x82, 0xbb, 0x14, + 0xba, 0xe7, 0x91, 0x08, 0x8d, 0x6d, 0x43, 0xa0, 0x62, 0xb6, 0x5b, 0xc2, 0xb6, 0x11, 0xd2, 0x88, + 0xdd, 0x0a, 0x99, 0x2b, 0x77, 0x2b, 0x64, 0xe7, 0xee, 0x56, 0xc8, 0x5d, 0xad, 0x5b, 0x21, 0x7f, + 0x8d, 0x6e, 0x85, 0xc2, 0x87, 0x77, 0x2b, 0x94, 0xdf, 0xd3, 0xad, 0x50, 0x9c, 0xbf, 0x5b, 0x01, + 0xae, 0xde, 0xad, 0x50, 0xba, 0x56, 0xb7, 0xc2, 0x2f, 0x72, 0xb0, 0x7a, 0x71, 0x9e, 0x7f, 0xf9, + 0x65, 0x39, 0x6a, 0x6b, 0x48, 0x5d, 0xd2, 0xd6, 0x90, 0x8e, 0x37, 0x14, 0x3c, 0x07, 0xf6, 0x28, + 0xa6, 0x8d, 0xcd, 0xb7, 0xa6, 0x3d, 0xaa, 0xd7, 0xe8, 0xae, 0xc5, 0xde, 0xdd, 0xf7, 0x28, 0x4e, + 0x65, 0x8f, 0x8c, 0x6c, 0x10, 0xeb, 0x44, 0xc8, 0xcc, 0xd1, 0x0f, 0x91, 0x4d, 0xe8, 0x87, 0x40, + 0x4f, 0x79, 0xfa, 0xc6, 0x8c, 0xeb, 0x92, 0x40, 0x47, 0x53, 0xb2, 0xe0, 0x6d, 0x6d, 0x33, 0x96, + 0x2b, 0x26, 0xbf, 0xad, 0x71, 0x96, 0x20, 0x53, 0xfc, 0xa1, 0x90, 0xfc, 0xc1, 0xfb, 0xdf, 0xd7, + 0x38, 0x77, 0xf4, 0xc6, 0x16, 0x99, 0x76, 0xe1, 0x1a, 0xa6, 0x5d, 0xbc, 0x82, 0x69, 0xc7, 0x4f, + 0x83, 0xd2, 0xd5, 0x4e, 0x83, 0x5f, 0x0b, 0xaf, 0x42, 0xc1, 0x04, 0xe5, 0xf8, 0xbd, 0x44, 0xd0, + 0x56, 0x70, 0x19, 0xba, 0xe4, 0x2c, 0xa9, 0x5c, 0xfd, 0x2c, 0x41, 0x3f, 0x08, 0x6e, 0x37, 0xc1, + 0x24, 0x55, 0x3a, 0x49, 0xe2, 0x03, 0x25, 0xbf, 0xde, 0x04, 0xac, 0xa2, 0x63, 0xc9, 0xf3, 0x3b, + 0x16, 0xfb, 0x90, 0x78, 0x88, 0xfd, 0x77, 0x16, 0xe4, 0xf8, 0xe5, 0xf7, 0x1b, 0xea, 0xbd, 0x29, + 0x27, 0xf7, 0xde, 0x84, 0x76, 0x9f, 0xf9, 0x40, 0xbb, 0xcf, 0x7e, 0x98, 0xdd, 0xe7, 0xae, 0x65, + 0xf7, 0xdf, 0x54, 0x48, 0x8f, 0xdb, 0x7d, 0xf1, 0xba, 0x76, 0x0f, 0xd7, 0xb3, 0xfb, 0xd2, 0xd7, + 0x61, 0xf7, 0x95, 0x0f, 0xb2, 0xfb, 0xea, 0x75, 0xec, 0xfe, 0x6f, 0x32, 0x50, 0xbf, 0xa8, 0x7a, + 0x73, 0xf9, 0x69, 0x22, 0xb6, 0x4f, 0xa5, 0x62, 0xed, 0x53, 0xdf, 0x81, 0xf2, 0x4c, 0xdf, 0x14, + 0xf3, 0x84, 0x92, 0x17, 0x75, 0x4c, 0x09, 0x26, 0x93, 0xb9, 0x46, 0xe2, 0x9c, 0xbd, 0x46, 0xe2, + 0x9c, 0xbb, 0xae, 0xc9, 0xe4, 0xaf, 0x67, 0x32, 0x85, 0xaf, 0xc3, 0x64, 0x8a, 0x1f, 0x64, 0x32, + 0x30, 0xa7, 0xc9, 0x08, 0x86, 0xf2, 0x47, 0x39, 0xb8, 0x7d, 0x49, 0x6d, 0xee, 0x7d, 0xdd, 0xb2, + 0xac, 0x17, 0x28, 0x6a, 0x1b, 0x4c, 0x85, 0x6d, 0x83, 0x14, 0xc1, 0xdb, 0x06, 0x55, 0x71, 0x64, + 0x10, 0xb6, 0x58, 0xb7, 0x61, 0x3a, 0xb1, 0xdb, 0x30, 0xd6, 0x6b, 0xf8, 0xff, 0x14, 0x38, 0x0b, + 0xd7, 0x0a, 0x9c, 0xb9, 0x6b, 0x04, 0xce, 0xfc, 0x2f, 0x13, 0x86, 0x0f, 0xf1, 0x82, 0xda, 0x75, + 0x02, 0xe7, 0x7f, 0x4a, 0x80, 0xce, 0x17, 0x99, 0x2f, 0x77, 0x83, 0x8f, 0x84, 0x0e, 0xc3, 0x54, + 0xbc, 0xc3, 0x30, 0xea, 0x2f, 0x7c, 0xcc, 0xed, 0x37, 0x1d, 0x2b, 0xce, 0xb7, 0x4c, 0x17, 0x0f, + 0xfd, 0x84, 0x3e, 0xb2, 0x8f, 0xa0, 0xf2, 0x06, 0x1f, 0x7a, 0xce, 0xf0, 0x04, 0xfb, 0x51, 0x5f, + 0x71, 0x7b, 0x41, 0x2d, 0x87, 0x60, 0x92, 0x48, 0x8b, 0x6b, 0xcf, 0x5e, 0x75, 0xed, 0x8d, 0x3f, + 0x4b, 0x81, 0x1c, 0x97, 0xe0, 0x97, 0xf7, 0xfc, 0x9f, 0xa7, 0x60, 0xf1, 0x9c, 0xcb, 0x7c, 0x53, + 0x0d, 0x6f, 0xb9, 0xcb, 0xb4, 0x99, 0x9e, 0x4b, 0x9b, 0x99, 0xb9, 0xb5, 0x99, 0xbd, 0xba, 0x36, + 0xf3, 0x57, 0xd5, 0xe6, 0x6b, 0x58, 0x3a, 0xa0, 0xef, 0x6b, 0xbb, 0xf4, 0x66, 0x7a, 0xe5, 0x17, + 0xcd, 0x8b, 0xae, 0xb8, 0x8d, 0x3f, 0x97, 0x82, 0x99, 0xfb, 0xfc, 0x39, 0xe7, 0xaa, 0x33, 0x7f, + 0x0c, 0x35, 0xdd, 0x30, 0x78, 0xc4, 0xd1, 0x84, 0x5e, 0xc0, 0x8a, 0x6e, 0x18, 0x6c, 0xdb, 0x0f, + 0x5c, 0xcb, 0x23, 0x39, 0xbe, 0x8b, 0xc7, 0xce, 0x29, 0x9e, 0x21, 0x4d, 0x53, 0x52, 0x99, 0x61, + 0x22, 0xea, 0xc6, 0x0f, 0xa0, 0x3a, 0xfb, 0x74, 0x81, 0x1e, 0x40, 0xc6, 0xb4, 0x8f, 0x9c, 0x73, + 0xcf, 0xc7, 0xc2, 0x93, 0x14, 0x25, 0x58, 0x7b, 0x0d, 0x65, 0xb1, 0x89, 0x1a, 0xad, 0x00, 0x6a, + 0x1e, 0xb4, 0x3a, 0x5d, 0x6d, 0xbb, 0xdd, 0xdc, 0xdf, 0x57, 0x76, 0xb5, 0xad, 0xee, 0xa0, 0x2d, + 0x2f, 0x9c, 0x87, 0xef, 0x2a, 0x3b, 0x03, 0x59, 0x42, 0x37, 0x61, 0x69, 0x16, 0xae, 0x76, 0x5e, + 0xb6, 0x07, 0x72, 0x6a, 0xed, 0x1f, 0x25, 0xb8, 0x91, 0x78, 0xfa, 0x20, 0x19, 0xca, 0xed, 0x8d, + 0x67, 0x4f, 0xb5, 0xe7, 0x1b, 0x4f, 0x7a, 0xda, 0xe6, 0x13, 0x79, 0x61, 0x16, 0xf2, 0xec, 0x89, + 0x2c, 0xa1, 0x45, 0xa8, 0x50, 0xc8, 0xaf, 0x3c, 0xf9, 0x8c, 0x11, 0xa5, 0x62, 0xa0, 0x67, 0x4f, + 0xe4, 0x34, 0xba, 0x05, 0x37, 0x7a, 0x5d, 0x75, 0xa0, 0x36, 0x3b, 0x03, 0x6d, 0x66, 0xca, 0xcc, + 0x05, 0xa8, 0x67, 0x4f, 0xe4, 0x2c, 0x5a, 0x85, 0x95, 0x59, 0x54, 0xf8, 0x91, 0xdc, 0x45, 0xb8, + 0x67, 0x4f, 0xe4, 0xfc, 0xda, 0x16, 0xef, 0xb8, 0x8e, 0x9c, 0x0e, 0x2d, 0x83, 0xdc, 0x52, 0x76, + 0x9a, 0x07, 0xbb, 0x03, 0x6d, 0xa7, 0xb3, 0xab, 0x0c, 0x7e, 0xa3, 0xa7, 0xc8, 0x0b, 0x28, 0x0f, + 0xe9, 0xbd, 0xde, 0x53, 0x59, 0x22, 0x3f, 0xba, 0x2f, 0x5f, 0xca, 0x29, 0x06, 0xd9, 0x94, 0xd3, + 0x6b, 0xed, 0x60, 0xa7, 0x82, 0xa6, 0x4d, 0x71, 0x8a, 0x9e, 0xda, 0x1d, 0x74, 0xb7, 0xbb, 0xbb, + 0xf2, 0x02, 0x2a, 0x40, 0x46, 0x1d, 0xec, 0xf5, 0xd8, 0x1c, 0x7d, 0x75, 0x20, 0xa7, 0x50, 0x05, + 0x8a, 0xaf, 0x95, 0xad, 0x7e, 0x77, 0xfb, 0x95, 0x32, 0x90, 0xd3, 0x6b, 0xfb, 0x70, 0x23, 0xb1, + 0x0b, 0x14, 0xdd, 0x87, 0xbb, 0xc1, 0x84, 0x7d, 0xe5, 0xe5, 0x9e, 0xb2, 0x3f, 0x50, 0x5a, 0x54, + 0x3a, 0x71, 0x7e, 0xa2, 0xf1, 0xdd, 0x7e, 0x04, 0x91, 0xd6, 0x1e, 0xc7, 0xba, 0x50, 0x79, 0x87, + 0x5e, 0x11, 0xb2, 0x9d, 0xfd, 0x96, 0xf2, 0x95, 0xbc, 0x40, 0x04, 0x18, 0x74, 0xf6, 0x94, 0xfe, + 0xa0, 0x49, 0x04, 0x5b, 0x3b, 0x82, 0x5a, 0xac, 0xbd, 0x8f, 0x18, 0x49, 0x67, 0xaf, 0xf9, 0x52, + 0xd1, 0xfa, 0x07, 0x3b, 0x3b, 0x9d, 0xaf, 0xb4, 0x80, 0x73, 0x15, 0x56, 0x66, 0xe0, 0xc2, 0x34, + 0xe8, 0x2e, 0xdc, 0x9e, 0xc1, 0xed, 0x77, 0xf7, 0x15, 0xad, 0xfb, 0xa5, 0xa2, 0xbe, 0x56, 0x3b, + 0x03, 0x45, 0x4e, 0xad, 0xfd, 0x08, 0xe4, 0xf8, 0x43, 0x3e, 0x99, 0x50, 0x79, 0xa9, 0x2a, 0xfd, + 0xbe, 0xd6, 0xef, 0x1e, 0xa8, 0xdb, 0x8a, 0x46, 0x34, 0xaf, 0xbd, 0x56, 0xb6, 0xd8, 0xc7, 0x12, + 0x70, 0xfd, 0xd6, 0x2b, 0x59, 0x5a, 0xfb, 0x2b, 0x09, 0xca, 0xe2, 0xf3, 0x3e, 0x5a, 0x82, 0x5a, + 0x40, 0x3c, 0x68, 0xaa, 0x83, 0xce, 0xfe, 0x4b, 0x79, 0x81, 0x58, 0x1a, 0x07, 0xf2, 0xc7, 0x26, + 0x49, 0x00, 0x29, 0xfb, 0x2d, 0x42, 0x95, 0x12, 0x58, 0xb7, 0xbb, 0x7b, 0xbd, 0x5d, 0x65, 0xa0, + 0xc8, 0x69, 0x81, 0x8e, 0xbf, 0x46, 0x65, 0x10, 0x82, 0x6a, 0x30, 0xdb, 0x56, 0x57, 0x1d, 0x28, + 0x2d, 0x39, 0x8b, 0xea, 0xb0, 0xcc, 0x61, 0xbb, 0x9d, 0xbd, 0xce, 0x40, 0x53, 0x95, 0xe6, 0x76, + 0x5b, 0x69, 0xc9, 0xb9, 0xb5, 0x03, 0xfe, 0x2f, 0x20, 0xbc, 0xf8, 0x85, 0xa0, 0x1a, 0x6c, 0xe6, + 0x5e, 0xe7, 0x2b, 0x26, 0xde, 0x0a, 0xa0, 0xd6, 0x41, 0x73, 0x37, 0xf4, 0xb8, 0xe6, 0x4b, 0x65, + 0x9f, 0xb8, 0xe2, 0x2a, 0xac, 0xcc, 0xc2, 0x77, 0x07, 0x8a, 0xba, 0xdf, 0x24, 0x4a, 0xdc, 0xf8, + 0x97, 0x2c, 0xe4, 0x78, 0x51, 0xfd, 0xd7, 0xa1, 0x24, 0x74, 0x16, 0xa0, 0xcb, 0xfa, 0x0d, 0x56, + 0x93, 0xfa, 0x4e, 0x50, 0x13, 0xca, 0x62, 0x78, 0x45, 0x51, 0xd6, 0x95, 0x10, 0x75, 0xdf, 0x33, + 0x05, 0x73, 0x86, 0x73, 0x53, 0xcc, 0x84, 0xd7, 0xe4, 0x29, 0x14, 0x80, 0xa8, 0x6f, 0x06, 0x45, + 0x99, 0xe7, 0xb9, 0xd6, 0x9f, 0xd5, 0xdb, 0x89, 0x38, 0xde, 0x68, 0xf3, 0x39, 0x40, 0xd4, 0xfb, + 0x82, 0xc4, 0x17, 0xce, 0x58, 0x43, 0x4c, 0xb2, 0x14, 0x03, 0xa8, 0x53, 0xb5, 0x25, 0x14, 0x53, + 0xd1, 0x3c, 0x2d, 0x15, 0xc9, 0xb3, 0x7e, 0x41, 0xa2, 0x84, 0xee, 0xfa, 0x61, 0x29, 0x09, 0x5d, + 0xdc, 0x5b, 0x91, 0x3c, 0x43, 0x0f, 0x56, 0xe8, 0x0c, 0xe7, 0x9f, 0x9a, 0xde, 0xdf, 0x6e, 0x91, + 0x3c, 0xe3, 0x97, 0x70, 0x8b, 0xce, 0x98, 0x74, 0x7b, 0x43, 0x73, 0x35, 0x5e, 0x24, 0xcf, 0xdb, + 0x02, 0x39, 0x9a, 0xf7, 0x9c, 0x4d, 0x9e, 0xcf, 0x8d, 0x13, 0x67, 0xd9, 0xda, 0xf9, 0xcd, 0xfb, + 0x23, 0xd3, 0x3f, 0x9e, 0x1e, 0xae, 0x0f, 0x9d, 0xf1, 0x63, 0x4e, 0xf0, 0x38, 0xe8, 0x87, 0x0f, + 0x00, 0x7f, 0x9b, 0xaa, 0xec, 0x9a, 0xa7, 0xf8, 0x15, 0xeb, 0xde, 0xf3, 0x9d, 0x7f, 0x4b, 0x55, + 0xf9, 0xf8, 0xc5, 0x0b, 0x0a, 0x38, 0xcc, 0x51, 0x96, 0xcd, 0xff, 0x0d, 0x00, 0x00, 0xff, 0xff, + 0x3d, 0xcf, 0x87, 0x0d, 0x18, 0x3a, 0x00, 0x00, } diff --git a/protobufs/livekit_egress.proto b/protobufs/livekit_egress.proto index 6ba9eb5db..2410e07b8 100644 --- a/protobufs/livekit_egress.proto +++ b/protobufs/livekit_egress.proto @@ -28,7 +28,6 @@ service Egress { rpc StartEgress(StartEgressRequest) returns (EgressInfo); // Update url/template or stream outputs - // rpc UpdateEgress(UpdateEgressRequest) returns (EgressInfo); rpc UpdateLayout(UpdateLayoutRequest) returns (EgressInfo); rpc UpdateStream(UpdateStreamRequest) returns (EgressInfo); @@ -61,6 +60,9 @@ message StartEgressRequest { oneof encoding { EncodingOptionsPreset preset = 5; EncodingOptions advanced = 6; + + // Remux a single explicitly-identified track without decoding or re-encoding + bool passthrough = 10; } // At least one required @@ -347,14 +349,6 @@ message ListEgressResponse { // next field id: 3 } -message UpdateEgressRequest { - string egress_id = 1 [(logger.name) = "egressID"]; - string url = 2; - string layout = 3; - repeated string add_stream_urls = 4; - repeated string remove_stream_urls = 5; -} - message StopEgressRequest { string egress_id = 1 [(logger.name) = "egressID"]; } @@ -506,6 +500,9 @@ message ExportReplayRequest { oneof encoding { EncodingOptionsPreset preset = 7; EncodingOptions advanced = 8; + + // Remux a single explicitly-identified track without decoding or re-encoding + bool passthrough = 12; } repeated Output outputs = 9; diff --git a/protobufs/rpc/egress.proto b/protobufs/rpc/egress.proto index 911a16aa6..9d307bd3a 100644 --- a/protobufs/rpc/egress.proto +++ b/protobufs/rpc/egress.proto @@ -34,9 +34,6 @@ service EgressInternal { } service EgressHandler { - rpc UpdateEgress(livekit.UpdateEgressRequest) returns (livekit.EgressInfo) { - option (psrpc.options).topics = true; - } rpc StopEgress(livekit.StopEgressRequest) returns (livekit.EgressInfo) { option (psrpc.options).topics = true; } diff --git a/rpc/egress.pb.go b/rpc/egress.pb.go index 9a83890c4..60bb8d4ab 100644 --- a/rpc/egress.pb.go +++ b/rpc/egress.pb.go @@ -482,9 +482,8 @@ const file_rpc_egress_proto_rawDesc = "" + "durationMs2\xb2\x01\n" + "\x0eEgressInternal\x12E\n" + "\vStartEgress\x12\x17.rpc.StartEgressRequest\x1a\x13.livekit.EgressInfo\"\b\xb2\x89\x01\x04\x10\x010\x01\x12Y\n" + - "\x10ListActiveEgress\x12\x1c.rpc.ListActiveEgressRequest\x1a\x1d.rpc.ListActiveEgressResponse\"\b\xb2\x89\x01\x04\x10\x01(\x012\xec\x01\n" + - "\rEgressHandler\x12I\n" + - "\fUpdateEgress\x12\x1c.livekit.UpdateEgressRequest\x1a\x13.livekit.EgressInfo\"\x06\xb2\x89\x01\x02\x10\x01\x12E\n" + + "\x10ListActiveEgress\x12\x1c.rpc.ListActiveEgressRequest\x1a\x1d.rpc.ListActiveEgressResponse\"\b\xb2\x89\x01\x04\x10\x01(\x012\xa1\x01\n" + + "\rEgressHandler\x12E\n" + "\n" + "StopEgress\x12\x1a.livekit.StopEgressRequest\x1a\x13.livekit.EgressInfo\"\x06\xb2\x89\x01\x02\x10\x01\x12I\n" + "\fUpdateStream\x12\x1c.livekit.UpdateStreamRequest\x1a\x13.livekit.EgressInfo\"\x06\xb2\x89\x01\x02\x10\x012\\\n" + @@ -518,10 +517,9 @@ var file_rpc_egress_proto_goTypes = []any{ (*livekit.ParticipantEgressRequest)(nil), // 9: livekit.ParticipantEgressRequest (*livekit.TrackCompositeEgressRequest)(nil), // 10: livekit.TrackCompositeEgressRequest (*livekit.TrackEgressRequest)(nil), // 11: livekit.TrackEgressRequest - (*livekit.UpdateEgressRequest)(nil), // 12: livekit.UpdateEgressRequest - (*livekit.StopEgressRequest)(nil), // 13: livekit.StopEgressRequest - (*livekit.UpdateStreamRequest)(nil), // 14: livekit.UpdateStreamRequest - (*livekit.EgressInfo)(nil), // 15: livekit.EgressInfo + (*livekit.StopEgressRequest)(nil), // 12: livekit.StopEgressRequest + (*livekit.UpdateStreamRequest)(nil), // 13: livekit.UpdateStreamRequest + (*livekit.EgressInfo)(nil), // 14: livekit.EgressInfo } var file_rpc_egress_proto_depIdxs = []int32{ 5, // 0: rpc.StartEgressRequest.egress:type_name -> livekit.StartEgressRequest @@ -533,18 +531,16 @@ var file_rpc_egress_proto_depIdxs = []int32{ 11, // 6: rpc.StartEgressRequest.track:type_name -> livekit.TrackEgressRequest 0, // 7: rpc.EgressInternal.StartEgress:input_type -> rpc.StartEgressRequest 1, // 8: rpc.EgressInternal.ListActiveEgress:input_type -> rpc.ListActiveEgressRequest - 12, // 9: rpc.EgressHandler.UpdateEgress:input_type -> livekit.UpdateEgressRequest - 13, // 10: rpc.EgressHandler.StopEgress:input_type -> livekit.StopEgressRequest - 14, // 11: rpc.EgressHandler.UpdateStream:input_type -> livekit.UpdateStreamRequest - 3, // 12: rpc.ReplayExport.EgressReady:input_type -> rpc.EgressReadyRequest - 15, // 13: rpc.EgressInternal.StartEgress:output_type -> livekit.EgressInfo - 2, // 14: rpc.EgressInternal.ListActiveEgress:output_type -> rpc.ListActiveEgressResponse - 15, // 15: rpc.EgressHandler.UpdateEgress:output_type -> livekit.EgressInfo - 15, // 16: rpc.EgressHandler.StopEgress:output_type -> livekit.EgressInfo - 15, // 17: rpc.EgressHandler.UpdateStream:output_type -> livekit.EgressInfo - 4, // 18: rpc.ReplayExport.EgressReady:output_type -> rpc.EgressReadyResponse - 13, // [13:19] is the sub-list for method output_type - 7, // [7:13] is the sub-list for method input_type + 12, // 9: rpc.EgressHandler.StopEgress:input_type -> livekit.StopEgressRequest + 13, // 10: rpc.EgressHandler.UpdateStream:input_type -> livekit.UpdateStreamRequest + 3, // 11: rpc.ReplayExport.EgressReady:input_type -> rpc.EgressReadyRequest + 14, // 12: rpc.EgressInternal.StartEgress:output_type -> livekit.EgressInfo + 2, // 13: rpc.EgressInternal.ListActiveEgress:output_type -> rpc.ListActiveEgressResponse + 14, // 14: rpc.EgressHandler.StopEgress:output_type -> livekit.EgressInfo + 14, // 15: rpc.EgressHandler.UpdateStream:output_type -> livekit.EgressInfo + 4, // 16: rpc.ReplayExport.EgressReady:output_type -> rpc.EgressReadyResponse + 12, // [12:17] is the sub-list for method output_type + 7, // [7:12] is the sub-list for method input_type 7, // [7:7] is the sub-list for extension type_name 7, // [7:7] is the sub-list for extension extendee 0, // [0:7] is the sub-list for field type_name diff --git a/rpc/egress.psrpc.go b/rpc/egress.psrpc.go index f41b6491d..c05372865 100644 --- a/rpc/egress.psrpc.go +++ b/rpc/egress.psrpc.go @@ -171,8 +171,6 @@ func (UnimplementedEgressInternalServer) ListActiveEgress(context.Context, *List // ============================== type EgressHandlerClient interface { - UpdateEgress(ctx context.Context, topic string, req *livekit4.UpdateEgressRequest, opts ...psrpc.RequestOption) (*livekit4.EgressInfo, error) - StopEgress(ctx context.Context, topic string, req *livekit4.StopEgressRequest, opts ...psrpc.RequestOption) (*livekit4.EgressInfo, error) // --- Deprecated --- @@ -187,8 +185,6 @@ type EgressHandlerClient interface { // ================================== type EgressHandlerServerImpl interface { - UpdateEgress(context.Context, *livekit4.UpdateEgressRequest) (*livekit4.EgressInfo, error) - StopEgress(context.Context, *livekit4.StopEgressRequest) (*livekit4.EgressInfo, error) // --- Deprecated --- @@ -200,8 +196,6 @@ type EgressHandlerServerImpl interface { // ============================== type EgressHandlerServer interface { - RegisterUpdateEgressTopic(topic string) error - DeregisterUpdateEgressTopic(topic string) RegisterStopEgressTopic(topic string) error DeregisterStopEgressTopic(topic string) // --- Deprecated --- @@ -230,7 +224,6 @@ func NewEgressHandlerClient(bus psrpc.MessageBus, opts ...psrpc.ClientOption) (E ID: rand.NewClientID(), } - sd.RegisterMethod("UpdateEgress", false, false, true, true) sd.RegisterMethod("StopEgress", false, false, true, true) sd.RegisterMethod("UpdateStream", false, false, true, true) @@ -244,10 +237,6 @@ func NewEgressHandlerClient(bus psrpc.MessageBus, opts ...psrpc.ClientOption) (E }, nil } -func (c *egressHandlerClient) UpdateEgress(ctx context.Context, topic string, req *livekit4.UpdateEgressRequest, opts ...psrpc.RequestOption) (*livekit4.EgressInfo, error) { - return client.RequestSingle[*livekit4.EgressInfo](ctx, c.client, "UpdateEgress", []string{topic}, req, opts...) -} - func (c *egressHandlerClient) StopEgress(ctx context.Context, topic string, req *livekit4.StopEgressRequest, opts ...psrpc.RequestOption) (*livekit4.EgressInfo, error) { return client.RequestSingle[*livekit4.EgressInfo](ctx, c.client, "StopEgress", []string{topic}, req, opts...) } @@ -279,7 +268,6 @@ func NewEgressHandlerServer(svc EgressHandlerServerImpl, bus psrpc.MessageBus, o s := server.NewRPCServer(sd, bus, opts...) - sd.RegisterMethod("UpdateEgress", false, false, true, true) sd.RegisterMethod("StopEgress", false, false, true, true) sd.RegisterMethod("UpdateStream", false, false, true, true) return &egressHandlerServer{ @@ -288,14 +276,6 @@ func NewEgressHandlerServer(svc EgressHandlerServerImpl, bus psrpc.MessageBus, o }, nil } -func (s *egressHandlerServer) RegisterUpdateEgressTopic(topic string) error { - return server.RegisterHandler(s.rpc, "UpdateEgress", []string{topic}, s.svc.UpdateEgress, nil) -} - -func (s *egressHandlerServer) DeregisterUpdateEgressTopic(topic string) { - s.rpc.DeregisterHandler("UpdateEgress", []string{topic}) -} - func (s *egressHandlerServer) RegisterStopEgressTopic(topic string) error { return server.RegisterHandler(s.rpc, "StopEgress", []string{topic}, s.svc.StopEgress, nil) } @@ -326,10 +306,6 @@ func (s *egressHandlerServer) Kill() { type UnimplementedEgressHandlerServer struct{} -func (UnimplementedEgressHandlerServer) UpdateEgress(context.Context, *livekit4.UpdateEgressRequest) (*livekit4.EgressInfo, error) { - return nil, psrpc.ErrUnimplemented -} - func (UnimplementedEgressHandlerServer) StopEgress(context.Context, *livekit4.StopEgressRequest) (*livekit4.EgressInfo, error) { return nil, psrpc.ErrUnimplemented } @@ -460,52 +436,51 @@ func (UnimplementedReplayExportServer) EgressReady(context.Context, *EgressReady } var psrpcFileDescriptor2 = []byte{ - // 740 bytes of a gzipped FileDescriptorProto + // 732 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x54, 0xc1, 0x6e, 0xeb, 0x44, - 0x14, 0x65, 0x12, 0xc5, 0x89, 0x6f, 0x9a, 0xbc, 0x30, 0xef, 0xa1, 0x37, 0xc9, 0x7b, 0x55, 0xd3, - 0x94, 0x85, 0x37, 0x24, 0x55, 0x2a, 0x90, 0xd8, 0x20, 0x9a, 0x36, 0xa2, 0x91, 0x0a, 0x04, 0x97, - 0x0a, 0x09, 0x90, 0xac, 0x89, 0x3d, 0x04, 0x2b, 0xb6, 0x67, 0x18, 0x8f, 0x5b, 0xfa, 0x09, 0xfd, - 0x9d, 0x2e, 0x58, 0x74, 0xc5, 0x07, 0xc1, 0x3f, 0x20, 0x8f, 0x1d, 0xd7, 0x49, 0x28, 0x2a, 0x2b, - 0xdb, 0xe7, 0xdc, 0x73, 0xe6, 0xde, 0x3b, 0xbe, 0x17, 0x3a, 0x52, 0xb8, 0x23, 0xb6, 0x94, 0x2c, - 0x8e, 0x87, 0x42, 0x72, 0xc5, 0x71, 0x55, 0x0a, 0xb7, 0xd7, 0xe2, 0x42, 0xf9, 0x3c, 0xca, 0xb1, - 0xde, 0x9b, 0x80, 0x2f, 0x97, 0x4c, 0x8e, 0xb6, 0x51, 0xff, 0x86, 0xad, 0x7c, 0xe5, 0x94, 0xf5, - 0x83, 0xbf, 0x6b, 0x80, 0xaf, 0x14, 0x95, 0x6a, 0xaa, 0x51, 0x9b, 0xfd, 0x96, 0xb0, 0x58, 0x61, - 0x0b, 0xcc, 0x2c, 0xcc, 0xf1, 0x3d, 0x82, 0xfa, 0xc8, 0x32, 0x27, 0xcd, 0xc7, 0x79, 0x23, 0xc3, - 0x66, 0xe7, 0xf6, 0xfa, 0xcd, 0xc3, 0x9f, 0x82, 0x91, 0xbd, 0x93, 0x4e, 0x1f, 0x59, 0xcd, 0xf1, - 0xbb, 0x61, 0x7e, 0xce, 0x70, 0xd7, 0xf6, 0xe2, 0x03, 0x3b, 0x0f, 0xc6, 0x9f, 0x81, 0x21, 0x99, - 0x08, 0xe8, 0x1d, 0xf9, 0x50, 0xcb, 0xde, 0x17, 0xb2, 0xe9, 0xef, 0x82, 0x4b, 0x65, 0x6b, 0xb2, - 0xa4, 0xcb, 0xa2, 0xf1, 0x25, 0xb4, 0x25, 0xe7, 0xa1, 0xe3, 0xf2, 0x50, 0xf0, 0xd8, 0x57, 0x8c, - 0xd4, 0xb4, 0xfe, 0xa8, 0xd0, 0xdb, 0x9c, 0x87, 0x67, 0x6b, 0x76, 0xfb, 0xf8, 0x96, 0x2c, 0xb3, - 0xf8, 0x13, 0xa8, 0xde, 0xb2, 0x05, 0x69, 0x6a, 0x8b, 0x6e, 0x61, 0xf1, 0x03, 0x5b, 0x6c, 0x0b, - 0xd3, 0x38, 0x3c, 0x85, 0xa6, 0xa0, 0x52, 0xf9, 0xae, 0x2f, 0x68, 0xa4, 0x48, 0x4b, 0xcb, 0x0e, - 0x0b, 0xd9, 0xfc, 0x89, 0xdb, 0x96, 0x97, 0x75, 0xf8, 0x5b, 0x78, 0xa5, 0x24, 0x75, 0x57, 0xa5, - 0x22, 0x0c, 0x6d, 0xf5, 0x71, 0x61, 0xf5, 0x7d, 0xca, 0x3f, 0x5b, 0x45, 0x5b, 0x6d, 0xd0, 0xf8, - 0x04, 0x6a, 0x1a, 0x21, 0xf5, 0xad, 0x2b, 0xd0, 0x36, 0xdb, 0xea, 0x2c, 0x16, 0x0f, 0xa0, 0xae, - 0x3b, 0xe9, 0x7b, 0xa4, 0xaa, 0x2f, 0xd8, 0x7c, 0x9c, 0x1b, 0x29, 0x32, 0x3b, 0xb7, 0xb3, 0xa7, - 0x87, 0xdf, 0x81, 0xa9, 0x63, 0x22, 0x1a, 0x32, 0x82, 0xd3, 0x28, 0xbb, 0x91, 0x02, 0xdf, 0xd0, - 0x90, 0xe1, 0x2e, 0xd4, 0x14, 0x5f, 0xb1, 0x88, 0x34, 0xb4, 0xbc, 0xfa, 0xe7, 0xbc, 0x62, 0x67, - 0x08, 0xfe, 0x08, 0x8c, 0xdb, 0xd8, 0x49, 0x64, 0x40, 0x4c, 0x2d, 0xaa, 0xdd, 0xc6, 0xd7, 0x32, - 0xc0, 0xc7, 0xf0, 0xc6, 0x0d, 0x78, 0xe2, 0x39, 0x0b, 0xea, 0xae, 0x12, 0xe1, 0xb0, 0x88, 0x2e, - 0x02, 0xe6, 0x11, 0xe8, 0x23, 0xab, 0x61, 0x63, 0xcd, 0x4d, 0x34, 0x35, 0xcd, 0x18, 0x7c, 0x04, - 0x2d, 0x16, 0x2b, 0x3f, 0xa4, 0x8a, 0x79, 0x8e, 0x2b, 0x12, 0xd2, 0xee, 0x23, 0x0b, 0xd9, 0x7b, - 0x05, 0x78, 0x26, 0x12, 0x7c, 0x00, 0x4d, 0xc9, 0x94, 0xbc, 0x73, 0x5c, 0x9e, 0x44, 0x8a, 0xbc, - 0xea, 0x23, 0xab, 0x66, 0x83, 0x86, 0xce, 0x52, 0x64, 0x62, 0x42, 0x5d, 0x66, 0xe5, 0x0f, 0xba, - 0xf0, 0xf6, 0xd2, 0x8f, 0xd5, 0xa9, 0xab, 0xfc, 0x9b, 0xcd, 0xbe, 0x0e, 0x3e, 0x07, 0xb2, 0x4b, - 0xc5, 0x82, 0x47, 0x31, 0xc3, 0xfb, 0x00, 0xc5, 0x3c, 0xc4, 0x04, 0xf5, 0xab, 0x96, 0x69, 0x9b, - 0xeb, 0x19, 0x88, 0x07, 0x5f, 0x00, 0x5e, 0x0b, 0xa8, 0x77, 0xf7, 0xbf, 0x87, 0x68, 0xf0, 0x1d, - 0xbc, 0xde, 0xd0, 0xe7, 0xa7, 0x76, 0xa1, 0x11, 0xa7, 0x43, 0xe4, 0x50, 0xa5, 0xf5, 0x55, 0xbb, - 0xae, 0xbf, 0x4f, 0x55, 0x5a, 0xb3, 0x97, 0x48, 0x9a, 0x0e, 0xb8, 0x13, 0xc6, 0xa4, 0xa2, 0x59, - 0x58, 0x43, 0x5f, 0xc7, 0xe3, 0x3f, 0x10, 0xb4, 0x33, 0xcf, 0x59, 0xa4, 0x98, 0x8c, 0x68, 0x80, - 0xbf, 0x82, 0x66, 0x69, 0x26, 0xf1, 0xdb, 0xa1, 0x14, 0xee, 0xbf, 0x4c, 0x69, 0xef, 0xf5, 0xd3, - 0x2c, 0xe6, 0x06, 0xbf, 0xf0, 0x01, 0x3c, 0xdc, 0x23, 0xa3, 0x83, 0xbe, 0x44, 0xc7, 0x08, 0xff, - 0x04, 0x9d, 0xed, 0x4e, 0xe1, 0xf7, 0xda, 0xed, 0x99, 0xde, 0xf6, 0xf6, 0x9f, 0x61, 0xb3, 0x42, - 0x0b, 0xf3, 0x8a, 0x85, 0xc6, 0x7f, 0x21, 0x68, 0x65, 0xf4, 0x05, 0x8d, 0xbc, 0x80, 0x49, 0x3c, - 0x83, 0xbd, 0x6b, 0xe1, 0x51, 0xf5, 0x74, 0xd4, 0x3a, 0xbf, 0x32, 0xfc, 0x9f, 0xd9, 0x1b, 0x0f, - 0xf7, 0xa8, 0xd2, 0x41, 0x78, 0x0a, 0x70, 0xa5, 0xb8, 0xc8, 0x8d, 0x7a, 0xa5, 0x5d, 0xb5, 0x06, - 0x5f, 0x64, 0x53, 0x64, 0x74, 0xa5, 0x24, 0xa3, 0xe1, 0x4e, 0x46, 0x19, 0xfc, 0x12, 0xab, 0xf1, - 0xcf, 0xb0, 0x97, 0xed, 0xba, 0x6c, 0xef, 0xe1, 0x4b, 0x68, 0x96, 0x7e, 0x85, 0xfc, 0x92, 0x76, - 0x7f, 0xae, 0x1e, 0xd9, 0x25, 0x36, 0x9b, 0xd9, 0xab, 0xf4, 0xd1, 0xe4, 0xf0, 0xc7, 0x83, 0xa5, - 0xaf, 0x7e, 0x4d, 0x16, 0x43, 0x97, 0x87, 0xa3, 0x3c, 0x8d, 0x91, 0x5e, 0xfd, 0x2e, 0x0f, 0x46, - 0x52, 0xb8, 0x0b, 0x43, 0x7f, 0x9d, 0xfc, 0x13, 0x00, 0x00, 0xff, 0xff, 0xc5, 0x48, 0xb4, 0x8a, - 0x5c, 0x06, 0x00, 0x00, + 0x14, 0x65, 0x12, 0xc5, 0x89, 0x6f, 0x9a, 0xbc, 0x30, 0xef, 0xa1, 0x37, 0xc9, 0x6b, 0xd5, 0x34, + 0x65, 0xe1, 0x0d, 0x49, 0x95, 0x0a, 0x24, 0x36, 0x88, 0xa6, 0x8d, 0x68, 0xa4, 0x02, 0xc1, 0xa5, + 0x42, 0x02, 0x24, 0x6b, 0x62, 0x0f, 0xc1, 0x8a, 0xed, 0x19, 0xc6, 0xe3, 0x96, 0x7e, 0x42, 0x3f, + 0x83, 0x5f, 0xe8, 0x82, 0x45, 0x57, 0xfc, 0x10, 0xff, 0x80, 0x3c, 0x76, 0x5c, 0x27, 0xa1, 0x88, + 0xb7, 0x8a, 0x7d, 0xce, 0x3d, 0x67, 0x7c, 0xef, 0xe4, 0x5c, 0xe8, 0x48, 0xe1, 0x8e, 0xd8, 0x52, + 0xb2, 0x38, 0x1e, 0x0a, 0xc9, 0x15, 0xc7, 0x55, 0x29, 0xdc, 0x5e, 0x8b, 0x0b, 0xe5, 0xf3, 0x28, + 0xc7, 0x7a, 0x6f, 0x02, 0xbe, 0x5c, 0x32, 0x39, 0xda, 0x46, 0xfd, 0x5b, 0xb6, 0xf2, 0x95, 0x53, + 0xd6, 0x0f, 0xfe, 0xae, 0x01, 0xbe, 0x56, 0x54, 0xaa, 0xa9, 0x46, 0x6d, 0xf6, 0x5b, 0xc2, 0x62, + 0x85, 0x2d, 0x30, 0xb3, 0x32, 0xc7, 0xf7, 0x08, 0xea, 0x23, 0xcb, 0x9c, 0x34, 0x9f, 0xe6, 0x8d, + 0x0c, 0x9b, 0x5d, 0xd8, 0xeb, 0x27, 0x0f, 0x7f, 0x0a, 0x46, 0xf6, 0x4c, 0x3a, 0x7d, 0x64, 0x35, + 0xc7, 0xef, 0x86, 0xf9, 0x39, 0xc3, 0x5d, 0xdb, 0xcb, 0x0f, 0xec, 0xbc, 0x18, 0x7f, 0x06, 0x86, + 0x64, 0x22, 0xa0, 0xf7, 0xe4, 0x43, 0x2d, 0xdb, 0x2f, 0x64, 0xd3, 0xdf, 0x05, 0x97, 0xca, 0xd6, + 0x64, 0x49, 0x97, 0x55, 0xe3, 0x2b, 0x68, 0x4b, 0xce, 0x43, 0xc7, 0xe5, 0xa1, 0xe0, 0xb1, 0xaf, + 0x18, 0xa9, 0x69, 0xfd, 0x71, 0xa1, 0xb7, 0x39, 0x0f, 0xcf, 0xd7, 0xec, 0xf6, 0xf1, 0x2d, 0x59, + 0x66, 0xf1, 0x27, 0x50, 0xbd, 0x63, 0x0b, 0xd2, 0xd4, 0x16, 0xdd, 0xc2, 0xe2, 0x07, 0xb6, 0xd8, + 0x16, 0xa6, 0x75, 0x78, 0x0a, 0x4d, 0x41, 0xa5, 0xf2, 0x5d, 0x5f, 0xd0, 0x48, 0x91, 0x96, 0x96, + 0x1d, 0x15, 0xb2, 0xf9, 0x33, 0xb7, 0x2d, 0x2f, 0xeb, 0xf0, 0xb7, 0xf0, 0x4a, 0x49, 0xea, 0xae, + 0x4a, 0x4d, 0x18, 0xda, 0xea, 0xe3, 0xc2, 0xea, 0xfb, 0x94, 0x7f, 0xb1, 0x8b, 0xb6, 0xda, 0xa0, + 0xf1, 0x29, 0xd4, 0x34, 0x42, 0xea, 0x5b, 0x57, 0xa0, 0x6d, 0xb6, 0xd5, 0x59, 0x2d, 0x1e, 0x40, + 0x5d, 0x4f, 0xd2, 0xf7, 0x48, 0x55, 0x5f, 0xb0, 0xf9, 0x34, 0x37, 0x52, 0x64, 0x76, 0x61, 0x67, + 0xbf, 0x1e, 0x7e, 0x07, 0xa6, 0xae, 0x89, 0x68, 0xc8, 0x08, 0x4e, 0xab, 0xec, 0x46, 0x0a, 0x7c, + 0x43, 0x43, 0x86, 0xbb, 0x50, 0x53, 0x7c, 0xc5, 0x22, 0xd2, 0xd0, 0xf2, 0xea, 0x5f, 0xf3, 0x8a, + 0x9d, 0x21, 0xf8, 0x23, 0x30, 0xee, 0x62, 0x27, 0x91, 0x01, 0x31, 0xb5, 0xa8, 0x76, 0x17, 0xdf, + 0xc8, 0x00, 0x9f, 0xc0, 0x1b, 0x37, 0xe0, 0x89, 0xe7, 0x2c, 0xa8, 0xbb, 0x4a, 0x84, 0xc3, 0x22, + 0xba, 0x08, 0x98, 0x47, 0xa0, 0x8f, 0xac, 0x86, 0x8d, 0x35, 0x37, 0xd1, 0xd4, 0x34, 0x63, 0xf0, + 0x31, 0xb4, 0x58, 0xac, 0xfc, 0x90, 0x2a, 0xe6, 0x39, 0xae, 0x48, 0x48, 0xbb, 0x8f, 0x2c, 0x64, + 0xef, 0x15, 0xe0, 0xb9, 0x48, 0xf0, 0x21, 0x34, 0x25, 0x53, 0xf2, 0xde, 0x71, 0x79, 0x12, 0x29, + 0xf2, 0xaa, 0x8f, 0xac, 0x9a, 0x0d, 0x1a, 0x3a, 0x4f, 0x91, 0x89, 0x09, 0x75, 0x99, 0xb5, 0x3f, + 0xe8, 0xc2, 0xdb, 0x2b, 0x3f, 0x56, 0x67, 0xae, 0xf2, 0x6f, 0x37, 0xe7, 0x3a, 0xf8, 0x1c, 0xc8, + 0x2e, 0x15, 0x0b, 0x1e, 0xc5, 0x0c, 0x1f, 0x00, 0x14, 0x79, 0x88, 0x09, 0xea, 0x57, 0x2d, 0xd3, + 0x36, 0xd7, 0x19, 0x88, 0x07, 0x5f, 0x00, 0x5e, 0x0b, 0xa8, 0x77, 0xff, 0xde, 0x21, 0x1a, 0x7c, + 0x07, 0xaf, 0x37, 0xf4, 0xf9, 0xa9, 0x5d, 0x68, 0xc4, 0x69, 0x88, 0x1c, 0xaa, 0xb4, 0xbe, 0x6a, + 0xd7, 0xf5, 0xfb, 0x99, 0x4a, 0x7b, 0xf6, 0x12, 0x49, 0xd3, 0x80, 0x3b, 0x61, 0x4c, 0x2a, 0x9a, + 0x85, 0x35, 0xf4, 0x75, 0x3c, 0xfe, 0x13, 0x41, 0x3b, 0xf3, 0x9c, 0x45, 0x8a, 0xc9, 0x88, 0x06, + 0xf8, 0x2b, 0x68, 0x96, 0x32, 0x89, 0xdf, 0x0e, 0xa5, 0x70, 0xff, 0x25, 0xa5, 0xbd, 0xd7, 0xcf, + 0x59, 0xcc, 0x0d, 0x7e, 0xe1, 0x03, 0x78, 0x7c, 0x40, 0x46, 0x07, 0x7d, 0x89, 0x4e, 0x10, 0xfe, + 0x09, 0x3a, 0xdb, 0x93, 0xc2, 0xfb, 0xda, 0xed, 0x85, 0xd9, 0xf6, 0x0e, 0x5e, 0x60, 0xb3, 0x46, + 0x0b, 0xf3, 0x8a, 0x85, 0xc6, 0x7f, 0x20, 0x68, 0x65, 0xf4, 0x25, 0x8d, 0xbc, 0x80, 0x49, 0x3c, + 0x05, 0xb8, 0x56, 0x5c, 0xe4, 0x07, 0xf5, 0x4a, 0x0b, 0x66, 0x0d, 0xfe, 0xe7, 0x97, 0x1b, 0x8f, + 0x0f, 0xa8, 0xd2, 0x41, 0x78, 0x06, 0x7b, 0x37, 0xc2, 0xa3, 0x8a, 0x5d, 0x2b, 0xc9, 0x68, 0x88, + 0x9f, 0x57, 0x4e, 0x19, 0xfe, 0x3f, 0x56, 0xe3, 0x9f, 0x61, 0x2f, 0x5b, 0x50, 0xd9, 0xb2, 0xc2, + 0x57, 0xd0, 0x2c, 0xdd, 0x5f, 0x3e, 0xd9, 0xdd, 0x7f, 0x44, 0x8f, 0xec, 0x12, 0x9b, 0x13, 0xe8, + 0x55, 0xfa, 0x68, 0x72, 0xf4, 0xe3, 0xe1, 0xd2, 0x57, 0xbf, 0x26, 0x8b, 0xa1, 0xcb, 0xc3, 0x51, + 0xfe, 0x19, 0x23, 0xbd, 0xaf, 0x5d, 0x1e, 0x8c, 0xa4, 0x70, 0x17, 0x86, 0x7e, 0x3b, 0xfd, 0x27, + 0x00, 0x00, 0xff, 0xff, 0x29, 0x44, 0x50, 0xc1, 0x11, 0x06, 0x00, 0x00, }