From 2d0b1ae04d36be0e0d6a18839bedda01300f240d Mon Sep 17 00:00:00 2001 From: David Colburn Date: Tue, 2 Jun 2026 01:58:39 -0400 Subject: [PATCH 1/4] fix nil != empty audio config --- protobufs/livekit_egress.proto | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/protobufs/livekit_egress.proto b/protobufs/livekit_egress.proto index e35e34f17..88f24e385 100644 --- a/protobufs/livekit_egress.proto +++ b/protobufs/livekit_egress.proto @@ -38,7 +38,7 @@ service Egress { // Stop a recording or stream rpc StopEgress(StopEgressRequest) returns (EgressInfo); - // To be deprecated + // TODO: deprecate rpc StartRoomCompositeEgress(RoomCompositeEgressRequest) returns (EgressInfo); rpc StartWebEgress(WebEgressRequest) returns (EgressInfo); rpc StartParticipantEgress(ParticipantEgressRequest) returns (EgressInfo); @@ -99,11 +99,12 @@ message MediaSource { string video_track_id = 1 [(logger.name) = "videoTrackID"]; ParticipantVideo participant_video = 2; } - AudioConfig audio = 3; - DataConfig data = 4; + // TODO: DataConfig data = 4; } +// --- Video Configuration --- + message ParticipantVideo { string identity = 1; bool prefer_screen_share = 2; @@ -114,9 +115,8 @@ message ParticipantVideo { // Unified audio selection and channel routing. // Each route specifies both which audio to capture and which channel to output to. message AudioConfig { - // If empty, all audio captured in both channels. - // If non-empty, only matching audio is captured and routed. Unmatched is excluded. - repeated AudioRoute routes = 1; + bool capture_all = 1; + repeated AudioRoute routes = 2; } message AudioRoute { @@ -125,6 +125,7 @@ message AudioRoute { string participant_identity = 2; ParticipantInfo.Kind participant_kind = 3; } + AudioChannel channel = 4; } @@ -137,16 +138,14 @@ enum AudioChannel { // --- Data Track Configuration --- message DataConfig { - // If empty, all data tracks captured. - // If non-empty, only matching data tracks are captured. - repeated DataSelector selectors = 1; + bool capture_all = 1; + repeated DataSelector selectors = 2; } message DataSelector { oneof match { string track_id = 1 [(logger.name) = "trackID"]; string participant_identity = 2; - string topic = 3; } } @@ -188,7 +187,7 @@ message Output { StreamOutput stream = 2; SegmentedFileOutput segments = 3; ImageOutput images = 4; - // 5 reserved for mcap; + // TODO: DataOutput data = 5; } // Per-output storage override (falls back to request, then server) @@ -232,6 +231,7 @@ message SegmentedFileOutput { SegmentedFileSuffix filename_suffix = 10; // (optional, default INDEX) bool disable_manifest = 8; // disable upload of manifest file (default false) + // TODO: deprecate oneof output { S3Upload s3 = 5; GCPUpload gcp = 6; @@ -260,6 +260,7 @@ message ImageOutput { ImageCodec image_codec = 6; // (optional) bool disable_manifest = 7; // disable upload of manifest file (default false) + // TODO: deprecate oneof output { S3Upload s3 = 8; GCPUpload gcp = 9; @@ -376,6 +377,7 @@ message EgressInfo { StartEgressRequest egress = 29; ExportReplayRequest replay = 30; + // TODO: deprecate RoomCompositeEgressRequest room_composite = 4; WebEgressRequest web = 14; ParticipantEgressRequest participant = 19; @@ -511,7 +513,7 @@ message ExportReplayRequest { repeated WebhookConfig webhooks = 11; } -// --- V1 --- +// TODO: deprecate --- V1 --- message RoomCompositeEgressRequest { string room_name = 1; From a0437e23f216ed859c8dae3449c976f7819bb070 Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 2 Jun 2026 05:59:35 +0000 Subject: [PATCH 2/4] generated protobuf --- livekit/livekit_egress.pb.go | 373 +++++++++++----------- livekit/livekit_egress.twirp.go | 536 ++++++++++++++++---------------- 2 files changed, 451 insertions(+), 458 deletions(-) diff --git a/livekit/livekit_egress.pb.go b/livekit/livekit_egress.pb.go index 61c041eef..bd47110c3 100644 --- a/livekit/livekit_egress.pb.go +++ b/livekit/livekit_egress.pb.go @@ -928,8 +928,7 @@ type MediaSource struct { // *MediaSource_VideoTrackId // *MediaSource_ParticipantVideo Video isMediaSource_Video `protobuf_oneof:"video"` - Audio *AudioConfig `protobuf:"bytes,3,opt,name=audio,proto3" json:"audio,omitempty"` - Data *DataConfig `protobuf:"bytes,4,opt,name=data,proto3" json:"data,omitempty"` + Audio *AudioConfig `protobuf:"bytes,3,opt,name=audio,proto3" json:"audio,omitempty"` // TODO: DataConfig data = 4; unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } @@ -996,13 +995,6 @@ func (x *MediaSource) GetAudio() *AudioConfig { return nil } -func (x *MediaSource) GetData() *DataConfig { - if x != nil { - return x.Data - } - return nil -} - type isMediaSource_Video interface { isMediaSource_Video() } @@ -1074,10 +1066,9 @@ func (x *ParticipantVideo) GetPreferScreenShare() bool { // Unified audio selection and channel routing. // Each route specifies both which audio to capture and which channel to output to. type AudioConfig struct { - state protoimpl.MessageState `protogen:"open.v1"` - // If empty, all audio captured in both channels. - // If non-empty, only matching audio is captured and routed. Unmatched is excluded. - Routes []*AudioRoute `protobuf:"bytes,1,rep,name=routes,proto3" json:"routes,omitempty"` + state protoimpl.MessageState `protogen:"open.v1"` + CaptureAll bool `protobuf:"varint,1,opt,name=capture_all,json=captureAll,proto3" json:"capture_all,omitempty"` + Routes []*AudioRoute `protobuf:"bytes,2,rep,name=routes,proto3" json:"routes,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } @@ -1112,6 +1103,13 @@ func (*AudioConfig) Descriptor() ([]byte, []int) { return file_livekit_egress_proto_rawDescGZIP(), []int{5} } +func (x *AudioConfig) GetCaptureAll() bool { + if x != nil { + return x.CaptureAll + } + return false +} + func (x *AudioConfig) GetRoutes() []*AudioRoute { if x != nil { return x.Routes @@ -1226,10 +1224,9 @@ func (*AudioRoute_ParticipantIdentity) isAudioRoute_Match() {} func (*AudioRoute_ParticipantKind) isAudioRoute_Match() {} type DataConfig struct { - state protoimpl.MessageState `protogen:"open.v1"` - // If empty, all data tracks captured. - // If non-empty, only matching data tracks are captured. - Selectors []*DataSelector `protobuf:"bytes,1,rep,name=selectors,proto3" json:"selectors,omitempty"` + state protoimpl.MessageState `protogen:"open.v1"` + CaptureAll bool `protobuf:"varint,1,opt,name=capture_all,json=captureAll,proto3" json:"capture_all,omitempty"` + Selectors []*DataSelector `protobuf:"bytes,2,rep,name=selectors,proto3" json:"selectors,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } @@ -1264,6 +1261,13 @@ func (*DataConfig) Descriptor() ([]byte, []int) { return file_livekit_egress_proto_rawDescGZIP(), []int{7} } +func (x *DataConfig) GetCaptureAll() bool { + if x != nil { + return x.CaptureAll + } + return false +} + func (x *DataConfig) GetSelectors() []*DataSelector { if x != nil { return x.Selectors @@ -1277,7 +1281,6 @@ type DataSelector struct { // // *DataSelector_TrackId // *DataSelector_ParticipantIdentity - // *DataSelector_Topic Match isDataSelector_Match `protobuf_oneof:"match"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache @@ -1338,15 +1341,6 @@ func (x *DataSelector) GetParticipantIdentity() string { return "" } -func (x *DataSelector) GetTopic() string { - if x != nil { - if x, ok := x.Match.(*DataSelector_Topic); ok { - return x.Topic - } - } - return "" -} - type isDataSelector_Match interface { isDataSelector_Match() } @@ -1359,16 +1353,10 @@ type DataSelector_ParticipantIdentity struct { ParticipantIdentity string `protobuf:"bytes,2,opt,name=participant_identity,json=participantIdentity,proto3,oneof"` } -type DataSelector_Topic struct { - Topic string `protobuf:"bytes,3,opt,name=topic,proto3,oneof"` -} - func (*DataSelector_TrackId) isDataSelector_Match() {} func (*DataSelector_ParticipantIdentity) isDataSelector_Match() {} -func (*DataSelector_Topic) isDataSelector_Match() {} - type EncodingOptions struct { state protoimpl.MessageState `protogen:"open.v1"` Width int32 `protobuf:"varint,1,opt,name=width,proto3" json:"width,omitempty"` // (default 1920) @@ -1619,7 +1607,7 @@ type Output_Segments struct { } type Output_Images struct { - Images *ImageOutput `protobuf:"bytes,4,opt,name=images,proto3,oneof"` // 5 reserved for mcap; + Images *ImageOutput `protobuf:"bytes,4,opt,name=images,proto3,oneof"` // TODO: DataOutput data = 5; } func (*Output_File) isOutput_Config() {} @@ -1754,6 +1742,8 @@ type SegmentedFileOutput struct { SegmentDuration uint32 `protobuf:"varint,4,opt,name=segment_duration,json=segmentDuration,proto3" json:"segment_duration,omitempty"` // in seconds (optional) FilenameSuffix SegmentedFileSuffix `protobuf:"varint,10,opt,name=filename_suffix,json=filenameSuffix,proto3,enum=livekit.SegmentedFileSuffix" json:"filename_suffix,omitempty"` // (optional, default INDEX) DisableManifest bool `protobuf:"varint,8,opt,name=disable_manifest,json=disableManifest,proto3" json:"disable_manifest,omitempty"` // disable upload of manifest file (default false) + // TODO: deprecate + // // Types that are valid to be assigned to Output: // // *SegmentedFileOutput_S3 @@ -1925,6 +1915,8 @@ type ImageOutput struct { FilenameSuffix ImageFileSuffix `protobuf:"varint,5,opt,name=filename_suffix,json=filenameSuffix,proto3,enum=livekit.ImageFileSuffix" json:"filename_suffix,omitempty"` // (optional, default INDEX) ImageCodec ImageCodec `protobuf:"varint,6,opt,name=image_codec,json=imageCodec,proto3,enum=livekit.ImageCodec" json:"image_codec,omitempty"` // (optional) DisableManifest bool `protobuf:"varint,7,opt,name=disable_manifest,json=disableManifest,proto3" json:"disable_manifest,omitempty"` // disable upload of manifest file (default false) + // TODO: deprecate + // // Types that are valid to be assigned to Output: // // *ImageOutput_S3 @@ -3155,6 +3147,7 @@ type EgressInfo_Replay struct { } type EgressInfo_RoomComposite struct { + // TODO: deprecate RoomComposite *RoomCompositeEgressRequest `protobuf:"bytes,4,opt,name=room_composite,json=roomComposite,proto3,oneof"` } @@ -5374,18 +5367,19 @@ const file_livekit_egress_proto_rawDesc = "" + "audio_only\x18\x02 \x01(\bR\taudioOnly\x12\x1d\n" + "\n" + "video_only\x18\x03 \x01(\bR\tvideoOnly\x12,\n" + - "\x12await_start_signal\x18\x04 \x01(\bR\x10awaitStartSignal\"\xee\x01\n" + + "\x12await_start_signal\x18\x04 \x01(\bR\x10awaitStartSignal\"\xc5\x01\n" + "\vMediaSource\x127\n" + "\x0evideo_track_id\x18\x01 \x01(\tB\x0f\xbaP\fvideoTrackIDH\x00R\fvideoTrackId\x12H\n" + "\x11participant_video\x18\x02 \x01(\v2\x19.livekit.ParticipantVideoH\x00R\x10participantVideo\x12*\n" + - "\x05audio\x18\x03 \x01(\v2\x14.livekit.AudioConfigR\x05audio\x12'\n" + - "\x04data\x18\x04 \x01(\v2\x13.livekit.DataConfigR\x04dataB\a\n" + + "\x05audio\x18\x03 \x01(\v2\x14.livekit.AudioConfigR\x05audioB\a\n" + "\x05video\"^\n" + "\x10ParticipantVideo\x12\x1a\n" + "\bidentity\x18\x01 \x01(\tR\bidentity\x12.\n" + - "\x13prefer_screen_share\x18\x02 \x01(\bR\x11preferScreenShare\":\n" + - "\vAudioConfig\x12+\n" + - "\x06routes\x18\x01 \x03(\v2\x13.livekit.AudioRouteR\x06routes\"\xf0\x01\n" + + "\x13prefer_screen_share\x18\x02 \x01(\bR\x11preferScreenShare\"[\n" + + "\vAudioConfig\x12\x1f\n" + + "\vcapture_all\x18\x01 \x01(\bR\n" + + "captureAll\x12+\n" + + "\x06routes\x18\x02 \x03(\v2\x13.livekit.AudioRouteR\x06routes\"\xf0\x01\n" + "\n" + "AudioRoute\x12'\n" + "\btrack_id\x18\x01 \x01(\tB\n" + @@ -5393,15 +5387,16 @@ const file_livekit_egress_proto_rawDesc = "" + "\x14participant_identity\x18\x02 \x01(\tH\x00R\x13participantIdentity\x12J\n" + "\x10participant_kind\x18\x03 \x01(\x0e2\x1d.livekit.ParticipantInfo.KindH\x00R\x0fparticipantKind\x12/\n" + "\achannel\x18\x04 \x01(\x0e2\x15.livekit.AudioChannelR\achannelB\a\n" + - "\x05match\"A\n" + + "\x05match\"b\n" + "\n" + - "DataConfig\x123\n" + - "\tselectors\x18\x01 \x03(\v2\x15.livekit.DataSelectorR\tselectors\"\x8d\x01\n" + + "DataConfig\x12\x1f\n" + + "\vcapture_all\x18\x01 \x01(\bR\n" + + "captureAll\x123\n" + + "\tselectors\x18\x02 \x03(\v2\x15.livekit.DataSelectorR\tselectors\"u\n" + "\fDataSelector\x12'\n" + "\btrack_id\x18\x01 \x01(\tB\n" + "\xbaP\atrackIDH\x00R\atrackId\x123\n" + - "\x14participant_identity\x18\x02 \x01(\tH\x00R\x13participantIdentity\x12\x16\n" + - "\x05topic\x18\x03 \x01(\tH\x00R\x05topicB\a\n" + + "\x14participant_identity\x18\x02 \x01(\tH\x00R\x13participantIdentityB\a\n" + "\x05match\"\xd2\x03\n" + "\x0fEncodingOptions\x12\x14\n" + "\x05width\x18\x01 \x01(\x05R\x05width\x12\x16\n" + @@ -5894,150 +5889,149 @@ var file_livekit_egress_proto_depIdxs = []int32{ 55, // 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 - 18, // 10: livekit.MediaSource.data:type_name -> livekit.DataConfig - 17, // 11: livekit.AudioConfig.routes:type_name -> livekit.AudioRoute - 56, // 12: livekit.AudioRoute.participant_kind:type_name -> livekit.ParticipantInfo.Kind - 0, // 13: livekit.AudioRoute.channel:type_name -> livekit.AudioChannel - 19, // 14: livekit.DataConfig.selectors:type_name -> livekit.DataSelector - 57, // 15: livekit.EncodingOptions.audio_codec:type_name -> livekit.AudioCodec - 58, // 16: livekit.EncodingOptions.video_codec:type_name -> livekit.VideoCodec - 22, // 17: livekit.Output.file:type_name -> livekit.FileOutput - 23, // 18: livekit.Output.stream:type_name -> livekit.StreamOutput - 24, // 19: livekit.Output.segments:type_name -> livekit.SegmentedFileOutput - 25, // 20: livekit.Output.images:type_name -> livekit.ImageOutput - 26, // 21: livekit.Output.storage:type_name -> livekit.StorageConfig - 2, // 22: livekit.FileOutput.file_type:type_name -> livekit.EncodedFileType - 3, // 23: livekit.StreamOutput.protocol:type_name -> livekit.StreamProtocol - 4, // 24: livekit.SegmentedFileOutput.protocol:type_name -> livekit.SegmentedFileProtocol - 5, // 25: livekit.SegmentedFileOutput.filename_suffix:type_name -> livekit.SegmentedFileSuffix - 27, // 26: livekit.SegmentedFileOutput.s3:type_name -> livekit.S3Upload - 28, // 27: livekit.SegmentedFileOutput.gcp:type_name -> livekit.GCPUpload - 29, // 28: livekit.SegmentedFileOutput.azure:type_name -> livekit.AzureBlobUpload - 30, // 29: livekit.SegmentedFileOutput.aliOSS:type_name -> livekit.AliOSSUpload - 6, // 30: livekit.ImageOutput.filename_suffix:type_name -> livekit.ImageFileSuffix - 59, // 31: livekit.ImageOutput.image_codec:type_name -> livekit.ImageCodec - 27, // 32: livekit.ImageOutput.s3:type_name -> livekit.S3Upload - 28, // 33: livekit.ImageOutput.gcp:type_name -> livekit.GCPUpload - 29, // 34: livekit.ImageOutput.azure:type_name -> livekit.AzureBlobUpload - 30, // 35: livekit.ImageOutput.aliOSS:type_name -> livekit.AliOSSUpload - 27, // 36: livekit.StorageConfig.s3:type_name -> livekit.S3Upload - 28, // 37: livekit.StorageConfig.gcp:type_name -> livekit.GCPUpload - 29, // 38: livekit.StorageConfig.azure:type_name -> livekit.AzureBlobUpload - 30, // 39: livekit.StorageConfig.aliOSS:type_name -> livekit.AliOSSUpload - 54, // 40: livekit.S3Upload.metadata:type_name -> livekit.S3Upload.MetadataEntry - 31, // 41: livekit.S3Upload.proxy:type_name -> livekit.ProxyConfig - 31, // 42: livekit.GCPUpload.proxy:type_name -> livekit.ProxyConfig - 60, // 43: livekit.ListEgressRequest.page_token:type_name -> livekit.TokenPagination - 36, // 44: livekit.ListEgressResponse.items:type_name -> livekit.EgressInfo - 60, // 45: livekit.ListEgressResponse.next_page_token:type_name -> livekit.TokenPagination - 7, // 46: livekit.EgressInfo.source_type:type_name -> livekit.EgressSourceType - 8, // 47: livekit.EgressInfo.status:type_name -> livekit.EgressStatus - 11, // 48: livekit.EgressInfo.egress:type_name -> livekit.StartEgressRequest - 43, // 49: livekit.EgressInfo.replay:type_name -> livekit.ExportReplayRequest - 44, // 50: livekit.EgressInfo.room_composite:type_name -> livekit.RoomCompositeEgressRequest - 45, // 51: livekit.EgressInfo.web:type_name -> livekit.WebEgressRequest - 46, // 52: livekit.EgressInfo.participant:type_name -> livekit.ParticipantEgressRequest - 47, // 53: livekit.EgressInfo.track_composite:type_name -> livekit.TrackCompositeEgressRequest - 48, // 54: livekit.EgressInfo.track:type_name -> livekit.TrackEgressRequest - 37, // 55: livekit.EgressInfo.stream_results:type_name -> livekit.StreamInfo - 38, // 56: livekit.EgressInfo.file_results:type_name -> livekit.FileInfo - 39, // 57: livekit.EgressInfo.segment_results:type_name -> livekit.SegmentsInfo - 40, // 58: livekit.EgressInfo.image_results:type_name -> livekit.ImagesInfo - 53, // 59: livekit.EgressInfo.stream:type_name -> livekit.StreamInfoList - 38, // 60: livekit.EgressInfo.file:type_name -> livekit.FileInfo - 39, // 61: livekit.EgressInfo.segments:type_name -> livekit.SegmentsInfo - 10, // 62: livekit.StreamInfo.status:type_name -> livekit.StreamInfo.Status - 1, // 63: livekit.AutoParticipantEgress.preset:type_name -> livekit.EncodingOptionsPreset - 20, // 64: livekit.AutoParticipantEgress.advanced:type_name -> livekit.EncodingOptions - 50, // 65: livekit.AutoParticipantEgress.file_outputs:type_name -> livekit.EncodedFileOutput - 24, // 66: livekit.AutoParticipantEgress.segment_outputs:type_name -> livekit.SegmentedFileOutput - 27, // 67: livekit.AutoTrackEgress.s3:type_name -> livekit.S3Upload - 28, // 68: livekit.AutoTrackEgress.gcp:type_name -> livekit.GCPUpload - 29, // 69: livekit.AutoTrackEgress.azure:type_name -> livekit.AzureBlobUpload - 30, // 70: livekit.AutoTrackEgress.aliOSS:type_name -> livekit.AliOSSUpload - 12, // 71: livekit.ExportReplayRequest.template:type_name -> livekit.TemplateSource - 13, // 72: livekit.ExportReplayRequest.web:type_name -> livekit.WebSource - 14, // 73: livekit.ExportReplayRequest.media:type_name -> livekit.MediaSource - 1, // 74: livekit.ExportReplayRequest.preset:type_name -> livekit.EncodingOptionsPreset - 20, // 75: livekit.ExportReplayRequest.advanced:type_name -> livekit.EncodingOptions - 21, // 76: livekit.ExportReplayRequest.outputs:type_name -> livekit.Output - 26, // 77: livekit.ExportReplayRequest.storage:type_name -> livekit.StorageConfig - 55, // 78: livekit.ExportReplayRequest.webhooks:type_name -> livekit.WebhookConfig - 9, // 79: livekit.RoomCompositeEgressRequest.audio_mixing:type_name -> livekit.AudioMixing - 50, // 80: livekit.RoomCompositeEgressRequest.file:type_name -> livekit.EncodedFileOutput - 23, // 81: livekit.RoomCompositeEgressRequest.stream:type_name -> livekit.StreamOutput - 24, // 82: livekit.RoomCompositeEgressRequest.segments:type_name -> livekit.SegmentedFileOutput - 1, // 83: livekit.RoomCompositeEgressRequest.preset:type_name -> livekit.EncodingOptionsPreset - 20, // 84: livekit.RoomCompositeEgressRequest.advanced:type_name -> livekit.EncodingOptions - 50, // 85: livekit.RoomCompositeEgressRequest.file_outputs:type_name -> livekit.EncodedFileOutput - 23, // 86: livekit.RoomCompositeEgressRequest.stream_outputs:type_name -> livekit.StreamOutput - 24, // 87: livekit.RoomCompositeEgressRequest.segment_outputs:type_name -> livekit.SegmentedFileOutput - 25, // 88: livekit.RoomCompositeEgressRequest.image_outputs:type_name -> livekit.ImageOutput - 55, // 89: livekit.RoomCompositeEgressRequest.webhooks:type_name -> livekit.WebhookConfig - 50, // 90: livekit.WebEgressRequest.file:type_name -> livekit.EncodedFileOutput - 23, // 91: livekit.WebEgressRequest.stream:type_name -> livekit.StreamOutput - 24, // 92: livekit.WebEgressRequest.segments:type_name -> livekit.SegmentedFileOutput - 1, // 93: livekit.WebEgressRequest.preset:type_name -> livekit.EncodingOptionsPreset - 20, // 94: livekit.WebEgressRequest.advanced:type_name -> livekit.EncodingOptions - 50, // 95: livekit.WebEgressRequest.file_outputs:type_name -> livekit.EncodedFileOutput - 23, // 96: livekit.WebEgressRequest.stream_outputs:type_name -> livekit.StreamOutput - 24, // 97: livekit.WebEgressRequest.segment_outputs:type_name -> livekit.SegmentedFileOutput - 25, // 98: livekit.WebEgressRequest.image_outputs:type_name -> livekit.ImageOutput - 55, // 99: livekit.WebEgressRequest.webhooks:type_name -> livekit.WebhookConfig - 1, // 100: livekit.ParticipantEgressRequest.preset:type_name -> livekit.EncodingOptionsPreset - 20, // 101: livekit.ParticipantEgressRequest.advanced:type_name -> livekit.EncodingOptions - 50, // 102: livekit.ParticipantEgressRequest.file_outputs:type_name -> livekit.EncodedFileOutput - 23, // 103: livekit.ParticipantEgressRequest.stream_outputs:type_name -> livekit.StreamOutput - 24, // 104: livekit.ParticipantEgressRequest.segment_outputs:type_name -> livekit.SegmentedFileOutput - 25, // 105: livekit.ParticipantEgressRequest.image_outputs:type_name -> livekit.ImageOutput - 55, // 106: livekit.ParticipantEgressRequest.webhooks:type_name -> livekit.WebhookConfig - 50, // 107: livekit.TrackCompositeEgressRequest.file:type_name -> livekit.EncodedFileOutput - 23, // 108: livekit.TrackCompositeEgressRequest.stream:type_name -> livekit.StreamOutput - 24, // 109: livekit.TrackCompositeEgressRequest.segments:type_name -> livekit.SegmentedFileOutput - 1, // 110: livekit.TrackCompositeEgressRequest.preset:type_name -> livekit.EncodingOptionsPreset - 20, // 111: livekit.TrackCompositeEgressRequest.advanced:type_name -> livekit.EncodingOptions - 50, // 112: livekit.TrackCompositeEgressRequest.file_outputs:type_name -> livekit.EncodedFileOutput - 23, // 113: livekit.TrackCompositeEgressRequest.stream_outputs:type_name -> livekit.StreamOutput - 24, // 114: livekit.TrackCompositeEgressRequest.segment_outputs:type_name -> livekit.SegmentedFileOutput - 25, // 115: livekit.TrackCompositeEgressRequest.image_outputs:type_name -> livekit.ImageOutput - 55, // 116: livekit.TrackCompositeEgressRequest.webhooks:type_name -> livekit.WebhookConfig - 49, // 117: livekit.TrackEgressRequest.file:type_name -> livekit.DirectFileOutput - 55, // 118: livekit.TrackEgressRequest.webhooks:type_name -> livekit.WebhookConfig - 27, // 119: livekit.DirectFileOutput.s3:type_name -> livekit.S3Upload - 28, // 120: livekit.DirectFileOutput.gcp:type_name -> livekit.GCPUpload - 29, // 121: livekit.DirectFileOutput.azure:type_name -> livekit.AzureBlobUpload - 30, // 122: livekit.DirectFileOutput.aliOSS:type_name -> livekit.AliOSSUpload - 2, // 123: livekit.EncodedFileOutput.file_type:type_name -> livekit.EncodedFileType - 27, // 124: livekit.EncodedFileOutput.s3:type_name -> livekit.S3Upload - 28, // 125: livekit.EncodedFileOutput.gcp:type_name -> livekit.GCPUpload - 29, // 126: livekit.EncodedFileOutput.azure:type_name -> livekit.AzureBlobUpload - 30, // 127: livekit.EncodedFileOutput.aliOSS:type_name -> livekit.AliOSSUpload - 37, // 128: livekit.StreamInfoList.info:type_name -> livekit.StreamInfo - 11, // 129: livekit.Egress.StartEgress:input_type -> livekit.StartEgressRequest - 51, // 130: livekit.Egress.UpdateLayout:input_type -> livekit.UpdateLayoutRequest - 52, // 131: livekit.Egress.UpdateStream:input_type -> livekit.UpdateStreamRequest - 32, // 132: livekit.Egress.ListEgress:input_type -> livekit.ListEgressRequest - 35, // 133: livekit.Egress.StopEgress:input_type -> livekit.StopEgressRequest - 44, // 134: livekit.Egress.StartRoomCompositeEgress:input_type -> livekit.RoomCompositeEgressRequest - 45, // 135: livekit.Egress.StartWebEgress:input_type -> livekit.WebEgressRequest - 46, // 136: livekit.Egress.StartParticipantEgress:input_type -> livekit.ParticipantEgressRequest - 47, // 137: livekit.Egress.StartTrackCompositeEgress:input_type -> livekit.TrackCompositeEgressRequest - 48, // 138: livekit.Egress.StartTrackEgress:input_type -> livekit.TrackEgressRequest - 36, // 139: livekit.Egress.StartEgress:output_type -> livekit.EgressInfo - 36, // 140: livekit.Egress.UpdateLayout:output_type -> livekit.EgressInfo - 36, // 141: livekit.Egress.UpdateStream:output_type -> livekit.EgressInfo - 33, // 142: livekit.Egress.ListEgress:output_type -> livekit.ListEgressResponse - 36, // 143: livekit.Egress.StopEgress:output_type -> livekit.EgressInfo - 36, // 144: livekit.Egress.StartRoomCompositeEgress:output_type -> livekit.EgressInfo - 36, // 145: livekit.Egress.StartWebEgress:output_type -> livekit.EgressInfo - 36, // 146: livekit.Egress.StartParticipantEgress:output_type -> livekit.EgressInfo - 36, // 147: livekit.Egress.StartTrackCompositeEgress:output_type -> livekit.EgressInfo - 36, // 148: livekit.Egress.StartTrackEgress:output_type -> livekit.EgressInfo - 139, // [139:149] is the sub-list for method output_type - 129, // [129:139] is the sub-list for method input_type - 129, // [129:129] is the sub-list for extension type_name - 129, // [129:129] is the sub-list for extension extendee - 0, // [0:129] is the sub-list for field type_name + 17, // 10: livekit.AudioConfig.routes:type_name -> livekit.AudioRoute + 56, // 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 + 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 + 25, // 19: livekit.Output.images:type_name -> livekit.ImageOutput + 26, // 20: livekit.Output.storage:type_name -> livekit.StorageConfig + 2, // 21: livekit.FileOutput.file_type:type_name -> livekit.EncodedFileType + 3, // 22: livekit.StreamOutput.protocol:type_name -> livekit.StreamProtocol + 4, // 23: livekit.SegmentedFileOutput.protocol:type_name -> livekit.SegmentedFileProtocol + 5, // 24: livekit.SegmentedFileOutput.filename_suffix:type_name -> livekit.SegmentedFileSuffix + 27, // 25: livekit.SegmentedFileOutput.s3:type_name -> livekit.S3Upload + 28, // 26: livekit.SegmentedFileOutput.gcp:type_name -> livekit.GCPUpload + 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 + 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 + 30, // 34: livekit.ImageOutput.aliOSS:type_name -> livekit.AliOSSUpload + 27, // 35: livekit.StorageConfig.s3:type_name -> livekit.S3Upload + 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 + 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 + 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 + 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 + 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 + 29, // 68: livekit.AutoTrackEgress.azure:type_name -> livekit.AzureBlobUpload + 30, // 69: livekit.AutoTrackEgress.aliOSS:type_name -> livekit.AliOSSUpload + 12, // 70: livekit.ExportReplayRequest.template:type_name -> livekit.TemplateSource + 13, // 71: livekit.ExportReplayRequest.web:type_name -> livekit.WebSource + 14, // 72: livekit.ExportReplayRequest.media:type_name -> livekit.MediaSource + 1, // 73: livekit.ExportReplayRequest.preset:type_name -> livekit.EncodingOptionsPreset + 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 + 9, // 78: livekit.RoomCompositeEgressRequest.audio_mixing:type_name -> livekit.AudioMixing + 50, // 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 30, // 121: livekit.DirectFileOutput.aliOSS:type_name -> livekit.AliOSSUpload + 2, // 122: livekit.EncodedFileOutput.file_type:type_name -> livekit.EncodedFileType + 27, // 123: livekit.EncodedFileOutput.s3:type_name -> livekit.S3Upload + 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 + 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 + 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 + 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 + 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 + 128, // [128:128] is the sub-list for extension extendee + 0, // [0:128] is the sub-list for field type_name } func init() { file_livekit_egress_proto_init() } @@ -6065,7 +6059,6 @@ func file_livekit_egress_proto_init() { file_livekit_egress_proto_msgTypes[8].OneofWrappers = []any{ (*DataSelector_TrackId)(nil), (*DataSelector_ParticipantIdentity)(nil), - (*DataSelector_Topic)(nil), } file_livekit_egress_proto_msgTypes[10].OneofWrappers = []any{ (*Output_File)(nil), diff --git a/livekit/livekit_egress.twirp.go b/livekit/livekit_egress.twirp.go index 32c179e8e..df29645d2 100644 --- a/livekit/livekit_egress.twirp.go +++ b/livekit/livekit_egress.twirp.go @@ -42,7 +42,7 @@ type Egress interface { // Stop a recording or stream StopEgress(context.Context, *StopEgressRequest) (*EgressInfo, error) - // To be deprecated + // TODO: deprecate StartRoomCompositeEgress(context.Context, *RoomCompositeEgressRequest) (*EgressInfo, error) StartWebEgress(context.Context, *WebEgressRequest) (*EgressInfo, error) @@ -3034,272 +3034,272 @@ func (s *egressServer) PathPrefix() string { } var twirpFileDescriptor2 = []byte{ - // 4267 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x3b, 0x4b, 0x70, 0x1c, 0x49, - 0x56, 0xaa, 0xea, 0xff, 0xeb, 0x5f, 0x29, 0x25, 0x6b, 0xda, 0xf2, 0x7a, 0xec, 0x6d, 0xef, 0x8c, + // 4259 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, 0x04, 0x41, 0x45, 0xa9, 0x2b, 0xd5, 0xaa, 0x50, 0x77, 0x55, 0x6f, - 0x55, 0xb5, 0x6c, 0xed, 0x8d, 0x0b, 0x11, 0x10, 0x2c, 0x41, 0x40, 0x70, 0x81, 0x03, 0x17, 0x82, - 0x03, 0xec, 0x85, 0xab, 0x2f, 0xec, 0x7d, 0x0f, 0x44, 0x40, 0x10, 0x9c, 0x08, 0xee, 0x10, 0x6c, - 0x70, 0xe1, 0x4e, 0xe4, 0xa7, 0xaa, 0xb2, 0x4b, 0x25, 0xb9, 0xdb, 0x1a, 0x86, 0xcb, 0x9e, 0xd4, - 0xf9, 0xde, 0xcb, 0xac, 0x97, 0xf9, 0x3e, 0xf9, 0xde, 0xcb, 0x27, 0x58, 0x1e, 0x5a, 0x67, 0xf8, - 0xd4, 0xf2, 0x75, 0x3c, 0x70, 0xb1, 0xe7, 0xad, 0x8f, 0x5d, 0xc7, 0x77, 0x50, 0x8e, 0x43, 0x57, - 0x43, 0xf4, 0xc8, 0x31, 0xf1, 0x90, 0xa3, 0x57, 0x97, 0x87, 0xce, 0x60, 0x80, 0xdd, 0x47, 0xce, - 0xd8, 0xb7, 0x1c, 0x9b, 0x43, 0xeb, 0xff, 0x9a, 0x02, 0xd4, 0xf5, 0x0d, 0xd7, 0x57, 0xe9, 0x52, - 0x1a, 0xfe, 0xf1, 0x04, 0x7b, 0x3e, 0xba, 0x05, 0x05, 0xd7, 0x71, 0x46, 0xba, 0x6d, 0x8c, 0x70, - 0x4d, 0xba, 0x2b, 0x3d, 0x28, 0x68, 0x79, 0x02, 0x38, 0x30, 0x46, 0x18, 0x7d, 0x0f, 0xf2, 0x3e, - 0x1e, 0x8d, 0x87, 0x86, 0x8f, 0x6b, 0xf2, 0x5d, 0xe9, 0x41, 0x71, 0xe3, 0x83, 0x75, 0xfe, 0xc9, - 0xf5, 0x1e, 0x47, 0x74, 0x9d, 0x89, 0xdb, 0xc7, 0xbb, 0x0b, 0x5a, 0x48, 0x8a, 0x3e, 0x86, 0xd4, - 0x6b, 0x7c, 0x54, 0x4b, 0xd1, 0x19, 0x28, 0x9c, 0xf1, 0x0a, 0x1f, 0x85, 0xc4, 0x84, 0x00, 0x7d, - 0x0a, 0x99, 0x11, 0x36, 0x2d, 0xa3, 0x96, 0xa6, 0x94, 0xcb, 0x21, 0xe5, 0x3e, 0x81, 0x86, 0xb4, - 0x8c, 0x08, 0x7d, 0x06, 0xd9, 0xb1, 0x8b, 0x3d, 0xec, 0xd7, 0x32, 0x77, 0xa5, 0x07, 0x95, 0x8d, - 0x0f, 0x43, 0x72, 0xd5, 0xee, 0x3b, 0xa6, 0x65, 0x0f, 0xda, 0x6c, 0xc3, 0x1d, 0x4a, 0xb5, 0x2b, - 0x69, 0x9c, 0x1e, 0x3d, 0x85, 0xbc, 0x61, 0x9e, 0x19, 0x76, 0x1f, 0x9b, 0xb5, 0x2c, 0xfd, 0x54, - 0xed, 0xb2, 0xb9, 0xbb, 0x92, 0x16, 0xd2, 0xa2, 0x4f, 0x20, 0xe7, 0x4c, 0xfc, 0xf1, 0xc4, 0xf7, - 0x6a, 0xb9, 0xbb, 0xa9, 0x07, 0xc5, 0x8d, 0x6a, 0x38, 0xad, 0x4d, 0xe1, 0x5a, 0x80, 0x47, 0x8f, - 0x21, 0xe7, 0xf9, 0x8e, 0x6b, 0x0c, 0x70, 0x2d, 0x4f, 0xbf, 0xb0, 0x12, 0x92, 0x76, 0x19, 0x7c, - 0xdb, 0xb1, 0x8f, 0xad, 0x81, 0x16, 0x90, 0xa1, 0x0d, 0xc8, 0xbf, 0xc6, 0x47, 0x27, 0x8e, 0x73, - 0xea, 0xd5, 0x0a, 0x74, 0xf5, 0x15, 0xf1, 0xa4, 0x08, 0x82, 0x4f, 0x09, 0xe9, 0xb6, 0xf2, 0x90, - 0xf5, 0xe8, 0xa9, 0x6c, 0x01, 0xe4, 0x31, 0xe7, 0xbc, 0xfe, 0xc7, 0x12, 0x54, 0xa6, 0xa5, 0x81, - 0x56, 0x20, 0x3b, 0x34, 0xce, 0x9d, 0x89, 0xcf, 0x45, 0xca, 0x47, 0xe8, 0x36, 0x80, 0x31, 0x31, - 0x2d, 0x47, 0x77, 0xec, 0xe1, 0x39, 0x15, 0x69, 0x5e, 0x2b, 0x50, 0x48, 0xdb, 0x1e, 0x9e, 0x13, - 0xf4, 0x99, 0x65, 0x62, 0x8e, 0x4e, 0x31, 0x34, 0x85, 0x50, 0xf4, 0xc7, 0x50, 0xed, 0x4f, 0x3c, - 0xdf, 0x19, 0xe9, 0x47, 0x86, 0x87, 0xf5, 0x89, 0x3b, 0xa4, 0x92, 0x2b, 0x68, 0x65, 0x06, 0xde, - 0x32, 0x3c, 0x7c, 0xe8, 0x0e, 0xeb, 0x7f, 0x20, 0x41, 0x21, 0x14, 0x36, 0x52, 0x20, 0x45, 0x28, - 0x19, 0x23, 0xe4, 0xe7, 0x35, 0xb9, 0xf8, 0x14, 0x90, 0xf1, 0xda, 0xb0, 0x7c, 0xdd, 0x23, 0xda, - 0xac, 0x7b, 0xd6, 0xc0, 0x36, 0x18, 0x23, 0x79, 0x4d, 0xa1, 0x18, 0xaa, 0xe6, 0x5d, 0x0a, 0xaf, - 0xff, 0x52, 0x82, 0xa2, 0xa0, 0x4e, 0xe8, 0x19, 0x54, 0xd8, 0xe2, 0xbe, 0x6b, 0xf4, 0x4f, 0x75, - 0xcb, 0x64, 0x8c, 0x6d, 0x55, 0xdf, 0x76, 0x4a, 0x14, 0xd1, 0x23, 0xf0, 0x56, 0x73, 0x77, 0x41, - 0x13, 0xc7, 0x26, 0xda, 0x85, 0xc5, 0xb1, 0xe1, 0xfa, 0x56, 0xdf, 0x1a, 0x1b, 0xb6, 0xaf, 0x53, - 0x1c, 0x37, 0x8a, 0x9b, 0xa1, 0xe0, 0x3a, 0x11, 0xc5, 0x97, 0x84, 0x60, 0x77, 0x41, 0x53, 0xc6, - 0x31, 0x18, 0x5a, 0x83, 0x0c, 0xdd, 0x2c, 0x37, 0x90, 0x48, 0xed, 0x1b, 0x04, 0xca, 0x85, 0xce, - 0x48, 0xd0, 0x7d, 0x48, 0x9b, 0x86, 0x1f, 0x58, 0xc8, 0x52, 0x48, 0xda, 0x34, 0x7c, 0x83, 0x53, - 0x52, 0x82, 0xad, 0x1c, 0x64, 0x28, 0x4b, 0xf5, 0xdf, 0x05, 0x25, 0xce, 0x05, 0x5a, 0x85, 0xbc, - 0x65, 0x62, 0xdb, 0xb7, 0xfc, 0xf3, 0xc0, 0xc6, 0x83, 0x31, 0x5a, 0x87, 0xa5, 0xb1, 0x8b, 0x8f, - 0xb1, 0xab, 0x7b, 0x7d, 0x17, 0x63, 0x5b, 0xf7, 0x4e, 0x0c, 0x17, 0x73, 0xa9, 0x2c, 0x32, 0x54, - 0x97, 0x62, 0xba, 0x04, 0x51, 0x7f, 0x0e, 0x45, 0x81, 0x4f, 0xf4, 0x10, 0xb2, 0xae, 0x33, 0xf1, - 0xb1, 0x57, 0x93, 0xa8, 0x12, 0x2f, 0x4d, 0xef, 0x46, 0x23, 0x38, 0x8d, 0x93, 0xd4, 0xff, 0x5b, - 0x02, 0x88, 0xc0, 0xe8, 0x3e, 0xe4, 0x63, 0x52, 0x80, 0xb7, 0x9d, 0x9c, 0x1f, 0x0a, 0x80, 0xff, - 0x34, 0xd1, 0x26, 0x2c, 0x8b, 0x67, 0x1f, 0xee, 0x85, 0x30, 0x59, 0xd8, 0x5d, 0xd0, 0x96, 0x04, - 0x6c, 0x2b, 0xd8, 0xd8, 0x0f, 0x41, 0x3c, 0x7a, 0xfd, 0xd4, 0xb2, 0x4d, 0x7a, 0xe2, 0x95, 0x8d, - 0xdb, 0x49, 0xf2, 0x6a, 0xd9, 0xc7, 0xce, 0xfa, 0x4b, 0xcb, 0x36, 0x77, 0x17, 0xb4, 0xaa, 0x30, - 0x91, 0x80, 0xd0, 0x23, 0xc8, 0xf5, 0x4f, 0x0c, 0xdb, 0xc6, 0x4c, 0xd1, 0x2a, 0x1b, 0x37, 0x62, - 0x42, 0x63, 0x48, 0x2d, 0xa0, 0x22, 0xe2, 0x18, 0x19, 0x7e, 0xff, 0xa4, 0xde, 0x00, 0x88, 0x64, - 0x85, 0x36, 0xa1, 0xe0, 0xe1, 0x21, 0xee, 0xfb, 0x8e, 0x1b, 0x1c, 0xd8, 0x8d, 0x29, 0x99, 0x76, - 0x39, 0x56, 0x8b, 0xe8, 0xea, 0x3f, 0x95, 0xa0, 0x24, 0xe2, 0xfe, 0x8f, 0xcf, 0x6d, 0x05, 0x32, - 0xbe, 0x33, 0xb6, 0xfa, 0xf4, 0xb0, 0x08, 0x15, 0x1b, 0x46, 0x5b, 0xfa, 0xa7, 0x14, 0x54, 0x63, - 0x6e, 0x13, 0x2d, 0x43, 0xe6, 0xb5, 0x65, 0xfa, 0x27, 0x94, 0x9f, 0x8c, 0xc6, 0x06, 0xc4, 0x0d, - 0x9d, 0x60, 0x6b, 0x70, 0xe2, 0xd3, 0x2f, 0x66, 0x34, 0x3e, 0x22, 0xd4, 0x26, 0x1e, 0xfb, 0x27, - 0xf4, 0x13, 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, 0x44, 0x81, 0x5b, 0x0c, 0x86, 0xee, 0x43, 0x95, 0x11, 0x1d, - 0xbb, 0xe4, 0x56, 0xb4, 0xfb, 0xe7, 0xb5, 0x1c, 0x25, 0xab, 0x50, 0xf0, 0x4e, 0x00, 0x25, 0x3c, - 0x30, 0xe7, 0xc1, 0x78, 0xc8, 0xc7, 0x78, 0xa0, 0xc6, 0xc6, 0x79, 0x38, 0x0b, 0x7f, 0x13, 0x1e, - 0xd8, 0xac, 0x80, 0x87, 0x02, 0xe3, 0x81, 0x02, 0x03, 0x1e, 0x3e, 0x05, 0x74, 0x8a, 0xcf, 0x75, - 0xba, 0x5f, 0xdd, 0xb2, 0x7d, 0xec, 0x9e, 0x19, 0xc3, 0x1a, 0xdc, 0x95, 0x1e, 0x48, 0x9a, 0x72, - 0x8a, 0xcf, 0x77, 0x08, 0xa2, 0xc5, 0xe1, 0xe8, 0x7e, 0xb0, 0xad, 0x1f, 0x4f, 0x8c, 0x21, 0x91, - 0x68, 0x91, 0x2c, 0xb9, 0x25, 0xd7, 0x24, 0xbe, 0xb5, 0x1f, 0x31, 0x38, 0x21, 0x64, 0xdf, 0x0e, - 0x08, 0x4b, 0x11, 0x21, 0x45, 0x70, 0xc2, 0xfa, 0x1f, 0xc9, 0x90, 0x65, 0x97, 0x1a, 0xfa, 0x04, - 0xd2, 0xc7, 0xd6, 0x90, 0x45, 0x03, 0xa2, 0x41, 0xef, 0x58, 0x43, 0xcc, 0x48, 0x76, 0x17, 0x34, - 0x4a, 0x82, 0x1e, 0x41, 0xd6, 0xf3, 0x5d, 0x6c, 0x8c, 0xb8, 0x27, 0xbc, 0x21, 0xdc, 0x7a, 0x04, - 0x1c, 0x92, 0x73, 0x32, 0xf4, 0x1c, 0xf2, 0x1e, 0x1e, 0x8c, 0xb0, 0xed, 0x7b, 0xdc, 0xfd, 0x7d, - 0x2b, 0x9a, 0xc2, 0x10, 0xd8, 0x9c, 0xfa, 0x50, 0x48, 0x8f, 0xd6, 0x21, 0x6b, 0x8d, 0x8c, 0x01, - 0xf6, 0x2e, 0xc4, 0x0b, 0x2d, 0x02, 0x8e, 0xbe, 0xc5, 0xa8, 0xc4, 0x3b, 0x39, 0x3b, 0xd3, 0x9d, - 0x4c, 0xee, 0xd7, 0x3e, 0x05, 0xd5, 0xff, 0x50, 0x02, 0x88, 0xd8, 0x40, 0xdf, 0x83, 0x02, 0xd9, - 0xaf, 0xee, 0x9f, 0x8f, 0xd9, 0xb9, 0x54, 0xe2, 0x21, 0x04, 0xe3, 0xba, 0x77, 0x3e, 0xc6, 0x5a, - 0xfe, 0x98, 0xff, 0x22, 0x7e, 0x97, 0xfc, 0x1e, 0x1b, 0xfe, 0x09, 0xb3, 0x39, 0x2d, 0x1c, 0xa3, - 0x4f, 0x40, 0x31, 0x2d, 0xcf, 0x38, 0x1a, 0x62, 0x7d, 0x64, 0xd8, 0xd6, 0x31, 0xf6, 0x7c, 0x7e, - 0xd7, 0x55, 0x39, 0x7c, 0x9f, 0x83, 0xeb, 0xaf, 0xa0, 0x24, 0x1e, 0x27, 0xda, 0x84, 0x3c, 0x8d, - 0xe9, 0xfa, 0xce, 0x90, 0x33, 0xf3, 0x41, 0xec, 0xdc, 0x3b, 0x1c, 0xad, 0x85, 0x84, 0x08, 0x41, - 0x7a, 0xe2, 0x0e, 0xbd, 0x9a, 0x7c, 0x37, 0xf5, 0xa0, 0xa0, 0xd1, 0xdf, 0xf5, 0xbf, 0x4e, 0xc3, - 0x52, 0xc2, 0xa9, 0x13, 0x29, 0xc5, 0x3e, 0xf0, 0x61, 0xb2, 0x94, 0x12, 0xbe, 0x73, 0x1f, 0xaa, - 0x64, 0x8f, 0x24, 0x9e, 0xd4, 0xc9, 0xed, 0x61, 0xbd, 0xe1, 0x5b, 0xaf, 0x04, 0xe0, 0x0e, 0x85, - 0x12, 0xb3, 0x18, 0x0f, 0x8d, 0xf3, 0xa1, 0xe5, 0xf9, 0x2c, 0xfa, 0xa4, 0xfe, 0x46, 0x2b, 0x05, - 0x40, 0x1a, 0x81, 0x7e, 0x0a, 0x88, 0x7c, 0x58, 0x9f, 0xa6, 0x2c, 0x52, 0x4a, 0x85, 0x60, 0x3a, - 0x22, 0xf5, 0x27, 0xa0, 0x70, 0x6d, 0xd1, 0xcd, 0x89, 0x6b, 0x10, 0xd7, 0x44, 0x75, 0xa5, 0xac, - 0x55, 0x39, 0xbc, 0xc9, 0xc1, 0x48, 0x15, 0xd8, 0xf4, 0x26, 0xc7, 0x84, 0x4d, 0xa0, 0x3b, 0xbd, - 0x44, 0x1f, 0xbb, 0x94, 0x26, 0xda, 0x04, 0x1b, 0x27, 0x4a, 0x31, 0x9f, 0x28, 0x45, 0x74, 0x0f, - 0x64, 0x6f, 0x93, 0xfa, 0xad, 0xe2, 0xc6, 0x62, 0xf4, 0x91, 0xcd, 0xc3, 0xf1, 0xd0, 0x31, 0xc8, - 0xad, 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, 0xee, 0x1b, 0x63, 0x7f, 0xe2, 0x0a, 0x9e, 0x4a, - 0x62, 0xc7, 0xcc, 0xe1, 0xa1, 0xa3, 0x0a, 0xef, 0x05, 0x39, 0xf9, 0x5e, 0x48, 0x4d, 0xdd, 0x0b, - 0x09, 0xba, 0x93, 0x4e, 0xd4, 0x9d, 0xc6, 0x45, 0xe9, 0x65, 0x62, 0x56, 0x49, 0x19, 0xbe, 0x42, - 0x72, 0x4f, 0xa0, 0x48, 0xfd, 0x04, 0xf7, 0xe5, 0xd9, 0x98, 0x2f, 0xa7, 0xd3, 0xb9, 0x2f, 0xb7, - 0xc2, 0xdf, 0x89, 0xf2, 0xce, 0x5d, 0x25, 0xef, 0xfc, 0x4c, 0xf2, 0x2e, 0xcc, 0x2c, 0x6f, 0x98, - 0x5f, 0xde, 0xc5, 0x79, 0xe5, 0xfd, 0x0b, 0x09, 0xca, 0x53, 0x1e, 0x92, 0xef, 0x45, 0x9a, 0x69, - 0x2f, 0xf2, 0xcc, 0x7b, 0x49, 0xcd, 0xbf, 0x97, 0xf4, 0x6c, 0x7b, 0x01, 0xea, 0xc0, 0xc8, 0x05, - 0xe7, 0xd6, 0xff, 0x33, 0x0d, 0xf9, 0x80, 0x53, 0x54, 0x07, 0x30, 0xfa, 0x7d, 0xec, 0x79, 0xfa, - 0x29, 0xe6, 0xb1, 0xf0, 0x56, 0xea, 0xe7, 0x1d, 0x59, 0x2b, 0x30, 0xf0, 0x4b, 0x7c, 0x8e, 0x6e, - 0x41, 0xd6, 0xc3, 0x7d, 0x17, 0xb3, 0xa8, 0x85, 0xe3, 0x39, 0x08, 0x3d, 0x80, 0xb2, 0x87, 0x3d, - 0xcf, 0x72, 0x6c, 0xdd, 0x77, 0x4e, 0xb1, 0xcd, 0x7c, 0x11, 0xa3, 0x29, 0x71, 0x4c, 0x8f, 0x20, - 0xd0, 0x43, 0xa8, 0x1a, 0x9e, 0x37, 0x19, 0x61, 0xdd, 0x75, 0x86, 0x58, 0x37, 0x5c, 0x9b, 0x5e, - 0xbe, 0x94, 0x56, 0xd2, 0xca, 0x0c, 0xa7, 0x39, 0x43, 0xdc, 0x70, 0x6d, 0xf4, 0x23, 0xf8, 0x40, - 0x24, 0xc6, 0x6f, 0x7c, 0xec, 0xda, 0xc6, 0x90, 0x44, 0x78, 0x65, 0x3a, 0x69, 0xf5, 0xe7, 0x1d, - 0xf9, 0x6d, 0x67, 0x39, 0x9a, 0xa5, 0x72, 0x92, 0x56, 0x53, 0x4b, 0x82, 0x9a, 0xc4, 0xc8, 0x5c, - 0x3c, 0x20, 0x2e, 0x90, 0x39, 0x56, 0x3e, 0x22, 0x97, 0x12, 0xb6, 0xcd, 0xb1, 0x63, 0xd9, 0x3e, - 0xb7, 0xae, 0x70, 0x4c, 0xe6, 0x1c, 0x4d, 0xfa, 0xa7, 0x3c, 0xc7, 0x2e, 0x68, 0x7c, 0x84, 0x1e, - 0x80, 0x72, 0xec, 0xb8, 0x7d, 0xac, 0x93, 0xab, 0x4b, 0xf7, 0xfc, 0xf3, 0x21, 0xbb, 0x53, 0xf3, - 0x5a, 0x85, 0xc2, 0x3b, 0x86, 0x7f, 0xd2, 0x25, 0x50, 0xf4, 0x05, 0xe4, 0x47, 0xd8, 0x37, 0x68, - 0xd2, 0xc2, 0x92, 0xe6, 0x3b, 0x17, 0xf4, 0x65, 0x7d, 0x9f, 0x53, 0xa8, 0xb6, 0xef, 0x9e, 0xb3, - 0xf3, 0x08, 0x67, 0xa1, 0xdb, 0x90, 0xf3, 0x8d, 0xc1, 0xc0, 0xb2, 0x07, 0xd4, 0x78, 0xf8, 0x79, - 0x05, 0x30, 0xf4, 0x04, 0x96, 0xfa, 0x8e, 0xed, 0x53, 0x1f, 0x6f, 0x79, 0x63, 0xc7, 0xb3, 0xa8, - 0x9b, 0x2f, 0x44, 0xa4, 0x88, 0xe3, 0x9b, 0x11, 0x9a, 0xe4, 0x5c, 0x63, 0xd7, 0x79, 0x73, 0xce, - 0xed, 0x27, 0x0a, 0x1d, 0x3a, 0x04, 0x1a, 0xe4, 0x5c, 0x94, 0x64, 0xf5, 0xd7, 0xa1, 0x3c, 0xc5, - 0x20, 0xc9, 0x60, 0x43, 0x6d, 0xd1, 0xc8, 0x4f, 0xe2, 0xd6, 0xce, 0x8c, 0xe1, 0x04, 0xf3, 0xab, - 0x8d, 0x0d, 0x9e, 0xcb, 0x9f, 0x49, 0xf5, 0x33, 0x28, 0x84, 0x0a, 0x8f, 0x3e, 0x82, 0x62, 0xdf, - 0xc5, 0x34, 0xb0, 0x36, 0x86, 0x9e, 0xa8, 0x6e, 0x22, 0x5c, 0x38, 0x75, 0x79, 0xea, 0xd4, 0x43, - 0xa6, 0x53, 0xef, 0x64, 0xba, 0xfe, 0xfb, 0x12, 0x54, 0x63, 0xf6, 0x83, 0x3e, 0x86, 0x92, 0xd1, - 0xef, 0x3b, 0x13, 0xdb, 0x17, 0xca, 0x3b, 0xec, 0x8c, 0x8a, 0x1c, 0x41, 0xaf, 0xcd, 0xef, 0x40, - 0x30, 0xa4, 0x56, 0x21, 0x68, 0x3d, 0x70, 0x38, 0x31, 0x8b, 0x8f, 0xa0, 0x42, 0x0e, 0xd6, 0xb0, - 0x6c, 0xec, 0x8a, 0x17, 0x76, 0x39, 0x84, 0x92, 0xc5, 0xea, 0x7f, 0x29, 0x41, 0x49, 0xb4, 0xca, - 0xeb, 0x9b, 0xdc, 0xd7, 0xa8, 0xc8, 0xf5, 0xdf, 0x81, 0xa2, 0x70, 0x78, 0x09, 0xb5, 0x89, 0x55, - 0xc8, 0x4f, 0x3c, 0x62, 0x42, 0xa3, 0x40, 0xb8, 0xe1, 0x18, 0xdd, 0x81, 0xfc, 0xd8, 0xf0, 0xbc, - 0xd7, 0x8e, 0xcb, 0x32, 0x49, 0xce, 0x67, 0x08, 0xac, 0xff, 0x9d, 0x04, 0x8b, 0x7b, 0x96, 0x37, - 0x4f, 0x89, 0xed, 0x01, 0x14, 0x58, 0x6d, 0x8f, 0x98, 0x3a, 0xdb, 0x7c, 0xf1, 0x6d, 0x27, 0xcf, - 0x60, 0xad, 0xa6, 0x16, 0xfc, 0xa2, 0xf6, 0x6c, 0xf4, 0x7d, 0xeb, 0x0c, 0xf3, 0x30, 0x91, 0x8f, - 0xd0, 0x33, 0x80, 0x31, 0xb9, 0xc7, 0x98, 0x3b, 0x4a, 0xc7, 0x7c, 0x2a, 0xf5, 0x45, 0x1d, 0x63, - 0x60, 0xd9, 0x34, 0xee, 0xd1, 0x0a, 0x84, 0x96, 0x02, 0xeb, 0xbf, 0x27, 0x01, 0x12, 0xb9, 0xf5, - 0xc6, 0x8e, 0xed, 0x91, 0x20, 0x2a, 0x63, 0xf9, 0x78, 0x74, 0x31, 0xa1, 0x67, 0x74, 0x24, 0x4f, - 0xd6, 0x18, 0x05, 0xfa, 0x02, 0xaa, 0x36, 0x7e, 0xe3, 0xeb, 0xc2, 0xf7, 0xe5, 0x77, 0x7c, 0xbf, - 0x4c, 0x26, 0x74, 0x42, 0x1e, 0xfe, 0x41, 0x82, 0xa5, 0xc3, 0xb1, 0x69, 0xf8, 0x78, 0xfa, 0xcc, - 0xa6, 0x8e, 0x45, 0xba, 0xea, 0x58, 0xb8, 0x08, 0xe5, 0x48, 0x84, 0x51, 0xf1, 0x2b, 0x35, 0x55, - 0xfc, 0xfa, 0x18, 0xaa, 0x86, 0x69, 0xea, 0x2c, 0x13, 0xd1, 0x69, 0x30, 0x9c, 0xa6, 0xc1, 0x70, - 0xd9, 0x30, 0x4d, 0x16, 0x37, 0x1f, 0xba, 0x43, 0x8f, 0xc4, 0x9c, 0x2e, 0x1e, 0x39, 0x67, 0x78, - 0x8a, 0x34, 0x43, 0x49, 0x15, 0x86, 0x89, 0xa8, 0xeb, 0x9f, 0xc3, 0x62, 0xd7, 0x77, 0xc6, 0xef, - 0xc9, 0x7e, 0xfd, 0xdf, 0x01, 0x20, 0x3a, 0xd8, 0x39, 0xf6, 0x5d, 0x87, 0x1c, 0xd5, 0xaa, 0x50, - 0x6d, 0x0a, 0x6f, 0x3b, 0x59, 0x02, 0x69, 0x35, 0x35, 0xf6, 0xd7, 0x9c, 0xd6, 0xbc, 0x72, 0x4c, - 0xf3, 0x9e, 0x43, 0x91, 0x15, 0x13, 0x59, 0x56, 0xb3, 0x4a, 0x03, 0xa0, 0x9b, 0x31, 0x69, 0xb3, - 0xaa, 0x19, 0x4d, 0x6b, 0xc0, 0x0b, 0x7f, 0xa3, 0xef, 0x92, 0xbc, 0xcf, 0xf0, 0x27, 0x1e, 0xaf, - 0xa8, 0xdc, 0x88, 0x4f, 0xa3, 0x48, 0x8d, 0x13, 0xa1, 0xdb, 0x00, 0xb4, 0x58, 0x87, 0x4d, 0xdd, - 0xf0, 0xa9, 0x0b, 0x4e, 0x69, 0x05, 0x0e, 0x69, 0xf8, 0xe8, 0x26, 0x35, 0x64, 0x86, 0x2c, 0x52, - 0x64, 0x8e, 0x8e, 0x1b, 0xb4, 0x60, 0x39, 0xa1, 0xea, 0x41, 0x91, 0x88, 0xcd, 0xe4, 0x90, 0x06, - 0xc9, 0xcb, 0xb2, 0xec, 0x40, 0x6a, 0xb7, 0xa9, 0xde, 0xdd, 0x12, 0xf2, 0xa0, 0x78, 0xa9, 0x9b, - 0x84, 0x07, 0x8c, 0x18, 0x3d, 0x25, 0x1e, 0x85, 0xa4, 0x14, 0xb5, 0x0f, 0x63, 0x39, 0xa8, 0xfa, - 0x66, 0xec, 0xb8, 0xbe, 0x46, 0x91, 0xc2, 0x3c, 0x46, 0x8d, 0xf6, 0xa0, 0x42, 0xcf, 0xb3, 0xef, - 0x8c, 0xe8, 0xcd, 0x82, 0xb9, 0xb9, 0xdd, 0x0b, 0xe7, 0x6b, 0x8e, 0x33, 0xda, 0x0e, 0xb0, 0xf1, - 0xcf, 0x97, 0x5d, 0x11, 0x8b, 0xbe, 0xcb, 0xca, 0xe4, 0x95, 0x58, 0x0d, 0xf1, 0x15, 0x3e, 0x8a, - 0x4f, 0xa4, 0xd5, 0x72, 0x15, 0x8a, 0x42, 0xb9, 0xa6, 0xb6, 0x44, 0xa7, 0x7d, 0x3b, 0xa9, 0x94, - 0x15, 0x9f, 0x2e, 0xce, 0x43, 0x6d, 0xa8, 0xb2, 0xe2, 0x51, 0xb4, 0x09, 0x96, 0x93, 0x7c, 0x27, - 0xb2, 0x59, 0x82, 0xbf, 0x74, 0x17, 0x15, 0x7f, 0x0a, 0x8d, 0x36, 0x21, 0x43, 0x21, 0x3c, 0x69, - 0xb9, 0x35, 0xbd, 0x4c, 0x7c, 0x36, 0xa3, 0x45, 0xcf, 0xa1, 0xc2, 0x8d, 0xcb, 0xc5, 0xde, 0x64, - 0xe8, 0x7b, 0xb5, 0x6a, 0xcc, 0xdb, 0x30, 0x13, 0xa3, 0xde, 0xa6, 0xcc, 0x48, 0x35, 0x46, 0x89, - 0x9e, 0x40, 0x89, 0x26, 0xe3, 0xc1, 0x4c, 0x85, 0xce, 0x5c, 0x9c, 0xaa, 0x53, 0xd0, 0x79, 0x45, - 0x42, 0x16, 0xcc, 0xfa, 0x01, 0x04, 0x39, 0x60, 0x38, 0x71, 0x31, 0x56, 0x80, 0xe3, 0x09, 0x1f, - 0x73, 0x71, 0x15, 0x4e, 0x1d, 0xcc, 0xff, 0x0c, 0xca, 0x2c, 0x5f, 0x08, 0x66, 0x2f, 0xc7, 0x18, - 0xa6, 0x19, 0x03, 0x9b, 0x5b, 0xa2, 0x94, 0xc1, 0xcc, 0x65, 0xc8, 0x60, 0xd7, 0x75, 0x5c, 0x16, - 0xa3, 0x68, 0x6c, 0x40, 0x34, 0x9b, 0xfe, 0xa0, 0xf9, 0x47, 0x6d, 0x85, 0x95, 0xbb, 0x28, 0x84, - 0x64, 0x1a, 0xa8, 0x06, 0x39, 0x13, 0xfb, 0x86, 0x35, 0xf4, 0x6a, 0x37, 0xe8, 0xb4, 0x60, 0x88, - 0x1e, 0xc2, 0x62, 0x90, 0x7a, 0xe8, 0x43, 0xa7, 0xcf, 0xb2, 0xdc, 0x0f, 0x58, 0x46, 0x1c, 0x20, - 0xf6, 0x38, 0x1c, 0xad, 0xc3, 0xd2, 0x91, 0xd1, 0x3f, 0x9d, 0x8c, 0x75, 0x5e, 0xe3, 0xd0, 0x27, - 0x1e, 0x36, 0x6b, 0x37, 0x59, 0x75, 0x97, 0xa1, 0x78, 0xa8, 0x7f, 0xe8, 0x61, 0x13, 0xdd, 0x81, - 0xa2, 0x8b, 0x7d, 0xf7, 0x5c, 0xa7, 0xd7, 0x7e, 0xed, 0x16, 0x65, 0x0b, 0x28, 0x68, 0x9b, 0x40, - 0x88, 0xc5, 0xf1, 0x8a, 0x4f, 0x2e, 0xf6, 0x20, 0x14, 0x09, 0x8c, 0x5c, 0x2a, 0x5b, 0x72, 0x4d, - 0xda, 0x95, 0xc2, 0xba, 0xcf, 0x43, 0x5e, 0x53, 0x8a, 0xa7, 0x43, 0x81, 0xac, 0x38, 0x39, 0xab, - 0x2a, 0x3d, 0x13, 0x8a, 0x44, 0xa5, 0x78, 0x5d, 0x49, 0x90, 0x11, 0x9f, 0x14, 0x12, 0x6f, 0x15, - 0x20, 0xe7, 0x32, 0x4d, 0x23, 0xd9, 0x0c, 0x13, 0x54, 0xfd, 0x67, 0x32, 0x40, 0xc4, 0x5b, 0xf2, - 0x73, 0x84, 0xe0, 0x9d, 0xe4, 0xab, 0xbc, 0x53, 0x6a, 0xda, 0x3b, 0xad, 0x42, 0x7e, 0xaa, 0xce, - 0x90, 0xd2, 0xc2, 0x31, 0xda, 0x08, 0x5d, 0x24, 0xcb, 0x4c, 0x57, 0x13, 0x0e, 0x6a, 0x3d, 0xe6, - 0x27, 0x43, 0x4d, 0xc9, 0x8a, 0x9a, 0x52, 0x87, 0xf2, 0xd0, 0xf0, 0x88, 0xda, 0x12, 0xc1, 0x18, - 0x2c, 0xe1, 0x4c, 0x69, 0x45, 0x02, 0xd4, 0x08, 0xac, 0xe1, 0x13, 0x75, 0x21, 0x68, 0x0b, 0x7b, - 0xf4, 0x88, 0xcb, 0x5a, 0x30, 0xac, 0xaf, 0x43, 0x96, 0x7d, 0x05, 0x01, 0x64, 0x1b, 0xdb, 0xbd, - 0xd6, 0x97, 0xaa, 0xb2, 0x80, 0x4a, 0x90, 0xdf, 0x69, 0x1d, 0xb4, 0xba, 0xbb, 0x6a, 0x53, 0x91, - 0x08, 0x66, 0xa7, 0xd1, 0xda, 0x53, 0x9b, 0x8a, 0x5c, 0xff, 0x99, 0x04, 0xf9, 0x40, 0x2a, 0x41, - 0x01, 0x4b, 0x8c, 0x5c, 0x82, 0xf1, 0xd7, 0x74, 0x6c, 0xd9, 0xd8, 0xb1, 0x21, 0x48, 0x7b, 0xd6, - 0x4f, 0x30, 0x3f, 0x4e, 0xfa, 0x9b, 0xd0, 0x87, 0x8a, 0xce, 0xc2, 0xb9, 0x70, 0x5c, 0xff, 0x67, - 0x19, 0x4a, 0xa2, 0x4e, 0x5c, 0x2c, 0x2b, 0x49, 0x33, 0x97, 0x95, 0xf2, 0x97, 0x94, 0x95, 0x44, - 0x7e, 0xe5, 0x4b, 0xf8, 0x4d, 0x09, 0xfc, 0x3e, 0x84, 0xc5, 0x70, 0xe1, 0x90, 0x71, 0x16, 0xa1, - 0x2a, 0x01, 0x22, 0xb4, 0xd0, 0x27, 0xb0, 0x32, 0xcd, 0x4a, 0x38, 0x83, 0xb9, 0x8b, 0x65, 0x91, - 0x9d, 0x70, 0xd6, 0x3d, 0x92, 0x86, 0x32, 0x6f, 0xc6, 0x2c, 0x35, 0x43, 0xbf, 0x5f, 0xe2, 0x40, - 0x66, 0xab, 0xd3, 0x12, 0xca, 0x5e, 0x25, 0xa1, 0xdc, 0x94, 0x84, 0xea, 0x7f, 0x22, 0x01, 0x44, - 0xfe, 0x6c, 0xf6, 0xba, 0xcc, 0x9d, 0xa8, 0xa8, 0x42, 0x98, 0x92, 0xe8, 0xaa, 0x41, 0xfd, 0xe4, - 0x22, 0x4b, 0x73, 0x28, 0x4d, 0xfd, 0x2f, 0x64, 0xb8, 0xd1, 0x98, 0xf8, 0xce, 0x85, 0x7b, 0x4e, - 0x78, 0x18, 0x96, 0x66, 0x7a, 0x18, 0x5e, 0x48, 0x7c, 0x18, 0x96, 0xdf, 0xf1, 0x30, 0xbc, 0x20, - 0x3c, 0x0c, 0x7f, 0xce, 0x6f, 0xa0, 0xe0, 0x75, 0x38, 0x45, 0xaf, 0x82, 0xd5, 0xa4, 0x8a, 0x30, - 0x7f, 0x28, 0xa6, 0x57, 0x51, 0x9b, 0x3f, 0x16, 0xab, 0xd1, 0x55, 0x14, 0xac, 0x90, 0xa6, 0x2b, - 0x5c, 0x59, 0x0b, 0x0f, 0x6f, 0x24, 0xbe, 0x0c, 0xf1, 0x76, 0xfc, 0x89, 0xbf, 0xfe, 0xa7, 0x32, - 0x54, 0xc9, 0xe1, 0x08, 0x57, 0xee, 0x54, 0xf1, 0x59, 0x9a, 0xa1, 0xf8, 0x9c, 0xb9, 0xaa, 0x8c, - 0x25, 0xcf, 0x54, 0xfa, 0x49, 0xcd, 0x5c, 0xfa, 0x49, 0xcf, 0x5f, 0xfa, 0xc9, 0xce, 0x5b, 0xc6, - 0xfa, 0xfb, 0x34, 0x2c, 0x25, 0xc4, 0x73, 0x24, 0xc6, 0x66, 0xf1, 0xdc, 0x74, 0x8c, 0xcd, 0x60, - 0x24, 0xc6, 0xe6, 0xbf, 0x48, 0x02, 0x5d, 0x65, 0x8f, 0xcc, 0xce, 0xf1, 0xb1, 0x87, 0x7d, 0x7d, - 0xe4, 0x71, 0x95, 0x2d, 0x53, 0x70, 0x9b, 0x42, 0xf7, 0x3d, 0xe2, 0xa1, 0xb1, 0x6d, 0x0a, 0x54, - 0x4c, 0x77, 0x8b, 0xd8, 0x36, 0x43, 0x1a, 0xb1, 0x97, 0x22, 0x3d, 0x77, 0x2f, 0x45, 0x66, 0xe6, - 0x5e, 0x8a, 0xec, 0x7c, 0xbd, 0x14, 0xb9, 0x6b, 0xf4, 0x52, 0xe4, 0xdf, 0xaf, 0x97, 0xa2, 0x30, - 0x7b, 0x2f, 0x05, 0xcc, 0xdf, 0x4b, 0x51, 0xbc, 0x56, 0x2f, 0xc5, 0xbf, 0x64, 0x61, 0xf5, 0xf2, - 0x18, 0xfe, 0xea, 0x54, 0x3e, 0xca, 0x3b, 0xe5, 0x2b, 0x9a, 0x2e, 0x52, 0xf1, 0x76, 0x87, 0x67, - 0xc0, 0x9e, 0xec, 0xf4, 0x91, 0xf5, 0xc6, 0xb2, 0x07, 0xb5, 0x2a, 0x95, 0x48, 0xac, 0x2b, 0x60, - 0x9f, 0xe2, 0x34, 0xf6, 0x04, 0xca, 0x06, 0xb1, 0x3e, 0x89, 0xf4, 0x0c, 0xdd, 0x1a, 0x99, 0x84, - 0x6e, 0x0d, 0xf4, 0x84, 0x87, 0x66, 0x4c, 0x71, 0xae, 0x70, 0x62, 0x34, 0xdc, 0x0a, 0x5e, 0xfe, - 0x36, 0x63, 0x71, 0x60, 0xf2, 0xcb, 0x1f, 0x9f, 0x12, 0x44, 0x81, 0x3f, 0x10, 0x02, 0x3b, 0x78, - 0xf7, 0xeb, 0x1f, 0x9f, 0x1d, 0xbd, 0x00, 0x46, 0x6a, 0x9b, 0xbf, 0x86, 0xda, 0x16, 0xe6, 0x50, - 0xdb, 0xb8, 0xa7, 0x2f, 0xce, 0xe7, 0xe9, 0x7f, 0x23, 0x4c, 0x73, 0x82, 0x05, 0x4a, 0xf1, 0x9c, - 0x43, 0x38, 0xad, 0x20, 0xd1, 0xb9, 0xe2, 0x9e, 0x28, 0xcf, 0x7f, 0x4f, 0xa0, 0xef, 0x07, 0x99, - 0x4b, 0xb0, 0x48, 0x85, 0x2e, 0x92, 0xf8, 0x7c, 0xca, 0x53, 0x97, 0x60, 0xaa, 0x68, 0x58, 0xca, - 0xec, 0x86, 0xc5, 0x3e, 0x24, 0x5e, 0x50, 0xff, 0x93, 0x01, 0x25, 0x9e, 0xd8, 0x7e, 0x43, 0x9d, - 0x41, 0xa5, 0xe4, 0xce, 0xa0, 0x50, 0xef, 0xd3, 0xef, 0xa9, 0xf7, 0x99, 0xf7, 0xd3, 0xfb, 0xec, - 0xb5, 0xf4, 0xfe, 0x9b, 0x72, 0xd7, 0x71, 0xbd, 0x2f, 0x5c, 0x57, 0xef, 0xe1, 0x7a, 0x7a, 0x5f, - 0xfc, 0x3a, 0xf4, 0xbe, 0xfc, 0x5e, 0x7a, 0x5f, 0xb9, 0x8e, 0xde, 0xff, 0x4d, 0x1a, 0x6a, 0x97, - 0x55, 0x66, 0xae, 0xbe, 0x4d, 0xc4, 0x9e, 0x2d, 0x39, 0xd6, 0xb3, 0xf5, 0x6d, 0x28, 0x4d, 0x35, - 0x6b, 0x31, 0x4b, 0x28, 0x7a, 0x51, 0x9b, 0x96, 0xa0, 0x32, 0xe9, 0x6b, 0x04, 0xc5, 0x99, 0x6b, - 0x04, 0xc5, 0xd9, 0xeb, 0xaa, 0x4c, 0xee, 0x7a, 0x2a, 0x93, 0xff, 0x3a, 0x54, 0xa6, 0xf0, 0x5e, - 0x2a, 0x03, 0x33, 0xaa, 0x8c, 0xa0, 0x28, 0x3f, 0xcd, 0xc2, 0xad, 0x2b, 0xea, 0x6e, 0xef, 0xea, - 0xd3, 0x65, 0x9d, 0x4a, 0x51, 0x53, 0xa3, 0x1c, 0x36, 0x35, 0x52, 0x04, 0x6f, 0x6a, 0xd4, 0xc4, - 0x91, 0x49, 0xa6, 0xc5, 0x7a, 0x21, 0x53, 0x89, 0xbd, 0x90, 0xb1, 0x4e, 0xc8, 0xff, 0x27, 0xc7, - 0x99, 0xbf, 0x96, 0xe3, 0xcc, 0x5e, 0xc3, 0x71, 0xe6, 0x7e, 0x15, 0x30, 0xbc, 0x8f, 0x15, 0x54, - 0xaf, 0xe3, 0x38, 0x7f, 0x29, 0x01, 0xba, 0x58, 0x40, 0xbe, 0xda, 0x0c, 0x3e, 0x12, 0xfa, 0x22, - 0xe5, 0x78, 0x5f, 0x64, 0xd4, 0x15, 0xf9, 0x88, 0xeb, 0x6f, 0x2a, 0x56, 0x78, 0x6f, 0x5a, 0x2e, - 0xee, 0xfb, 0x09, 0x5d, 0x6e, 0x1f, 0x41, 0xf9, 0x35, 0x3e, 0xf2, 0x9c, 0xfe, 0x29, 0xf6, 0xa3, - 0xae, 0xe7, 0xdd, 0x05, 0xad, 0x14, 0x82, 0x49, 0x20, 0x2d, 0xee, 0x3d, 0x33, 0xef, 0xde, 0xeb, - 0x7f, 0x26, 0x83, 0x12, 0xe7, 0xe0, 0x57, 0x39, 0xfc, 0x2f, 0x64, 0x58, 0xbc, 0x60, 0x32, 0xdf, - 0x54, 0x3b, 0x5e, 0xf6, 0xaa, 0xd3, 0x4c, 0xcd, 0x74, 0x9a, 0xe9, 0x99, 0x4f, 0x33, 0x33, 0xff, - 0x69, 0xe6, 0xe6, 0x3d, 0xcd, 0x57, 0xc1, 0x63, 0xeb, 0x1e, 0xcd, 0x4c, 0xe7, 0x7f, 0x6c, 0xbd, - 0x24, 0xc5, 0xad, 0xff, 0x79, 0xf8, 0x8c, 0xdb, 0xe5, 0x4f, 0x35, 0xf3, 0xae, 0xcc, 0x1f, 0x67, - 0x19, 0xa3, 0xba, 0xd0, 0xa9, 0x58, 0x36, 0x4c, 0x93, 0x89, 0x3d, 0xf6, 0x38, 0x2b, 0x92, 0xa6, - 0xc4, 0xc7, 0xd9, 0x88, 0xba, 0xfe, 0x7d, 0xa8, 0x4c, 0x3f, 0x4b, 0xa0, 0xfb, 0x90, 0xb6, 0xec, - 0x63, 0xe7, 0xc2, 0xe3, 0xb6, 0xf0, 0xdc, 0x44, 0x09, 0xd6, 0x5e, 0x41, 0x49, 0x6c, 0xed, 0x46, - 0x2b, 0x80, 0x1a, 0x87, 0xcd, 0x56, 0x5b, 0xdf, 0xde, 0x6d, 0x1c, 0x1c, 0xa8, 0x7b, 0xfa, 0x56, - 0xbb, 0xb7, 0xab, 0x2c, 0x5c, 0x84, 0xef, 0xa9, 0x3b, 0x3d, 0x45, 0x42, 0x1f, 0xc0, 0xd2, 0x34, - 0x5c, 0x6b, 0xbd, 0xd8, 0xed, 0x29, 0xf2, 0xda, 0x3f, 0x4a, 0x70, 0x23, 0xf1, 0xf6, 0x41, 0x0a, - 0x94, 0x76, 0x37, 0x9e, 0x3e, 0xd1, 0x9f, 0x6d, 0x3c, 0xee, 0xe8, 0x9b, 0x8f, 0x95, 0x85, 0x69, - 0xc8, 0xd3, 0xc7, 0x8a, 0x84, 0x16, 0xa1, 0x4c, 0x21, 0xbf, 0xf6, 0xf8, 0x33, 0x46, 0x24, 0xc7, - 0x40, 0x4f, 0x1f, 0x2b, 0x29, 0x74, 0x13, 0x6e, 0x74, 0xda, 0x5a, 0x4f, 0x6b, 0xb4, 0x7a, 0xfa, - 0xd4, 0x92, 0xe9, 0x4b, 0x50, 0x4f, 0x1f, 0x2b, 0x19, 0xb4, 0x0a, 0x2b, 0xd3, 0xa8, 0xf0, 0x23, - 0xd9, 0xcb, 0x70, 0x4f, 0x1f, 0x2b, 0xb9, 0xb5, 0x2d, 0xde, 0x0f, 0x1e, 0x19, 0x1d, 0x5a, 0x06, - 0xa5, 0xa9, 0xee, 0x34, 0x0e, 0xf7, 0x7a, 0xfa, 0x4e, 0x6b, 0x4f, 0xed, 0xfd, 0x56, 0x47, 0x55, - 0x16, 0x50, 0x0e, 0x52, 0xfb, 0x9d, 0x27, 0x8a, 0x44, 0x7e, 0xb4, 0x5f, 0xbc, 0x50, 0x64, 0x06, - 0xd9, 0x54, 0x52, 0x6b, 0xbb, 0x81, 0xa4, 0x82, 0x96, 0x52, 0x71, 0x89, 0x8e, 0xd6, 0xee, 0xb5, - 0xb7, 0xdb, 0x7b, 0xca, 0x02, 0xca, 0x43, 0x5a, 0xeb, 0xed, 0x77, 0xd8, 0x1a, 0x5d, 0xad, 0xa7, - 0xc8, 0xa8, 0x0c, 0x85, 0x57, 0xea, 0x56, 0xb7, 0xbd, 0xfd, 0x52, 0xed, 0x29, 0xa9, 0xb5, 0x03, - 0xb8, 0x91, 0xd8, 0xa3, 0x8a, 0xee, 0xc1, 0x9d, 0x60, 0xc1, 0xae, 0xfa, 0x62, 0x5f, 0x3d, 0xe8, - 0xa9, 0x4d, 0xca, 0x9d, 0xb8, 0x3e, 0x39, 0xf1, 0xbd, 0x6e, 0x04, 0x91, 0xd6, 0x1e, 0xc5, 0x7a, - 0x64, 0x79, 0xff, 0x60, 0x01, 0x32, 0xad, 0x83, 0xa6, 0xfa, 0x95, 0xb2, 0x40, 0x18, 0xe8, 0xb5, - 0xf6, 0xd5, 0x6e, 0xaf, 0x41, 0x18, 0x5b, 0x3b, 0x86, 0x6a, 0xac, 0xf9, 0x90, 0x28, 0x49, 0x6b, - 0xbf, 0xf1, 0x42, 0xd5, 0xbb, 0x87, 0x3b, 0x3b, 0xad, 0xaf, 0xf4, 0x60, 0xe6, 0x2a, 0xac, 0x4c, - 0xc1, 0x85, 0x65, 0xd0, 0x1d, 0xb8, 0x35, 0x85, 0x3b, 0x68, 0x1f, 0xa8, 0x7a, 0xfb, 0x4b, 0x55, - 0x7b, 0xa5, 0xb5, 0x7a, 0xaa, 0x22, 0xaf, 0xfd, 0x10, 0x94, 0xf8, 0x23, 0x3d, 0x59, 0x50, 0x7d, - 0xa1, 0xa9, 0xdd, 0xae, 0xde, 0x6d, 0x1f, 0x6a, 0xdb, 0xaa, 0x4e, 0x4e, 0x5e, 0x7f, 0xa5, 0x6e, - 0xb1, 0x8f, 0x25, 0xe0, 0xba, 0xcd, 0x97, 0x8a, 0xb4, 0xf6, 0x57, 0x12, 0x94, 0xc4, 0xa7, 0x7b, - 0xb4, 0x04, 0xd5, 0x80, 0xb8, 0xd7, 0xd0, 0x7a, 0xad, 0x83, 0x17, 0xca, 0x02, 0xd1, 0x34, 0x0e, - 0xe4, 0x0f, 0x49, 0x92, 0x00, 0x52, 0x0f, 0x9a, 0x84, 0x4a, 0x16, 0xa6, 0x6e, 0xb7, 0xf7, 0x3b, - 0x7b, 0x6a, 0x4f, 0x55, 0x52, 0x02, 0x1d, 0x7f, 0x69, 0x4a, 0x23, 0x04, 0x95, 0x60, 0xb5, 0xad, - 0xb6, 0xd6, 0x53, 0x9b, 0x4a, 0x06, 0xd5, 0x60, 0x99, 0xc3, 0xf6, 0x5a, 0xfb, 0xad, 0x9e, 0xae, - 0xa9, 0x8d, 0xed, 0x5d, 0xb5, 0xa9, 0x64, 0xd7, 0x0e, 0xf9, 0xff, 0x9d, 0xf0, 0xe2, 0x17, 0x82, - 0x4a, 0x20, 0xcc, 0xfd, 0xd6, 0x57, 0x8c, 0xbd, 0x15, 0x40, 0xcd, 0xc3, 0xc6, 0x5e, 0x68, 0x71, - 0x8d, 0x17, 0xea, 0x01, 0x31, 0xc5, 0x55, 0x58, 0x99, 0x86, 0xef, 0xf5, 0x54, 0xed, 0xa0, 0x41, - 0x0e, 0x71, 0xe3, 0xdf, 0x32, 0x90, 0xe5, 0x05, 0xf3, 0xdf, 0x84, 0xa2, 0xd0, 0x35, 0x80, 0xae, - 0xea, 0x25, 0x58, 0x4d, 0xea, 0x8a, 0x41, 0x0d, 0x28, 0x89, 0xee, 0x15, 0x45, 0x51, 0x57, 0x82, - 0xd7, 0x7d, 0xc7, 0x12, 0xcc, 0x18, 0x2e, 0x2c, 0x31, 0xe5, 0x5e, 0x93, 0x97, 0x50, 0x01, 0xa2, - 0xae, 0x1e, 0x14, 0x45, 0x9e, 0x17, 0x1a, 0x93, 0x56, 0x6f, 0x25, 0xe2, 0x78, 0x1b, 0xd0, 0xe7, - 0x00, 0x51, 0x5f, 0x0b, 0x12, 0x5f, 0x2f, 0x63, 0xcd, 0x2e, 0xc9, 0x5c, 0xf4, 0xa0, 0x46, 0x8f, - 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, 0xb7, 0xef, 0x0d, 0x2c, 0xff, 0x64, 0x72, 0xb4, 0xde, 0x77, 0x46, 0x8f, 0x38, 0xc1, 0xa3, - 0xa0, 0x5b, 0x3f, 0x00, 0xfc, 0xad, 0x5c, 0xde, 0xb3, 0xce, 0xf0, 0x4b, 0xd6, 0x5b, 0xe8, 0x3b, - 0xff, 0x21, 0x57, 0xf8, 0xf8, 0xf9, 0x73, 0x0a, 0x38, 0xca, 0xd2, 0x29, 0x9b, 0xff, 0x1b, 0x00, - 0x00, 0xff, 0xff, 0x7c, 0xd5, 0xb3, 0x4e, 0x92, 0x3a, 0x00, 0x00, + 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, 0x7b, 0xe1, 0xb4, 0x07, 0x22, 0x20, 0x08, 0x4e, 0x04, 0x77, 0x08, + 0x08, 0x2e, 0xdc, 0x89, 0xf7, 0xa9, 0xaa, 0xd7, 0xa5, 0x92, 0xdc, 0x6d, 0x0d, 0xc3, 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, 0x4b, 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, 0xbf, 0x97, 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, 0x6f, 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, 0xad, 0x5c, 0xa3, 0xad, 0xfd, 0x63, 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, 0xcf, 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, 0x97, 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, 0xd2, 0x90, 0x0f, 0x38, 0x45, 0x75, + 0x00, 0xa3, 0xdf, 0xc7, 0x9e, 0xa7, 0x9f, 0x62, 0x1e, 0x34, 0x6f, 0xa5, 0x7e, 0xd6, 0x91, 0xb5, + 0x02, 0x03, 0xbf, 0xc4, 0xe7, 0xe8, 0x16, 0x64, 0x3d, 0xdc, 0x77, 0x31, 0x8b, 0x5a, 0x38, 0x9e, + 0x83, 0xd0, 0x03, 0x28, 0x7b, 0xd8, 0xf3, 0x2c, 0xc7, 0xd6, 0x7d, 0xe7, 0x14, 0xdb, 0xcc, 0x17, + 0x31, 0x9a, 0x12, 0xc7, 0xf4, 0x08, 0x02, 0x3d, 0x84, 0xaa, 0xe1, 0x79, 0x93, 0x11, 0xd6, 0x5d, + 0x67, 0x88, 0x75, 0xc3, 0xb5, 0xe9, 0xe5, 0x4b, 0x69, 0x25, 0xad, 0xcc, 0x70, 0x9a, 0x33, 0xc4, + 0x0d, 0xd7, 0x46, 0x3f, 0x82, 0x0f, 0x44, 0x62, 0xfc, 0xc6, 0xc7, 0xae, 0x6d, 0x0c, 0x49, 0x24, + 0x57, 0xa6, 0x93, 0x56, 0x7f, 0xd6, 0x91, 0xdf, 0x76, 0x96, 0xa3, 0x59, 0x2a, 0x27, 0x69, 0x35, + 0xb5, 0x24, 0xa8, 0x49, 0x8c, 0xcc, 0xc5, 0x03, 0xe2, 0x02, 0x99, 0x63, 0xe5, 0x23, 0x72, 0x29, + 0x61, 0xdb, 0x1c, 0x3b, 0x96, 0xed, 0x73, 0xeb, 0x0a, 0xc7, 0x64, 0xce, 0xd1, 0xa4, 0x7f, 0xca, + 0x73, 0xec, 0x82, 0xc6, 0x47, 0xe8, 0x01, 0x28, 0xc7, 0x8e, 0xdb, 0xc7, 0x3a, 0xb9, 0xba, 0x74, + 0xcf, 0x3f, 0x1f, 0xb2, 0x3b, 0x35, 0xaf, 0x55, 0x28, 0xbc, 0x63, 0xf8, 0x27, 0x5d, 0x02, 0x45, + 0x5f, 0x40, 0x7e, 0x84, 0x7d, 0xc3, 0x34, 0x7c, 0x83, 0x27, 0xcd, 0x77, 0x2e, 0xe8, 0xcb, 0xfa, + 0x3e, 0xa7, 0x50, 0x6d, 0xdf, 0x3d, 0x67, 0xf2, 0x08, 0x67, 0xa1, 0xdb, 0x90, 0xf3, 0x8d, 0xc1, + 0xc0, 0xb2, 0x07, 0xd4, 0x78, 0xb8, 0xbc, 0x02, 0x18, 0x7a, 0x02, 0x4b, 0x7d, 0xc7, 0xf6, 0xa9, + 0x8f, 0xb7, 0xbc, 0xb1, 0xe3, 0x59, 0xd4, 0xcd, 0x17, 0x22, 0x52, 0xc4, 0xf1, 0xcd, 0x08, 0x4d, + 0x72, 0xae, 0xb1, 0xeb, 0xbc, 0x39, 0xe7, 0xf6, 0x13, 0x85, 0x0e, 0x1d, 0x02, 0x0d, 0x72, 0x2e, + 0x4a, 0xb2, 0xfa, 0xcb, 0x50, 0x9e, 0x62, 0x90, 0x64, 0xb0, 0xa1, 0xb6, 0x68, 0xe4, 0x27, 0x71, + 0x6b, 0x67, 0xc6, 0x70, 0x82, 0xf9, 0xd5, 0xc6, 0x06, 0xcf, 0xe5, 0xcf, 0xa4, 0xfa, 0x19, 0x14, + 0x42, 0x85, 0x47, 0x1f, 0x41, 0xb1, 0xef, 0x62, 0x1a, 0x40, 0x1b, 0x43, 0x4f, 0x54, 0x37, 0x11, + 0x2e, 0x48, 0x5d, 0x9e, 0x92, 0x7a, 0xc8, 0x74, 0xea, 0x9d, 0x4c, 0xd7, 0x7f, 0x47, 0x82, 0x6a, + 0xcc, 0x7e, 0xd0, 0xc7, 0x50, 0x32, 0xfa, 0x7d, 0x67, 0x62, 0xfb, 0x42, 0x79, 0x87, 0xc9, 0xa8, + 0xc8, 0x11, 0xf4, 0xda, 0xfc, 0x0e, 0x04, 0x43, 0x6a, 0x15, 0x82, 0xd6, 0x03, 0x87, 0x13, 0xb3, + 0xf8, 0x08, 0x2a, 0x44, 0xb0, 0x86, 0x65, 0x63, 0x57, 0xbc, 0xb0, 0xcb, 0x21, 0x94, 0x2c, 0x56, + 0xff, 0x73, 0x09, 0x4a, 0xa2, 0x55, 0x5e, 0xdf, 0xe4, 0xbe, 0x46, 0x45, 0xae, 0xff, 0x26, 0x14, + 0x05, 0xe1, 0x25, 0xd4, 0x26, 0x56, 0x21, 0x3f, 0xf1, 0x88, 0x09, 0x8d, 0x82, 0xc3, 0x0d, 0xc7, + 0xe8, 0x0e, 0xe4, 0xc7, 0x86, 0xe7, 0xbd, 0x76, 0x5c, 0x96, 0x51, 0x72, 0x3e, 0x43, 0x60, 0xfd, + 0x6f, 0x24, 0x58, 0xdc, 0xb3, 0xbc, 0x79, 0x4a, 0x6c, 0x0f, 0xa0, 0xc0, 0x6a, 0x7b, 0xc4, 0xd4, + 0xd9, 0xe6, 0x8b, 0x6f, 0x3b, 0x79, 0x06, 0x6b, 0x35, 0xb5, 0xe0, 0x17, 0xb5, 0x67, 0xa3, 0xef, + 0x5b, 0x67, 0x98, 0x87, 0x89, 0x7c, 0x84, 0x9e, 0x01, 0x8c, 0xc9, 0x3d, 0xc6, 0xdc, 0x51, 0x3a, + 0xe6, 0x53, 0xa9, 0x2f, 0xea, 0x18, 0x03, 0xcb, 0xa6, 0x71, 0x8f, 0x56, 0x20, 0xb4, 0x14, 0x58, + 0xff, 0x6d, 0x09, 0x90, 0xc8, 0xad, 0x37, 0x76, 0x6c, 0x8f, 0x04, 0x51, 0x19, 0xcb, 0xc7, 0x23, + 0xa2, 0xae, 0xd3, 0x89, 0x3d, 0xa3, 0x23, 0xf9, 0xb2, 0xc6, 0x28, 0xd0, 0x17, 0x50, 0xb5, 0xf1, + 0x1b, 0x5f, 0x17, 0xbe, 0x2f, 0xbf, 0xe3, 0xfb, 0x65, 0x32, 0xa1, 0x13, 0xf2, 0xf0, 0x77, 0x12, + 0x2c, 0x1d, 0x8e, 0x4d, 0xc3, 0xc7, 0xd3, 0x32, 0x9b, 0x12, 0x8b, 0x74, 0x95, 0x58, 0xf8, 0x11, + 0xca, 0xd1, 0x11, 0x46, 0xc5, 0xaf, 0xd4, 0x54, 0xf1, 0xeb, 0x63, 0xa8, 0x1a, 0xa6, 0xa9, 0xb3, + 0x4c, 0x44, 0xa7, 0xc1, 0x70, 0x9a, 0x06, 0xc3, 0x65, 0xc3, 0x34, 0x59, 0xdc, 0x7c, 0xe8, 0x0e, + 0x3d, 0x12, 0x73, 0xba, 0x78, 0xe4, 0x9c, 0xe1, 0x29, 0xd2, 0x0c, 0x25, 0x55, 0x18, 0x26, 0xa2, + 0xae, 0x7f, 0x0e, 0x8b, 0x5d, 0xdf, 0x19, 0xbf, 0x27, 0xfb, 0xf5, 0x7f, 0x03, 0x80, 0x48, 0xb0, + 0x73, 0xec, 0xbb, 0x0e, 0x39, 0xaa, 0x55, 0xa1, 0xda, 0x14, 0xde, 0x76, 0xb2, 0x04, 0xd2, 0x6a, + 0x6a, 0xec, 0xaf, 0x39, 0xad, 0x79, 0xe5, 0x98, 0xe6, 0x3d, 0x87, 0x22, 0x2b, 0x26, 0xb2, 0xac, + 0x66, 0x95, 0x06, 0x40, 0x37, 0x63, 0xa7, 0xcd, 0xaa, 0x66, 0x34, 0xad, 0x01, 0x2f, 0xfc, 0x8d, + 0xbe, 0x4b, 0xf2, 0x3e, 0xc3, 0x9f, 0x78, 0xbc, 0xb2, 0x72, 0x23, 0x3e, 0x8d, 0x22, 0x35, 0x4e, + 0x84, 0x6e, 0x03, 0xd0, 0x62, 0x1d, 0x36, 0x75, 0xc3, 0xa7, 0x2e, 0x38, 0xa5, 0x15, 0x38, 0xa4, + 0xe1, 0xa3, 0x9b, 0xd4, 0x90, 0x19, 0xb2, 0x48, 0x91, 0x39, 0x3a, 0x6e, 0xd0, 0x82, 0xe5, 0x84, + 0xaa, 0x07, 0x45, 0x22, 0x36, 0x93, 0x43, 0x1a, 0x24, 0x2f, 0xcb, 0x32, 0x81, 0xd4, 0x6e, 0x53, + 0xbd, 0xbb, 0x25, 0xe4, 0x41, 0xf1, 0x52, 0x37, 0x09, 0x0f, 0x18, 0x31, 0x7a, 0x4a, 0x3c, 0x0a, + 0x49, 0x29, 0x6a, 0x1f, 0xc6, 0x72, 0x50, 0xf5, 0xcd, 0xd8, 0x71, 0x7d, 0x8d, 0x22, 0x85, 0x79, + 0x8c, 0x1a, 0xed, 0x41, 0x85, 0xca, 0xb3, 0xef, 0x8c, 0xe8, 0xcd, 0x82, 0xb9, 0xb9, 0xdd, 0x0b, + 0xe7, 0x6b, 0x8e, 0x33, 0xda, 0x0e, 0xb0, 0xf1, 0xcf, 0x97, 0x5d, 0x11, 0x8b, 0xbe, 0xcb, 0xca, + 0xe4, 0x95, 0x58, 0x0d, 0xf1, 0x15, 0x3e, 0x8a, 0x4f, 0xa4, 0xd5, 0x72, 0x15, 0x8a, 0x42, 0x59, + 0xa6, 0xb6, 0x44, 0xa7, 0x7d, 0x3b, 0xa9, 0xa4, 0x15, 0x9f, 0x2e, 0xce, 0x43, 0x6d, 0xa8, 0xb2, + 0x22, 0x51, 0xb4, 0x09, 0x96, 0x93, 0x7c, 0x27, 0xb2, 0x59, 0x82, 0xbf, 0x74, 0x17, 0x15, 0x7f, + 0x0a, 0x8d, 0x36, 0x21, 0x43, 0x21, 0x3c, 0x69, 0xb9, 0x35, 0xbd, 0x4c, 0x7c, 0x36, 0xa3, 0x45, + 0xcf, 0xa1, 0xc2, 0x8d, 0xcb, 0xc5, 0xde, 0x64, 0xe8, 0x7b, 0xb5, 0x6a, 0xcc, 0xdb, 0x30, 0x13, + 0xa3, 0xde, 0xa6, 0xcc, 0x48, 0x35, 0x46, 0x89, 0x9e, 0x40, 0x89, 0x26, 0xe3, 0xc1, 0x4c, 0x85, + 0xce, 0x5c, 0x9c, 0xaa, 0x53, 0xd0, 0x79, 0x45, 0x42, 0x16, 0xcc, 0xfa, 0x01, 0x04, 0x39, 0x60, + 0x38, 0x71, 0x31, 0x56, 0x67, 0xe3, 0x09, 0x1f, 0x73, 0x71, 0x15, 0x4e, 0x1d, 0xcc, 0xff, 0x0c, + 0xca, 0x2c, 0x5f, 0x08, 0x66, 0x2f, 0xc7, 0x18, 0xa6, 0x19, 0x03, 0x9b, 0x5b, 0xa2, 0x94, 0xc1, + 0xcc, 0x65, 0xc8, 0x60, 0xd7, 0x75, 0x5c, 0x16, 0xa3, 0x68, 0x6c, 0x40, 0x34, 0x9b, 0xfe, 0xa0, + 0xf9, 0x47, 0x6d, 0x85, 0x95, 0xbb, 0x28, 0x84, 0x64, 0x1a, 0xa8, 0x06, 0x39, 0x13, 0xfb, 0x86, + 0x35, 0xf4, 0x6a, 0x37, 0xe8, 0xb4, 0x60, 0x88, 0x1e, 0xc2, 0x62, 0x90, 0x7a, 0xe8, 0x43, 0xa7, + 0xcf, 0xb2, 0xdc, 0x0f, 0x58, 0x46, 0x1c, 0x20, 0xf6, 0x38, 0x1c, 0xad, 0xc3, 0xd2, 0x91, 0xd1, + 0x3f, 0x9d, 0x8c, 0x75, 0x5e, 0xe3, 0xd0, 0x27, 0x1e, 0x36, 0x6b, 0x37, 0x59, 0x19, 0x98, 0xa1, + 0x78, 0xa8, 0x7f, 0xe8, 0x61, 0x13, 0xdd, 0x81, 0xa2, 0x8b, 0x7d, 0xf7, 0x5c, 0xa7, 0xd7, 0x7e, + 0xed, 0x16, 0x65, 0x0b, 0x28, 0x68, 0x9b, 0x40, 0x88, 0xc5, 0xf1, 0x8a, 0x4f, 0x2e, 0xf6, 0x20, + 0x14, 0x1d, 0x18, 0xb9, 0x54, 0xb6, 0xe4, 0x9a, 0xb4, 0x2b, 0x85, 0x75, 0x9f, 0x87, 0xbc, 0xa6, + 0x14, 0x4f, 0x87, 0x82, 0xb3, 0xe2, 0xe4, 0xac, 0xaa, 0xf4, 0x4c, 0x28, 0x12, 0x95, 0xe2, 0x75, + 0x25, 0xe1, 0x8c, 0xf8, 0xa4, 0x90, 0x78, 0xab, 0x00, 0x39, 0x97, 0x69, 0x1a, 0xc9, 0x66, 0xd8, + 0x41, 0xd5, 0x7f, 0x2a, 0x03, 0x44, 0xbc, 0x25, 0x3f, 0x47, 0x08, 0xde, 0x49, 0xbe, 0xca, 0x3b, + 0xa5, 0xa6, 0xbd, 0xd3, 0x2a, 0xe4, 0xa7, 0xea, 0x0c, 0x29, 0x2d, 0x1c, 0xa3, 0x8d, 0xd0, 0x45, + 0xb2, 0xcc, 0x74, 0x35, 0x41, 0x50, 0xeb, 0x31, 0x3f, 0x19, 0x6a, 0x4a, 0x56, 0xd4, 0x94, 0x3a, + 0x94, 0x87, 0x86, 0x47, 0xd4, 0x96, 0x1c, 0x8c, 0xc1, 0x12, 0xce, 0x94, 0x56, 0x24, 0x40, 0x8d, + 0xc0, 0x1a, 0x3e, 0x51, 0x17, 0x82, 0xb6, 0xb0, 0x47, 0x45, 0x5c, 0xd6, 0x82, 0x61, 0x7d, 0x1d, + 0xb2, 0xec, 0x2b, 0x08, 0x20, 0xdb, 0xd8, 0xee, 0xb5, 0xbe, 0x54, 0x95, 0x05, 0x54, 0x82, 0xfc, + 0x4e, 0xeb, 0xa0, 0xd5, 0xdd, 0x55, 0x9b, 0x8a, 0x44, 0x30, 0x3b, 0x8d, 0xd6, 0x9e, 0xda, 0x54, + 0xe4, 0xfa, 0x4f, 0x25, 0xc8, 0x07, 0xa7, 0x12, 0x14, 0xb0, 0xc4, 0xc8, 0x25, 0x18, 0x7f, 0x4d, + 0x62, 0xcb, 0xc6, 0xc4, 0x86, 0x20, 0xed, 0x59, 0x3f, 0xc1, 0x5c, 0x9c, 0xf4, 0x37, 0xa1, 0x0f, + 0x15, 0x9d, 0x85, 0x73, 0xe1, 0xb8, 0xfe, 0x4f, 0x32, 0x94, 0x44, 0x9d, 0xb8, 0x58, 0x56, 0x92, + 0x66, 0x2e, 0x2b, 0xe5, 0x2f, 0x29, 0x2b, 0x89, 0xfc, 0xca, 0x97, 0xf0, 0x9b, 0x12, 0xf8, 0x7d, + 0x08, 0x8b, 0xe1, 0xc2, 0x21, 0xe3, 0x2c, 0x42, 0x55, 0x02, 0x44, 0x68, 0xa1, 0x4f, 0x60, 0x65, + 0x9a, 0x95, 0x70, 0x06, 0x73, 0x17, 0xcb, 0x22, 0x3b, 0xe1, 0xac, 0x7b, 0x24, 0x0d, 0x65, 0xde, + 0x8c, 0x59, 0x6a, 0x86, 0x7e, 0xbf, 0xc4, 0x81, 0xcc, 0x56, 0xa7, 0x4f, 0x28, 0x7b, 0xd5, 0x09, + 0xe5, 0xa6, 0x4e, 0xa8, 0xfe, 0x47, 0x12, 0x40, 0xe4, 0xcf, 0x66, 0xaf, 0xcb, 0xdc, 0x89, 0x8a, + 0x2a, 0x84, 0x29, 0x89, 0xae, 0x1a, 0xd4, 0x4f, 0x2e, 0xb2, 0x34, 0x87, 0xd2, 0xd4, 0xff, 0x4c, + 0x86, 0x1b, 0x8d, 0x89, 0xef, 0x5c, 0xb8, 0xe7, 0x84, 0x87, 0x61, 0x69, 0xa6, 0x87, 0xe1, 0x85, + 0xc4, 0x87, 0x61, 0xf9, 0x1d, 0x0f, 0xc3, 0x0b, 0xc2, 0xc3, 0xf0, 0xe7, 0xfc, 0x06, 0x0a, 0x5e, + 0x87, 0x53, 0xf4, 0x2a, 0x58, 0x4d, 0xaa, 0x08, 0xf3, 0x87, 0x62, 0x7a, 0x15, 0xb5, 0xf9, 0x63, + 0xb1, 0x1a, 0x5d, 0x45, 0xc1, 0x0a, 0x69, 0xba, 0xc2, 0x95, 0xb5, 0xf0, 0xf0, 0x46, 0xe2, 0xcb, + 0x10, 0x6f, 0xc7, 0x9f, 0xf8, 0xeb, 0x7f, 0x2c, 0x43, 0x95, 0x08, 0x47, 0xb8, 0x72, 0xa7, 0x8a, + 0xcf, 0xd2, 0x0c, 0xc5, 0xe7, 0xcc, 0x55, 0x65, 0x2c, 0x79, 0xa6, 0xd2, 0x4f, 0x6a, 0xe6, 0xd2, + 0x4f, 0x7a, 0xfe, 0xd2, 0x4f, 0x76, 0xde, 0x32, 0xd6, 0xdf, 0xa6, 0x61, 0x29, 0x21, 0x9e, 0x23, + 0x31, 0x36, 0x8b, 0xe7, 0xa6, 0x63, 0x6c, 0x06, 0x23, 0x31, 0x36, 0xff, 0x45, 0x12, 0xe8, 0x2a, + 0x7b, 0x64, 0x76, 0x8e, 0x8f, 0x3d, 0xec, 0xeb, 0x23, 0x8f, 0xab, 0x6c, 0x99, 0x82, 0xdb, 0x14, + 0xba, 0xef, 0x11, 0x0f, 0x8d, 0x6d, 0x53, 0xa0, 0x62, 0xba, 0x5b, 0xc4, 0xb6, 0x19, 0xd2, 0x88, + 0xbd, 0x14, 0xe9, 0xb9, 0x7b, 0x29, 0x32, 0x33, 0xf7, 0x52, 0x64, 0xe7, 0xeb, 0xa5, 0xc8, 0x5d, + 0xa3, 0x97, 0x22, 0xff, 0x7e, 0xbd, 0x14, 0x85, 0xd9, 0x7b, 0x29, 0x60, 0xfe, 0x5e, 0x8a, 0xe2, + 0xb5, 0x7a, 0x29, 0xfe, 0x39, 0x0b, 0xab, 0x97, 0xc7, 0xf0, 0x57, 0xa7, 0xf2, 0x51, 0xde, 0x29, + 0x5f, 0xd1, 0x74, 0x91, 0x8a, 0xb7, 0x3b, 0x3c, 0x03, 0xf6, 0x64, 0xa7, 0x8f, 0xac, 0x37, 0x96, + 0x3d, 0xa8, 0x55, 0xe9, 0x89, 0xc4, 0xba, 0x02, 0xf6, 0x29, 0x4e, 0x63, 0x4f, 0xa0, 0x6c, 0x10, + 0xeb, 0x93, 0x48, 0xcf, 0xd0, 0xad, 0x91, 0x49, 0xe8, 0xd6, 0x40, 0x4f, 0x78, 0x68, 0xc6, 0x14, + 0xe7, 0x0a, 0x27, 0x46, 0xc3, 0xad, 0xe0, 0xe5, 0x6f, 0x33, 0x16, 0x07, 0x26, 0xbf, 0xfc, 0xf1, + 0x29, 0x41, 0x14, 0xf8, 0x03, 0x21, 0xb0, 0x83, 0x77, 0xbf, 0xfe, 0xf1, 0xd9, 0xd1, 0x0b, 0x60, + 0xa4, 0xb6, 0xf9, 0x6b, 0xa8, 0x6d, 0x61, 0x0e, 0xb5, 0x8d, 0x7b, 0xfa, 0xe2, 0x7c, 0x9e, 0xfe, + 0x57, 0xc2, 0x34, 0x27, 0x58, 0xa0, 0x14, 0xcf, 0x39, 0x04, 0x69, 0x05, 0x89, 0xce, 0x15, 0xf7, + 0x44, 0x79, 0xfe, 0x7b, 0x02, 0x7d, 0x3f, 0xc8, 0x5c, 0x82, 0x45, 0x2a, 0x74, 0x91, 0xc4, 0xe7, + 0x53, 0x9e, 0xba, 0x04, 0x53, 0x45, 0xc3, 0x52, 0x66, 0x37, 0x2c, 0xf6, 0x21, 0xf1, 0x82, 0xfa, + 0x9f, 0x0c, 0x28, 0xf1, 0xc4, 0xf6, 0x1b, 0xea, 0x0c, 0x2a, 0x25, 0x77, 0x06, 0x85, 0x7a, 0x9f, + 0x7e, 0x4f, 0xbd, 0xcf, 0xbc, 0x9f, 0xde, 0x67, 0xaf, 0xa5, 0xf7, 0xdf, 0x94, 0xbb, 0x8e, 0xeb, + 0x7d, 0xe1, 0xba, 0x7a, 0x0f, 0xd7, 0xd3, 0xfb, 0xe2, 0xd7, 0xa1, 0xf7, 0xe5, 0xf7, 0xd2, 0xfb, + 0xca, 0x75, 0xf4, 0xfe, 0xaf, 0xd2, 0x50, 0xbb, 0xac, 0x32, 0x73, 0xf5, 0x6d, 0x22, 0x36, 0x77, + 0xc9, 0xb1, 0xe6, 0xae, 0x6f, 0x43, 0x69, 0xaa, 0xab, 0x8b, 0x59, 0x42, 0xd1, 0x8b, 0xfa, 0xb9, + 0x04, 0x95, 0x49, 0x5f, 0x23, 0x28, 0xce, 0x5c, 0x23, 0x28, 0xce, 0x5e, 0x57, 0x65, 0x72, 0xd7, + 0x53, 0x99, 0xfc, 0xd7, 0xa1, 0x32, 0x85, 0xf7, 0x52, 0x19, 0x98, 0x51, 0x65, 0x04, 0x45, 0xf9, + 0x83, 0x2c, 0xdc, 0xba, 0xa2, 0xee, 0xf6, 0xae, 0x3e, 0x5d, 0xd6, 0xa9, 0x14, 0x35, 0x35, 0xca, + 0x61, 0x53, 0x23, 0x45, 0xf0, 0xa6, 0x46, 0x4d, 0x1c, 0x99, 0x64, 0x5a, 0xac, 0x17, 0x32, 0x95, + 0xd8, 0x0b, 0x19, 0xeb, 0x84, 0xfc, 0x7f, 0x72, 0x9c, 0xf9, 0x6b, 0x39, 0xce, 0xec, 0x35, 0x1c, + 0x67, 0xee, 0x17, 0x01, 0xc3, 0xfb, 0x58, 0x41, 0xf5, 0x3a, 0x8e, 0xf3, 0xbf, 0x24, 0x40, 0x17, + 0x0b, 0xc8, 0x57, 0x9b, 0xc1, 0x47, 0x42, 0xff, 0xa3, 0x1c, 0xef, 0x7f, 0x8c, 0xba, 0x1f, 0x1f, + 0x71, 0xfd, 0x4d, 0xc5, 0x0a, 0xef, 0x4d, 0xcb, 0xc5, 0x7d, 0x3f, 0xa1, 0xcb, 0xed, 0x23, 0x28, + 0xbf, 0xc6, 0x47, 0x9e, 0xd3, 0x3f, 0xc5, 0x7e, 0xd4, 0xf5, 0xbc, 0xbb, 0xa0, 0x95, 0x42, 0x30, + 0x09, 0xa4, 0xc5, 0xbd, 0x67, 0xe6, 0xdd, 0x7b, 0xfd, 0x4f, 0x64, 0x50, 0xe2, 0x1c, 0xfc, 0x22, + 0x87, 0xff, 0xb9, 0x0c, 0x8b, 0x17, 0x4c, 0xe6, 0x9b, 0x6a, 0xc7, 0xcb, 0x5e, 0x25, 0xcd, 0xd4, + 0x4c, 0xd2, 0x4c, 0xcf, 0x2c, 0xcd, 0xcc, 0xfc, 0xd2, 0xcc, 0xcd, 0x2b, 0xcd, 0x57, 0xc1, 0x63, + 0xeb, 0x1e, 0xcd, 0x4c, 0xe7, 0x7f, 0x6c, 0xbd, 0x24, 0xc5, 0xad, 0xff, 0x69, 0xf8, 0x8c, 0xdb, + 0xe5, 0x4f, 0x35, 0xf3, 0xae, 0xcc, 0x1f, 0x67, 0x19, 0xa3, 0xba, 0xd0, 0xa9, 0x58, 0x36, 0x4c, + 0x93, 0x1d, 0x7b, 0xec, 0x71, 0x56, 0x24, 0x4d, 0x89, 0x8f, 0xb3, 0x11, 0x75, 0xfd, 0xfb, 0x50, + 0x99, 0x7e, 0x96, 0x40, 0xf7, 0x21, 0x6d, 0xd9, 0xc7, 0xce, 0x85, 0xc7, 0x6d, 0xe1, 0xb9, 0x89, + 0x12, 0xac, 0xbd, 0x82, 0x92, 0xd8, 0xe2, 0x8d, 0x56, 0x00, 0x35, 0x0e, 0x9b, 0xad, 0xb6, 0xbe, + 0xbd, 0xdb, 0x38, 0x38, 0x50, 0xf7, 0xf4, 0xad, 0x76, 0x6f, 0x57, 0x59, 0xb8, 0x08, 0xdf, 0x53, + 0x77, 0x7a, 0x8a, 0x84, 0x3e, 0x80, 0xa5, 0x69, 0xb8, 0xd6, 0x7a, 0xb1, 0xdb, 0x53, 0xe4, 0xb5, + 0x7f, 0x90, 0xe0, 0x46, 0xe2, 0xed, 0x83, 0x14, 0x28, 0xed, 0x6e, 0x3c, 0x7d, 0xa2, 0x3f, 0xdb, + 0x78, 0xdc, 0xd1, 0x37, 0x1f, 0x2b, 0x0b, 0xd3, 0x90, 0xa7, 0x8f, 0x15, 0x09, 0x2d, 0x42, 0x99, + 0x42, 0x7e, 0xe9, 0xf1, 0x67, 0x8c, 0x48, 0x8e, 0x81, 0x9e, 0x3e, 0x56, 0x52, 0xe8, 0x26, 0xdc, + 0xe8, 0xb4, 0xb5, 0x9e, 0xd6, 0x68, 0xf5, 0xf4, 0xa9, 0x25, 0xd3, 0x97, 0xa0, 0x9e, 0x3e, 0x56, + 0x32, 0x68, 0x15, 0x56, 0xa6, 0x51, 0xe1, 0x47, 0xb2, 0x97, 0xe1, 0x9e, 0x3e, 0x56, 0x72, 0x6b, + 0x5b, 0xbc, 0x1f, 0x3c, 0x32, 0x3a, 0xb4, 0x0c, 0x4a, 0x53, 0xdd, 0x69, 0x1c, 0xee, 0xf5, 0xf4, + 0x9d, 0xd6, 0x9e, 0xda, 0xfb, 0xb5, 0x8e, 0xaa, 0x2c, 0xa0, 0x1c, 0xa4, 0xf6, 0x3b, 0x4f, 0x14, + 0x89, 0xfc, 0x68, 0xbf, 0x78, 0xa1, 0xc8, 0x0c, 0xb2, 0xa9, 0xa4, 0xd6, 0x76, 0x83, 0x93, 0x0a, + 0x5a, 0x4a, 0xc5, 0x25, 0x3a, 0x5a, 0xbb, 0xd7, 0xde, 0x6e, 0xef, 0x29, 0x0b, 0x28, 0x0f, 0x69, + 0xad, 0xb7, 0xdf, 0x61, 0x6b, 0x74, 0xb5, 0x9e, 0x22, 0xa3, 0x32, 0x14, 0x5e, 0xa9, 0x5b, 0xdd, + 0xf6, 0xf6, 0x4b, 0xb5, 0xa7, 0xa4, 0xd6, 0x0e, 0xe0, 0x46, 0x62, 0x8f, 0x2a, 0xba, 0x07, 0x77, + 0x82, 0x05, 0xbb, 0xea, 0x8b, 0x7d, 0xf5, 0xa0, 0xa7, 0x36, 0x29, 0x77, 0xe2, 0xfa, 0x44, 0xe2, + 0x7b, 0xdd, 0x08, 0x22, 0xad, 0x3d, 0x8a, 0xf5, 0xc8, 0xf2, 0xfe, 0xc1, 0x02, 0x64, 0x5a, 0x07, + 0x4d, 0xf5, 0x2b, 0x65, 0x81, 0x30, 0xd0, 0x6b, 0xed, 0xab, 0xdd, 0x5e, 0x83, 0x30, 0xb6, 0x76, + 0x0c, 0xd5, 0x58, 0xf3, 0x21, 0x51, 0x92, 0xd6, 0x7e, 0xe3, 0x85, 0xaa, 0x77, 0x0f, 0x77, 0x76, + 0x5a, 0x5f, 0xe9, 0xc1, 0xcc, 0x55, 0x58, 0x99, 0x82, 0x0b, 0xcb, 0xa0, 0x3b, 0x70, 0x6b, 0x0a, + 0x77, 0xd0, 0x3e, 0x50, 0xf5, 0xf6, 0x97, 0xaa, 0xf6, 0x4a, 0x6b, 0xf5, 0x54, 0x45, 0x5e, 0xfb, + 0x21, 0x28, 0xf1, 0x47, 0x7a, 0xb2, 0xa0, 0xfa, 0x42, 0x53, 0xbb, 0x5d, 0xbd, 0xdb, 0x3e, 0xd4, + 0xb6, 0x55, 0x9d, 0x48, 0x5e, 0x7f, 0xa5, 0x6e, 0xb1, 0x8f, 0x25, 0xe0, 0xba, 0xcd, 0x97, 0x8a, + 0xb4, 0xf6, 0x17, 0x12, 0x94, 0xc4, 0xa7, 0x7b, 0xb4, 0x04, 0xd5, 0x80, 0xb8, 0xd7, 0xd0, 0x7a, + 0xad, 0x83, 0x17, 0xca, 0x02, 0xd1, 0x34, 0x0e, 0xe4, 0x0f, 0x49, 0x92, 0x00, 0x52, 0x0f, 0x9a, + 0x84, 0x4a, 0x16, 0xa6, 0x6e, 0xb7, 0xf7, 0x3b, 0x7b, 0x6a, 0x4f, 0x55, 0x52, 0x02, 0x1d, 0x7f, + 0x69, 0x4a, 0x23, 0x04, 0x95, 0x60, 0xb5, 0xad, 0xb6, 0xd6, 0x53, 0x9b, 0x4a, 0x06, 0xd5, 0x60, + 0x99, 0xc3, 0xf6, 0x5a, 0xfb, 0xad, 0x9e, 0xae, 0xa9, 0x8d, 0xed, 0x5d, 0xb5, 0xa9, 0x64, 0xd7, + 0x0e, 0xf9, 0x3f, 0xa8, 0xf0, 0xe2, 0x17, 0x82, 0x4a, 0x70, 0x98, 0xfb, 0xad, 0xaf, 0x18, 0x7b, + 0x2b, 0x80, 0x9a, 0x87, 0x8d, 0xbd, 0xd0, 0xe2, 0x1a, 0x2f, 0xd4, 0x03, 0x62, 0x8a, 0xab, 0xb0, + 0x32, 0x0d, 0xdf, 0xeb, 0xa9, 0xda, 0x41, 0x83, 0x08, 0x71, 0xe3, 0x5f, 0x33, 0x90, 0xe5, 0x05, + 0xf3, 0x5f, 0x85, 0xa2, 0xd0, 0x35, 0x80, 0xae, 0xea, 0x25, 0x58, 0x4d, 0xea, 0x8a, 0x41, 0x0d, + 0x28, 0x89, 0xee, 0x15, 0x45, 0x51, 0x57, 0x82, 0xd7, 0x7d, 0xc7, 0x12, 0xcc, 0x18, 0x2e, 0x2c, + 0x31, 0xe5, 0x5e, 0x93, 0x97, 0x50, 0x01, 0xa2, 0xae, 0x1e, 0x14, 0x45, 0x9e, 0x17, 0x1a, 0x93, + 0x56, 0x6f, 0x25, 0xe2, 0x78, 0x1b, 0xd0, 0xe7, 0x00, 0x51, 0x5f, 0x0b, 0x12, 0x5f, 0x2f, 0x63, + 0xcd, 0x2e, 0xc9, 0x5c, 0xf4, 0xa0, 0x46, 0xc5, 0x96, 0x50, 0x4c, 0x45, 0xb3, 0xb4, 0x4b, 0x24, + 0xaf, 0xfa, 0x05, 0xf1, 0x12, 0x86, 0xeb, 0x87, 0xa5, 0x24, 0x74, 0x79, 0xdf, 0x44, 0xf2, 0x0a, + 0x1d, 0x58, 0xa1, 0x2b, 0x5c, 0x7c, 0x46, 0x7a, 0x77, 0x2b, 0x45, 0xf2, 0x8a, 0x5f, 0xc2, 0x4d, + 0xba, 0x62, 0x52, 0xf6, 0x86, 0x66, 0x6a, 0xaa, 0x48, 0x5e, 0xb7, 0x09, 0x4a, 0xb4, 0xee, 0x05, + 0x9d, 0xbc, 0x18, 0x1b, 0x27, 0xae, 0xb2, 0xb5, 0xf3, 0xeb, 0xf7, 0x06, 0x96, 0x7f, 0x32, 0x39, + 0x5a, 0xef, 0x3b, 0xa3, 0x47, 0x9c, 0xe0, 0x51, 0xd0, 0xad, 0x1f, 0x00, 0xfe, 0x5a, 0x2e, 0xef, + 0x59, 0x67, 0xf8, 0x25, 0xeb, 0x2d, 0xf4, 0x9d, 0x7f, 0x97, 0x2b, 0x7c, 0xfc, 0xfc, 0x39, 0x05, + 0x1c, 0x65, 0xe9, 0x94, 0xcd, 0xff, 0x0d, 0x00, 0x00, 0xff, 0xff, 0xb0, 0xfc, 0x87, 0x46, 0x92, + 0x3a, 0x00, 0x00, } From 1191ee2dc23a258663bfe58df61c2ac22b56d329 Mon Sep 17 00:00:00 2001 From: David Colburn Date: Tue, 2 Jun 2026 11:20:41 -0400 Subject: [PATCH 3/4] add comment --- protobufs/livekit_egress.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protobufs/livekit_egress.proto b/protobufs/livekit_egress.proto index 88f24e385..6ba9eb5db 100644 --- a/protobufs/livekit_egress.proto +++ b/protobufs/livekit_egress.proto @@ -115,7 +115,7 @@ message ParticipantVideo { // Unified audio selection and channel routing. // Each route specifies both which audio to capture and which channel to output to. message AudioConfig { - bool capture_all = 1; + bool capture_all = 1; // If true, all unmatched audio is recorded to both channels repeated AudioRoute routes = 2; } From 46cda9ef388e4d0b7102ada383edcd72e847c7fc Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 2 Jun 2026 15:22:06 +0000 Subject: [PATCH 4/4] generated protobuf --- livekit/livekit_egress.pb.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/livekit/livekit_egress.pb.go b/livekit/livekit_egress.pb.go index bd47110c3..34037cd32 100644 --- a/livekit/livekit_egress.pb.go +++ b/livekit/livekit_egress.pb.go @@ -1067,7 +1067,7 @@ func (x *ParticipantVideo) GetPreferScreenShare() bool { // Each route specifies both which audio to capture and which channel to output to. type AudioConfig struct { state protoimpl.MessageState `protogen:"open.v1"` - CaptureAll bool `protobuf:"varint,1,opt,name=capture_all,json=captureAll,proto3" json:"capture_all,omitempty"` + CaptureAll bool `protobuf:"varint,1,opt,name=capture_all,json=captureAll,proto3" json:"capture_all,omitempty"` // If true, all unmatched audio is recorded to both channels Routes []*AudioRoute `protobuf:"bytes,2,rep,name=routes,proto3" json:"routes,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache