From 7485d204233a8ef9a13d4f8df8b1bddf2c6ab60d Mon Sep 17 00:00:00 2001 From: Denys Smirnov Date: Sat, 2 May 2026 15:42:12 +0300 Subject: [PATCH] Allow setting a list of SIP codecs for SDP. --- livekit/livekit_sip.pb.go | 845 +++++++++++++++++++++-------------- livekit/livekit_sip.twirp.go | 692 ++++++++++++++-------------- livekit/sip.go | 12 +- protobufs/livekit_sip.proto | 26 +- protobufs/rpc/io.proto | 5 +- protobufs/rpc/sip.proto | 5 +- rpc/io.pb.go | 109 +++-- rpc/io.psrpc.go | 263 +++++------ rpc/sip.go | 7 +- rpc/sip.pb.go | 53 ++- rpc/sip.psrpc.go | 156 +++---- sip/sip.go | 5 + 12 files changed, 1208 insertions(+), 970 deletions(-) diff --git a/livekit/livekit_sip.pb.go b/livekit/livekit_sip.pb.go index 4704c69e8..c2a2b3715 100644 --- a/livekit/livekit_sip.pb.go +++ b/livekit/livekit_sip.pb.go @@ -752,7 +752,7 @@ func (x SIPTrunkInfo_TrunkKind) Number() protoreflect.EnumNumber { // Deprecated: Use SIPTrunkInfo_TrunkKind.Descriptor instead. func (SIPTrunkInfo_TrunkKind) EnumDescriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{3, 0} + return file_livekit_sip_proto_rawDescGZIP(), []int{5, 0} } // SIPStatus is returned as an error detail in CreateSIPParticipant. @@ -946,6 +946,120 @@ func (x *CreateSIPTrunkRequest) GetMetadata() string { return "" } +type SIPCodec struct { + state protoimpl.MessageState `protogen:"open.v1"` + Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` + Rate uint32 `protobuf:"varint,2,opt,name=rate,proto3" json:"rate,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *SIPCodec) Reset() { + *x = SIPCodec{} + mi := &file_livekit_sip_proto_msgTypes[2] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *SIPCodec) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*SIPCodec) ProtoMessage() {} + +func (x *SIPCodec) ProtoReflect() protoreflect.Message { + mi := &file_livekit_sip_proto_msgTypes[2] + 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 SIPCodec.ProtoReflect.Descriptor instead. +func (*SIPCodec) Descriptor() ([]byte, []int) { + return file_livekit_sip_proto_rawDescGZIP(), []int{2} +} + +func (x *SIPCodec) GetName() string { + if x != nil { + return x.Name + } + return "" +} + +func (x *SIPCodec) GetRate() uint32 { + if x != nil { + return x.Rate + } + return 0 +} + +type SIPMediaConfig struct { + state protoimpl.MessageState `protogen:"open.v1"` + // if set, ignore the default codecs and use the list below. + OnlyListedCodecs bool `protobuf:"varint,1,opt,name=only_listed_codecs,json=onlyListedCodecs,proto3" json:"only_listed_codecs,omitempty"` + // List of allowed codecs. If only_listed_codecs is not set, this list is added to default codecs. + Codecs []*SIPCodec `protobuf:"bytes,2,rep,name=codecs,proto3" json:"codecs,omitempty"` + Encryption SIPMediaEncryption `protobuf:"varint,3,opt,name=encryption,proto3,enum=livekit.SIPMediaEncryption" json:"encryption,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *SIPMediaConfig) Reset() { + *x = SIPMediaConfig{} + mi := &file_livekit_sip_proto_msgTypes[3] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *SIPMediaConfig) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*SIPMediaConfig) ProtoMessage() {} + +func (x *SIPMediaConfig) ProtoReflect() protoreflect.Message { + mi := &file_livekit_sip_proto_msgTypes[3] + 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 SIPMediaConfig.ProtoReflect.Descriptor instead. +func (*SIPMediaConfig) Descriptor() ([]byte, []int) { + return file_livekit_sip_proto_rawDescGZIP(), []int{3} +} + +func (x *SIPMediaConfig) GetOnlyListedCodecs() bool { + if x != nil { + return x.OnlyListedCodecs + } + return false +} + +func (x *SIPMediaConfig) GetCodecs() []*SIPCodec { + if x != nil { + return x.Codecs + } + return nil +} + +func (x *SIPMediaConfig) GetEncryption() SIPMediaEncryption { + if x != nil { + return x.Encryption + } + return SIPMediaEncryption_SIP_MEDIA_ENCRYPT_DISABLE +} + type ProviderInfo struct { state protoimpl.MessageState `protogen:"open.v1"` Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` @@ -958,7 +1072,7 @@ type ProviderInfo struct { func (x *ProviderInfo) Reset() { *x = ProviderInfo{} - mi := &file_livekit_sip_proto_msgTypes[2] + mi := &file_livekit_sip_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -970,7 +1084,7 @@ func (x *ProviderInfo) String() string { func (*ProviderInfo) ProtoMessage() {} func (x *ProviderInfo) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[2] + mi := &file_livekit_sip_proto_msgTypes[4] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -983,7 +1097,7 @@ func (x *ProviderInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ProviderInfo.ProtoReflect.Descriptor instead. func (*ProviderInfo) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{2} + return file_livekit_sip_proto_rawDescGZIP(), []int{4} } func (x *ProviderInfo) GetId() string { @@ -1050,7 +1164,7 @@ type SIPTrunkInfo struct { func (x *SIPTrunkInfo) Reset() { *x = SIPTrunkInfo{} - mi := &file_livekit_sip_proto_msgTypes[3] + mi := &file_livekit_sip_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1062,7 +1176,7 @@ func (x *SIPTrunkInfo) String() string { func (*SIPTrunkInfo) ProtoMessage() {} func (x *SIPTrunkInfo) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[3] + mi := &file_livekit_sip_proto_msgTypes[5] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1075,7 +1189,7 @@ func (x *SIPTrunkInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use SIPTrunkInfo.ProtoReflect.Descriptor instead. func (*SIPTrunkInfo) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{3} + return file_livekit_sip_proto_rawDescGZIP(), []int{5} } func (x *SIPTrunkInfo) GetSipTrunkId() string { @@ -1186,7 +1300,7 @@ type CreateSIPInboundTrunkRequest struct { func (x *CreateSIPInboundTrunkRequest) Reset() { *x = CreateSIPInboundTrunkRequest{} - mi := &file_livekit_sip_proto_msgTypes[4] + mi := &file_livekit_sip_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1198,7 +1312,7 @@ func (x *CreateSIPInboundTrunkRequest) String() string { func (*CreateSIPInboundTrunkRequest) ProtoMessage() {} func (x *CreateSIPInboundTrunkRequest) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[4] + mi := &file_livekit_sip_proto_msgTypes[6] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1211,7 +1325,7 @@ func (x *CreateSIPInboundTrunkRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateSIPInboundTrunkRequest.ProtoReflect.Descriptor instead. func (*CreateSIPInboundTrunkRequest) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{4} + return file_livekit_sip_proto_rawDescGZIP(), []int{6} } func (x *CreateSIPInboundTrunkRequest) GetTrunk() *SIPInboundTrunkInfo { @@ -1235,7 +1349,7 @@ type UpdateSIPInboundTrunkRequest struct { func (x *UpdateSIPInboundTrunkRequest) Reset() { *x = UpdateSIPInboundTrunkRequest{} - mi := &file_livekit_sip_proto_msgTypes[5] + mi := &file_livekit_sip_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1247,7 +1361,7 @@ func (x *UpdateSIPInboundTrunkRequest) String() string { func (*UpdateSIPInboundTrunkRequest) ProtoMessage() {} func (x *UpdateSIPInboundTrunkRequest) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[5] + mi := &file_livekit_sip_proto_msgTypes[7] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1260,7 +1374,7 @@ func (x *UpdateSIPInboundTrunkRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateSIPInboundTrunkRequest.ProtoReflect.Descriptor instead. func (*UpdateSIPInboundTrunkRequest) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{5} + return file_livekit_sip_proto_rawDescGZIP(), []int{7} } func (x *UpdateSIPInboundTrunkRequest) GetSipTrunkId() string { @@ -1359,7 +1473,7 @@ type SIPInboundTrunkInfo struct { func (x *SIPInboundTrunkInfo) Reset() { *x = SIPInboundTrunkInfo{} - mi := &file_livekit_sip_proto_msgTypes[6] + mi := &file_livekit_sip_proto_msgTypes[8] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1371,7 +1485,7 @@ func (x *SIPInboundTrunkInfo) String() string { func (*SIPInboundTrunkInfo) ProtoMessage() {} func (x *SIPInboundTrunkInfo) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[6] + mi := &file_livekit_sip_proto_msgTypes[8] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1384,7 +1498,7 @@ func (x *SIPInboundTrunkInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use SIPInboundTrunkInfo.ProtoReflect.Descriptor instead. func (*SIPInboundTrunkInfo) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{6} + return file_livekit_sip_proto_rawDescGZIP(), []int{8} } func (x *SIPInboundTrunkInfo) GetSipTrunkId() string { @@ -1529,7 +1643,7 @@ type SIPInboundTrunkUpdate struct { func (x *SIPInboundTrunkUpdate) Reset() { *x = SIPInboundTrunkUpdate{} - mi := &file_livekit_sip_proto_msgTypes[7] + mi := &file_livekit_sip_proto_msgTypes[9] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1541,7 +1655,7 @@ func (x *SIPInboundTrunkUpdate) String() string { func (*SIPInboundTrunkUpdate) ProtoMessage() {} func (x *SIPInboundTrunkUpdate) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[7] + mi := &file_livekit_sip_proto_msgTypes[9] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1554,7 +1668,7 @@ func (x *SIPInboundTrunkUpdate) ProtoReflect() protoreflect.Message { // Deprecated: Use SIPInboundTrunkUpdate.ProtoReflect.Descriptor instead. func (*SIPInboundTrunkUpdate) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{7} + return file_livekit_sip_proto_rawDescGZIP(), []int{9} } func (x *SIPInboundTrunkUpdate) GetNumbers() *ListUpdate { @@ -1622,7 +1736,7 @@ type CreateSIPOutboundTrunkRequest struct { func (x *CreateSIPOutboundTrunkRequest) Reset() { *x = CreateSIPOutboundTrunkRequest{} - mi := &file_livekit_sip_proto_msgTypes[8] + mi := &file_livekit_sip_proto_msgTypes[10] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1634,7 +1748,7 @@ func (x *CreateSIPOutboundTrunkRequest) String() string { func (*CreateSIPOutboundTrunkRequest) ProtoMessage() {} func (x *CreateSIPOutboundTrunkRequest) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[8] + mi := &file_livekit_sip_proto_msgTypes[10] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1647,7 +1761,7 @@ func (x *CreateSIPOutboundTrunkRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateSIPOutboundTrunkRequest.ProtoReflect.Descriptor instead. func (*CreateSIPOutboundTrunkRequest) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{8} + return file_livekit_sip_proto_rawDescGZIP(), []int{10} } func (x *CreateSIPOutboundTrunkRequest) GetTrunk() *SIPOutboundTrunkInfo { @@ -1671,7 +1785,7 @@ type UpdateSIPOutboundTrunkRequest struct { func (x *UpdateSIPOutboundTrunkRequest) Reset() { *x = UpdateSIPOutboundTrunkRequest{} - mi := &file_livekit_sip_proto_msgTypes[9] + mi := &file_livekit_sip_proto_msgTypes[11] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1683,7 +1797,7 @@ func (x *UpdateSIPOutboundTrunkRequest) String() string { func (*UpdateSIPOutboundTrunkRequest) ProtoMessage() {} func (x *UpdateSIPOutboundTrunkRequest) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[9] + mi := &file_livekit_sip_proto_msgTypes[11] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1696,7 +1810,7 @@ func (x *UpdateSIPOutboundTrunkRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateSIPOutboundTrunkRequest.ProtoReflect.Descriptor instead. func (*UpdateSIPOutboundTrunkRequest) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{9} + return file_livekit_sip_proto_rawDescGZIP(), []int{11} } func (x *UpdateSIPOutboundTrunkRequest) GetSipTrunkId() string { @@ -1796,7 +1910,7 @@ type SIPOutboundTrunkInfo struct { func (x *SIPOutboundTrunkInfo) Reset() { *x = SIPOutboundTrunkInfo{} - mi := &file_livekit_sip_proto_msgTypes[10] + mi := &file_livekit_sip_proto_msgTypes[12] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1808,7 +1922,7 @@ func (x *SIPOutboundTrunkInfo) String() string { func (*SIPOutboundTrunkInfo) ProtoMessage() {} func (x *SIPOutboundTrunkInfo) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[10] + mi := &file_livekit_sip_proto_msgTypes[12] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1821,7 +1935,7 @@ func (x *SIPOutboundTrunkInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use SIPOutboundTrunkInfo.ProtoReflect.Descriptor instead. func (*SIPOutboundTrunkInfo) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{10} + return file_livekit_sip_proto_rawDescGZIP(), []int{12} } func (x *SIPOutboundTrunkInfo) GetSipTrunkId() string { @@ -1961,7 +2075,7 @@ type SIPOutboundTrunkUpdate struct { func (x *SIPOutboundTrunkUpdate) Reset() { *x = SIPOutboundTrunkUpdate{} - mi := &file_livekit_sip_proto_msgTypes[11] + mi := &file_livekit_sip_proto_msgTypes[13] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1973,7 +2087,7 @@ func (x *SIPOutboundTrunkUpdate) String() string { func (*SIPOutboundTrunkUpdate) ProtoMessage() {} func (x *SIPOutboundTrunkUpdate) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[11] + mi := &file_livekit_sip_proto_msgTypes[13] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1986,7 +2100,7 @@ func (x *SIPOutboundTrunkUpdate) ProtoReflect() protoreflect.Message { // Deprecated: Use SIPOutboundTrunkUpdate.ProtoReflect.Descriptor instead. func (*SIPOutboundTrunkUpdate) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{11} + return file_livekit_sip_proto_rawDescGZIP(), []int{13} } func (x *SIPOutboundTrunkUpdate) GetAddress() string { @@ -2068,7 +2182,7 @@ type GetSIPInboundTrunkRequest struct { func (x *GetSIPInboundTrunkRequest) Reset() { *x = GetSIPInboundTrunkRequest{} - mi := &file_livekit_sip_proto_msgTypes[12] + mi := &file_livekit_sip_proto_msgTypes[14] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2080,7 +2194,7 @@ func (x *GetSIPInboundTrunkRequest) String() string { func (*GetSIPInboundTrunkRequest) ProtoMessage() {} func (x *GetSIPInboundTrunkRequest) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[12] + mi := &file_livekit_sip_proto_msgTypes[14] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2093,7 +2207,7 @@ func (x *GetSIPInboundTrunkRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetSIPInboundTrunkRequest.ProtoReflect.Descriptor instead. func (*GetSIPInboundTrunkRequest) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{12} + return file_livekit_sip_proto_rawDescGZIP(), []int{14} } func (x *GetSIPInboundTrunkRequest) GetSipTrunkId() string { @@ -2112,7 +2226,7 @@ type GetSIPInboundTrunkResponse struct { func (x *GetSIPInboundTrunkResponse) Reset() { *x = GetSIPInboundTrunkResponse{} - mi := &file_livekit_sip_proto_msgTypes[13] + mi := &file_livekit_sip_proto_msgTypes[15] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2124,7 +2238,7 @@ func (x *GetSIPInboundTrunkResponse) String() string { func (*GetSIPInboundTrunkResponse) ProtoMessage() {} func (x *GetSIPInboundTrunkResponse) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[13] + mi := &file_livekit_sip_proto_msgTypes[15] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2137,7 +2251,7 @@ func (x *GetSIPInboundTrunkResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use GetSIPInboundTrunkResponse.ProtoReflect.Descriptor instead. func (*GetSIPInboundTrunkResponse) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{13} + return file_livekit_sip_proto_rawDescGZIP(), []int{15} } func (x *GetSIPInboundTrunkResponse) GetTrunk() *SIPInboundTrunkInfo { @@ -2156,7 +2270,7 @@ type GetSIPOutboundTrunkRequest struct { func (x *GetSIPOutboundTrunkRequest) Reset() { *x = GetSIPOutboundTrunkRequest{} - mi := &file_livekit_sip_proto_msgTypes[14] + mi := &file_livekit_sip_proto_msgTypes[16] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2168,7 +2282,7 @@ func (x *GetSIPOutboundTrunkRequest) String() string { func (*GetSIPOutboundTrunkRequest) ProtoMessage() {} func (x *GetSIPOutboundTrunkRequest) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[14] + mi := &file_livekit_sip_proto_msgTypes[16] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2181,7 +2295,7 @@ func (x *GetSIPOutboundTrunkRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetSIPOutboundTrunkRequest.ProtoReflect.Descriptor instead. func (*GetSIPOutboundTrunkRequest) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{14} + return file_livekit_sip_proto_rawDescGZIP(), []int{16} } func (x *GetSIPOutboundTrunkRequest) GetSipTrunkId() string { @@ -2200,7 +2314,7 @@ type GetSIPOutboundTrunkResponse struct { func (x *GetSIPOutboundTrunkResponse) Reset() { *x = GetSIPOutboundTrunkResponse{} - mi := &file_livekit_sip_proto_msgTypes[15] + mi := &file_livekit_sip_proto_msgTypes[17] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2212,7 +2326,7 @@ func (x *GetSIPOutboundTrunkResponse) String() string { func (*GetSIPOutboundTrunkResponse) ProtoMessage() {} func (x *GetSIPOutboundTrunkResponse) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[15] + mi := &file_livekit_sip_proto_msgTypes[17] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2225,7 +2339,7 @@ func (x *GetSIPOutboundTrunkResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use GetSIPOutboundTrunkResponse.ProtoReflect.Descriptor instead. func (*GetSIPOutboundTrunkResponse) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{15} + return file_livekit_sip_proto_rawDescGZIP(), []int{17} } func (x *GetSIPOutboundTrunkResponse) GetTrunk() *SIPOutboundTrunkInfo { @@ -2245,7 +2359,7 @@ type ListSIPTrunkRequest struct { func (x *ListSIPTrunkRequest) Reset() { *x = ListSIPTrunkRequest{} - mi := &file_livekit_sip_proto_msgTypes[16] + mi := &file_livekit_sip_proto_msgTypes[18] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2257,7 +2371,7 @@ func (x *ListSIPTrunkRequest) String() string { func (*ListSIPTrunkRequest) ProtoMessage() {} func (x *ListSIPTrunkRequest) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[16] + mi := &file_livekit_sip_proto_msgTypes[18] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2270,7 +2384,7 @@ func (x *ListSIPTrunkRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListSIPTrunkRequest.ProtoReflect.Descriptor instead. func (*ListSIPTrunkRequest) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{16} + return file_livekit_sip_proto_rawDescGZIP(), []int{18} } func (x *ListSIPTrunkRequest) GetPage() *Pagination { @@ -2290,7 +2404,7 @@ type ListSIPTrunkResponse struct { func (x *ListSIPTrunkResponse) Reset() { *x = ListSIPTrunkResponse{} - mi := &file_livekit_sip_proto_msgTypes[17] + mi := &file_livekit_sip_proto_msgTypes[19] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2302,7 +2416,7 @@ func (x *ListSIPTrunkResponse) String() string { func (*ListSIPTrunkResponse) ProtoMessage() {} func (x *ListSIPTrunkResponse) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[17] + mi := &file_livekit_sip_proto_msgTypes[19] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2315,7 +2429,7 @@ func (x *ListSIPTrunkResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ListSIPTrunkResponse.ProtoReflect.Descriptor instead. func (*ListSIPTrunkResponse) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{17} + return file_livekit_sip_proto_rawDescGZIP(), []int{19} } func (x *ListSIPTrunkResponse) GetItems() []*SIPTrunkInfo { @@ -2340,7 +2454,7 @@ type ListSIPInboundTrunkRequest struct { func (x *ListSIPInboundTrunkRequest) Reset() { *x = ListSIPInboundTrunkRequest{} - mi := &file_livekit_sip_proto_msgTypes[18] + mi := &file_livekit_sip_proto_msgTypes[20] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2352,7 +2466,7 @@ func (x *ListSIPInboundTrunkRequest) String() string { func (*ListSIPInboundTrunkRequest) ProtoMessage() {} func (x *ListSIPInboundTrunkRequest) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[18] + mi := &file_livekit_sip_proto_msgTypes[20] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2365,7 +2479,7 @@ func (x *ListSIPInboundTrunkRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListSIPInboundTrunkRequest.ProtoReflect.Descriptor instead. func (*ListSIPInboundTrunkRequest) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{18} + return file_livekit_sip_proto_rawDescGZIP(), []int{20} } func (x *ListSIPInboundTrunkRequest) GetPage() *Pagination { @@ -2398,7 +2512,7 @@ type ListSIPInboundTrunkResponse struct { func (x *ListSIPInboundTrunkResponse) Reset() { *x = ListSIPInboundTrunkResponse{} - mi := &file_livekit_sip_proto_msgTypes[19] + mi := &file_livekit_sip_proto_msgTypes[21] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2410,7 +2524,7 @@ func (x *ListSIPInboundTrunkResponse) String() string { func (*ListSIPInboundTrunkResponse) ProtoMessage() {} func (x *ListSIPInboundTrunkResponse) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[19] + mi := &file_livekit_sip_proto_msgTypes[21] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2423,7 +2537,7 @@ func (x *ListSIPInboundTrunkResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ListSIPInboundTrunkResponse.ProtoReflect.Descriptor instead. func (*ListSIPInboundTrunkResponse) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{19} + return file_livekit_sip_proto_rawDescGZIP(), []int{21} } func (x *ListSIPInboundTrunkResponse) GetItems() []*SIPInboundTrunkInfo { @@ -2448,7 +2562,7 @@ type ListSIPOutboundTrunkRequest struct { func (x *ListSIPOutboundTrunkRequest) Reset() { *x = ListSIPOutboundTrunkRequest{} - mi := &file_livekit_sip_proto_msgTypes[20] + mi := &file_livekit_sip_proto_msgTypes[22] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2460,7 +2574,7 @@ func (x *ListSIPOutboundTrunkRequest) String() string { func (*ListSIPOutboundTrunkRequest) ProtoMessage() {} func (x *ListSIPOutboundTrunkRequest) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[20] + mi := &file_livekit_sip_proto_msgTypes[22] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2473,7 +2587,7 @@ func (x *ListSIPOutboundTrunkRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListSIPOutboundTrunkRequest.ProtoReflect.Descriptor instead. func (*ListSIPOutboundTrunkRequest) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{20} + return file_livekit_sip_proto_rawDescGZIP(), []int{22} } func (x *ListSIPOutboundTrunkRequest) GetPage() *Pagination { @@ -2506,7 +2620,7 @@ type ListSIPOutboundTrunkResponse struct { func (x *ListSIPOutboundTrunkResponse) Reset() { *x = ListSIPOutboundTrunkResponse{} - mi := &file_livekit_sip_proto_msgTypes[21] + mi := &file_livekit_sip_proto_msgTypes[23] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2518,7 +2632,7 @@ func (x *ListSIPOutboundTrunkResponse) String() string { func (*ListSIPOutboundTrunkResponse) ProtoMessage() {} func (x *ListSIPOutboundTrunkResponse) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[21] + mi := &file_livekit_sip_proto_msgTypes[23] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2531,7 +2645,7 @@ func (x *ListSIPOutboundTrunkResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ListSIPOutboundTrunkResponse.ProtoReflect.Descriptor instead. func (*ListSIPOutboundTrunkResponse) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{21} + return file_livekit_sip_proto_rawDescGZIP(), []int{23} } func (x *ListSIPOutboundTrunkResponse) GetItems() []*SIPOutboundTrunkInfo { @@ -2550,7 +2664,7 @@ type DeleteSIPTrunkRequest struct { func (x *DeleteSIPTrunkRequest) Reset() { *x = DeleteSIPTrunkRequest{} - mi := &file_livekit_sip_proto_msgTypes[22] + mi := &file_livekit_sip_proto_msgTypes[24] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2562,7 +2676,7 @@ func (x *DeleteSIPTrunkRequest) String() string { func (*DeleteSIPTrunkRequest) ProtoMessage() {} func (x *DeleteSIPTrunkRequest) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[22] + mi := &file_livekit_sip_proto_msgTypes[24] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2575,7 +2689,7 @@ func (x *DeleteSIPTrunkRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteSIPTrunkRequest.ProtoReflect.Descriptor instead. func (*DeleteSIPTrunkRequest) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{22} + return file_livekit_sip_proto_rawDescGZIP(), []int{24} } func (x *DeleteSIPTrunkRequest) GetSipTrunkId() string { @@ -2597,7 +2711,7 @@ type SIPDispatchRuleDirect struct { func (x *SIPDispatchRuleDirect) Reset() { *x = SIPDispatchRuleDirect{} - mi := &file_livekit_sip_proto_msgTypes[23] + mi := &file_livekit_sip_proto_msgTypes[25] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2609,7 +2723,7 @@ func (x *SIPDispatchRuleDirect) String() string { func (*SIPDispatchRuleDirect) ProtoMessage() {} func (x *SIPDispatchRuleDirect) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[23] + mi := &file_livekit_sip_proto_msgTypes[25] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2622,7 +2736,7 @@ func (x *SIPDispatchRuleDirect) ProtoReflect() protoreflect.Message { // Deprecated: Use SIPDispatchRuleDirect.ProtoReflect.Descriptor instead. func (*SIPDispatchRuleDirect) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{23} + return file_livekit_sip_proto_rawDescGZIP(), []int{25} } func (x *SIPDispatchRuleDirect) GetRoomName() string { @@ -2653,7 +2767,7 @@ type SIPDispatchRuleIndividual struct { func (x *SIPDispatchRuleIndividual) Reset() { *x = SIPDispatchRuleIndividual{} - mi := &file_livekit_sip_proto_msgTypes[24] + mi := &file_livekit_sip_proto_msgTypes[26] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2665,7 +2779,7 @@ func (x *SIPDispatchRuleIndividual) String() string { func (*SIPDispatchRuleIndividual) ProtoMessage() {} func (x *SIPDispatchRuleIndividual) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[24] + mi := &file_livekit_sip_proto_msgTypes[26] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2678,7 +2792,7 @@ func (x *SIPDispatchRuleIndividual) ProtoReflect() protoreflect.Message { // Deprecated: Use SIPDispatchRuleIndividual.ProtoReflect.Descriptor instead. func (*SIPDispatchRuleIndividual) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{24} + return file_livekit_sip_proto_rawDescGZIP(), []int{26} } func (x *SIPDispatchRuleIndividual) GetRoomPrefix() string { @@ -2716,7 +2830,7 @@ type SIPDispatchRuleCallee struct { func (x *SIPDispatchRuleCallee) Reset() { *x = SIPDispatchRuleCallee{} - mi := &file_livekit_sip_proto_msgTypes[25] + mi := &file_livekit_sip_proto_msgTypes[27] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2728,7 +2842,7 @@ func (x *SIPDispatchRuleCallee) String() string { func (*SIPDispatchRuleCallee) ProtoMessage() {} func (x *SIPDispatchRuleCallee) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[25] + mi := &file_livekit_sip_proto_msgTypes[27] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2741,7 +2855,7 @@ func (x *SIPDispatchRuleCallee) ProtoReflect() protoreflect.Message { // Deprecated: Use SIPDispatchRuleCallee.ProtoReflect.Descriptor instead. func (*SIPDispatchRuleCallee) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{25} + return file_livekit_sip_proto_rawDescGZIP(), []int{27} } func (x *SIPDispatchRuleCallee) GetRoomPrefix() string { @@ -2779,7 +2893,7 @@ type SIPDispatchRule struct { func (x *SIPDispatchRule) Reset() { *x = SIPDispatchRule{} - mi := &file_livekit_sip_proto_msgTypes[26] + mi := &file_livekit_sip_proto_msgTypes[28] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2791,7 +2905,7 @@ func (x *SIPDispatchRule) String() string { func (*SIPDispatchRule) ProtoMessage() {} func (x *SIPDispatchRule) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[26] + mi := &file_livekit_sip_proto_msgTypes[28] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2804,7 +2918,7 @@ func (x *SIPDispatchRule) ProtoReflect() protoreflect.Message { // Deprecated: Use SIPDispatchRule.ProtoReflect.Descriptor instead. func (*SIPDispatchRule) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{26} + return file_livekit_sip_proto_rawDescGZIP(), []int{28} } func (x *SIPDispatchRule) GetRule() isSIPDispatchRule_Rule { @@ -2915,7 +3029,7 @@ type CreateSIPDispatchRuleRequest struct { func (x *CreateSIPDispatchRuleRequest) Reset() { *x = CreateSIPDispatchRuleRequest{} - mi := &file_livekit_sip_proto_msgTypes[27] + mi := &file_livekit_sip_proto_msgTypes[29] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2927,7 +3041,7 @@ func (x *CreateSIPDispatchRuleRequest) String() string { func (*CreateSIPDispatchRuleRequest) ProtoMessage() {} func (x *CreateSIPDispatchRuleRequest) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[27] + mi := &file_livekit_sip_proto_msgTypes[29] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2940,7 +3054,7 @@ func (x *CreateSIPDispatchRuleRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateSIPDispatchRuleRequest.ProtoReflect.Descriptor instead. func (*CreateSIPDispatchRuleRequest) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{27} + return file_livekit_sip_proto_rawDescGZIP(), []int{29} } func (x *CreateSIPDispatchRuleRequest) GetDispatchRule() *SIPDispatchRuleInfo { @@ -3036,7 +3150,7 @@ type UpdateSIPDispatchRuleRequest struct { func (x *UpdateSIPDispatchRuleRequest) Reset() { *x = UpdateSIPDispatchRuleRequest{} - mi := &file_livekit_sip_proto_msgTypes[28] + mi := &file_livekit_sip_proto_msgTypes[30] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3048,7 +3162,7 @@ func (x *UpdateSIPDispatchRuleRequest) String() string { func (*UpdateSIPDispatchRuleRequest) ProtoMessage() {} func (x *UpdateSIPDispatchRuleRequest) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[28] + mi := &file_livekit_sip_proto_msgTypes[30] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3061,7 +3175,7 @@ func (x *UpdateSIPDispatchRuleRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateSIPDispatchRuleRequest.ProtoReflect.Descriptor instead. func (*UpdateSIPDispatchRuleRequest) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{28} + return file_livekit_sip_proto_rawDescGZIP(), []int{30} } func (x *UpdateSIPDispatchRuleRequest) GetSipDispatchRuleId() string { @@ -3133,8 +3247,10 @@ type SIPDispatchRuleInfo struct { // Cloud-only, config preset to use RoomPreset string `protobuf:"bytes,9,opt,name=room_preset,json=roomPreset,proto3" json:"room_preset,omitempty"` // RoomConfiguration to use if the participant initiates the room - RoomConfig *RoomConfiguration `protobuf:"bytes,10,opt,name=room_config,json=roomConfig,proto3" json:"room_config,omitempty"` - KrispEnabled bool `protobuf:"varint,11,opt,name=krisp_enabled,json=krispEnabled,proto3" json:"krisp_enabled,omitempty"` + RoomConfig *RoomConfiguration `protobuf:"bytes,10,opt,name=room_config,json=roomConfig,proto3" json:"room_config,omitempty"` + Media *SIPMediaConfig `protobuf:"bytes,16,opt,name=media,proto3" json:"media,omitempty"` + KrispEnabled bool `protobuf:"varint,11,opt,name=krisp_enabled,json=krispEnabled,proto3" json:"krisp_enabled,omitempty"` + // Deprecated: Marked as deprecated in livekit_sip.proto. MediaEncryption SIPMediaEncryption `protobuf:"varint,12,opt,name=media_encryption,json=mediaEncryption,proto3,enum=livekit.SIPMediaEncryption" json:"media_encryption,omitempty"` CreatedAt *timestamppb.Timestamp `protobuf:"bytes,14,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"` UpdatedAt *timestamppb.Timestamp `protobuf:"bytes,15,opt,name=updated_at,json=updatedAt,proto3" json:"updated_at,omitempty"` @@ -3144,7 +3260,7 @@ type SIPDispatchRuleInfo struct { func (x *SIPDispatchRuleInfo) Reset() { *x = SIPDispatchRuleInfo{} - mi := &file_livekit_sip_proto_msgTypes[29] + mi := &file_livekit_sip_proto_msgTypes[31] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3156,7 +3272,7 @@ func (x *SIPDispatchRuleInfo) String() string { func (*SIPDispatchRuleInfo) ProtoMessage() {} func (x *SIPDispatchRuleInfo) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[29] + mi := &file_livekit_sip_proto_msgTypes[31] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3169,7 +3285,7 @@ func (x *SIPDispatchRuleInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use SIPDispatchRuleInfo.ProtoReflect.Descriptor instead. func (*SIPDispatchRuleInfo) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{29} + return file_livekit_sip_proto_rawDescGZIP(), []int{31} } func (x *SIPDispatchRuleInfo) GetSipDispatchRuleId() string { @@ -3249,6 +3365,13 @@ func (x *SIPDispatchRuleInfo) GetRoomConfig() *RoomConfiguration { return nil } +func (x *SIPDispatchRuleInfo) GetMedia() *SIPMediaConfig { + if x != nil { + return x.Media + } + return nil +} + func (x *SIPDispatchRuleInfo) GetKrispEnabled() bool { if x != nil { return x.KrispEnabled @@ -3256,6 +3379,7 @@ func (x *SIPDispatchRuleInfo) GetKrispEnabled() bool { return false } +// Deprecated: Marked as deprecated in livekit_sip.proto. func (x *SIPDispatchRuleInfo) GetMediaEncryption() SIPMediaEncryption { if x != nil { return x.MediaEncryption @@ -3278,20 +3402,22 @@ func (x *SIPDispatchRuleInfo) GetUpdatedAt() *timestamppb.Timestamp { } type SIPDispatchRuleUpdate struct { - state protoimpl.MessageState `protogen:"open.v1"` - TrunkIds *ListUpdate `protobuf:"bytes,1,opt,name=trunk_ids,json=trunkIds,proto3" json:"trunk_ids,omitempty"` - Rule *SIPDispatchRule `protobuf:"bytes,2,opt,name=rule,proto3" json:"rule,omitempty"` - Name *string `protobuf:"bytes,3,opt,name=name,proto3,oneof" json:"name,omitempty"` - Metadata *string `protobuf:"bytes,4,opt,name=metadata,proto3,oneof" json:"metadata,omitempty"` - Attributes map[string]string `protobuf:"bytes,5,rep,name=attributes,proto3" json:"attributes,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` - MediaEncryption *SIPMediaEncryption `protobuf:"varint,6,opt,name=media_encryption,json=mediaEncryption,proto3,enum=livekit.SIPMediaEncryption,oneof" json:"media_encryption,omitempty"` + state protoimpl.MessageState `protogen:"open.v1"` + TrunkIds *ListUpdate `protobuf:"bytes,1,opt,name=trunk_ids,json=trunkIds,proto3" json:"trunk_ids,omitempty"` + Rule *SIPDispatchRule `protobuf:"bytes,2,opt,name=rule,proto3" json:"rule,omitempty"` + Name *string `protobuf:"bytes,3,opt,name=name,proto3,oneof" json:"name,omitempty"` + Metadata *string `protobuf:"bytes,4,opt,name=metadata,proto3,oneof" json:"metadata,omitempty"` + Attributes map[string]string `protobuf:"bytes,5,rep,name=attributes,proto3" json:"attributes,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` + // Deprecated: Marked as deprecated in livekit_sip.proto. + MediaEncryption *SIPMediaEncryption `protobuf:"varint,6,opt,name=media_encryption,json=mediaEncryption,proto3,enum=livekit.SIPMediaEncryption,oneof" json:"media_encryption,omitempty"` + Media *SIPMediaConfig `protobuf:"bytes,7,opt,name=media,proto3" json:"media,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *SIPDispatchRuleUpdate) Reset() { *x = SIPDispatchRuleUpdate{} - mi := &file_livekit_sip_proto_msgTypes[30] + mi := &file_livekit_sip_proto_msgTypes[32] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3303,7 +3429,7 @@ func (x *SIPDispatchRuleUpdate) String() string { func (*SIPDispatchRuleUpdate) ProtoMessage() {} func (x *SIPDispatchRuleUpdate) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[30] + mi := &file_livekit_sip_proto_msgTypes[32] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3316,7 +3442,7 @@ func (x *SIPDispatchRuleUpdate) ProtoReflect() protoreflect.Message { // Deprecated: Use SIPDispatchRuleUpdate.ProtoReflect.Descriptor instead. func (*SIPDispatchRuleUpdate) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{30} + return file_livekit_sip_proto_rawDescGZIP(), []int{32} } func (x *SIPDispatchRuleUpdate) GetTrunkIds() *ListUpdate { @@ -3354,6 +3480,7 @@ func (x *SIPDispatchRuleUpdate) GetAttributes() map[string]string { return nil } +// Deprecated: Marked as deprecated in livekit_sip.proto. func (x *SIPDispatchRuleUpdate) GetMediaEncryption() SIPMediaEncryption { if x != nil && x.MediaEncryption != nil { return *x.MediaEncryption @@ -3361,6 +3488,13 @@ func (x *SIPDispatchRuleUpdate) GetMediaEncryption() SIPMediaEncryption { return SIPMediaEncryption_SIP_MEDIA_ENCRYPT_DISABLE } +func (x *SIPDispatchRuleUpdate) GetMedia() *SIPMediaConfig { + if x != nil { + return x.Media + } + return nil +} + // ListSIPDispatchRuleRequest lists dispatch rules for given filters. If no filters are set, all rules are listed. type ListSIPDispatchRuleRequest struct { state protoimpl.MessageState `protogen:"open.v1"` @@ -3376,7 +3510,7 @@ type ListSIPDispatchRuleRequest struct { func (x *ListSIPDispatchRuleRequest) Reset() { *x = ListSIPDispatchRuleRequest{} - mi := &file_livekit_sip_proto_msgTypes[31] + mi := &file_livekit_sip_proto_msgTypes[33] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3388,7 +3522,7 @@ func (x *ListSIPDispatchRuleRequest) String() string { func (*ListSIPDispatchRuleRequest) ProtoMessage() {} func (x *ListSIPDispatchRuleRequest) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[31] + mi := &file_livekit_sip_proto_msgTypes[33] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3401,7 +3535,7 @@ func (x *ListSIPDispatchRuleRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListSIPDispatchRuleRequest.ProtoReflect.Descriptor instead. func (*ListSIPDispatchRuleRequest) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{31} + return file_livekit_sip_proto_rawDescGZIP(), []int{33} } func (x *ListSIPDispatchRuleRequest) GetPage() *Pagination { @@ -3434,7 +3568,7 @@ type ListSIPDispatchRuleResponse struct { func (x *ListSIPDispatchRuleResponse) Reset() { *x = ListSIPDispatchRuleResponse{} - mi := &file_livekit_sip_proto_msgTypes[32] + mi := &file_livekit_sip_proto_msgTypes[34] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3446,7 +3580,7 @@ func (x *ListSIPDispatchRuleResponse) String() string { func (*ListSIPDispatchRuleResponse) ProtoMessage() {} func (x *ListSIPDispatchRuleResponse) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[32] + mi := &file_livekit_sip_proto_msgTypes[34] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3459,7 +3593,7 @@ func (x *ListSIPDispatchRuleResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ListSIPDispatchRuleResponse.ProtoReflect.Descriptor instead. func (*ListSIPDispatchRuleResponse) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{32} + return file_livekit_sip_proto_rawDescGZIP(), []int{34} } func (x *ListSIPDispatchRuleResponse) GetItems() []*SIPDispatchRuleInfo { @@ -3478,7 +3612,7 @@ type DeleteSIPDispatchRuleRequest struct { func (x *DeleteSIPDispatchRuleRequest) Reset() { *x = DeleteSIPDispatchRuleRequest{} - mi := &file_livekit_sip_proto_msgTypes[33] + mi := &file_livekit_sip_proto_msgTypes[35] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3490,7 +3624,7 @@ func (x *DeleteSIPDispatchRuleRequest) String() string { func (*DeleteSIPDispatchRuleRequest) ProtoMessage() {} func (x *DeleteSIPDispatchRuleRequest) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[33] + mi := &file_livekit_sip_proto_msgTypes[35] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3503,7 +3637,7 @@ func (x *DeleteSIPDispatchRuleRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteSIPDispatchRuleRequest.ProtoReflect.Descriptor instead. func (*DeleteSIPDispatchRuleRequest) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{33} + return file_livekit_sip_proto_rawDescGZIP(), []int{35} } func (x *DeleteSIPDispatchRuleRequest) GetSipDispatchRuleId() string { @@ -3539,7 +3673,7 @@ type SIPOutboundConfig struct { func (x *SIPOutboundConfig) Reset() { *x = SIPOutboundConfig{} - mi := &file_livekit_sip_proto_msgTypes[34] + mi := &file_livekit_sip_proto_msgTypes[36] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3551,7 +3685,7 @@ func (x *SIPOutboundConfig) String() string { func (*SIPOutboundConfig) ProtoMessage() {} func (x *SIPOutboundConfig) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[34] + mi := &file_livekit_sip_proto_msgTypes[36] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3564,7 +3698,7 @@ func (x *SIPOutboundConfig) ProtoReflect() protoreflect.Message { // Deprecated: Use SIPOutboundConfig.ProtoReflect.Descriptor instead. func (*SIPOutboundConfig) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{34} + return file_livekit_sip_proto_rawDescGZIP(), []int{36} } func (x *SIPOutboundConfig) GetHostname() string { @@ -3669,8 +3803,10 @@ type CreateSIPParticipantRequest struct { // Max call duration. MaxCallDuration *durationpb.Duration `protobuf:"bytes,12,opt,name=max_call_duration,json=maxCallDuration,proto3" json:"max_call_duration,omitempty"` // Enable voice isolation for the callee. - KrispEnabled bool `protobuf:"varint,14,opt,name=krisp_enabled,json=krispEnabled,proto3" json:"krisp_enabled,omitempty"` + KrispEnabled bool `protobuf:"varint,14,opt,name=krisp_enabled,json=krispEnabled,proto3" json:"krisp_enabled,omitempty"` + // Deprecated: Marked as deprecated in livekit_sip.proto. MediaEncryption SIPMediaEncryption `protobuf:"varint,18,opt,name=media_encryption,json=mediaEncryption,proto3,enum=livekit.SIPMediaEncryption" json:"media_encryption,omitempty"` + Media *SIPMediaConfig `protobuf:"bytes,23,opt,name=media,proto3" json:"media,omitempty"` // Wait for the answer for the call before returning. WaitUntilAnswered bool `protobuf:"varint,19,opt,name=wait_until_answered,json=waitUntilAnswered,proto3" json:"wait_until_answered,omitempty"` // Optional display name for the 'From' SIP header. @@ -3680,14 +3816,14 @@ type CreateSIPParticipantRequest struct { // 2) Empty string: Do not send a display name, which will result in a CNAM lookup downstream. // 3) Non-empty: Use the specified value as the display name. DisplayName *string `protobuf:"bytes,21,opt,name=display_name,json=displayName,proto3,oneof" json:"display_name,omitempty"` - Destination *Destination `protobuf:"bytes,22,opt,name=destination,proto3,oneof" json:"destination,omitempty"` // NEXT ID: 23 + Destination *Destination `protobuf:"bytes,22,opt,name=destination,proto3,oneof" json:"destination,omitempty"` // NEXT ID: 24 unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *CreateSIPParticipantRequest) Reset() { *x = CreateSIPParticipantRequest{} - mi := &file_livekit_sip_proto_msgTypes[35] + mi := &file_livekit_sip_proto_msgTypes[37] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3699,7 +3835,7 @@ func (x *CreateSIPParticipantRequest) String() string { func (*CreateSIPParticipantRequest) ProtoMessage() {} func (x *CreateSIPParticipantRequest) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[35] + mi := &file_livekit_sip_proto_msgTypes[37] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3712,7 +3848,7 @@ func (x *CreateSIPParticipantRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateSIPParticipantRequest.ProtoReflect.Descriptor instead. func (*CreateSIPParticipantRequest) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{35} + return file_livekit_sip_proto_rawDescGZIP(), []int{37} } func (x *CreateSIPParticipantRequest) GetSipTrunkId() string { @@ -3842,6 +3978,7 @@ func (x *CreateSIPParticipantRequest) GetKrispEnabled() bool { return false } +// Deprecated: Marked as deprecated in livekit_sip.proto. func (x *CreateSIPParticipantRequest) GetMediaEncryption() SIPMediaEncryption { if x != nil { return x.MediaEncryption @@ -3849,6 +3986,13 @@ func (x *CreateSIPParticipantRequest) GetMediaEncryption() SIPMediaEncryption { return SIPMediaEncryption_SIP_MEDIA_ENCRYPT_DISABLE } +func (x *CreateSIPParticipantRequest) GetMedia() *SIPMediaConfig { + if x != nil { + return x.Media + } + return nil +} + func (x *CreateSIPParticipantRequest) GetWaitUntilAnswered() bool { if x != nil { return x.WaitUntilAnswered @@ -3882,7 +4026,7 @@ type SIPParticipantInfo struct { func (x *SIPParticipantInfo) Reset() { *x = SIPParticipantInfo{} - mi := &file_livekit_sip_proto_msgTypes[36] + mi := &file_livekit_sip_proto_msgTypes[38] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3894,7 +4038,7 @@ func (x *SIPParticipantInfo) String() string { func (*SIPParticipantInfo) ProtoMessage() {} func (x *SIPParticipantInfo) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[36] + mi := &file_livekit_sip_proto_msgTypes[38] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3907,7 +4051,7 @@ func (x *SIPParticipantInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use SIPParticipantInfo.ProtoReflect.Descriptor instead. func (*SIPParticipantInfo) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{36} + return file_livekit_sip_proto_rawDescGZIP(), []int{38} } func (x *SIPParticipantInfo) GetParticipantId() string { @@ -3955,7 +4099,7 @@ type TransferSIPParticipantRequest struct { func (x *TransferSIPParticipantRequest) Reset() { *x = TransferSIPParticipantRequest{} - mi := &file_livekit_sip_proto_msgTypes[37] + mi := &file_livekit_sip_proto_msgTypes[39] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3967,7 +4111,7 @@ func (x *TransferSIPParticipantRequest) String() string { func (*TransferSIPParticipantRequest) ProtoMessage() {} func (x *TransferSIPParticipantRequest) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[37] + mi := &file_livekit_sip_proto_msgTypes[39] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3980,7 +4124,7 @@ func (x *TransferSIPParticipantRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use TransferSIPParticipantRequest.ProtoReflect.Descriptor instead. func (*TransferSIPParticipantRequest) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{37} + return file_livekit_sip_proto_rawDescGZIP(), []int{39} } func (x *TransferSIPParticipantRequest) GetParticipantIdentity() string { @@ -4064,7 +4208,7 @@ type SIPCallInfo struct { func (x *SIPCallInfo) Reset() { *x = SIPCallInfo{} - mi := &file_livekit_sip_proto_msgTypes[38] + mi := &file_livekit_sip_proto_msgTypes[40] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4076,7 +4220,7 @@ func (x *SIPCallInfo) String() string { func (*SIPCallInfo) ProtoMessage() {} func (x *SIPCallInfo) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[38] + mi := &file_livekit_sip_proto_msgTypes[40] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4089,7 +4233,7 @@ func (x *SIPCallInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use SIPCallInfo.ProtoReflect.Descriptor instead. func (*SIPCallInfo) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{38} + return file_livekit_sip_proto_rawDescGZIP(), []int{40} } func (x *SIPCallInfo) GetCallId() string { @@ -4307,7 +4451,7 @@ type SIPTransferInfo struct { func (x *SIPTransferInfo) Reset() { *x = SIPTransferInfo{} - mi := &file_livekit_sip_proto_msgTypes[39] + mi := &file_livekit_sip_proto_msgTypes[41] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4319,7 +4463,7 @@ func (x *SIPTransferInfo) String() string { func (*SIPTransferInfo) ProtoMessage() {} func (x *SIPTransferInfo) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[39] + mi := &file_livekit_sip_proto_msgTypes[41] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4332,7 +4476,7 @@ func (x *SIPTransferInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use SIPTransferInfo.ProtoReflect.Descriptor instead. func (*SIPTransferInfo) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{39} + return file_livekit_sip_proto_rawDescGZIP(), []int{41} } func (x *SIPTransferInfo) GetTransferId() string { @@ -4404,7 +4548,7 @@ type SIPUri struct { func (x *SIPUri) Reset() { *x = SIPUri{} - mi := &file_livekit_sip_proto_msgTypes[40] + mi := &file_livekit_sip_proto_msgTypes[42] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4416,7 +4560,7 @@ func (x *SIPUri) String() string { func (*SIPUri) ProtoMessage() {} func (x *SIPUri) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[40] + mi := &file_livekit_sip_proto_msgTypes[42] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4429,7 +4573,7 @@ func (x *SIPUri) ProtoReflect() protoreflect.Message { // Deprecated: Use SIPUri.ProtoReflect.Descriptor instead. func (*SIPUri) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{40} + return file_livekit_sip_proto_rawDescGZIP(), []int{42} } func (x *SIPUri) GetUser() string { @@ -4478,7 +4622,7 @@ type Destination struct { func (x *Destination) Reset() { *x = Destination{} - mi := &file_livekit_sip_proto_msgTypes[41] + mi := &file_livekit_sip_proto_msgTypes[43] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4490,7 +4634,7 @@ func (x *Destination) String() string { func (*Destination) ProtoMessage() {} func (x *Destination) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[41] + mi := &file_livekit_sip_proto_msgTypes[43] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4503,7 +4647,7 @@ func (x *Destination) ProtoReflect() protoreflect.Message { // Deprecated: Use Destination.ProtoReflect.Descriptor instead. func (*Destination) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{41} + return file_livekit_sip_proto_rawDescGZIP(), []int{43} } func (x *Destination) GetCity() string { @@ -4547,7 +4691,16 @@ const file_livekit_sip_proto_rawDesc = "" + "\x11outbound_password\x18\b \x01(\tB\x03\xa8P\x01R\x10outboundPassword\x12\x12\n" + "\x04name\x18\n" + " \x01(\tR\x04name\x12@\n" + - "\bmetadata\x18\v \x01(\tB$\xa8P\x01\xb2P\x1eR\bmetadata:\x02\x18\x01\"\x88\x01\n" + + "\bmetadata\x18\v \x01(\tB$\xa8P\x01\xb2P\x1eR\bmetadata:\x02\x18\x01\"2\n" + + "\bSIPCodec\x12\x12\n" + + "\x04name\x18\x01 \x01(\tR\x04name\x12\x12\n" + + "\x04rate\x18\x02 \x01(\rR\x04rate\"\xa6\x01\n" + + "\x0eSIPMediaConfig\x12,\n" + + "\x12only_listed_codecs\x18\x01 \x01(\bR\x10onlyListedCodecs\x12)\n" + + "\x06codecs\x18\x02 \x03(\v2\x11.livekit.SIPCodecR\x06codecs\x12;\n" + + "\n" + + "encryption\x18\x03 \x01(\x0e2\x1b.livekit.SIPMediaEncryptionR\n" + + "encryption\"\x88\x01\n" + "\fProviderInfo\x12\x0e\n" + "\x02id\x18\x01 \x01(\tR\x02id\x12\x12\n" + "\x04name\x18\x02 \x01(\tR\x04name\x12)\n" + @@ -4770,7 +4923,7 @@ const file_livekit_sip_proto_rawDesc = "" + "\x14sip_dispatch_rule_id\x18\x01 \x01(\tB\x14\xbaP\x11sipDispatchRuleIDR\x11sipDispatchRuleId\x128\n" + "\areplace\x18\x02 \x01(\v2\x1c.livekit.SIPDispatchRuleInfoH\x00R\areplace\x128\n" + "\x06update\x18\x03 \x01(\v2\x1e.livekit.SIPDispatchRuleUpdateH\x00R\x06updateB\b\n" + - "\x06action\"\xe0\x06\n" + + "\x06action\"\x93\a\n" + "\x13SIPDispatchRuleInfo\x12E\n" + "\x14sip_dispatch_rule_id\x18\x01 \x01(\tB\x14\xbaP\x11sipDispatchRuleIDR\x11sipDispatchRuleId\x12,\n" + "\x04rule\x18\x02 \x01(\v2\x18.livekit.SIPDispatchRuleR\x04rule\x12\x1b\n" + @@ -4787,16 +4940,17 @@ const file_livekit_sip_proto_rawDesc = "" + "roomPreset\x12;\n" + "\vroom_config\x18\n" + " \x01(\v2\x1a.livekit.RoomConfigurationR\n" + - "roomConfig\x12#\n" + - "\rkrisp_enabled\x18\v \x01(\bR\fkrispEnabled\x12F\n" + - "\x10media_encryption\x18\f \x01(\x0e2\x1b.livekit.SIPMediaEncryptionR\x0fmediaEncryption\x129\n" + + "roomConfig\x12-\n" + + "\x05media\x18\x10 \x01(\v2\x17.livekit.SIPMediaConfigR\x05media\x12#\n" + + "\rkrisp_enabled\x18\v \x01(\bR\fkrispEnabled\x12J\n" + + "\x10media_encryption\x18\f \x01(\x0e2\x1b.livekit.SIPMediaEncryptionB\x02\x18\x01R\x0fmediaEncryption\x129\n" + "\n" + "created_at\x18\x0e \x01(\v2\x1a.google.protobuf.TimestampR\tcreatedAt\x129\n" + "\n" + "updated_at\x18\x0f \x01(\v2\x1a.google.protobuf.TimestampR\tupdatedAt\x1a=\n" + "\x0fAttributesEntry\x12\x10\n" + "\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n" + - "\x05value\x18\x02 \x01(\tR\x05value:\x028\x01\"\x84\x04\n" + + "\x05value\x18\x02 \x01(\tR\x05value:\x028\x01\"\xb7\x04\n" + "\x15SIPDispatchRuleUpdate\x120\n" + "\ttrunk_ids\x18\x01 \x01(\v2\x13.livekit.ListUpdateR\btrunkIds\x12,\n" + "\x04rule\x18\x02 \x01(\v2\x18.livekit.SIPDispatchRuleR\x04rule\x12\x17\n" + @@ -4804,8 +4958,9 @@ const file_livekit_sip_proto_rawDesc = "" + "\bmetadata\x18\x04 \x01(\tB$\xa8P\x01\xb2P\x1eH\x01R\bmetadata\x88\x01\x01\x12t\n" + "\n" + "attributes\x18\x05 \x03(\v2..livekit.SIPDispatchRuleUpdate.AttributesEntryB$\xa8P\x01\xb2P\x1eR\n" + - "attributes\x12K\n" + - "\x10media_encryption\x18\x06 \x01(\x0e2\x1b.livekit.SIPMediaEncryptionH\x02R\x0fmediaEncryption\x88\x01\x01\x1a=\n" + + "attributes\x12O\n" + + "\x10media_encryption\x18\x06 \x01(\x0e2\x1b.livekit.SIPMediaEncryptionB\x02\x18\x01H\x02R\x0fmediaEncryption\x88\x01\x01\x12-\n" + + "\x05media\x18\a \x01(\v2\x17.livekit.SIPMediaConfigR\x05media\x1a=\n" + "\x0fAttributesEntry\x12\x10\n" + "\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n" + "\x05value\x18\x02 \x01(\tR\x05value:\x028\x01B\a\n" + @@ -4834,7 +4989,7 @@ const file_livekit_sip_proto_rawDesc = "" + "\x05value\x18\x02 \x01(\tR\x05value:\x028\x01\x1aF\n" + "\x18AttributesToHeadersEntry\x12\x10\n" + "\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n" + - "\x05value\x18\x02 \x01(\tR\x05value:\x028\x01\"\xf7\v\n" + + "\x05value\x18\x02 \x01(\tR\x05value:\x028\x01\"\xaa\f\n" + "\x1bCreateSIPParticipantRequest\x12/\n" + "\fsip_trunk_id\x18\x01 \x01(\tB\r\xbaP\n" + "sipTrunkIDR\n" + @@ -4857,8 +5012,9 @@ const file_livekit_sip_proto_rawDesc = "" + "\x0finclude_headers\x18\x11 \x01(\x0e2\x19.livekit.SIPHeaderOptionsR\x0eincludeHeaders\x12B\n" + "\x0fringing_timeout\x18\v \x01(\v2\x19.google.protobuf.DurationR\x0eringingTimeout\x12E\n" + "\x11max_call_duration\x18\f \x01(\v2\x19.google.protobuf.DurationR\x0fmaxCallDuration\x12#\n" + - "\rkrisp_enabled\x18\x0e \x01(\bR\fkrispEnabled\x12F\n" + - "\x10media_encryption\x18\x12 \x01(\x0e2\x1b.livekit.SIPMediaEncryptionR\x0fmediaEncryption\x12.\n" + + "\rkrisp_enabled\x18\x0e \x01(\bR\fkrispEnabled\x12J\n" + + "\x10media_encryption\x18\x12 \x01(\x0e2\x1b.livekit.SIPMediaEncryptionB\x02\x18\x01R\x0fmediaEncryption\x12-\n" + + "\x05media\x18\x17 \x01(\v2\x17.livekit.SIPMediaConfigR\x05media\x12.\n" + "\x13wait_until_answered\x18\x13 \x01(\bR\x11waitUntilAnswered\x12L\n" + "\fdisplay_name\x18\x15 \x01(\tB$\xa8P\x01\xb2P\x1eH\x00R\vdisplayName\x88\x01\x01\x12;\n" + "\vdestination\x18\x16 \x01(\v2\x14.livekit.DestinationH\x01R\vdestination\x88\x01\x01\x1aH\n" + @@ -5090,7 +5246,7 @@ func file_livekit_sip_proto_rawDescGZIP() []byte { } var file_livekit_sip_proto_enumTypes = make([]protoimpl.EnumInfo, 10) -var file_livekit_sip_proto_msgTypes = make([]protoimpl.MessageInfo, 57) +var file_livekit_sip_proto_msgTypes = make([]protoimpl.MessageInfo, 59) var file_livekit_sip_proto_goTypes = []any{ (SIPStatusCode)(0), // 0: livekit.SIPStatusCode (SIPTransport)(0), // 1: livekit.SIPTransport @@ -5104,197 +5260,204 @@ var file_livekit_sip_proto_goTypes = []any{ (SIPTrunkInfo_TrunkKind)(0), // 9: livekit.SIPTrunkInfo.TrunkKind (*SIPStatus)(nil), // 10: livekit.SIPStatus (*CreateSIPTrunkRequest)(nil), // 11: livekit.CreateSIPTrunkRequest - (*ProviderInfo)(nil), // 12: livekit.ProviderInfo - (*SIPTrunkInfo)(nil), // 13: livekit.SIPTrunkInfo - (*CreateSIPInboundTrunkRequest)(nil), // 14: livekit.CreateSIPInboundTrunkRequest - (*UpdateSIPInboundTrunkRequest)(nil), // 15: livekit.UpdateSIPInboundTrunkRequest - (*SIPInboundTrunkInfo)(nil), // 16: livekit.SIPInboundTrunkInfo - (*SIPInboundTrunkUpdate)(nil), // 17: livekit.SIPInboundTrunkUpdate - (*CreateSIPOutboundTrunkRequest)(nil), // 18: livekit.CreateSIPOutboundTrunkRequest - (*UpdateSIPOutboundTrunkRequest)(nil), // 19: livekit.UpdateSIPOutboundTrunkRequest - (*SIPOutboundTrunkInfo)(nil), // 20: livekit.SIPOutboundTrunkInfo - (*SIPOutboundTrunkUpdate)(nil), // 21: livekit.SIPOutboundTrunkUpdate - (*GetSIPInboundTrunkRequest)(nil), // 22: livekit.GetSIPInboundTrunkRequest - (*GetSIPInboundTrunkResponse)(nil), // 23: livekit.GetSIPInboundTrunkResponse - (*GetSIPOutboundTrunkRequest)(nil), // 24: livekit.GetSIPOutboundTrunkRequest - (*GetSIPOutboundTrunkResponse)(nil), // 25: livekit.GetSIPOutboundTrunkResponse - (*ListSIPTrunkRequest)(nil), // 26: livekit.ListSIPTrunkRequest - (*ListSIPTrunkResponse)(nil), // 27: livekit.ListSIPTrunkResponse - (*ListSIPInboundTrunkRequest)(nil), // 28: livekit.ListSIPInboundTrunkRequest - (*ListSIPInboundTrunkResponse)(nil), // 29: livekit.ListSIPInboundTrunkResponse - (*ListSIPOutboundTrunkRequest)(nil), // 30: livekit.ListSIPOutboundTrunkRequest - (*ListSIPOutboundTrunkResponse)(nil), // 31: livekit.ListSIPOutboundTrunkResponse - (*DeleteSIPTrunkRequest)(nil), // 32: livekit.DeleteSIPTrunkRequest - (*SIPDispatchRuleDirect)(nil), // 33: livekit.SIPDispatchRuleDirect - (*SIPDispatchRuleIndividual)(nil), // 34: livekit.SIPDispatchRuleIndividual - (*SIPDispatchRuleCallee)(nil), // 35: livekit.SIPDispatchRuleCallee - (*SIPDispatchRule)(nil), // 36: livekit.SIPDispatchRule - (*CreateSIPDispatchRuleRequest)(nil), // 37: livekit.CreateSIPDispatchRuleRequest - (*UpdateSIPDispatchRuleRequest)(nil), // 38: livekit.UpdateSIPDispatchRuleRequest - (*SIPDispatchRuleInfo)(nil), // 39: livekit.SIPDispatchRuleInfo - (*SIPDispatchRuleUpdate)(nil), // 40: livekit.SIPDispatchRuleUpdate - (*ListSIPDispatchRuleRequest)(nil), // 41: livekit.ListSIPDispatchRuleRequest - (*ListSIPDispatchRuleResponse)(nil), // 42: livekit.ListSIPDispatchRuleResponse - (*DeleteSIPDispatchRuleRequest)(nil), // 43: livekit.DeleteSIPDispatchRuleRequest - (*SIPOutboundConfig)(nil), // 44: livekit.SIPOutboundConfig - (*CreateSIPParticipantRequest)(nil), // 45: livekit.CreateSIPParticipantRequest - (*SIPParticipantInfo)(nil), // 46: livekit.SIPParticipantInfo - (*TransferSIPParticipantRequest)(nil), // 47: livekit.TransferSIPParticipantRequest - (*SIPCallInfo)(nil), // 48: livekit.SIPCallInfo - (*SIPTransferInfo)(nil), // 49: livekit.SIPTransferInfo - (*SIPUri)(nil), // 50: livekit.SIPUri - (*Destination)(nil), // 51: livekit.Destination - nil, // 52: livekit.SIPInboundTrunkInfo.HeadersEntry - nil, // 53: livekit.SIPInboundTrunkInfo.HeadersToAttributesEntry - nil, // 54: livekit.SIPInboundTrunkInfo.AttributesToHeadersEntry - nil, // 55: livekit.SIPOutboundTrunkInfo.HeadersEntry - nil, // 56: livekit.SIPOutboundTrunkInfo.HeadersToAttributesEntry - nil, // 57: livekit.SIPOutboundTrunkInfo.AttributesToHeadersEntry - nil, // 58: livekit.CreateSIPDispatchRuleRequest.AttributesEntry - nil, // 59: livekit.SIPDispatchRuleInfo.AttributesEntry - nil, // 60: livekit.SIPDispatchRuleUpdate.AttributesEntry - nil, // 61: livekit.SIPOutboundConfig.HeadersToAttributesEntry - nil, // 62: livekit.SIPOutboundConfig.AttributesToHeadersEntry - nil, // 63: livekit.CreateSIPParticipantRequest.ParticipantAttributesEntry - nil, // 64: livekit.CreateSIPParticipantRequest.HeadersEntry - nil, // 65: livekit.TransferSIPParticipantRequest.HeadersEntry - nil, // 66: livekit.SIPCallInfo.ParticipantAttributesEntry - (*durationpb.Duration)(nil), // 67: google.protobuf.Duration - (*timestamppb.Timestamp)(nil), // 68: google.protobuf.Timestamp - (*ListUpdate)(nil), // 69: livekit.ListUpdate - (*Pagination)(nil), // 70: livekit.Pagination - (*RoomConfiguration)(nil), // 71: livekit.RoomConfiguration - (DisconnectReason)(0), // 72: livekit.DisconnectReason - (*anypb.Any)(nil), // 73: google.protobuf.Any - (*emptypb.Empty)(nil), // 74: google.protobuf.Empty + (*SIPCodec)(nil), // 12: livekit.SIPCodec + (*SIPMediaConfig)(nil), // 13: livekit.SIPMediaConfig + (*ProviderInfo)(nil), // 14: livekit.ProviderInfo + (*SIPTrunkInfo)(nil), // 15: livekit.SIPTrunkInfo + (*CreateSIPInboundTrunkRequest)(nil), // 16: livekit.CreateSIPInboundTrunkRequest + (*UpdateSIPInboundTrunkRequest)(nil), // 17: livekit.UpdateSIPInboundTrunkRequest + (*SIPInboundTrunkInfo)(nil), // 18: livekit.SIPInboundTrunkInfo + (*SIPInboundTrunkUpdate)(nil), // 19: livekit.SIPInboundTrunkUpdate + (*CreateSIPOutboundTrunkRequest)(nil), // 20: livekit.CreateSIPOutboundTrunkRequest + (*UpdateSIPOutboundTrunkRequest)(nil), // 21: livekit.UpdateSIPOutboundTrunkRequest + (*SIPOutboundTrunkInfo)(nil), // 22: livekit.SIPOutboundTrunkInfo + (*SIPOutboundTrunkUpdate)(nil), // 23: livekit.SIPOutboundTrunkUpdate + (*GetSIPInboundTrunkRequest)(nil), // 24: livekit.GetSIPInboundTrunkRequest + (*GetSIPInboundTrunkResponse)(nil), // 25: livekit.GetSIPInboundTrunkResponse + (*GetSIPOutboundTrunkRequest)(nil), // 26: livekit.GetSIPOutboundTrunkRequest + (*GetSIPOutboundTrunkResponse)(nil), // 27: livekit.GetSIPOutboundTrunkResponse + (*ListSIPTrunkRequest)(nil), // 28: livekit.ListSIPTrunkRequest + (*ListSIPTrunkResponse)(nil), // 29: livekit.ListSIPTrunkResponse + (*ListSIPInboundTrunkRequest)(nil), // 30: livekit.ListSIPInboundTrunkRequest + (*ListSIPInboundTrunkResponse)(nil), // 31: livekit.ListSIPInboundTrunkResponse + (*ListSIPOutboundTrunkRequest)(nil), // 32: livekit.ListSIPOutboundTrunkRequest + (*ListSIPOutboundTrunkResponse)(nil), // 33: livekit.ListSIPOutboundTrunkResponse + (*DeleteSIPTrunkRequest)(nil), // 34: livekit.DeleteSIPTrunkRequest + (*SIPDispatchRuleDirect)(nil), // 35: livekit.SIPDispatchRuleDirect + (*SIPDispatchRuleIndividual)(nil), // 36: livekit.SIPDispatchRuleIndividual + (*SIPDispatchRuleCallee)(nil), // 37: livekit.SIPDispatchRuleCallee + (*SIPDispatchRule)(nil), // 38: livekit.SIPDispatchRule + (*CreateSIPDispatchRuleRequest)(nil), // 39: livekit.CreateSIPDispatchRuleRequest + (*UpdateSIPDispatchRuleRequest)(nil), // 40: livekit.UpdateSIPDispatchRuleRequest + (*SIPDispatchRuleInfo)(nil), // 41: livekit.SIPDispatchRuleInfo + (*SIPDispatchRuleUpdate)(nil), // 42: livekit.SIPDispatchRuleUpdate + (*ListSIPDispatchRuleRequest)(nil), // 43: livekit.ListSIPDispatchRuleRequest + (*ListSIPDispatchRuleResponse)(nil), // 44: livekit.ListSIPDispatchRuleResponse + (*DeleteSIPDispatchRuleRequest)(nil), // 45: livekit.DeleteSIPDispatchRuleRequest + (*SIPOutboundConfig)(nil), // 46: livekit.SIPOutboundConfig + (*CreateSIPParticipantRequest)(nil), // 47: livekit.CreateSIPParticipantRequest + (*SIPParticipantInfo)(nil), // 48: livekit.SIPParticipantInfo + (*TransferSIPParticipantRequest)(nil), // 49: livekit.TransferSIPParticipantRequest + (*SIPCallInfo)(nil), // 50: livekit.SIPCallInfo + (*SIPTransferInfo)(nil), // 51: livekit.SIPTransferInfo + (*SIPUri)(nil), // 52: livekit.SIPUri + (*Destination)(nil), // 53: livekit.Destination + nil, // 54: livekit.SIPInboundTrunkInfo.HeadersEntry + nil, // 55: livekit.SIPInboundTrunkInfo.HeadersToAttributesEntry + nil, // 56: livekit.SIPInboundTrunkInfo.AttributesToHeadersEntry + nil, // 57: livekit.SIPOutboundTrunkInfo.HeadersEntry + nil, // 58: livekit.SIPOutboundTrunkInfo.HeadersToAttributesEntry + nil, // 59: livekit.SIPOutboundTrunkInfo.AttributesToHeadersEntry + nil, // 60: livekit.CreateSIPDispatchRuleRequest.AttributesEntry + nil, // 61: livekit.SIPDispatchRuleInfo.AttributesEntry + nil, // 62: livekit.SIPDispatchRuleUpdate.AttributesEntry + nil, // 63: livekit.SIPOutboundConfig.HeadersToAttributesEntry + nil, // 64: livekit.SIPOutboundConfig.AttributesToHeadersEntry + nil, // 65: livekit.CreateSIPParticipantRequest.ParticipantAttributesEntry + nil, // 66: livekit.CreateSIPParticipantRequest.HeadersEntry + nil, // 67: livekit.TransferSIPParticipantRequest.HeadersEntry + nil, // 68: livekit.SIPCallInfo.ParticipantAttributesEntry + (*durationpb.Duration)(nil), // 69: google.protobuf.Duration + (*timestamppb.Timestamp)(nil), // 70: google.protobuf.Timestamp + (*ListUpdate)(nil), // 71: livekit.ListUpdate + (*Pagination)(nil), // 72: livekit.Pagination + (*RoomConfiguration)(nil), // 73: livekit.RoomConfiguration + (DisconnectReason)(0), // 74: livekit.DisconnectReason + (*anypb.Any)(nil), // 75: google.protobuf.Any + (*emptypb.Empty)(nil), // 76: google.protobuf.Empty } var file_livekit_sip_proto_depIdxs = []int32{ 0, // 0: livekit.SIPStatus.code:type_name -> livekit.SIPStatusCode - 4, // 1: livekit.ProviderInfo.type:type_name -> livekit.ProviderType - 9, // 2: livekit.SIPTrunkInfo.kind:type_name -> livekit.SIPTrunkInfo.TrunkKind - 1, // 3: livekit.SIPTrunkInfo.transport:type_name -> livekit.SIPTransport - 16, // 4: livekit.CreateSIPInboundTrunkRequest.trunk:type_name -> livekit.SIPInboundTrunkInfo - 16, // 5: livekit.UpdateSIPInboundTrunkRequest.replace:type_name -> livekit.SIPInboundTrunkInfo - 17, // 6: livekit.UpdateSIPInboundTrunkRequest.update:type_name -> livekit.SIPInboundTrunkUpdate - 52, // 7: livekit.SIPInboundTrunkInfo.headers:type_name -> livekit.SIPInboundTrunkInfo.HeadersEntry - 53, // 8: livekit.SIPInboundTrunkInfo.headers_to_attributes:type_name -> livekit.SIPInboundTrunkInfo.HeadersToAttributesEntry - 54, // 9: livekit.SIPInboundTrunkInfo.attributes_to_headers:type_name -> livekit.SIPInboundTrunkInfo.AttributesToHeadersEntry - 2, // 10: livekit.SIPInboundTrunkInfo.include_headers:type_name -> livekit.SIPHeaderOptions - 67, // 11: livekit.SIPInboundTrunkInfo.ringing_timeout:type_name -> google.protobuf.Duration - 67, // 12: livekit.SIPInboundTrunkInfo.max_call_duration:type_name -> google.protobuf.Duration - 3, // 13: livekit.SIPInboundTrunkInfo.media_encryption:type_name -> livekit.SIPMediaEncryption - 68, // 14: livekit.SIPInboundTrunkInfo.created_at:type_name -> google.protobuf.Timestamp - 68, // 15: livekit.SIPInboundTrunkInfo.updated_at:type_name -> google.protobuf.Timestamp - 69, // 16: livekit.SIPInboundTrunkUpdate.numbers:type_name -> livekit.ListUpdate - 69, // 17: livekit.SIPInboundTrunkUpdate.allowed_addresses:type_name -> livekit.ListUpdate - 69, // 18: livekit.SIPInboundTrunkUpdate.allowed_numbers:type_name -> livekit.ListUpdate - 3, // 19: livekit.SIPInboundTrunkUpdate.media_encryption:type_name -> livekit.SIPMediaEncryption - 20, // 20: livekit.CreateSIPOutboundTrunkRequest.trunk:type_name -> livekit.SIPOutboundTrunkInfo - 20, // 21: livekit.UpdateSIPOutboundTrunkRequest.replace:type_name -> livekit.SIPOutboundTrunkInfo - 21, // 22: livekit.UpdateSIPOutboundTrunkRequest.update:type_name -> livekit.SIPOutboundTrunkUpdate - 1, // 23: livekit.SIPOutboundTrunkInfo.transport:type_name -> livekit.SIPTransport - 55, // 24: livekit.SIPOutboundTrunkInfo.headers:type_name -> livekit.SIPOutboundTrunkInfo.HeadersEntry - 56, // 25: livekit.SIPOutboundTrunkInfo.headers_to_attributes:type_name -> livekit.SIPOutboundTrunkInfo.HeadersToAttributesEntry - 57, // 26: livekit.SIPOutboundTrunkInfo.attributes_to_headers:type_name -> livekit.SIPOutboundTrunkInfo.AttributesToHeadersEntry - 2, // 27: livekit.SIPOutboundTrunkInfo.include_headers:type_name -> livekit.SIPHeaderOptions - 3, // 28: livekit.SIPOutboundTrunkInfo.media_encryption:type_name -> livekit.SIPMediaEncryption - 68, // 29: livekit.SIPOutboundTrunkInfo.created_at:type_name -> google.protobuf.Timestamp - 68, // 30: livekit.SIPOutboundTrunkInfo.updated_at:type_name -> google.protobuf.Timestamp - 1, // 31: livekit.SIPOutboundTrunkUpdate.transport:type_name -> livekit.SIPTransport - 69, // 32: livekit.SIPOutboundTrunkUpdate.numbers:type_name -> livekit.ListUpdate - 3, // 33: livekit.SIPOutboundTrunkUpdate.media_encryption:type_name -> livekit.SIPMediaEncryption - 16, // 34: livekit.GetSIPInboundTrunkResponse.trunk:type_name -> livekit.SIPInboundTrunkInfo - 20, // 35: livekit.GetSIPOutboundTrunkResponse.trunk:type_name -> livekit.SIPOutboundTrunkInfo - 70, // 36: livekit.ListSIPTrunkRequest.page:type_name -> livekit.Pagination - 13, // 37: livekit.ListSIPTrunkResponse.items:type_name -> livekit.SIPTrunkInfo - 70, // 38: livekit.ListSIPInboundTrunkRequest.page:type_name -> livekit.Pagination - 16, // 39: livekit.ListSIPInboundTrunkResponse.items:type_name -> livekit.SIPInboundTrunkInfo - 70, // 40: livekit.ListSIPOutboundTrunkRequest.page:type_name -> livekit.Pagination - 20, // 41: livekit.ListSIPOutboundTrunkResponse.items:type_name -> livekit.SIPOutboundTrunkInfo - 33, // 42: livekit.SIPDispatchRule.dispatch_rule_direct:type_name -> livekit.SIPDispatchRuleDirect - 34, // 43: livekit.SIPDispatchRule.dispatch_rule_individual:type_name -> livekit.SIPDispatchRuleIndividual - 35, // 44: livekit.SIPDispatchRule.dispatch_rule_callee:type_name -> livekit.SIPDispatchRuleCallee - 39, // 45: livekit.CreateSIPDispatchRuleRequest.dispatch_rule:type_name -> livekit.SIPDispatchRuleInfo - 36, // 46: livekit.CreateSIPDispatchRuleRequest.rule:type_name -> livekit.SIPDispatchRule - 58, // 47: livekit.CreateSIPDispatchRuleRequest.attributes:type_name -> livekit.CreateSIPDispatchRuleRequest.AttributesEntry - 71, // 48: livekit.CreateSIPDispatchRuleRequest.room_config:type_name -> livekit.RoomConfiguration - 39, // 49: livekit.UpdateSIPDispatchRuleRequest.replace:type_name -> livekit.SIPDispatchRuleInfo - 40, // 50: livekit.UpdateSIPDispatchRuleRequest.update:type_name -> livekit.SIPDispatchRuleUpdate - 36, // 51: livekit.SIPDispatchRuleInfo.rule:type_name -> livekit.SIPDispatchRule - 59, // 52: livekit.SIPDispatchRuleInfo.attributes:type_name -> livekit.SIPDispatchRuleInfo.AttributesEntry - 71, // 53: livekit.SIPDispatchRuleInfo.room_config:type_name -> livekit.RoomConfiguration - 3, // 54: livekit.SIPDispatchRuleInfo.media_encryption:type_name -> livekit.SIPMediaEncryption - 68, // 55: livekit.SIPDispatchRuleInfo.created_at:type_name -> google.protobuf.Timestamp - 68, // 56: livekit.SIPDispatchRuleInfo.updated_at:type_name -> google.protobuf.Timestamp - 69, // 57: livekit.SIPDispatchRuleUpdate.trunk_ids:type_name -> livekit.ListUpdate - 36, // 58: livekit.SIPDispatchRuleUpdate.rule:type_name -> livekit.SIPDispatchRule - 60, // 59: livekit.SIPDispatchRuleUpdate.attributes:type_name -> livekit.SIPDispatchRuleUpdate.AttributesEntry - 3, // 60: livekit.SIPDispatchRuleUpdate.media_encryption:type_name -> livekit.SIPMediaEncryption - 70, // 61: livekit.ListSIPDispatchRuleRequest.page:type_name -> livekit.Pagination - 39, // 62: livekit.ListSIPDispatchRuleResponse.items:type_name -> livekit.SIPDispatchRuleInfo - 1, // 63: livekit.SIPOutboundConfig.transport:type_name -> livekit.SIPTransport - 61, // 64: livekit.SIPOutboundConfig.headers_to_attributes:type_name -> livekit.SIPOutboundConfig.HeadersToAttributesEntry - 62, // 65: livekit.SIPOutboundConfig.attributes_to_headers:type_name -> livekit.SIPOutboundConfig.AttributesToHeadersEntry - 44, // 66: livekit.CreateSIPParticipantRequest.trunk:type_name -> livekit.SIPOutboundConfig - 63, // 67: livekit.CreateSIPParticipantRequest.participant_attributes:type_name -> livekit.CreateSIPParticipantRequest.ParticipantAttributesEntry - 64, // 68: livekit.CreateSIPParticipantRequest.headers:type_name -> livekit.CreateSIPParticipantRequest.HeadersEntry - 2, // 69: livekit.CreateSIPParticipantRequest.include_headers:type_name -> livekit.SIPHeaderOptions - 67, // 70: livekit.CreateSIPParticipantRequest.ringing_timeout:type_name -> google.protobuf.Duration - 67, // 71: livekit.CreateSIPParticipantRequest.max_call_duration:type_name -> google.protobuf.Duration - 3, // 72: livekit.CreateSIPParticipantRequest.media_encryption:type_name -> livekit.SIPMediaEncryption - 51, // 73: livekit.CreateSIPParticipantRequest.destination:type_name -> livekit.Destination - 65, // 74: livekit.TransferSIPParticipantRequest.headers:type_name -> livekit.TransferSIPParticipantRequest.HeadersEntry - 67, // 75: livekit.TransferSIPParticipantRequest.ringing_timeout:type_name -> google.protobuf.Duration - 66, // 76: livekit.SIPCallInfo.participant_attributes:type_name -> livekit.SIPCallInfo.ParticipantAttributesEntry - 50, // 77: livekit.SIPCallInfo.from_uri:type_name -> livekit.SIPUri - 50, // 78: livekit.SIPCallInfo.to_uri:type_name -> livekit.SIPUri - 7, // 79: livekit.SIPCallInfo.enabled_features:type_name -> livekit.SIPFeature - 8, // 80: livekit.SIPCallInfo.call_direction:type_name -> livekit.SIPCallDirection - 5, // 81: livekit.SIPCallInfo.call_status:type_name -> livekit.SIPCallStatus - 72, // 82: livekit.SIPCallInfo.disconnect_reason:type_name -> livekit.DisconnectReason - 10, // 83: livekit.SIPCallInfo.call_status_code:type_name -> livekit.SIPStatus - 73, // 84: livekit.SIPCallInfo.call_context:type_name -> google.protobuf.Any - 12, // 85: livekit.SIPCallInfo.provider_info:type_name -> livekit.ProviderInfo - 6, // 86: livekit.SIPTransferInfo.transfer_status:type_name -> livekit.SIPTransferStatus - 10, // 87: livekit.SIPTransferInfo.transfer_status_code:type_name -> livekit.SIPStatus - 1, // 88: livekit.SIPUri.transport:type_name -> livekit.SIPTransport - 26, // 89: livekit.SIP.ListSIPTrunk:input_type -> livekit.ListSIPTrunkRequest - 14, // 90: livekit.SIP.CreateSIPInboundTrunk:input_type -> livekit.CreateSIPInboundTrunkRequest - 18, // 91: livekit.SIP.CreateSIPOutboundTrunk:input_type -> livekit.CreateSIPOutboundTrunkRequest - 15, // 92: livekit.SIP.UpdateSIPInboundTrunk:input_type -> livekit.UpdateSIPInboundTrunkRequest - 19, // 93: livekit.SIP.UpdateSIPOutboundTrunk:input_type -> livekit.UpdateSIPOutboundTrunkRequest - 22, // 94: livekit.SIP.GetSIPInboundTrunk:input_type -> livekit.GetSIPInboundTrunkRequest - 24, // 95: livekit.SIP.GetSIPOutboundTrunk:input_type -> livekit.GetSIPOutboundTrunkRequest - 28, // 96: livekit.SIP.ListSIPInboundTrunk:input_type -> livekit.ListSIPInboundTrunkRequest - 30, // 97: livekit.SIP.ListSIPOutboundTrunk:input_type -> livekit.ListSIPOutboundTrunkRequest - 32, // 98: livekit.SIP.DeleteSIPTrunk:input_type -> livekit.DeleteSIPTrunkRequest - 37, // 99: livekit.SIP.CreateSIPDispatchRule:input_type -> livekit.CreateSIPDispatchRuleRequest - 38, // 100: livekit.SIP.UpdateSIPDispatchRule:input_type -> livekit.UpdateSIPDispatchRuleRequest - 41, // 101: livekit.SIP.ListSIPDispatchRule:input_type -> livekit.ListSIPDispatchRuleRequest - 43, // 102: livekit.SIP.DeleteSIPDispatchRule:input_type -> livekit.DeleteSIPDispatchRuleRequest - 45, // 103: livekit.SIP.CreateSIPParticipant:input_type -> livekit.CreateSIPParticipantRequest - 47, // 104: livekit.SIP.TransferSIPParticipant:input_type -> livekit.TransferSIPParticipantRequest - 27, // 105: livekit.SIP.ListSIPTrunk:output_type -> livekit.ListSIPTrunkResponse - 16, // 106: livekit.SIP.CreateSIPInboundTrunk:output_type -> livekit.SIPInboundTrunkInfo - 20, // 107: livekit.SIP.CreateSIPOutboundTrunk:output_type -> livekit.SIPOutboundTrunkInfo - 16, // 108: livekit.SIP.UpdateSIPInboundTrunk:output_type -> livekit.SIPInboundTrunkInfo - 20, // 109: livekit.SIP.UpdateSIPOutboundTrunk:output_type -> livekit.SIPOutboundTrunkInfo - 23, // 110: livekit.SIP.GetSIPInboundTrunk:output_type -> livekit.GetSIPInboundTrunkResponse - 25, // 111: livekit.SIP.GetSIPOutboundTrunk:output_type -> livekit.GetSIPOutboundTrunkResponse - 29, // 112: livekit.SIP.ListSIPInboundTrunk:output_type -> livekit.ListSIPInboundTrunkResponse - 31, // 113: livekit.SIP.ListSIPOutboundTrunk:output_type -> livekit.ListSIPOutboundTrunkResponse - 13, // 114: livekit.SIP.DeleteSIPTrunk:output_type -> livekit.SIPTrunkInfo - 39, // 115: livekit.SIP.CreateSIPDispatchRule:output_type -> livekit.SIPDispatchRuleInfo - 39, // 116: livekit.SIP.UpdateSIPDispatchRule:output_type -> livekit.SIPDispatchRuleInfo - 42, // 117: livekit.SIP.ListSIPDispatchRule:output_type -> livekit.ListSIPDispatchRuleResponse - 39, // 118: livekit.SIP.DeleteSIPDispatchRule:output_type -> livekit.SIPDispatchRuleInfo - 46, // 119: livekit.SIP.CreateSIPParticipant:output_type -> livekit.SIPParticipantInfo - 74, // 120: livekit.SIP.TransferSIPParticipant:output_type -> google.protobuf.Empty - 105, // [105:121] is the sub-list for method output_type - 89, // [89:105] is the sub-list for method input_type - 89, // [89:89] is the sub-list for extension type_name - 89, // [89:89] is the sub-list for extension extendee - 0, // [0:89] is the sub-list for field type_name + 12, // 1: livekit.SIPMediaConfig.codecs:type_name -> livekit.SIPCodec + 3, // 2: livekit.SIPMediaConfig.encryption:type_name -> livekit.SIPMediaEncryption + 4, // 3: livekit.ProviderInfo.type:type_name -> livekit.ProviderType + 9, // 4: livekit.SIPTrunkInfo.kind:type_name -> livekit.SIPTrunkInfo.TrunkKind + 1, // 5: livekit.SIPTrunkInfo.transport:type_name -> livekit.SIPTransport + 18, // 6: livekit.CreateSIPInboundTrunkRequest.trunk:type_name -> livekit.SIPInboundTrunkInfo + 18, // 7: livekit.UpdateSIPInboundTrunkRequest.replace:type_name -> livekit.SIPInboundTrunkInfo + 19, // 8: livekit.UpdateSIPInboundTrunkRequest.update:type_name -> livekit.SIPInboundTrunkUpdate + 54, // 9: livekit.SIPInboundTrunkInfo.headers:type_name -> livekit.SIPInboundTrunkInfo.HeadersEntry + 55, // 10: livekit.SIPInboundTrunkInfo.headers_to_attributes:type_name -> livekit.SIPInboundTrunkInfo.HeadersToAttributesEntry + 56, // 11: livekit.SIPInboundTrunkInfo.attributes_to_headers:type_name -> livekit.SIPInboundTrunkInfo.AttributesToHeadersEntry + 2, // 12: livekit.SIPInboundTrunkInfo.include_headers:type_name -> livekit.SIPHeaderOptions + 69, // 13: livekit.SIPInboundTrunkInfo.ringing_timeout:type_name -> google.protobuf.Duration + 69, // 14: livekit.SIPInboundTrunkInfo.max_call_duration:type_name -> google.protobuf.Duration + 3, // 15: livekit.SIPInboundTrunkInfo.media_encryption:type_name -> livekit.SIPMediaEncryption + 70, // 16: livekit.SIPInboundTrunkInfo.created_at:type_name -> google.protobuf.Timestamp + 70, // 17: livekit.SIPInboundTrunkInfo.updated_at:type_name -> google.protobuf.Timestamp + 71, // 18: livekit.SIPInboundTrunkUpdate.numbers:type_name -> livekit.ListUpdate + 71, // 19: livekit.SIPInboundTrunkUpdate.allowed_addresses:type_name -> livekit.ListUpdate + 71, // 20: livekit.SIPInboundTrunkUpdate.allowed_numbers:type_name -> livekit.ListUpdate + 3, // 21: livekit.SIPInboundTrunkUpdate.media_encryption:type_name -> livekit.SIPMediaEncryption + 22, // 22: livekit.CreateSIPOutboundTrunkRequest.trunk:type_name -> livekit.SIPOutboundTrunkInfo + 22, // 23: livekit.UpdateSIPOutboundTrunkRequest.replace:type_name -> livekit.SIPOutboundTrunkInfo + 23, // 24: livekit.UpdateSIPOutboundTrunkRequest.update:type_name -> livekit.SIPOutboundTrunkUpdate + 1, // 25: livekit.SIPOutboundTrunkInfo.transport:type_name -> livekit.SIPTransport + 57, // 26: livekit.SIPOutboundTrunkInfo.headers:type_name -> livekit.SIPOutboundTrunkInfo.HeadersEntry + 58, // 27: livekit.SIPOutboundTrunkInfo.headers_to_attributes:type_name -> livekit.SIPOutboundTrunkInfo.HeadersToAttributesEntry + 59, // 28: livekit.SIPOutboundTrunkInfo.attributes_to_headers:type_name -> livekit.SIPOutboundTrunkInfo.AttributesToHeadersEntry + 2, // 29: livekit.SIPOutboundTrunkInfo.include_headers:type_name -> livekit.SIPHeaderOptions + 3, // 30: livekit.SIPOutboundTrunkInfo.media_encryption:type_name -> livekit.SIPMediaEncryption + 70, // 31: livekit.SIPOutboundTrunkInfo.created_at:type_name -> google.protobuf.Timestamp + 70, // 32: livekit.SIPOutboundTrunkInfo.updated_at:type_name -> google.protobuf.Timestamp + 1, // 33: livekit.SIPOutboundTrunkUpdate.transport:type_name -> livekit.SIPTransport + 71, // 34: livekit.SIPOutboundTrunkUpdate.numbers:type_name -> livekit.ListUpdate + 3, // 35: livekit.SIPOutboundTrunkUpdate.media_encryption:type_name -> livekit.SIPMediaEncryption + 18, // 36: livekit.GetSIPInboundTrunkResponse.trunk:type_name -> livekit.SIPInboundTrunkInfo + 22, // 37: livekit.GetSIPOutboundTrunkResponse.trunk:type_name -> livekit.SIPOutboundTrunkInfo + 72, // 38: livekit.ListSIPTrunkRequest.page:type_name -> livekit.Pagination + 15, // 39: livekit.ListSIPTrunkResponse.items:type_name -> livekit.SIPTrunkInfo + 72, // 40: livekit.ListSIPInboundTrunkRequest.page:type_name -> livekit.Pagination + 18, // 41: livekit.ListSIPInboundTrunkResponse.items:type_name -> livekit.SIPInboundTrunkInfo + 72, // 42: livekit.ListSIPOutboundTrunkRequest.page:type_name -> livekit.Pagination + 22, // 43: livekit.ListSIPOutboundTrunkResponse.items:type_name -> livekit.SIPOutboundTrunkInfo + 35, // 44: livekit.SIPDispatchRule.dispatch_rule_direct:type_name -> livekit.SIPDispatchRuleDirect + 36, // 45: livekit.SIPDispatchRule.dispatch_rule_individual:type_name -> livekit.SIPDispatchRuleIndividual + 37, // 46: livekit.SIPDispatchRule.dispatch_rule_callee:type_name -> livekit.SIPDispatchRuleCallee + 41, // 47: livekit.CreateSIPDispatchRuleRequest.dispatch_rule:type_name -> livekit.SIPDispatchRuleInfo + 38, // 48: livekit.CreateSIPDispatchRuleRequest.rule:type_name -> livekit.SIPDispatchRule + 60, // 49: livekit.CreateSIPDispatchRuleRequest.attributes:type_name -> livekit.CreateSIPDispatchRuleRequest.AttributesEntry + 73, // 50: livekit.CreateSIPDispatchRuleRequest.room_config:type_name -> livekit.RoomConfiguration + 41, // 51: livekit.UpdateSIPDispatchRuleRequest.replace:type_name -> livekit.SIPDispatchRuleInfo + 42, // 52: livekit.UpdateSIPDispatchRuleRequest.update:type_name -> livekit.SIPDispatchRuleUpdate + 38, // 53: livekit.SIPDispatchRuleInfo.rule:type_name -> livekit.SIPDispatchRule + 61, // 54: livekit.SIPDispatchRuleInfo.attributes:type_name -> livekit.SIPDispatchRuleInfo.AttributesEntry + 73, // 55: livekit.SIPDispatchRuleInfo.room_config:type_name -> livekit.RoomConfiguration + 13, // 56: livekit.SIPDispatchRuleInfo.media:type_name -> livekit.SIPMediaConfig + 3, // 57: livekit.SIPDispatchRuleInfo.media_encryption:type_name -> livekit.SIPMediaEncryption + 70, // 58: livekit.SIPDispatchRuleInfo.created_at:type_name -> google.protobuf.Timestamp + 70, // 59: livekit.SIPDispatchRuleInfo.updated_at:type_name -> google.protobuf.Timestamp + 71, // 60: livekit.SIPDispatchRuleUpdate.trunk_ids:type_name -> livekit.ListUpdate + 38, // 61: livekit.SIPDispatchRuleUpdate.rule:type_name -> livekit.SIPDispatchRule + 62, // 62: livekit.SIPDispatchRuleUpdate.attributes:type_name -> livekit.SIPDispatchRuleUpdate.AttributesEntry + 3, // 63: livekit.SIPDispatchRuleUpdate.media_encryption:type_name -> livekit.SIPMediaEncryption + 13, // 64: livekit.SIPDispatchRuleUpdate.media:type_name -> livekit.SIPMediaConfig + 72, // 65: livekit.ListSIPDispatchRuleRequest.page:type_name -> livekit.Pagination + 41, // 66: livekit.ListSIPDispatchRuleResponse.items:type_name -> livekit.SIPDispatchRuleInfo + 1, // 67: livekit.SIPOutboundConfig.transport:type_name -> livekit.SIPTransport + 63, // 68: livekit.SIPOutboundConfig.headers_to_attributes:type_name -> livekit.SIPOutboundConfig.HeadersToAttributesEntry + 64, // 69: livekit.SIPOutboundConfig.attributes_to_headers:type_name -> livekit.SIPOutboundConfig.AttributesToHeadersEntry + 46, // 70: livekit.CreateSIPParticipantRequest.trunk:type_name -> livekit.SIPOutboundConfig + 65, // 71: livekit.CreateSIPParticipantRequest.participant_attributes:type_name -> livekit.CreateSIPParticipantRequest.ParticipantAttributesEntry + 66, // 72: livekit.CreateSIPParticipantRequest.headers:type_name -> livekit.CreateSIPParticipantRequest.HeadersEntry + 2, // 73: livekit.CreateSIPParticipantRequest.include_headers:type_name -> livekit.SIPHeaderOptions + 69, // 74: livekit.CreateSIPParticipantRequest.ringing_timeout:type_name -> google.protobuf.Duration + 69, // 75: livekit.CreateSIPParticipantRequest.max_call_duration:type_name -> google.protobuf.Duration + 3, // 76: livekit.CreateSIPParticipantRequest.media_encryption:type_name -> livekit.SIPMediaEncryption + 13, // 77: livekit.CreateSIPParticipantRequest.media:type_name -> livekit.SIPMediaConfig + 53, // 78: livekit.CreateSIPParticipantRequest.destination:type_name -> livekit.Destination + 67, // 79: livekit.TransferSIPParticipantRequest.headers:type_name -> livekit.TransferSIPParticipantRequest.HeadersEntry + 69, // 80: livekit.TransferSIPParticipantRequest.ringing_timeout:type_name -> google.protobuf.Duration + 68, // 81: livekit.SIPCallInfo.participant_attributes:type_name -> livekit.SIPCallInfo.ParticipantAttributesEntry + 52, // 82: livekit.SIPCallInfo.from_uri:type_name -> livekit.SIPUri + 52, // 83: livekit.SIPCallInfo.to_uri:type_name -> livekit.SIPUri + 7, // 84: livekit.SIPCallInfo.enabled_features:type_name -> livekit.SIPFeature + 8, // 85: livekit.SIPCallInfo.call_direction:type_name -> livekit.SIPCallDirection + 5, // 86: livekit.SIPCallInfo.call_status:type_name -> livekit.SIPCallStatus + 74, // 87: livekit.SIPCallInfo.disconnect_reason:type_name -> livekit.DisconnectReason + 10, // 88: livekit.SIPCallInfo.call_status_code:type_name -> livekit.SIPStatus + 75, // 89: livekit.SIPCallInfo.call_context:type_name -> google.protobuf.Any + 14, // 90: livekit.SIPCallInfo.provider_info:type_name -> livekit.ProviderInfo + 6, // 91: livekit.SIPTransferInfo.transfer_status:type_name -> livekit.SIPTransferStatus + 10, // 92: livekit.SIPTransferInfo.transfer_status_code:type_name -> livekit.SIPStatus + 1, // 93: livekit.SIPUri.transport:type_name -> livekit.SIPTransport + 28, // 94: livekit.SIP.ListSIPTrunk:input_type -> livekit.ListSIPTrunkRequest + 16, // 95: livekit.SIP.CreateSIPInboundTrunk:input_type -> livekit.CreateSIPInboundTrunkRequest + 20, // 96: livekit.SIP.CreateSIPOutboundTrunk:input_type -> livekit.CreateSIPOutboundTrunkRequest + 17, // 97: livekit.SIP.UpdateSIPInboundTrunk:input_type -> livekit.UpdateSIPInboundTrunkRequest + 21, // 98: livekit.SIP.UpdateSIPOutboundTrunk:input_type -> livekit.UpdateSIPOutboundTrunkRequest + 24, // 99: livekit.SIP.GetSIPInboundTrunk:input_type -> livekit.GetSIPInboundTrunkRequest + 26, // 100: livekit.SIP.GetSIPOutboundTrunk:input_type -> livekit.GetSIPOutboundTrunkRequest + 30, // 101: livekit.SIP.ListSIPInboundTrunk:input_type -> livekit.ListSIPInboundTrunkRequest + 32, // 102: livekit.SIP.ListSIPOutboundTrunk:input_type -> livekit.ListSIPOutboundTrunkRequest + 34, // 103: livekit.SIP.DeleteSIPTrunk:input_type -> livekit.DeleteSIPTrunkRequest + 39, // 104: livekit.SIP.CreateSIPDispatchRule:input_type -> livekit.CreateSIPDispatchRuleRequest + 40, // 105: livekit.SIP.UpdateSIPDispatchRule:input_type -> livekit.UpdateSIPDispatchRuleRequest + 43, // 106: livekit.SIP.ListSIPDispatchRule:input_type -> livekit.ListSIPDispatchRuleRequest + 45, // 107: livekit.SIP.DeleteSIPDispatchRule:input_type -> livekit.DeleteSIPDispatchRuleRequest + 47, // 108: livekit.SIP.CreateSIPParticipant:input_type -> livekit.CreateSIPParticipantRequest + 49, // 109: livekit.SIP.TransferSIPParticipant:input_type -> livekit.TransferSIPParticipantRequest + 29, // 110: livekit.SIP.ListSIPTrunk:output_type -> livekit.ListSIPTrunkResponse + 18, // 111: livekit.SIP.CreateSIPInboundTrunk:output_type -> livekit.SIPInboundTrunkInfo + 22, // 112: livekit.SIP.CreateSIPOutboundTrunk:output_type -> livekit.SIPOutboundTrunkInfo + 18, // 113: livekit.SIP.UpdateSIPInboundTrunk:output_type -> livekit.SIPInboundTrunkInfo + 22, // 114: livekit.SIP.UpdateSIPOutboundTrunk:output_type -> livekit.SIPOutboundTrunkInfo + 25, // 115: livekit.SIP.GetSIPInboundTrunk:output_type -> livekit.GetSIPInboundTrunkResponse + 27, // 116: livekit.SIP.GetSIPOutboundTrunk:output_type -> livekit.GetSIPOutboundTrunkResponse + 31, // 117: livekit.SIP.ListSIPInboundTrunk:output_type -> livekit.ListSIPInboundTrunkResponse + 33, // 118: livekit.SIP.ListSIPOutboundTrunk:output_type -> livekit.ListSIPOutboundTrunkResponse + 15, // 119: livekit.SIP.DeleteSIPTrunk:output_type -> livekit.SIPTrunkInfo + 41, // 120: livekit.SIP.CreateSIPDispatchRule:output_type -> livekit.SIPDispatchRuleInfo + 41, // 121: livekit.SIP.UpdateSIPDispatchRule:output_type -> livekit.SIPDispatchRuleInfo + 44, // 122: livekit.SIP.ListSIPDispatchRule:output_type -> livekit.ListSIPDispatchRuleResponse + 41, // 123: livekit.SIP.DeleteSIPDispatchRule:output_type -> livekit.SIPDispatchRuleInfo + 48, // 124: livekit.SIP.CreateSIPParticipant:output_type -> livekit.SIPParticipantInfo + 76, // 125: livekit.SIP.TransferSIPParticipant:output_type -> google.protobuf.Empty + 110, // [110:126] is the sub-list for method output_type + 94, // [94:110] is the sub-list for method input_type + 94, // [94:94] is the sub-list for extension type_name + 94, // [94:94] is the sub-list for extension extendee + 0, // [0:94] is the sub-list for field type_name } func init() { file_livekit_sip_proto_init() } @@ -5304,34 +5467,34 @@ func file_livekit_sip_proto_init() { } file_livekit_models_proto_init() file_livekit_room_proto_init() - file_livekit_sip_proto_msgTypes[5].OneofWrappers = []any{ + file_livekit_sip_proto_msgTypes[7].OneofWrappers = []any{ (*UpdateSIPInboundTrunkRequest_Replace)(nil), (*UpdateSIPInboundTrunkRequest_Update)(nil), } - file_livekit_sip_proto_msgTypes[7].OneofWrappers = []any{} - file_livekit_sip_proto_msgTypes[9].OneofWrappers = []any{ + file_livekit_sip_proto_msgTypes[9].OneofWrappers = []any{} + file_livekit_sip_proto_msgTypes[11].OneofWrappers = []any{ (*UpdateSIPOutboundTrunkRequest_Replace)(nil), (*UpdateSIPOutboundTrunkRequest_Update)(nil), } - file_livekit_sip_proto_msgTypes[11].OneofWrappers = []any{} - file_livekit_sip_proto_msgTypes[26].OneofWrappers = []any{ + file_livekit_sip_proto_msgTypes[13].OneofWrappers = []any{} + file_livekit_sip_proto_msgTypes[28].OneofWrappers = []any{ (*SIPDispatchRule_DispatchRuleDirect)(nil), (*SIPDispatchRule_DispatchRuleIndividual)(nil), (*SIPDispatchRule_DispatchRuleCallee)(nil), } - file_livekit_sip_proto_msgTypes[28].OneofWrappers = []any{ + file_livekit_sip_proto_msgTypes[30].OneofWrappers = []any{ (*UpdateSIPDispatchRuleRequest_Replace)(nil), (*UpdateSIPDispatchRuleRequest_Update)(nil), } - file_livekit_sip_proto_msgTypes[30].OneofWrappers = []any{} - file_livekit_sip_proto_msgTypes[35].OneofWrappers = []any{} + file_livekit_sip_proto_msgTypes[32].OneofWrappers = []any{} + file_livekit_sip_proto_msgTypes[37].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), RawDescriptor: unsafe.Slice(unsafe.StringData(file_livekit_sip_proto_rawDesc), len(file_livekit_sip_proto_rawDesc)), NumEnums: 10, - NumMessages: 57, + NumMessages: 59, NumExtensions: 0, NumServices: 1, }, diff --git a/livekit/livekit_sip.twirp.go b/livekit/livekit_sip.twirp.go index 21d3f3ca9..f7087e965 100644 --- a/livekit/livekit_sip.twirp.go +++ b/livekit/livekit_sip.twirp.go @@ -4704,346 +4704,354 @@ func (s *sIPServer) PathPrefix() string { } var twirpFileDescriptor5 = []byte{ - // 5447 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x7c, 0xe9, 0x8f, 0x1b, 0xc9, - 0x75, 0xb8, 0xc8, 0xe6, 0x1c, 0x2c, 0xce, 0xd1, 0x53, 0x73, 0x2c, 0x35, 0xba, 0x66, 0x29, 0x69, - 0x57, 0x9a, 0xb5, 0x47, 0x6b, 0xed, 0xef, 0xe7, 0x5d, 0xcb, 0x1b, 0x7b, 0x9b, 0xec, 0x9a, 0x99, - 0xb6, 0x38, 0xdd, 0xdc, 0xea, 0xa6, 0xa4, 0x31, 0x9c, 0x74, 0x28, 0x76, 0x6b, 0xd4, 0x2b, 0x0e, - 0x9b, 0x26, 0x9b, 0xda, 0x1d, 0x3b, 0xfb, 0x21, 0x40, 0x80, 0x6c, 0x80, 0x20, 0x88, 0x9d, 0xc3, - 0x71, 0xe2, 0xc4, 0x36, 0x90, 0x63, 0x63, 0xd8, 0x06, 0x1c, 0xf8, 0x08, 0xf4, 0x0f, 0x24, 0xc8, - 0x01, 0xe4, 0x4b, 0x0e, 0x20, 0x81, 0xb3, 0x89, 0x73, 0x38, 0x09, 0x92, 0x7c, 0x49, 0xe2, 0x04, - 0xc8, 0x87, 0xa0, 0xaa, 0xab, 0xbb, 0xab, 0x9b, 0x4d, 0x0e, 0x39, 0xd2, 0x02, 0x46, 0xf2, 0x69, - 0xd8, 0xaf, 0x5e, 0xbd, 0x7a, 0xf5, 0xea, 0x5d, 0xf5, 0xaa, 0x6a, 0xc0, 0x52, 0xcb, 0x79, 0x68, - 0x3f, 0x70, 0x3c, 0xb3, 0xe7, 0x74, 0xb6, 0x3a, 0x5d, 0xd7, 0x73, 0xe1, 0x0c, 0x03, 0xad, 0x9f, - 0x3e, 0x70, 0xdd, 0x83, 0x96, 0x7d, 0x8d, 0x82, 0xef, 0xf6, 0xef, 0x5d, 0x6b, 0xb4, 0x8f, 0x7c, - 0x9c, 0xf5, 0xf3, 0xc9, 0x26, 0xab, 0xdf, 0x6d, 0x78, 0x8e, 0xdb, 0x66, 0xed, 0x67, 0x92, 0xed, - 0xf6, 0x61, 0xc7, 0x0b, 0x3a, 0x5f, 0x48, 0x36, 0x7a, 0xce, 0xa1, 0xdd, 0xf3, 0x1a, 0x87, 0x8c, - 0x83, 0xf5, 0x95, 0x80, 0xa9, 0x43, 0xd7, 0xb2, 0x5b, 0x3d, 0x06, 0x85, 0x01, 0xb4, 0xeb, 0xba, - 0x87, 0x21, 0xa6, 0x7b, 0x70, 0x60, 0x77, 0xaf, 0xb9, 0x1d, 0x32, 0x38, 0xc3, 0x2c, 0x69, 0x20, - 0xaf, 0x2b, 0x35, 0xdd, 0x6b, 0x78, 0xfd, 0x1e, 0xdc, 0x04, 0xb9, 0xa6, 0x6b, 0xd9, 0xc5, 0xcc, - 0x46, 0xe6, 0xca, 0xc2, 0xf5, 0xb5, 0x2d, 0x46, 0x65, 0x2b, 0xc4, 0xa8, 0xb8, 0x96, 0x8d, 0x29, - 0x0e, 0x5c, 0x03, 0xd3, 0x3d, 0x0a, 0x2b, 0x66, 0x37, 0x32, 0x57, 0xf2, 0x98, 0x7d, 0x95, 0x3e, - 0x93, 0x03, 0xab, 0x95, 0xae, 0xdd, 0xf0, 0x6c, 0x5d, 0xa9, 0x19, 0xdd, 0x7e, 0xfb, 0x01, 0xb6, - 0x3f, 0xde, 0xb7, 0x7b, 0x1e, 0x7c, 0x0e, 0x2c, 0x39, 0xed, 0xbb, 0x6e, 0xbf, 0x6d, 0x99, 0x0d, - 0xcb, 0xea, 0xda, 0xbd, 0x9e, 0xdd, 0x2b, 0x66, 0x36, 0x84, 0x2b, 0x79, 0x2c, 0xb2, 0x06, 0x29, - 0x80, 0xc3, 0xab, 0x40, 0x74, 0xfb, 0x5e, 0x0c, 0x9b, 0x0d, 0xb4, 0x18, 0xc0, 0x19, 0x32, 0x7c, - 0x16, 0x84, 0x20, 0xb3, 0xdd, 0x3f, 0xbc, 0x6b, 0x77, 0x8b, 0x02, 0xc5, 0x5c, 0x08, 0xc0, 0x2a, - 0x85, 0xc2, 0xf7, 0x83, 0xd5, 0x80, 0x01, 0x1f, 0xaf, 0x67, 0x76, 0xed, 0x03, 0xfb, 0x8d, 0x62, - 0x8e, 0x30, 0x51, 0xce, 0x16, 0x33, 0x78, 0x99, 0x21, 0xf8, 0x3d, 0x7a, 0x98, 0x34, 0x93, 0x01, - 0x12, 0xfd, 0x8a, 0x79, 0xca, 0xf6, 0x42, 0x1c, 0x1b, 0x6e, 0x81, 0x60, 0x22, 0x66, 0xbf, 0x67, - 0x77, 0xdb, 0x8d, 0x43, 0xbb, 0x38, 0x45, 0x58, 0x29, 0x0b, 0x6f, 0xd7, 0x32, 0x38, 0xa0, 0x52, - 0x67, 0x6d, 0x3c, 0x7e, 0xa7, 0xd1, 0xeb, 0xbd, 0xee, 0x76, 0xad, 0xe2, 0xf4, 0x20, 0x7e, 0x8d, - 0xb5, 0xc1, 0xe7, 0xc1, 0x52, 0x38, 0xd3, 0x70, 0x80, 0x99, 0xa8, 0x43, 0x28, 0xb2, 0x70, 0x04, - 0xbe, 0x47, 0x38, 0xc4, 0x6c, 0x4a, 0x8f, 0x70, 0x0c, 0x08, 0x72, 0x94, 0x2c, 0xa0, 0x22, 0xa4, - 0xbf, 0xe1, 0x2b, 0x60, 0xf6, 0xd0, 0xf6, 0x1a, 0x56, 0xc3, 0x6b, 0x14, 0x0b, 0xb4, 0xf3, 0xa5, - 0xb7, 0x6b, 0x99, 0xdf, 0xaa, 0x9d, 0x7f, 0xb9, 0x6b, 0x5b, 0x8d, 0xa6, 0x67, 0x5b, 0x1b, 0x57, - 0x3e, 0xf9, 0xc9, 0x8d, 0x2d, 0xdd, 0xf9, 0x84, 0xbd, 0xf1, 0xe6, 0x9b, 0x1b, 0x77, 0x8f, 0x3c, - 0xbb, 0x77, 0xf5, 0x43, 0x38, 0xec, 0x75, 0x23, 0x5b, 0xcc, 0x94, 0xde, 0xca, 0x80, 0xb9, 0x5a, - 0xd7, 0x7d, 0xe8, 0x58, 0x76, 0x57, 0x69, 0xdf, 0x73, 0xe1, 0x02, 0xc8, 0x3a, 0x16, 0x55, 0xb6, - 0x3c, 0xce, 0x3a, 0xd1, 0xd0, 0x59, 0x6e, 0xe8, 0xab, 0x20, 0xe7, 0x1d, 0x75, 0x6c, 0xba, 0xa2, - 0x0b, 0xd7, 0x57, 0x43, 0x95, 0x0c, 0x08, 0x19, 0x47, 0x1d, 0x1b, 0x53, 0x14, 0xa2, 0x32, 0x9d, - 0xae, 0xfd, 0xd0, 0x6e, 0x7b, 0xa6, 0xd7, 0x6d, 0xb4, 0x7b, 0xf7, 0xec, 0x6e, 0x31, 0xb7, 0x91, - 0xb9, 0x32, 0x8b, 0x17, 0x19, 0xdc, 0x60, 0xe0, 0xd2, 0xbf, 0x4e, 0x81, 0xb9, 0x40, 0x3d, 0x29, - 0x2b, 0xd7, 0xc0, 0x5c, 0xcf, 0xe9, 0x98, 0x1e, 0x01, 0x98, 0x01, 0x53, 0xe5, 0xf9, 0x47, 0x35, - 0xd0, 0x73, 0x3a, 0x3e, 0x9a, 0x8c, 0xa3, 0xdf, 0x16, 0x7c, 0x01, 0xe4, 0x1e, 0x38, 0x6d, 0xab, - 0xb8, 0x40, 0xf9, 0xba, 0xc0, 0x9b, 0x4a, 0x48, 0x75, 0x8b, 0xfe, 0xba, 0xe9, 0xb4, 0x2d, 0x4c, - 0x91, 0xd3, 0x2d, 0x20, 0x3b, 0x81, 0x05, 0x08, 0x63, 0x5b, 0x40, 0x2e, 0xd5, 0x02, 0x5e, 0x00, - 0x79, 0x2a, 0x9a, 0x8e, 0xdb, 0xf5, 0x8a, 0xf3, 0x09, 0x91, 0x52, 0xd6, 0x59, 0x23, 0x8e, 0xf0, - 0x86, 0x9b, 0xcd, 0xd4, 0xc4, 0x66, 0x03, 0xc6, 0x36, 0x9b, 0xe9, 0x09, 0xcd, 0x66, 0x66, 0x52, - 0xb3, 0x99, 0x9d, 0xd8, 0x6c, 0xf2, 0xe3, 0x98, 0x4d, 0x61, 0x88, 0xd9, 0xcc, 0x9d, 0xc4, 0x6c, - 0x4a, 0x32, 0xc8, 0x87, 0x3a, 0x04, 0x45, 0x30, 0x67, 0xe0, 0xba, 0x7a, 0xd3, 0xac, 0xa2, 0x1d, - 0xa9, 0xb2, 0x2f, 0x9e, 0x82, 0x4b, 0x60, 0xde, 0x87, 0x28, 0x6a, 0x59, 0xab, 0xab, 0xb2, 0x98, - 0x81, 0x10, 0x2c, 0xf8, 0x20, 0xad, 0x6e, 0xf8, 0xb0, 0x2c, 0x35, 0x3e, 0x0c, 0xce, 0x86, 0x5e, - 0x59, 0xf1, 0xe5, 0x13, 0x73, 0xce, 0xd7, 0xc1, 0x14, 0x55, 0x7e, 0xaa, 0xf9, 0x85, 0xeb, 0x67, - 0x79, 0xad, 0xe0, 0xf1, 0x89, 0x5e, 0x63, 0x1f, 0xb5, 0xf4, 0x87, 0x19, 0x70, 0xb6, 0xde, 0xb1, - 0x86, 0x13, 0x9d, 0xd8, 0xaa, 0x5e, 0x02, 0x33, 0x5d, 0xbb, 0xd3, 0x6a, 0x34, 0x7d, 0x27, 0x70, - 0x0c, 0x1f, 0xbb, 0xa7, 0x70, 0x80, 0x0e, 0x5f, 0x02, 0xd3, 0x7d, 0xca, 0x0a, 0xb5, 0x91, 0xc2, - 0xf5, 0xf3, 0xc3, 0x3a, 0xfa, 0x0c, 0xef, 0x9e, 0xc2, 0x0c, 0xbf, 0x3c, 0x0b, 0xa6, 0x1b, 0x4d, - 0x12, 0x12, 0x4b, 0x9f, 0x07, 0x60, 0x39, 0x65, 0x98, 0xc9, 0xa7, 0x91, 0xe6, 0xc8, 0x78, 0x65, - 0x10, 0x4e, 0xa2, 0x0c, 0xb0, 0x08, 0x66, 0x02, 0x3b, 0xa2, 0x01, 0x0b, 0x07, 0x9f, 0xc4, 0xaf, - 0x34, 0x5a, 0x2d, 0xf7, 0x75, 0x9b, 0xf7, 0x2b, 0x53, 0xbe, 0x5f, 0x61, 0x0d, 0x91, 0x5f, 0x79, - 0x16, 0x2c, 0x06, 0xc8, 0x01, 0xb9, 0x69, 0xdf, 0x2c, 0x19, 0x38, 0x30, 0xcb, 0x2b, 0x60, 0xbe, - 0xd1, 0xf7, 0xee, 0xa7, 0x46, 0x9a, 0x39, 0xd2, 0x12, 0x9a, 0x4b, 0x80, 0x99, 0x16, 0x61, 0x28, - 0x66, 0x68, 0x26, 0x0e, 0x98, 0xb9, 0x6f, 0x37, 0xac, 0x20, 0x84, 0x16, 0xae, 0x5f, 0x1d, 0xb5, - 0xc0, 0x5b, 0xbb, 0x3e, 0x2e, 0x6a, 0x7b, 0xdd, 0xa3, 0x31, 0xe5, 0x15, 0xd0, 0x87, 0x0e, 0x58, - 0x65, 0x3f, 0x4d, 0xcf, 0x35, 0x1b, 0x9e, 0xd7, 0x75, 0xee, 0xf6, 0x3d, 0xdb, 0x77, 0x42, 0x85, - 0xeb, 0xff, 0x7f, 0x9c, 0x81, 0x0d, 0x57, 0x0a, 0xfb, 0x51, 0x26, 0xf0, 0xf2, 0xfd, 0xc1, 0x16, - 0x32, 0x54, 0x44, 0x9f, 0x8c, 0x16, 0xcc, 0x71, 0x61, 0x8c, 0xa1, 0x22, 0x3a, 0x86, 0xcb, 0xcf, - 0x17, 0x2f, 0x37, 0x06, 0x5b, 0x60, 0x99, 0x38, 0xd5, 0x66, 0xab, 0x6f, 0xd9, 0xe1, 0x20, 0x8b, - 0xd4, 0x8f, 0x9f, 0xe6, 0x07, 0xf1, 0xb1, 0x35, 0x3f, 0xd3, 0x23, 0xfe, 0x96, 0xf6, 0xe0, 0x68, - 0x74, 0x9d, 0xf6, 0x81, 0xd3, 0x3e, 0x30, 0x49, 0x3a, 0xe9, 0xf6, 0x3d, 0xea, 0xb6, 0x0a, 0xd7, - 0x4f, 0x6f, 0xf9, 0xe9, 0xe6, 0x56, 0x90, 0x6e, 0x6e, 0xc9, 0x2c, 0x57, 0xc5, 0x0b, 0xac, 0x87, - 0xe1, 0x77, 0x80, 0x08, 0x2c, 0x1d, 0x36, 0xde, 0x30, 0x9b, 0x8d, 0x56, 0xcb, 0x0c, 0x12, 0x5a, - 0xea, 0xe4, 0x46, 0x52, 0x59, 0x3c, 0x6c, 0xbc, 0x51, 0x69, 0xb4, 0x5a, 0x01, 0x00, 0x5e, 0x04, - 0xf3, 0x0f, 0xba, 0x4e, 0xaf, 0x63, 0xda, 0xed, 0xc6, 0xdd, 0x96, 0x6d, 0xd1, 0xa0, 0x34, 0x8b, - 0xe7, 0x28, 0x10, 0xf9, 0x30, 0xb8, 0x0d, 0xc4, 0x43, 0xdb, 0x72, 0x1a, 0xa6, 0xdd, 0x6e, 0x76, - 0x8f, 0xe8, 0xa4, 0x8a, 0x22, 0x9d, 0xf4, 0x19, 0x7e, 0xd2, 0x7b, 0x04, 0x07, 0x85, 0x28, 0x78, - 0xf1, 0x30, 0x0e, 0x80, 0x1f, 0x00, 0xa0, 0x49, 0x7d, 0xa0, 0x65, 0x36, 0xbc, 0xe2, 0x12, 0x65, - 0x76, 0x7d, 0x80, 0x59, 0x23, 0xc8, 0xb0, 0x71, 0x9e, 0x61, 0x4b, 0x1e, 0xe9, 0xea, 0xbb, 0x0b, - 0xda, 0x15, 0x1e, 0xdf, 0x95, 0x61, 0x4b, 0xde, 0xfa, 0x0d, 0x30, 0xc7, 0x2f, 0x2b, 0x14, 0x81, - 0xf0, 0xc0, 0x3e, 0x62, 0x69, 0x0f, 0xf9, 0x09, 0x57, 0xc0, 0xd4, 0xc3, 0x46, 0xab, 0x1f, 0xf8, - 0x0b, 0xff, 0xe3, 0x46, 0xf6, 0xa5, 0xcc, 0xfa, 0x36, 0x28, 0x0e, 0xd3, 0xc4, 0x49, 0xe9, 0x0c, - 0x53, 0xb3, 0x49, 0xe8, 0x94, 0xbe, 0x90, 0x03, 0xab, 0xa9, 0xfe, 0x14, 0xbe, 0x37, 0x72, 0x4e, - 0x7e, 0x04, 0x59, 0x0e, 0x97, 0xa6, 0xea, 0xf4, 0x3c, 0x1f, 0x2b, 0xf2, 0x58, 0xaf, 0xa4, 0x79, - 0xac, 0xec, 0xf0, 0x8e, 0x83, 0x6e, 0xec, 0xe5, 0x41, 0x37, 0x26, 0x0c, 0xef, 0x9f, 0xf4, 0x6d, - 0xef, 0x4d, 0xfa, 0xb6, 0x5c, 0xe8, 0xb1, 0x76, 0x4f, 0xc5, 0xbd, 0xdb, 0x5b, 0x99, 0x4c, 0x88, - 0x1e, 0x3a, 0xb8, 0x28, 0xab, 0xdf, 0x4d, 0xb8, 0x38, 0x82, 0xfe, 0x14, 0xf3, 0xff, 0x34, 0x89, - 0xd9, 0xcd, 0xfa, 0x11, 0x80, 0x34, 0x20, 0x2e, 0x08, 0xcc, 0x8c, 0x1f, 0x04, 0x76, 0x85, 0x28, - 0x0c, 0x10, 0x32, 0x37, 0x53, 0x0c, 0x62, 0xf6, 0x58, 0x83, 0xd8, 0xcd, 0x0d, 0x98, 0xc4, 0x5b, - 0x99, 0x4c, 0x59, 0x04, 0x0b, 0x66, 0x4c, 0x16, 0x11, 0x24, 0x98, 0x6e, 0x79, 0x06, 0x4c, 0x99, - 0xb4, 0xa9, 0x00, 0xf2, 0x66, 0xc0, 0x49, 0x79, 0x19, 0x2c, 0x99, 0x49, 0x3e, 0x4a, 0x06, 0x38, - 0x17, 0x26, 0x1a, 0x1a, 0xcb, 0x92, 0x62, 0x49, 0xc1, 0x0b, 0xf1, 0x4c, 0xe3, 0x1c, 0xcf, 0x71, - 0xac, 0x03, 0x9f, 0x6a, 0xfc, 0x51, 0x06, 0x9c, 0x0b, 0x53, 0x8d, 0x54, 0xb2, 0x13, 0x07, 0xe9, - 0x0f, 0x24, 0x73, 0x8d, 0xd1, 0x9c, 0xf0, 0xc9, 0xc6, 0x07, 0x12, 0xc9, 0xc6, 0x85, 0xa1, 0x3d, - 0x47, 0x64, 0x1b, 0x8f, 0xf2, 0x60, 0x25, 0x6d, 0xa0, 0xef, 0xa3, 0x74, 0x23, 0xd8, 0x76, 0xf8, - 0x9b, 0x89, 0xe0, 0x13, 0x5e, 0x03, 0xcb, 0x96, 0xdd, 0xf3, 0x9c, 0x36, 0xf5, 0xe1, 0x66, 0xd3, - 0xed, 0x13, 0x47, 0x42, 0xb7, 0x42, 0x79, 0x0c, 0xb9, 0xa6, 0x8a, 0xdf, 0x12, 0xdf, 0x76, 0x4c, - 0x8d, 0xb9, 0xed, 0xe0, 0xd2, 0x9d, 0xe9, 0x78, 0xba, 0xf3, 0x6e, 0x24, 0x26, 0xaf, 0x25, 0x13, - 0x93, 0xcd, 0x91, 0xda, 0xf0, 0x58, 0x99, 0xc9, 0x6b, 0xa3, 0x33, 0x93, 0xf7, 0x8f, 0x35, 0xf2, - 0x98, 0xa9, 0xc9, 0x6b, 0xc3, 0x52, 0x93, 0xc2, 0x38, 0x63, 0x3d, 0x76, 0x6e, 0x32, 0x37, 0x69, - 0x6e, 0x92, 0x16, 0xeb, 0xe7, 0x4f, 0x10, 0xeb, 0xcf, 0x80, 0xfc, 0xbd, 0xae, 0x7b, 0x68, 0xde, - 0x77, 0x7b, 0x1e, 0xcd, 0x90, 0xf2, 0x78, 0x96, 0x00, 0x76, 0xdd, 0x9e, 0x97, 0x48, 0x04, 0xc4, - 0x93, 0x27, 0x02, 0x4b, 0xff, 0x57, 0x13, 0x81, 0x4f, 0x4f, 0x81, 0xb5, 0x74, 0x5f, 0x07, 0xcf, - 0x45, 0x7e, 0x83, 0x92, 0x22, 0x8e, 0x93, 0x01, 0x48, 0xec, 0x7a, 0x89, 0xf7, 0x05, 0xd9, 0x11, - 0xbe, 0x60, 0x37, 0xc3, 0x79, 0x03, 0xd2, 0xf3, 0xff, 0xa5, 0xbb, 0x9d, 0x3c, 0x0b, 0xb2, 0x29, - 0x8e, 0xc7, 0x0f, 0xdd, 0x33, 0x63, 0xe4, 0x07, 0xa1, 0x6f, 0x19, 0x95, 0x18, 0x08, 0x93, 0x25, - 0x06, 0xb9, 0xe3, 0x12, 0x83, 0xa9, 0xc7, 0x4f, 0x0c, 0xa6, 0x9f, 0x48, 0x62, 0x30, 0x93, 0x96, - 0x18, 0xc0, 0x0d, 0xde, 0x84, 0x68, 0x39, 0x70, 0x77, 0x36, 0x32, 0x22, 0x92, 0x3a, 0x00, 0x30, - 0x1b, 0xa4, 0x6f, 0xe5, 0x39, 0x00, 0xcc, 0x70, 0xb9, 0xca, 0x6b, 0x60, 0xc5, 0x4c, 0x59, 0xac, - 0x27, 0x9c, 0x6c, 0xd0, 0x41, 0x43, 0x1e, 0x4b, 0x55, 0x70, 0x7a, 0xc7, 0xf6, 0x9e, 0x50, 0x2d, - 0xa2, 0x54, 0x03, 0xeb, 0x69, 0xd4, 0x7a, 0x1d, 0xb7, 0xdd, 0xb3, 0x4f, 0x54, 0x2f, 0xd9, 0x0b, - 0x28, 0x3e, 0x91, 0x04, 0xa6, 0x84, 0xc1, 0x99, 0x54, 0x72, 0x8c, 0xc3, 0x13, 0xe5, 0x59, 0x65, - 0xb0, 0x4c, 0xac, 0x22, 0x59, 0xba, 0x7f, 0x16, 0xe4, 0x3a, 0x8d, 0x03, 0x7b, 0x20, 0xb5, 0xaf, - 0x35, 0x0e, 0xd8, 0x0a, 0x63, 0x8a, 0x40, 0x4b, 0x4d, 0x3b, 0x60, 0x25, 0x4e, 0x83, 0x31, 0xf4, - 0x1c, 0x98, 0x72, 0x3c, 0xfb, 0xd0, 0xaf, 0xf9, 0x17, 0x92, 0x56, 0x1f, 0x32, 0x42, 0x71, 0x28, - 0xa1, 0x1f, 0x01, 0xeb, 0x8c, 0x50, 0xda, 0x82, 0x06, 0x3c, 0x09, 0xc7, 0xf0, 0x44, 0x42, 0x41, - 0x20, 0xd4, 0xe0, 0xbc, 0x61, 0xd6, 0xf3, 0x65, 0xd8, 0xe3, 0xb3, 0x8c, 0x6c, 0x2c, 0xcb, 0x28, - 0xbd, 0x0a, 0xce, 0xa4, 0x8e, 0x1e, 0x29, 0x00, 0x3f, 0x9b, 0x63, 0x14, 0x80, 0xa2, 0x96, 0xde, - 0x0c, 0x49, 0xa6, 0x6a, 0xc0, 0xbb, 0x3d, 0x23, 0x1d, 0x9c, 0x4d, 0x1f, 0x3e, 0xd2, 0x18, 0x7e, - 0x4a, 0xc7, 0x69, 0x8c, 0x3f, 0xa7, 0x5d, 0xb0, 0x2a, 0xdb, 0x2d, 0x7b, 0xf0, 0xb8, 0x67, 0x62, - 0x7d, 0xde, 0xa6, 0x7b, 0x4b, 0xd9, 0xe9, 0x75, 0x1a, 0x5e, 0xf3, 0x3e, 0xee, 0xb7, 0x6c, 0xd9, - 0xe9, 0xda, 0x4d, 0x8f, 0x4c, 0xb7, 0xeb, 0xba, 0x87, 0xd4, 0x29, 0xb0, 0xf0, 0x34, 0x4b, 0x00, - 0x2a, 0x49, 0xf1, 0x44, 0x20, 0x74, 0x9c, 0x36, 0x8b, 0x50, 0xe4, 0x67, 0xa9, 0x07, 0x4e, 0x27, - 0xe8, 0x28, 0x6d, 0xcb, 0x79, 0xe8, 0x58, 0xfd, 0x46, 0x0b, 0x5e, 0x00, 0x05, 0x4a, 0xab, 0xd3, - 0xb5, 0xef, 0x39, 0x6f, 0x30, 0x6a, 0x80, 0x80, 0x6a, 0x14, 0x32, 0x48, 0x0f, 0x5e, 0x04, 0xf3, - 0x6d, 0xd7, 0xec, 0x36, 0xda, 0x96, 0x7b, 0xd8, 0x0e, 0xaa, 0xf0, 0xb3, 0x78, 0xae, 0xed, 0xe2, - 0x10, 0x56, 0xba, 0x3f, 0xc0, 0x7c, 0xa5, 0xd1, 0x6a, 0xd9, 0xf6, 0x49, 0x06, 0x3c, 0x0b, 0xf2, - 0xfe, 0x68, 0xce, 0x27, 0x6c, 0x36, 0x58, 0x04, 0x28, 0x7d, 0x31, 0x0b, 0x16, 0x13, 0x43, 0x41, - 0x0c, 0x56, 0x2c, 0xf6, 0x6d, 0x76, 0xfb, 0x2d, 0xdb, 0xb4, 0xa8, 0xe4, 0x98, 0xbd, 0xc6, 0x6a, - 0xa1, 0x83, 0xf2, 0xdd, 0x3d, 0x85, 0xa1, 0x35, 0x28, 0xf5, 0x1f, 0x02, 0xc5, 0x38, 0x4d, 0x27, - 0x94, 0x22, 0xdb, 0x30, 0x95, 0x86, 0xd1, 0x8d, 0xe4, 0xbd, 0x7b, 0x0a, 0xaf, 0x59, 0xe9, 0x2b, - 0x31, 0xc0, 0x73, 0x93, 0x0a, 0x2c, 0xad, 0x7e, 0x3b, 0x28, 0xd6, 0x24, 0xcf, 0x3e, 0xb4, 0x3c, - 0x0d, 0x72, 0x84, 0x54, 0xe9, 0x53, 0x53, 0x5c, 0xb9, 0x9b, 0xef, 0x1d, 0x28, 0xa7, 0x04, 0xe6, - 0x63, 0x83, 0xd3, 0xf8, 0x96, 0xb0, 0xe2, 0xf8, 0x8c, 0xee, 0xb9, 0x78, 0x8e, 0x1f, 0x11, 0x3e, - 0xef, 0x8f, 0xc5, 0x64, 0x5c, 0x1c, 0xd6, 0x93, 0x9e, 0x8f, 0x50, 0x4c, 0x78, 0x81, 0x37, 0xdb, - 0x6c, 0x78, 0x78, 0x12, 0x99, 0xee, 0x16, 0x58, 0xba, 0xef, 0x58, 0xb6, 0xd9, 0xb9, 0xef, 0xb6, - 0x6d, 0xfe, 0x2c, 0x73, 0x96, 0x22, 0x2e, 0x92, 0xc6, 0x1a, 0x69, 0x63, 0xc7, 0x39, 0xcf, 0x0d, - 0x9e, 0xb0, 0x4c, 0x87, 0x64, 0x93, 0xa7, 0x2c, 0x6b, 0x2c, 0xf7, 0xf0, 0x13, 0x1a, 0xca, 0x15, - 0xdd, 0x23, 0x95, 0xb9, 0xd4, 0xc3, 0xcf, 0x5e, 0x9e, 0x29, 0x66, 0x26, 0xdc, 0x2b, 0xbe, 0x09, - 0x00, 0xb7, 0x8d, 0x99, 0x49, 0x54, 0x3d, 0x47, 0xad, 0xc4, 0x56, 0x22, 0x9b, 0x1d, 0x7b, 0x70, - 0x6e, 0x40, 0x78, 0x31, 0xb2, 0xb1, 0x9e, 0xed, 0xb1, 0x4d, 0x1e, 0x99, 0x61, 0x60, 0x67, 0x3d, - 0xdb, 0x83, 0x1f, 0x66, 0x48, 0x4d, 0xb7, 0x7d, 0xcf, 0x39, 0xa0, 0x69, 0x23, 0x49, 0xdd, 0x03, - 0x26, 0xb1, 0xeb, 0x1e, 0x56, 0x68, 0x13, 0xab, 0x4d, 0x46, 0x04, 0x7c, 0xf0, 0xfa, 0x0f, 0x80, - 0xc5, 0xc7, 0x48, 0xbd, 0x4b, 0xdf, 0xe1, 0x4f, 0x4b, 0xd2, 0x74, 0x12, 0x81, 0x15, 0xe2, 0x30, - 0x13, 0x46, 0x17, 0x38, 0xce, 0x95, 0x47, 0xb5, 0xa5, 0x9e, 0xd3, 0x89, 0x29, 0xa5, 0x8c, 0x07, - 0x40, 0xc7, 0x9d, 0xa1, 0x24, 0x95, 0x7a, 0xec, 0x33, 0x14, 0xbe, 0xe3, 0x88, 0xaa, 0xc6, 0x3b, - 0xd3, 0xf4, 0x0c, 0x25, 0x39, 0xcc, 0x93, 0x9a, 0xdc, 0x7b, 0x98, 0xd1, 0x65, 0x47, 0x1b, 0x1d, - 0x33, 0xb8, 0x58, 0x9c, 0x14, 0x12, 0x71, 0x72, 0x33, 0xcd, 0xd8, 0xd8, 0x79, 0x71, 0xd2, 0xd0, - 0x52, 0x8e, 0x32, 0x67, 0x52, 0x8f, 0x32, 0xb9, 0xe0, 0x3b, 0x1f, 0x2f, 0x5a, 0x04, 0x45, 0x9a, - 0xa9, 0x21, 0x45, 0x9a, 0xe9, 0x13, 0x15, 0x69, 0xba, 0x31, 0xc3, 0x9b, 0xa5, 0x86, 0xf7, 0x9e, - 0x51, 0xeb, 0x3d, 0x60, 0x6f, 0x97, 0x26, 0xb6, 0xb6, 0x0b, 0x71, 0x6b, 0xcb, 0xc7, 0x22, 0x1a, - 0xb1, 0xb4, 0x0f, 0xc6, 0x2d, 0x0d, 0x1c, 0x67, 0x69, 0xbc, 0x95, 0x0d, 0x9e, 0x08, 0x14, 0xc6, - 0x3c, 0x11, 0x98, 0x7b, 0xec, 0x13, 0x81, 0x85, 0x93, 0x17, 0x02, 0x16, 0x27, 0x29, 0x04, 0x3c, - 0xa6, 0x23, 0xf9, 0xb1, 0xdc, 0x40, 0xae, 0xc1, 0xb6, 0xde, 0xcf, 0xc7, 0xf3, 0xc2, 0xa1, 0xbb, - 0xdd, 0xc8, 0x08, 0x26, 0xb3, 0xa7, 0x60, 0xfb, 0x2a, 0xb0, 0x7d, 0x7d, 0xea, 0xf6, 0x35, 0x37, - 0xc1, 0xf6, 0x35, 0x13, 0xdf, 0xbe, 0x7a, 0x31, 0x6d, 0x9e, 0xa2, 0xda, 0xbc, 0x35, 0xda, 0x09, - 0x3d, 0x01, 0x7d, 0x4e, 0xdb, 0x34, 0x4f, 0x1f, 0xbf, 0x69, 0xce, 0xa6, 0x6d, 0x9a, 0x1f, 0x73, - 0x6d, 0x27, 0x29, 0xb4, 0xff, 0x54, 0x26, 0xdc, 0x1e, 0xa5, 0x45, 0x93, 0xb1, 0x37, 0x13, 0x9b, - 0x60, 0x29, 0xe9, 0x95, 0x83, 0x4d, 0xc5, 0x62, 0x2c, 0x75, 0xb3, 0x7a, 0x71, 0x87, 0x9a, 0x8d, - 0x3b, 0x54, 0x6e, 0xc3, 0x14, 0xe7, 0x67, 0x8c, 0x0d, 0xd3, 0x40, 0xaa, 0xc5, 0x36, 0x17, 0x36, - 0x38, 0x1b, 0x6e, 0x2e, 0xde, 0xbd, 0x90, 0x59, 0xfa, 0x6e, 0x0e, 0x2c, 0x71, 0x7b, 0x1c, 0xe6, - 0x89, 0xd6, 0xc1, 0xec, 0x7d, 0xb7, 0xe7, 0xf1, 0xbb, 0x8e, 0xe0, 0x7b, 0x58, 0x09, 0x7c, 0x66, - 0xbc, 0x12, 0x78, 0x76, 0xcc, 0x12, 0xf8, 0x40, 0xa1, 0x5b, 0x18, 0xbb, 0xd0, 0x9d, 0x1b, 0x56, - 0xe8, 0x3e, 0x18, 0x56, 0x7c, 0xf6, 0xcd, 0xed, 0x85, 0xb4, 0x4d, 0x9f, 0x2f, 0x90, 0x09, 0x2b, - 0xcf, 0x07, 0xc3, 0x2a, 0xcf, 0xd3, 0xc7, 0x0e, 0x34, 0x59, 0xd9, 0x39, 0x56, 0xea, 0x9d, 0x8d, - 0x97, 0x7a, 0xbf, 0xef, 0x0a, 0xa7, 0xdf, 0x2b, 0x80, 0x33, 0x61, 0x3e, 0x5c, 0x6b, 0x74, 0x3d, - 0xa7, 0xe9, 0x74, 0x1a, 0x6d, 0xef, 0xc4, 0xc7, 0x58, 0xcf, 0x07, 0x65, 0x9e, 0x95, 0x44, 0x98, - 0x1d, 0x10, 0x2b, 0xab, 0xf1, 0xc0, 0xf3, 0xa0, 0x40, 0x86, 0xa0, 0x47, 0xf7, 0x9e, 0xcb, 0x58, - 0xcc, 0xf7, 0x9c, 0x0e, 0xd9, 0x44, 0x19, 0x2e, 0x3c, 0x07, 0x08, 0xfd, 0x20, 0x23, 0x5a, 0x0c, - 0x9b, 0x59, 0x2e, 0x14, 0xdb, 0x8d, 0x0b, 0x89, 0xdd, 0xf8, 0xfb, 0xc0, 0x4a, 0x27, 0x9a, 0x94, - 0xe9, 0x58, 0x76, 0xdb, 0x73, 0xbc, 0x23, 0x76, 0x82, 0xb4, 0xcc, 0xb5, 0x29, 0xac, 0x09, 0x6a, - 0x40, 0xe4, 0xbb, 0x70, 0x07, 0x3a, 0xe3, 0xb9, 0xf2, 0x45, 0xae, 0x37, 0xe5, 0xe1, 0x76, 0x9c, - 0x87, 0x30, 0x30, 0xcd, 0x4e, 0x40, 0x94, 0xe7, 0x74, 0x2f, 0x48, 0xb6, 0x3e, 0x97, 0x01, 0x6b, - 0x3c, 0x65, 0xce, 0x78, 0xfc, 0x33, 0xa3, 0x0f, 0x0f, 0x6e, 0x79, 0x06, 0x97, 0x78, 0x8b, 0x03, - 0x9d, 0x2c, 0x78, 0xad, 0x76, 0xd2, 0x28, 0x90, 0x0c, 0xd3, 0xf2, 0x0e, 0xef, 0x05, 0x19, 0x26, - 0xf9, 0x0d, 0x9f, 0x05, 0xf3, 0x9d, 0x56, 0xe3, 0xc8, 0xec, 0x3a, 0xed, 0x03, 0xcf, 0x6d, 0xfb, - 0x95, 0x67, 0x7f, 0x37, 0x39, 0x47, 0x1a, 0x30, 0x83, 0x93, 0xb4, 0x8b, 0x22, 0x5a, 0x4e, 0xa3, - 0x45, 0x11, 0xd9, 0x45, 0x0c, 0x02, 0x94, 0x19, 0x2c, 0x3d, 0x65, 0x06, 0xe9, 0x29, 0xf3, 0xc7, - 0xa3, 0x03, 0x35, 0x91, 0x0a, 0xe7, 0x7d, 0x63, 0x09, 0xe7, 0x71, 0xce, 0xd5, 0x52, 0xce, 0x9f, - 0x96, 0xfe, 0x37, 0xdd, 0x8d, 0x59, 0x18, 0x33, 0x13, 0x86, 0x27, 0xc8, 0x84, 0xb7, 0xc0, 0xf2, - 0xeb, 0x0d, 0xc7, 0x33, 0xfb, 0x6d, 0xcf, 0x69, 0x99, 0x8d, 0x76, 0xef, 0x75, 0xbb, 0x6b, 0x5b, - 0xc5, 0x65, 0x3a, 0xe4, 0x12, 0x69, 0xaa, 0x93, 0x16, 0x89, 0x35, 0xc0, 0x2a, 0xa0, 0xd5, 0x10, - 0xa2, 0x32, 0xd4, 0x62, 0x57, 0x27, 0xc8, 0xfa, 0x4e, 0xe1, 0x02, 0xeb, 0xab, 0xb2, 0xfc, 0xf1, - 0x83, 0xa0, 0xc0, 0xc5, 0xcc, 0xe2, 0x1a, 0x95, 0xd5, 0x4a, 0x38, 0x01, 0x39, 0x6a, 0xdb, 0xcd, - 0x60, 0x1e, 0x95, 0xa4, 0x5c, 0xbb, 0x60, 0x7d, 0xb8, 0x49, 0x4d, 0xe4, 0xe4, 0x1f, 0xe3, 0x84, - 0xae, 0xbc, 0x08, 0xe6, 0x4d, 0x5e, 0x22, 0xe5, 0x05, 0x30, 0xc7, 0x1f, 0x81, 0x94, 0x7e, 0x3f, - 0x03, 0x60, 0x5c, 0xe7, 0xe9, 0xc6, 0xf8, 0x45, 0xb0, 0x10, 0xf7, 0x98, 0xcc, 0xe5, 0x8b, 0x8f, - 0x6a, 0xf3, 0xbc, 0xbb, 0x94, 0x71, 0xec, 0xd3, 0x1a, 0xea, 0x6a, 0xb3, 0xc3, 0x5d, 0xed, 0x48, - 0xd7, 0xfd, 0x1e, 0x2e, 0x2c, 0x38, 0x41, 0x02, 0x31, 0xf7, 0xa8, 0x16, 0x44, 0x06, 0x45, 0x0e, - 0x83, 0x84, 0x62, 0x95, 0xbe, 0x24, 0x80, 0x73, 0xc1, 0x75, 0xea, 0xf4, 0x48, 0x36, 0x8c, 0xbf, - 0xcc, 0x98, 0xfc, 0x65, 0x13, 0xfc, 0x5d, 0x00, 0x85, 0xe0, 0x5a, 0x37, 0x09, 0x5b, 0x3e, 0xfb, - 0x20, 0x00, 0x19, 0xee, 0xa0, 0x0b, 0xcb, 0xa5, 0xb8, 0xb0, 0x5e, 0xe4, 0x96, 0x92, 0x09, 0xcf, - 0xc8, 0xe9, 0x3c, 0xae, 0x63, 0x4a, 0x3a, 0x95, 0xe9, 0x09, 0x9d, 0xca, 0xe3, 0xe8, 0x66, 0xe9, - 0xc7, 0x0b, 0xa0, 0xa0, 0x2b, 0x35, 0xba, 0x74, 0x44, 0xe7, 0x4a, 0x60, 0x26, 0x58, 0x66, 0x5f, - 0xd9, 0xf2, 0x8f, 0x6a, 0xd3, 0x4d, 0x7f, 0x8d, 0xfd, 0xbf, 0x16, 0xbc, 0x0c, 0x66, 0xc3, 0x24, - 0x84, 0x12, 0x2c, 0x83, 0x47, 0xb5, 0x19, 0x8f, 0x65, 0x20, 0xec, 0x87, 0x05, 0x3f, 0x08, 0xc4, - 0x81, 0xec, 0x5b, 0xa4, 0xe8, 0x4b, 0x8f, 0x6a, 0x0b, 0x56, 0x3c, 0xf5, 0x8e, 0x7f, 0x5b, 0x70, - 0x0d, 0x4c, 0x77, 0xed, 0x03, 0x62, 0xf1, 0x4b, 0xfe, 0x1b, 0x12, 0xff, 0x6b, 0xb4, 0x9e, 0x96, - 0xc0, 0x0c, 0x6d, 0x0c, 0x75, 0x94, 0x30, 0x4f, 0x20, 0x84, 0x79, 0xfa, 0x77, 0xb8, 0x6d, 0x4c, - 0x0d, 0xd7, 0xbd, 0x9f, 0x1c, 0x1e, 0xdc, 0x21, 0x55, 0x94, 0x6b, 0xbc, 0x3f, 0x0d, 0x44, 0xf9, - 0xae, 0x05, 0xf3, 0x4d, 0x40, 0x73, 0x58, 0xb3, 0xdf, 0x75, 0x98, 0xae, 0x2c, 0xf2, 0xe3, 0xd7, - 0xbb, 0x0e, 0x9e, 0x21, 0x08, 0xf5, 0xae, 0x03, 0x9f, 0x01, 0xd3, 0x9e, 0x4b, 0x31, 0x67, 0xd2, - 0x31, 0xa7, 0x3c, 0x97, 0xe0, 0x3d, 0x1d, 0xab, 0x76, 0xe4, 0x37, 0x32, 0x57, 0x04, 0x9a, 0x09, - 0x70, 0x55, 0x8d, 0xa7, 0x01, 0xe8, 0x79, 0x8d, 0x2e, 0x43, 0x01, 0x11, 0x0a, 0x83, 0x4a, 0x1e, - 0x3c, 0x07, 0x66, 0xed, 0xb6, 0xe5, 0x23, 0x14, 0x42, 0x84, 0x19, 0x0a, 0x93, 0x3c, 0xf8, 0x21, - 0x20, 0xb2, 0x78, 0x65, 0xde, 0xb3, 0x1b, 0x5e, 0xbf, 0x6b, 0xfb, 0xd7, 0x60, 0x17, 0xb8, 0x3d, - 0xa8, 0xae, 0xd4, 0xb6, 0xfd, 0x36, 0xbc, 0xc8, 0x90, 0xd9, 0x77, 0x0f, 0xbe, 0x02, 0x16, 0xfc, - 0xc0, 0x49, 0x4f, 0x21, 0x88, 0x6e, 0xa4, 0xdc, 0x6f, 0xa5, 0x71, 0x32, 0x40, 0xc0, 0xf3, 0x4d, - 0xfe, 0x13, 0xbe, 0x08, 0x0a, 0x94, 0x02, 0x7b, 0x9e, 0x34, 0x3b, 0xf8, 0x98, 0x89, 0x74, 0xf7, - 0x1f, 0x34, 0x61, 0xd0, 0x0c, 0x7f, 0xc3, 0x12, 0x98, 0x8f, 0xe4, 0x63, 0xb6, 0x7b, 0x34, 0x0e, - 0x09, 0xb8, 0x10, 0x8a, 0x47, 0xa5, 0x38, 0x91, 0x80, 0x08, 0xce, 0x53, 0x3e, 0x4e, 0x28, 0x1f, - 0xb5, 0x47, 0x12, 0xec, 0x40, 0x42, 0x04, 0xa3, 0x48, 0x31, 0xf2, 0x4c, 0x40, 0x6a, 0x0f, 0x6e, - 0xd3, 0x1d, 0x77, 0xd3, 0x6d, 0xb7, 0xed, 0xa6, 0x67, 0x76, 0xed, 0x46, 0x2f, 0x2c, 0x5f, 0x45, - 0xb3, 0x94, 0x43, 0x0c, 0x4c, 0x11, 0xb0, 0x68, 0x25, 0x20, 0xc4, 0xe0, 0xed, 0x6e, 0xd7, 0xed, - 0xd2, 0x5c, 0x2d, 0x8f, 0xfd, 0x0f, 0xf8, 0x32, 0x10, 0xb9, 0xe9, 0x9b, 0xf4, 0x41, 0xd7, 0x32, - 0xd5, 0x0b, 0x38, 0xf8, 0xa0, 0x0b, 0x2f, 0x44, 0xf3, 0xaf, 0xb8, 0x16, 0xf5, 0xb2, 0x8d, 0xbe, - 0xe5, 0xb8, 0xb4, 0x5f, 0x93, 0x6e, 0x2a, 0xf2, 0x18, 0x50, 0x10, 0x69, 0x6f, 0xc2, 0xab, 0x29, - 0x09, 0xc7, 0xaa, 0xff, 0x2c, 0x25, 0x99, 0x53, 0x5c, 0x02, 0x0b, 0x9d, 0x66, 0xa3, 0x63, 0xde, - 0x73, 0x5a, 0xb6, 0xd9, 0x72, 0xda, 0x0f, 0x8a, 0xa7, 0x29, 0xe2, 0x1c, 0x81, 0x6e, 0x3b, 0x2d, - 0xbb, 0xea, 0xb4, 0x1f, 0xc0, 0x17, 0xc1, 0x1c, 0xe5, 0xb7, 0xe9, 0xb6, 0x3d, 0xfb, 0x0d, 0xaf, - 0xb8, 0x4e, 0xad, 0x6d, 0x65, 0xc0, 0x33, 0x4a, 0xed, 0x23, 0x4c, 0x17, 0xb6, 0xe2, 0x23, 0xc2, - 0x1b, 0x60, 0xbe, 0xc3, 0x5e, 0x01, 0x99, 0x4e, 0xfb, 0x9e, 0x5b, 0x3c, 0x43, 0x67, 0x39, 0xf8, - 0x46, 0xc8, 0x3f, 0xbc, 0xe9, 0xf0, 0x4f, 0x8f, 0x12, 0xc1, 0xee, 0xec, 0xc8, 0x60, 0xf7, 0xe4, - 0x32, 0x8c, 0xd2, 0x67, 0x05, 0x7a, 0x78, 0x17, 0x84, 0x1a, 0xca, 0xcb, 0x16, 0x17, 0xd8, 0x62, - 0x3b, 0xbe, 0x00, 0x4a, 0x76, 0x7c, 0xe1, 0x6f, 0x8b, 0xf7, 0xde, 0xd9, 0x61, 0xde, 0xfb, 0xd8, - 0x60, 0xf9, 0x22, 0x28, 0x46, 0x83, 0xb6, 0x1d, 0xcf, 0xe1, 0xd4, 0x3e, 0x47, 0x15, 0x76, 0x35, - 0x1c, 0x32, 0x68, 0xa6, 0xca, 0xcb, 0x77, 0x6c, 0xba, 0x87, 0x9d, 0x96, 0x1d, 0x75, 0x9c, 0x8a, - 0x77, 0xac, 0x04, 0xcd, 0xb4, 0x63, 0x05, 0x2c, 0x86, 0x1d, 0x99, 0x69, 0xfa, 0x55, 0xb6, 0xf5, - 0x81, 0x3a, 0x08, 0x09, 0xc2, 0x4c, 0x3d, 0xbd, 0xd8, 0x77, 0xa4, 0xf2, 0x33, 0xbc, 0xca, 0xcb, - 0x60, 0x25, 0x41, 0xda, 0x57, 0xfb, 0xd9, 0xa1, 0x6a, 0x0f, 0xe3, 0x74, 0x89, 0x6a, 0x97, 0x7e, - 0x22, 0x03, 0xa6, 0x7d, 0x87, 0x49, 0xb6, 0x52, 0xfd, 0x9e, 0xdd, 0x65, 0x6b, 0x4a, 0x7f, 0x13, - 0x18, 0xad, 0x30, 0xb0, 0x5b, 0x96, 0xe4, 0x37, 0x7d, 0xc1, 0xd6, 0x61, 0xd2, 0xcd, 0x3a, 0x1d, - 0x82, 0x43, 0x0b, 0x3c, 0x44, 0x82, 0xf3, 0x98, 0xfe, 0x3e, 0xd1, 0xe5, 0xc7, 0x92, 0x0e, 0x0a, - 0x5c, 0xd2, 0x4b, 0xe8, 0x36, 0xa3, 0xdc, 0x89, 0xfe, 0x86, 0x45, 0x30, 0x13, 0x94, 0x9d, 0x7c, - 0x96, 0x82, 0x4f, 0x2e, 0xac, 0x0a, 0x7c, 0x58, 0xdd, 0xfc, 0xf6, 0x0a, 0x98, 0x8f, 0x3d, 0xe5, - 0x84, 0x6b, 0x34, 0x25, 0x35, 0x75, 0x43, 0x32, 0xea, 0xba, 0x59, 0x57, 0x6f, 0xaa, 0xda, 0x6d, - 0x55, 0x3c, 0x05, 0x57, 0x69, 0x3d, 0x2c, 0x80, 0x1b, 0x78, 0x5f, 0x51, 0x77, 0x44, 0x0b, 0x3e, - 0x15, 0x43, 0xc7, 0x8a, 0xba, 0x43, 0xe0, 0x5f, 0xcf, 0xc0, 0xa7, 0xc1, 0x59, 0xae, 0xa1, 0x22, - 0x55, 0xab, 0xa6, 0xa2, 0x9b, 0xdb, 0x1a, 0xbe, 0x2d, 0x61, 0x19, 0xc9, 0xe2, 0x37, 0x32, 0x70, - 0x2d, 0x46, 0xf2, 0xd5, 0x3a, 0xaa, 0x23, 0x59, 0xfc, 0x66, 0x06, 0x6e, 0x80, 0x33, 0x1c, 0x5c, - 0x47, 0xba, 0xae, 0x68, 0xaa, 0x59, 0xc3, 0xda, 0x0e, 0x46, 0xba, 0x2e, 0x7e, 0x2b, 0x03, 0x9f, - 0x05, 0x25, 0x0e, 0x03, 0x49, 0xb8, 0xba, 0x6f, 0xca, 0x8a, 0x54, 0xd5, 0x76, 0x4c, 0x03, 0xe1, - 0x3d, 0x45, 0x95, 0x0c, 0x24, 0x8b, 0xbf, 0x93, 0x81, 0x90, 0x4e, 0x2f, 0x40, 0xd4, 0x6e, 0x8a, - 0xbf, 0x9b, 0x81, 0x45, 0x7a, 0x1c, 0x15, 0xc0, 0xa4, 0x4a, 0x05, 0xd5, 0x08, 0xf6, 0xef, 0x65, - 0xe0, 0x05, 0xb0, 0xce, 0xb5, 0xa8, 0x9a, 0xa9, 0x6a, 0x86, 0xb2, 0xad, 0x54, 0x24, 0x43, 0xd1, - 0x54, 0xf1, 0x0f, 0x92, 0x9c, 0xed, 0xd5, 0xab, 0x86, 0x52, 0xab, 0x22, 0xb3, 0xb2, 0xab, 0x29, - 0x15, 0xa4, 0x8b, 0x5f, 0xce, 0x26, 0xa6, 0xbd, 0xa7, 0xdd, 0x42, 0xb2, 0x59, 0x43, 0x78, 0x4f, - 0x52, 0x91, 0x6a, 0x54, 0xf7, 0xc5, 0xaf, 0xa4, 0xa3, 0x18, 0x68, 0xaf, 0xa6, 0x61, 0x09, 0x2b, - 0xd5, 0x7d, 0xf1, 0xab, 0x59, 0x78, 0x9a, 0xde, 0x03, 0x0e, 0x17, 0x41, 0x47, 0x64, 0xf6, 0x77, - 0xf6, 0xc5, 0xaf, 0x65, 0xe1, 0x45, 0x70, 0x9e, 0xe7, 0xbe, 0x6a, 0x20, 0xac, 0x4a, 0x86, 0x72, - 0x0b, 0x99, 0x3a, 0xc2, 0xb7, 0x94, 0x0a, 0x12, 0xff, 0x3b, 0x0b, 0xcf, 0xd0, 0xab, 0x78, 0x01, - 0x52, 0x59, 0x92, 0x4d, 0x8c, 0x5e, 0xad, 0x23, 0xdd, 0x10, 0x7f, 0x5a, 0x80, 0x67, 0xc1, 0x53, - 0xb1, 0x15, 0x96, 0xea, 0xc6, 0xae, 0x86, 0x95, 0x8f, 0x22, 0x59, 0xfc, 0x94, 0x90, 0x98, 0x62, - 0x4d, 0xda, 0xdf, 0x43, 0xaa, 0x41, 0xbb, 0x2b, 0x18, 0xc9, 0xe2, 0xa7, 0x85, 0x04, 0x73, 0xdb, - 0x1a, 0x2e, 0x2b, 0xb2, 0x8c, 0x54, 0xf1, 0x67, 0x84, 0x84, 0x68, 0x55, 0xcd, 0xd8, 0xa6, 0xef, - 0xcd, 0x7e, 0x56, 0x80, 0x25, 0x70, 0x8e, 0x9f, 0x34, 0x32, 0x76, 0x35, 0x99, 0x20, 0x98, 0x52, - 0xb5, 0xaa, 0xdd, 0x46, 0xb2, 0xf8, 0x73, 0x02, 0x3c, 0x4f, 0x6f, 0x69, 0x70, 0xbd, 0xd9, 0xe2, - 0x48, 0xe5, 0x2a, 0x12, 0x7f, 0x5e, 0x48, 0x4c, 0x9d, 0x4a, 0xc4, 0x24, 0xcc, 0x47, 0xdc, 0x7d, - 0x46, 0x48, 0xac, 0x21, 0x9b, 0xb6, 0x69, 0x28, 0x7b, 0x48, 0xab, 0x1b, 0xe2, 0x2f, 0x24, 0x79, - 0xac, 0x68, 0xea, 0x76, 0x55, 0xa9, 0x18, 0xe2, 0x67, 0x05, 0xb8, 0x42, 0x1d, 0x71, 0xd0, 0xb2, - 0xa3, 0xa9, 0x48, 0xfc, 0xc5, 0x24, 0xc1, 0x2a, 0x52, 0x77, 0xf8, 0x11, 0x7f, 0x49, 0x80, 0x9b, - 0xe0, 0x72, 0x9c, 0xa0, 0xac, 0x10, 0x7d, 0x91, 0xaa, 0xe1, 0xe8, 0xdb, 0x92, 0x52, 0x45, 0xb2, - 0xf8, 0x39, 0x01, 0x5e, 0x01, 0x17, 0x53, 0xb8, 0x43, 0xaa, 0xa1, 0x18, 0xfb, 0xa6, 0xa1, 0x69, - 0x66, 0x55, 0xc2, 0x3b, 0x48, 0xfc, 0x65, 0x01, 0x5e, 0x02, 0x17, 0x52, 0x30, 0xeb, 0x58, 0xf1, - 0xd1, 0x34, 0x75, 0x47, 0xfc, 0x15, 0x01, 0x3e, 0x03, 0x9e, 0x8e, 0xad, 0xa5, 0x5e, 0xaf, 0xd5, - 0x34, 0x6c, 0x20, 0xd9, 0xdc, 0x43, 0xb2, 0x22, 0x99, 0xc6, 0x7e, 0x0d, 0x89, 0x9f, 0x17, 0xe0, - 0x35, 0xb0, 0x39, 0x48, 0x0d, 0xc9, 0x26, 0x96, 0xd4, 0x1d, 0x44, 0x45, 0xad, 0x4b, 0x86, 0xa2, - 0x6f, 0x2b, 0x54, 0xd6, 0x5f, 0x10, 0xe0, 0x55, 0x70, 0x69, 0xd0, 0x0d, 0x98, 0x18, 0xe9, 0x5a, - 0x1d, 0x57, 0x88, 0x3a, 0x2a, 0x1a, 0x56, 0x8c, 0x7d, 0xf1, 0x8b, 0x02, 0x3c, 0x07, 0x8a, 0x09, - 0x65, 0x43, 0x77, 0x0c, 0xa4, 0x12, 0xa3, 0x15, 0x7f, 0x35, 0xb9, 0xf2, 0x61, 0x53, 0x24, 0xc2, - 0x5f, 0x4b, 0x8a, 0x30, 0xb0, 0x78, 0x45, 0x35, 0x10, 0xbe, 0x25, 0x55, 0xe9, 0x8c, 0xf5, 0x3d, - 0xa9, 0x5a, 0x15, 0x7f, 0x3d, 0x49, 0x2f, 0x86, 0x53, 0xc6, 0x0a, 0xda, 0x16, 0x7f, 0x23, 0x29, - 0x66, 0xc2, 0x52, 0x55, 0xf3, 0xad, 0xd8, 0x54, 0xd4, 0x6d, 0x0d, 0xef, 0xf9, 0x16, 0xfd, 0xb6, - 0x90, 0x30, 0x46, 0x82, 0x29, 0x55, 0x11, 0x36, 0xcc, 0x3d, 0xa4, 0xeb, 0xd2, 0x0e, 0x12, 0x7f, - 0x33, 0xa9, 0x76, 0xc4, 0x18, 0x15, 0x99, 0xad, 0xd8, 0x2e, 0x92, 0x64, 0x84, 0xc5, 0x2f, 0x27, - 0xe5, 0x55, 0xc3, 0xda, 0x2d, 0x45, 0x46, 0x26, 0x46, 0xdb, 0x08, 0x63, 0x84, 0xc3, 0x1e, 0xe2, - 0x57, 0x84, 0x84, 0x71, 0x6e, 0x57, 0xb5, 0xdb, 0x81, 0x82, 0x7c, 0x35, 0xb9, 0xec, 0x92, 0xaa, - 0xa9, 0xfb, 0x7b, 0x64, 0x24, 0x59, 0xd1, 0x03, 0x4b, 0xf9, 0x5a, 0x1a, 0xd7, 0x21, 0x4b, 0x64, - 0x7e, 0xe2, 0xd7, 0x85, 0x84, 0x8b, 0xe4, 0x35, 0xa3, 0x82, 0x30, 0xf3, 0x6a, 0x48, 0xfc, 0x46, - 0x12, 0x51, 0x51, 0x6f, 0x49, 0x55, 0x45, 0x1e, 0x98, 0xe2, 0x37, 0x05, 0xf8, 0x3c, 0x78, 0x8e, - 0xe7, 0x5b, 0xc1, 0xba, 0x61, 0xee, 0x6a, 0x35, 0xb3, 0x2a, 0x55, 0x6e, 0xea, 0xe1, 0xe3, 0x52, - 0x93, 0x0d, 0x24, 0x7e, 0x2b, 0x39, 0x99, 0x3d, 0xe9, 0x8e, 0x59, 0xc6, 0x48, 0x92, 0x8d, 0x5d, - 0x13, 0xdd, 0xa9, 0x20, 0x44, 0xc2, 0xc0, 0x6f, 0x27, 0x3d, 0x0e, 0x9d, 0x8c, 0xba, 0xad, 0x99, - 0x35, 0xa9, 0x72, 0x93, 0xac, 0xc0, 0x1f, 0x27, 0x1d, 0x43, 0x45, 0x53, 0x75, 0xe2, 0x93, 0x54, - 0x9f, 0xc2, 0x9f, 0x24, 0xa7, 0xc0, 0xf9, 0x52, 0xe2, 0xdd, 0x6e, 0x49, 0x4a, 0x95, 0x6a, 0xf5, - 0x3b, 0xc9, 0x29, 0xd0, 0xa0, 0x64, 0x60, 0x49, 0xd5, 0xa5, 0x0a, 0xd5, 0x0d, 0x59, 0x43, 0xbe, - 0xdf, 0x41, 0x77, 0x14, 0xdd, 0xd0, 0xc5, 0xbf, 0x4a, 0x2a, 0x77, 0x55, 0xd3, 0x6a, 0xa6, 0x8c, - 0x0c, 0x54, 0x21, 0x11, 0xe3, 0xaf, 0x93, 0xcd, 0x44, 0x07, 0xf7, 0x24, 0x75, 0x9f, 0x88, 0x45, - 0x17, 0xbf, 0x93, 0xd4, 0x55, 0x49, 0x96, 0x49, 0x00, 0x33, 0x15, 0xb5, 0xa2, 0xed, 0xd5, 0xaa, - 0xc8, 0x40, 0xe2, 0xdf, 0x24, 0xdd, 0xa9, 0xb4, 0x57, 0x56, 0x76, 0xea, 0x5a, 0x5d, 0x17, 0xff, - 0x36, 0xd9, 0x54, 0xae, 0xeb, 0x64, 0x39, 0x30, 0x12, 0xff, 0x2e, 0x49, 0x39, 0x74, 0x73, 0x51, - 0xf0, 0xfb, 0xfb, 0xa4, 0xe2, 0xc6, 0xfd, 0xa9, 0x4f, 0xe8, 0xbb, 0x03, 0x63, 0x10, 0xeb, 0xbd, - 0x85, 0x54, 0x43, 0xfc, 0x87, 0x61, 0xae, 0xb4, 0x86, 0x54, 0x99, 0xc4, 0xf8, 0x7f, 0x4a, 0xae, - 0x4b, 0x5d, 0x95, 0x51, 0x45, 0xa9, 0xed, 0x22, 0x4c, 0xc5, 0xfd, 0xcf, 0x02, 0x7c, 0x0e, 0x3c, - 0x13, 0x33, 0xeb, 0x4a, 0x9d, 0xf8, 0x0c, 0x53, 0xda, 0xc1, 0x08, 0xc5, 0xc3, 0xca, 0xbf, 0x08, - 0xf0, 0x32, 0xd8, 0x48, 0xda, 0x35, 0xf1, 0xa1, 0x24, 0xaa, 0x21, 0x6c, 0x22, 0x8c, 0x35, 0x2c, - 0xfe, 0x9b, 0x30, 0x10, 0xa3, 0x0d, 0x53, 0x21, 0xb2, 0x24, 0xe4, 0x90, 0x2c, 0xfe, 0xbb, 0x90, - 0x12, 0xfb, 0x76, 0x24, 0x03, 0xdd, 0x96, 0xf6, 0xc5, 0xff, 0x48, 0x8a, 0x84, 0x45, 0xcc, 0x98, - 0x96, 0x7c, 0x2f, 0x39, 0x04, 0xeb, 0x1d, 0x86, 0x90, 0xff, 0x4c, 0xb2, 0x7a, 0x0b, 0x61, 0xea, - 0xae, 0xa8, 0x17, 0x0d, 0xac, 0x4c, 0xfc, 0xaf, 0xa4, 0x95, 0x32, 0x8f, 0xc2, 0x79, 0xf9, 0x1f, - 0xcd, 0x25, 0xfc, 0xf7, 0x4e, 0x55, 0x2b, 0x4b, 0x55, 0x7f, 0xa1, 0xd1, 0x2d, 0x84, 0xf7, 0x6f, - 0xd3, 0x55, 0xfa, 0xb3, 0x5c, 0x42, 0xd2, 0x0c, 0x4f, 0x46, 0x95, 0xaa, 0xa2, 0x22, 0xf1, 0xcf, - 0x73, 0x70, 0x0b, 0x5c, 0x4d, 0x69, 0x8f, 0xa9, 0xb3, 0x29, 0xa9, 0x8c, 0xde, 0x5f, 0xe4, 0x12, - 0x33, 0x60, 0xf8, 0x89, 0x88, 0xfb, 0xed, 0x5c, 0x52, 0x12, 0x3e, 0x5a, 0x5d, 0xbd, 0x2d, 0x51, - 0x61, 0xff, 0xe5, 0x10, 0x04, 0x8c, 0x3e, 0xe2, 0x1b, 0xc8, 0x3b, 0xb9, 0xcd, 0x07, 0xec, 0xbf, - 0x2a, 0x04, 0xe7, 0x97, 0x2c, 0xbd, 0xa4, 0x56, 0x47, 0x24, 0x45, 0x02, 0xb8, 0x16, 0xa5, 0x97, - 0x11, 0xbc, 0x2e, 0xd7, 0xc4, 0xcc, 0x20, 0xd8, 0xa8, 0xd4, 0xc4, 0x6c, 0x0a, 0xb8, 0xaa, 0x8b, - 0xc2, 0xa6, 0x0a, 0xc4, 0x64, 0x35, 0x1f, 0x42, 0xb0, 0x40, 0x50, 0x55, 0x8d, 0x79, 0x32, 0xdd, - 0x7f, 0x24, 0x4f, 0x60, 0x77, 0x42, 0x50, 0x06, 0x2e, 0xfb, 0xb1, 0x9f, 0x78, 0x84, 0x00, 0x98, - 0xdd, 0x74, 0x29, 0xb3, 0x89, 0x42, 0x39, 0x3c, 0xe7, 0xaf, 0x85, 0x1f, 0x60, 0x91, 0x5a, 0xc1, - 0xfb, 0x35, 0x83, 0xfa, 0x67, 0x22, 0xb4, 0x53, 0xf0, 0x8c, 0x9f, 0x5e, 0xc5, 0x9b, 0xa9, 0xef, - 0x16, 0x33, 0xe9, 0x7d, 0x99, 0x15, 0x88, 0xd9, 0xcd, 0x46, 0xf4, 0xef, 0x30, 0x8c, 0xa3, 0x8e, - 0x0d, 0x4f, 0x83, 0x55, 0x16, 0x4a, 0x30, 0x0d, 0xe5, 0x5c, 0x3e, 0xbe, 0x0e, 0xd6, 0xe2, 0x4d, - 0x81, 0xc5, 0x88, 0x99, 0xc1, 0x36, 0x12, 0x75, 0x69, 0x5b, 0x76, 0xf3, 0x75, 0x3a, 0xf7, 0xa8, - 0xdc, 0x41, 0x65, 0x59, 0x09, 0x32, 0x74, 0xe2, 0x99, 0x88, 0x71, 0x53, 0xfa, 0x04, 0x5c, 0x93, - 0xb0, 0xa1, 0x54, 0x94, 0x9a, 0xa4, 0x1a, 0xe6, 0x47, 0x34, 0x45, 0x45, 0xb2, 0x98, 0x81, 0x0b, - 0x00, 0x90, 0x36, 0xe2, 0x35, 0x6f, 0x21, 0x31, 0x0b, 0x57, 0x80, 0x48, 0xbe, 0x65, 0x45, 0xaf, - 0x68, 0xaa, 0xea, 0xaf, 0xbd, 0x00, 0xe7, 0x41, 0x9e, 0x40, 0x7d, 0xcb, 0xcd, 0x6d, 0x36, 0xe9, - 0x9a, 0xc5, 0x37, 0x73, 0xb0, 0x08, 0x56, 0x74, 0x43, 0xf7, 0x17, 0x72, 0x1b, 0x61, 0x53, 0x53, - 0x77, 0x34, 0x7f, 0xfc, 0xa7, 0xc0, 0x72, 0xac, 0x85, 0x85, 0xc8, 0x0c, 0x95, 0x2f, 0xdf, 0xa0, - 0xd7, 0x2b, 0x15, 0xa4, 0xeb, 0xdb, 0x75, 0x32, 0xbb, 0xab, 0x00, 0x44, 0x95, 0x24, 0x38, 0x0b, - 0x72, 0x2a, 0xc9, 0xe2, 0xe8, 0x8a, 0xdf, 0xc4, 0x8a, 0x5e, 0x33, 0x91, 0x4a, 0x96, 0x49, 0x16, - 0x33, 0x9b, 0xdb, 0x54, 0x59, 0x62, 0x65, 0x23, 0xb8, 0x08, 0x0a, 0x7a, 0x45, 0xe6, 0xa4, 0xcc, - 0x00, 0xd1, 0x3f, 0x53, 0x10, 0xc1, 0x1c, 0x01, 0x44, 0xff, 0x4a, 0xe1, 0xfa, 0x9f, 0x16, 0x80, - 0xa0, 0x2b, 0x35, 0x58, 0x03, 0x73, 0xfc, 0x1d, 0x77, 0x78, 0x36, 0x76, 0xcd, 0x26, 0x71, 0x15, - 0x7a, 0xfd, 0xdc, 0x90, 0x56, 0xff, 0x66, 0x44, 0x49, 0x78, 0x2b, 0x9b, 0x81, 0x1f, 0xe3, 0xfe, - 0x6d, 0x0e, 0x7f, 0x7f, 0x1c, 0x5e, 0x1e, 0x3c, 0x37, 0x4b, 0xb9, 0x0e, 0xbf, 0x3e, 0xf2, 0x02, - 0x3a, 0x34, 0xc1, 0x5a, 0xfa, 0xab, 0x4c, 0xf8, 0xcc, 0x20, 0xf9, 0xb4, 0xcb, 0xe9, 0xeb, 0xa3, - 0x6f, 0x83, 0x13, 0xf6, 0x53, 0xff, 0x15, 0x04, 0xc7, 0xfe, 0xa8, 0x7f, 0x15, 0x71, 0x3c, 0xfb, - 0xe9, 0xaf, 0x3f, 0x39, 0xf6, 0x47, 0x3e, 0x0f, 0x3d, 0x8e, 0xfd, 0x1f, 0x04, 0x70, 0xf0, 0xb1, - 0x07, 0x8c, 0x2e, 0x38, 0x0f, 0x7d, 0x57, 0xb2, 0x7e, 0x71, 0x24, 0x0e, 0xbb, 0xfb, 0xf2, 0xc3, - 0x60, 0x39, 0xe5, 0xa9, 0x06, 0x4c, 0xf6, 0x4d, 0xe5, 0xfc, 0xd2, 0x68, 0xa4, 0x68, 0x84, 0x94, - 0xd7, 0x0a, 0xdc, 0x08, 0xc3, 0x5f, 0x52, 0x70, 0x23, 0x8c, 0x7a, 0xf0, 0xd0, 0x0c, 0x9f, 0x75, - 0xc4, 0x27, 0x31, 0xd0, 0x3b, 0x75, 0x16, 0x97, 0x8f, 0xc1, 0x62, 0x83, 0xec, 0x80, 0x85, 0xf8, - 0x6b, 0x02, 0x78, 0x9e, 0x3b, 0x05, 0x4c, 0x79, 0x66, 0xb0, 0x9e, 0xfe, 0x8c, 0x24, 0x66, 0x4e, - 0xb1, 0xab, 0xf2, 0x97, 0xc7, 0xba, 0x96, 0xbc, 0x3e, 0xf2, 0x7a, 0x52, 0x4c, 0xdb, 0x87, 0x50, - 0x1f, 0x75, 0xd5, 0xf7, 0x18, 0xea, 0xd1, 0x5a, 0xc6, 0x68, 0x0f, 0xac, 0x65, 0x1a, 0xe5, 0x4b, - 0xa3, 0x91, 0x98, 0x98, 0x3f, 0xc6, 0x3d, 0xda, 0x18, 0xc2, 0xff, 0xa8, 0x7b, 0x57, 0xc7, 0xf0, - 0xbf, 0x0f, 0x56, 0xd2, 0x8e, 0xf8, 0x39, 0x4d, 0x19, 0x71, 0x03, 0x60, 0x3d, 0x76, 0x6e, 0x9d, - 0x3c, 0x2d, 0xbd, 0x03, 0xd6, 0xd2, 0x8f, 0xe9, 0x38, 0x47, 0x30, 0xf2, 0x1c, 0x6f, 0x7d, 0x6d, - 0xa0, 0xb0, 0x8c, 0x0e, 0x3b, 0xde, 0x51, 0x79, 0xfb, 0xa3, 0x17, 0x0f, 0x1c, 0xef, 0x7e, 0xff, - 0xee, 0x56, 0xd3, 0x3d, 0xbc, 0xc6, 0x68, 0xf9, 0xff, 0x77, 0xad, 0xe9, 0xb6, 0x02, 0xc0, 0x97, - 0xb2, 0xf3, 0x55, 0xe7, 0xa1, 0x7d, 0xd3, 0xaf, 0x2e, 0x7b, 0xee, 0x3f, 0x66, 0x17, 0xd8, 0xf7, - 0x8d, 0x1b, 0x14, 0x70, 0x77, 0x9a, 0x76, 0x79, 0xe1, 0x7f, 0x02, 0x00, 0x00, 0xff, 0xff, 0xcf, - 0x4d, 0x0f, 0x98, 0x2e, 0x4e, 0x00, 0x00, + // 5576 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x7c, 0xdb, 0x8f, 0xe3, 0xc8, + 0x75, 0xf7, 0x48, 0x54, 0x77, 0xab, 0x4b, 0x7d, 0x61, 0x57, 0xf7, 0xf4, 0x68, 0x34, 0xd7, 0xd5, + 0xcc, 0xee, 0xce, 0xf4, 0xae, 0x7b, 0xd6, 0xb3, 0xdf, 0xe7, 0x5d, 0xef, 0x3a, 0xb6, 0x29, 0xb1, + 0xba, 0x45, 0x8f, 0x9a, 0x94, 0x8b, 0xd4, 0xcc, 0xb4, 0xe1, 0x84, 0xd1, 0x88, 0x9c, 0x1e, 0x7a, + 0xd4, 0xa2, 0x2c, 0x51, 0xbb, 0xdb, 0x76, 0xf6, 0x21, 0x4f, 0xd9, 0x00, 0x41, 0x10, 0xdb, 0x49, + 0x1c, 0x27, 0x4e, 0x6c, 0x03, 0x89, 0xe3, 0x18, 0xb6, 0x01, 0x07, 0xbe, 0x04, 0xf3, 0x0f, 0x24, + 0xc8, 0x05, 0xc8, 0x4b, 0x2e, 0x40, 0x02, 0xc7, 0x89, 0x73, 0x71, 0x12, 0x24, 0x79, 0xc9, 0x15, + 0xc8, 0x43, 0x50, 0xc5, 0x22, 0x59, 0xa4, 0x28, 0xb5, 0xd4, 0x33, 0x0b, 0x18, 0xc9, 0x53, 0x8b, + 0xa7, 0x4e, 0x9d, 0x3a, 0x55, 0x75, 0x2e, 0xbf, 0xba, 0x35, 0x58, 0xeb, 0x38, 0xaf, 0xd9, 0x0f, + 0x1d, 0xcf, 0x1c, 0x38, 0xbd, 0xed, 0x5e, 0xdf, 0xf5, 0x5c, 0xb8, 0xc0, 0x48, 0xa5, 0xb3, 0x07, + 0xae, 0x7b, 0xd0, 0xb1, 0x6f, 0x50, 0xf2, 0xbd, 0xe1, 0xfd, 0x1b, 0xad, 0xee, 0x91, 0xcf, 0x53, + 0xba, 0x98, 0x2c, 0xb2, 0x86, 0xfd, 0x96, 0xe7, 0xb8, 0x5d, 0x56, 0x7e, 0x2e, 0x59, 0x6e, 0x1f, + 0xf6, 0xbc, 0xa0, 0xf2, 0xa5, 0x64, 0xa1, 0xe7, 0x1c, 0xda, 0x03, 0xaf, 0x75, 0xc8, 0x34, 0x28, + 0x6d, 0x04, 0x4a, 0x1d, 0xba, 0x96, 0xdd, 0x19, 0x30, 0x2a, 0x0c, 0xa8, 0x7d, 0xd7, 0x3d, 0x0c, + 0x39, 0xdd, 0x83, 0x03, 0xbb, 0x7f, 0xc3, 0xed, 0x91, 0xc6, 0x19, 0x67, 0x59, 0x03, 0x8b, 0xba, + 0xd2, 0xd0, 0xbd, 0x96, 0x37, 0x1c, 0xc0, 0x2d, 0x90, 0x6b, 0xbb, 0x96, 0x5d, 0xcc, 0x5c, 0xce, + 0x5c, 0x5b, 0xb9, 0xb9, 0xb9, 0xcd, 0xa4, 0x6c, 0x87, 0x1c, 0x55, 0xd7, 0xb2, 0x31, 0xe5, 0x81, + 0x9b, 0x60, 0x7e, 0x40, 0x69, 0xc5, 0xec, 0xe5, 0xcc, 0xb5, 0x45, 0xcc, 0xbe, 0xca, 0x9f, 0xce, + 0x81, 0xd3, 0xd5, 0xbe, 0xdd, 0xf2, 0x6c, 0x5d, 0x69, 0x18, 0xfd, 0x61, 0xf7, 0x21, 0xb6, 0x3f, + 0x3a, 0xb4, 0x07, 0x1e, 0x7c, 0x0e, 0xac, 0x39, 0xdd, 0x7b, 0xee, 0xb0, 0x6b, 0x99, 0x2d, 0xcb, + 0xea, 0xdb, 0x83, 0x81, 0x3d, 0x28, 0x66, 0x2e, 0x0b, 0xd7, 0x16, 0xb1, 0xc8, 0x0a, 0xa4, 0x80, + 0x0e, 0xaf, 0x03, 0xd1, 0x1d, 0x7a, 0x31, 0x6e, 0xd6, 0xd0, 0x6a, 0x40, 0x67, 0xcc, 0xf0, 0x59, + 0x10, 0x92, 0xcc, 0xee, 0xf0, 0xf0, 0x9e, 0xdd, 0x2f, 0x0a, 0x94, 0x73, 0x25, 0x20, 0xab, 0x94, + 0x0a, 0xdf, 0x05, 0x4e, 0x07, 0x0a, 0xf8, 0x7c, 0x03, 0xb3, 0x6f, 0x1f, 0xd8, 0x6f, 0x14, 0x73, + 0x44, 0x89, 0x4a, 0xb6, 0x98, 0xc1, 0xeb, 0x8c, 0xc1, 0xaf, 0x31, 0xc0, 0xa4, 0x98, 0x34, 0x90, + 0xa8, 0x57, 0x5c, 0xa4, 0x6a, 0xaf, 0xc4, 0xb9, 0xe1, 0x36, 0x08, 0x3a, 0x62, 0x0e, 0x07, 0x76, + 0xbf, 0xdb, 0x3a, 0xb4, 0x8b, 0x73, 0x44, 0x95, 0x8a, 0xf0, 0xa5, 0x46, 0x06, 0x07, 0x52, 0x9a, + 0xac, 0x8c, 0xe7, 0xef, 0xb5, 0x06, 0x83, 0xd7, 0xdd, 0xbe, 0x55, 0x9c, 0x1f, 0xe5, 0x6f, 0xb0, + 0x32, 0xf8, 0x02, 0x58, 0x0b, 0x7b, 0x1a, 0x36, 0xb0, 0x10, 0x55, 0x08, 0x87, 0x2c, 0x6c, 0x81, + 0xaf, 0x11, 0x36, 0x91, 0x4f, 0xa9, 0x11, 0xb6, 0x01, 0x41, 0x8e, 0x8a, 0x05, 0x74, 0x08, 0xe9, + 0x6f, 0xf8, 0x7e, 0x90, 0x3f, 0xb4, 0xbd, 0x96, 0xd5, 0xf2, 0x5a, 0xc5, 0x02, 0xad, 0x7c, 0xf5, + 0x4b, 0x8d, 0xcc, 0x6f, 0x36, 0x2e, 0xbe, 0xa7, 0x6f, 0x5b, 0xad, 0xb6, 0x67, 0x5b, 0x97, 0xaf, + 0x7d, 0xfc, 0xe3, 0x97, 0xb7, 0x75, 0xe7, 0x63, 0xf6, 0xe5, 0x37, 0xdf, 0xbc, 0x7c, 0xef, 0xc8, + 0xb3, 0x07, 0xd7, 0xdf, 0x8b, 0xc3, 0x5a, 0xaf, 0x64, 0x8b, 0x99, 0xf2, 0x4d, 0x90, 0xd7, 0x95, + 0x06, 0x31, 0xa1, 0x76, 0xd8, 0x4a, 0x86, 0x6b, 0x05, 0x82, 0x5c, 0xbf, 0xe5, 0xd9, 0x74, 0x9a, + 0x97, 0x31, 0xfd, 0x5d, 0xfe, 0x62, 0x06, 0xac, 0xe8, 0x4a, 0x63, 0xcf, 0xb6, 0x9c, 0x56, 0xd5, + 0xed, 0xde, 0x77, 0x0e, 0xe0, 0xf3, 0x00, 0xba, 0xdd, 0xce, 0x91, 0xd9, 0x71, 0x06, 0x9e, 0x6d, + 0x99, 0xc4, 0x18, 0xdb, 0x03, 0x2a, 0x28, 0x8f, 0x45, 0x52, 0x52, 0xa7, 0x05, 0xb4, 0x1d, 0x62, + 0x47, 0xf3, 0x8c, 0x23, 0x7b, 0x59, 0xb8, 0x56, 0xb8, 0xb9, 0xc6, 0x1b, 0x35, 0xe5, 0xc1, 0x8c, + 0x01, 0xbe, 0x0a, 0x80, 0xdd, 0x6d, 0xf7, 0x8f, 0xa8, 0x7f, 0x50, 0x13, 0x5a, 0xb9, 0x79, 0x8e, + 0x67, 0xa7, 0x5a, 0xa0, 0x90, 0x05, 0x73, 0xec, 0xe5, 0xb7, 0x32, 0x60, 0xa9, 0xd1, 0x77, 0x5f, + 0x73, 0x2c, 0xbb, 0xaf, 0x74, 0xef, 0xbb, 0x70, 0x05, 0x64, 0x1d, 0x8b, 0xf5, 0x2f, 0xeb, 0x44, + 0xe3, 0x9a, 0xe5, 0x7a, 0x7c, 0x1d, 0xe4, 0xbc, 0xa3, 0x9e, 0xcd, 0xda, 0x3a, 0x1d, 0xb6, 0x15, + 0x08, 0x32, 0x8e, 0x7a, 0x36, 0xa6, 0x2c, 0xc4, 0x1f, 0x7a, 0x7d, 0xfb, 0x35, 0xbb, 0xeb, 0x99, + 0x5e, 0xbf, 0xd5, 0x1d, 0xdc, 0xb7, 0xfb, 0xc5, 0x1c, 0xed, 0xf3, 0x2a, 0xa3, 0x1b, 0x8c, 0x5c, + 0xfe, 0x97, 0x39, 0xb0, 0x14, 0xf8, 0x1e, 0x55, 0xe5, 0x06, 0x58, 0x1a, 0x38, 0x3d, 0xd3, 0x23, + 0x04, 0x33, 0x50, 0xaa, 0xb2, 0xfc, 0xa8, 0x01, 0x06, 0x4e, 0xcf, 0x67, 0x93, 0x71, 0xf4, 0xdb, + 0x82, 0x2f, 0x82, 0xdc, 0x43, 0xa7, 0x6b, 0x15, 0x57, 0xa8, 0x5e, 0x97, 0xf8, 0x31, 0x08, 0xa5, + 0x6e, 0xd3, 0x5f, 0xb7, 0x9c, 0xae, 0x85, 0x29, 0x73, 0xba, 0x7b, 0x67, 0x67, 0x70, 0x6f, 0x61, + 0x6a, 0xf7, 0xce, 0xa5, 0xba, 0xf7, 0x8b, 0x60, 0x91, 0x0e, 0x4d, 0xcf, 0xed, 0x7b, 0xc5, 0xe5, + 0xc4, 0x90, 0x52, 0xd5, 0x59, 0x21, 0x8e, 0xf8, 0xc6, 0xc7, 0x84, 0xb9, 0x99, 0x63, 0x02, 0x98, + 0x3a, 0x26, 0xcc, 0xcf, 0x18, 0x13, 0x16, 0x66, 0x8d, 0x09, 0xf9, 0x99, 0x63, 0xc2, 0xe2, 0x34, + 0x31, 0xa1, 0x30, 0x26, 0x26, 0x2c, 0x9d, 0x24, 0x26, 0x94, 0x65, 0xb0, 0x18, 0xda, 0x10, 0x14, + 0xc1, 0x92, 0x81, 0x9b, 0xea, 0x2d, 0xb3, 0x8e, 0x76, 0xa5, 0xea, 0xbe, 0x78, 0x0a, 0xae, 0x81, + 0x65, 0x9f, 0xa2, 0xa8, 0x15, 0xad, 0xa9, 0xca, 0x62, 0x06, 0x42, 0xb0, 0xe2, 0x93, 0xb4, 0xa6, + 0xe1, 0xd3, 0xb2, 0x34, 0xb2, 0x60, 0x70, 0x3e, 0x4c, 0x39, 0x8a, 0x3f, 0x3e, 0xb1, 0xcc, 0x73, + 0x13, 0xcc, 0x51, 0xe3, 0xa7, 0x96, 0x5f, 0xb8, 0x79, 0x9e, 0xb7, 0x0a, 0x9e, 0x9f, 0xd8, 0x35, + 0xf6, 0x59, 0xcb, 0x7f, 0x90, 0x01, 0xe7, 0x9b, 0x3d, 0x6b, 0xbc, 0xd0, 0x99, 0xbd, 0xea, 0x65, + 0xb0, 0xd0, 0xb7, 0x7b, 0x9d, 0x56, 0xdb, 0x0f, 0x02, 0xc7, 0xe8, 0x51, 0x3b, 0x85, 0x03, 0x76, + 0xf8, 0x32, 0x98, 0x1f, 0x52, 0x55, 0xa8, 0x8f, 0x14, 0x6e, 0x5e, 0x1c, 0x57, 0xd1, 0x57, 0xb8, + 0x76, 0x0a, 0x33, 0xfe, 0x4a, 0x1e, 0xcc, 0xb7, 0xda, 0x34, 0x40, 0x7d, 0x0e, 0x80, 0xf5, 0x94, + 0x66, 0x66, 0xef, 0x46, 0x5a, 0x20, 0xe3, 0x8d, 0x41, 0x38, 0x89, 0x31, 0xc0, 0x22, 0x58, 0x08, + 0xfc, 0x88, 0x66, 0x63, 0x1c, 0x7c, 0x92, 0xb8, 0xd2, 0xea, 0x74, 0xdc, 0xd7, 0x6d, 0x3e, 0xae, + 0xcc, 0xf9, 0x71, 0x85, 0x15, 0x44, 0x71, 0xe5, 0x59, 0xb0, 0x1a, 0x30, 0x07, 0xe2, 0xe6, 0x7d, + 0xb7, 0x64, 0xe4, 0xc0, 0x2d, 0xaf, 0x81, 0xe5, 0xd6, 0xd0, 0x7b, 0x90, 0x9a, 0x46, 0x97, 0x48, + 0x49, 0xe8, 0x2e, 0x01, 0x67, 0x5a, 0xfa, 0xa4, 0x9c, 0xa1, 0x9b, 0x38, 0x60, 0xe1, 0x81, 0xdd, + 0xb2, 0x02, 0x7c, 0x50, 0xb8, 0x79, 0x7d, 0xd2, 0x04, 0x6f, 0xd7, 0x7c, 0x5e, 0xd4, 0xf5, 0xfa, + 0x47, 0x53, 0x8e, 0x57, 0x20, 0x1f, 0x3a, 0xe0, 0x34, 0xfb, 0x69, 0x7a, 0xae, 0xd9, 0xf2, 0xbc, + 0xbe, 0x73, 0x6f, 0xe8, 0xd9, 0x7e, 0x10, 0x2a, 0xdc, 0xfc, 0xff, 0xd3, 0x34, 0x6c, 0xb8, 0x52, + 0x58, 0x8f, 0x2a, 0x81, 0xd7, 0x1f, 0x8c, 0x96, 0x90, 0xa6, 0x22, 0xf9, 0xa4, 0xb5, 0xa0, 0x8f, + 0x2b, 0x53, 0x34, 0x15, 0xc9, 0x31, 0x5c, 0xbe, 0xbf, 0x78, 0xbd, 0x35, 0x5a, 0x02, 0x2b, 0x24, + 0xa8, 0xb6, 0x3b, 0x43, 0xcb, 0x0e, 0x1b, 0x59, 0xa5, 0x71, 0xfc, 0x2c, 0xdf, 0x88, 0xcf, 0xad, + 0xf9, 0x30, 0x96, 0xc4, 0x5b, 0x5a, 0x83, 0x93, 0xd1, 0x77, 0xba, 0x07, 0x4e, 0xf7, 0xc0, 0x24, + 0x58, 0xd9, 0x1d, 0x7a, 0x34, 0x6c, 0x15, 0x6e, 0x9e, 0xdd, 0xf6, 0xb1, 0xf4, 0x76, 0x80, 0xa5, + 0xb7, 0x65, 0x06, 0xc4, 0xf1, 0x0a, 0xab, 0x61, 0xf8, 0x15, 0x20, 0x02, 0x6b, 0x87, 0xad, 0x37, + 0xcc, 0x76, 0xab, 0xd3, 0x31, 0x03, 0xb4, 0x4e, 0x83, 0xdc, 0x44, 0x29, 0xab, 0x87, 0xad, 0x37, + 0xaa, 0xad, 0x4e, 0x27, 0x20, 0xc0, 0x2b, 0x60, 0xf9, 0x61, 0xdf, 0x19, 0xf4, 0x4c, 0xbb, 0xdb, + 0xba, 0xd7, 0xb1, 0x2d, 0x9a, 0x94, 0xf2, 0x78, 0x89, 0x12, 0x91, 0x4f, 0x83, 0x3b, 0x40, 0x3c, + 0x24, 0xb8, 0xc2, 0xe4, 0xb0, 0x87, 0x78, 0x3c, 0xf6, 0x58, 0x3d, 0x8c, 0x13, 0xe0, 0xbb, 0x01, + 0x68, 0xd3, 0x18, 0x68, 0x99, 0x2d, 0xaf, 0xb8, 0x46, 0x95, 0x2d, 0x8d, 0x28, 0x6b, 0x04, 0xcb, + 0x07, 0xbc, 0xc8, 0xb8, 0x25, 0x8f, 0x54, 0xf5, 0xc3, 0x05, 0xad, 0x0a, 0x8f, 0xaf, 0xca, 0xb8, + 0x25, 0xaf, 0xf4, 0x0a, 0x58, 0xe2, 0xa7, 0x15, 0x8a, 0x40, 0x78, 0x68, 0x1f, 0x31, 0xd8, 0x43, + 0x7e, 0xc2, 0x0d, 0x30, 0xf7, 0x5a, 0xab, 0x33, 0x0c, 0xe2, 0x85, 0xff, 0xf1, 0x4a, 0xf6, 0xe5, + 0x4c, 0x69, 0x07, 0x14, 0xc7, 0x59, 0xe2, 0xac, 0x72, 0xc6, 0x99, 0xd9, 0x2c, 0x72, 0xca, 0x9f, + 0xcf, 0x81, 0xd3, 0xa9, 0xf1, 0x14, 0xbe, 0x23, 0x0a, 0x4e, 0x7e, 0x06, 0x59, 0x0f, 0xa7, 0x86, + 0x80, 0x4d, 0x9f, 0x2b, 0x8a, 0x58, 0xef, 0x4f, 0x8b, 0x58, 0xd9, 0xf1, 0x15, 0x47, 0xc3, 0xd8, + 0x7b, 0x46, 0xc3, 0x98, 0x30, 0xbe, 0x7e, 0x32, 0xb6, 0xbd, 0x23, 0x19, 0xdb, 0x72, 0x61, 0xc4, + 0xaa, 0x9d, 0x8a, 0x47, 0xb7, 0xb7, 0x32, 0x99, 0x90, 0x3d, 0x0c, 0x70, 0xd1, 0x92, 0xa5, 0x96, + 0x08, 0x71, 0x84, 0xfd, 0x0c, 0x8b, 0xff, 0x14, 0xc4, 0xd4, 0xb2, 0x7e, 0x06, 0x20, 0x05, 0x88, + 0x4b, 0x02, 0x0b, 0xd3, 0x27, 0x81, 0x9a, 0x10, 0xa5, 0x01, 0x22, 0xe6, 0x56, 0x8a, 0x43, 0xe4, + 0x8f, 0x75, 0x88, 0x5a, 0x6e, 0xc4, 0x25, 0xde, 0xca, 0x64, 0x2a, 0x22, 0x58, 0x31, 0x63, 0x63, + 0x11, 0x51, 0x82, 0xee, 0x56, 0x16, 0xc0, 0x9c, 0x49, 0x8b, 0x0a, 0x60, 0xd1, 0x0c, 0x34, 0xa9, + 0xac, 0x83, 0x35, 0x33, 0xa9, 0x47, 0xd9, 0x00, 0x17, 0x42, 0xa0, 0xa1, 0x31, 0x94, 0x14, 0x03, + 0x05, 0x2f, 0xc6, 0x91, 0xc6, 0x05, 0x5e, 0xe3, 0x58, 0x05, 0x1e, 0x6a, 0xfc, 0x61, 0x06, 0x5c, + 0x08, 0xa1, 0x46, 0xaa, 0xd8, 0x99, 0x93, 0xf4, 0xbb, 0x93, 0x58, 0x63, 0xb2, 0x26, 0x3c, 0xd8, + 0x78, 0x77, 0x02, 0x6c, 0x5c, 0x1a, 0x5b, 0x73, 0x02, 0xda, 0x78, 0xb4, 0x08, 0x36, 0xd2, 0x1a, + 0xfa, 0x01, 0x82, 0x1b, 0xc1, 0xb2, 0xc3, 0x5f, 0x4c, 0x04, 0x9f, 0xf0, 0x06, 0x58, 0xb7, 0xec, + 0x81, 0xe7, 0x74, 0x69, 0x0c, 0x37, 0xdb, 0xee, 0x90, 0x04, 0x12, 0xba, 0x14, 0x5a, 0xc4, 0x90, + 0x2b, 0xaa, 0xfa, 0x25, 0xf1, 0x65, 0xc7, 0xdc, 0x94, 0xcb, 0x0e, 0x0e, 0xee, 0xcc, 0xc7, 0xe1, + 0xce, 0xdb, 0x01, 0x4c, 0x3e, 0x92, 0x04, 0x26, 0x5b, 0x13, 0xad, 0xe1, 0xb1, 0x90, 0xc9, 0x47, + 0x26, 0x23, 0x93, 0x77, 0x4d, 0xd5, 0xf2, 0x94, 0xd0, 0xe4, 0x23, 0xe3, 0xa0, 0x49, 0x61, 0x9a, + 0xb6, 0x1e, 0x1b, 0x9b, 0x2c, 0xcd, 0x8a, 0x4d, 0xd2, 0x72, 0xfd, 0xf2, 0x09, 0x72, 0xfd, 0x39, + 0xb0, 0x78, 0xbf, 0xef, 0x1e, 0x9a, 0x0f, 0xdc, 0x81, 0x47, 0x11, 0xd2, 0x22, 0xce, 0x13, 0x42, + 0xcd, 0x1d, 0x78, 0x09, 0x20, 0x20, 0x9e, 0x1c, 0x08, 0xac, 0xfd, 0x5f, 0x05, 0x02, 0x9f, 0x9c, + 0x03, 0x9b, 0xe9, 0xb1, 0x0e, 0x5e, 0x88, 0xe2, 0x06, 0x15, 0x45, 0x02, 0x27, 0x23, 0x90, 0xdc, + 0xf5, 0x32, 0x1f, 0x0b, 0xb2, 0x13, 0x62, 0x41, 0x2d, 0xc3, 0x45, 0x03, 0x52, 0xf3, 0xff, 0xa5, + 0x87, 0x9d, 0x45, 0x96, 0x64, 0x53, 0x02, 0x8f, 0x9f, 0xba, 0x17, 0xa6, 0xc0, 0x07, 0x61, 0x6c, + 0x99, 0x04, 0x0c, 0x84, 0xd9, 0x80, 0x41, 0xee, 0x38, 0x60, 0x30, 0xf7, 0xf8, 0xc0, 0x60, 0xfe, + 0x89, 0x00, 0x83, 0x85, 0x34, 0x60, 0x00, 0x2f, 0xf3, 0x2e, 0x44, 0xf7, 0x3a, 0x6b, 0xf9, 0xc8, + 0x89, 0x08, 0x74, 0x00, 0x20, 0x1f, 0xc0, 0xb7, 0xca, 0x12, 0x00, 0x66, 0x38, 0x5d, 0x95, 0x4d, + 0xb0, 0x61, 0xa6, 0x4c, 0xd6, 0x13, 0x06, 0x1b, 0xb4, 0xd1, 0x50, 0xc7, 0x72, 0x1d, 0x9c, 0xdd, + 0xb5, 0xbd, 0x27, 0xb4, 0x17, 0x51, 0x6e, 0x80, 0x52, 0x9a, 0xb4, 0x41, 0xcf, 0xed, 0x0e, 0xec, + 0x13, 0xed, 0x97, 0xec, 0x05, 0x12, 0x9f, 0x08, 0x80, 0x29, 0x63, 0x70, 0x2e, 0x55, 0x1c, 0xd3, + 0xf0, 0x44, 0x38, 0xab, 0x02, 0xd6, 0x89, 0x57, 0x24, 0xcf, 0x25, 0x9e, 0x05, 0xb9, 0x5e, 0xeb, + 0xc0, 0x1e, 0x81, 0xf6, 0x8d, 0xd6, 0x01, 0x9b, 0x61, 0x4c, 0x19, 0xe8, 0x56, 0xd3, 0x2e, 0xd8, + 0x88, 0xcb, 0x60, 0x0a, 0x3d, 0x07, 0xe6, 0x1c, 0xcf, 0x3e, 0xf4, 0x0f, 0x34, 0x0a, 0x49, 0xaf, + 0x0f, 0x15, 0xa1, 0x3c, 0x54, 0xd0, 0x8f, 0x81, 0x12, 0x13, 0x94, 0x36, 0xa1, 0x81, 0x4e, 0xc2, + 0x31, 0x3a, 0x91, 0x54, 0x10, 0x0c, 0x6a, 0x70, 0x98, 0x92, 0xf7, 0xfc, 0x31, 0x1c, 0xf0, 0x28, + 0x23, 0x1b, 0x43, 0x19, 0xe5, 0x0f, 0x82, 0x73, 0xa9, 0xad, 0x47, 0x06, 0xc0, 0xf7, 0xe6, 0x18, + 0x03, 0xa0, 0xac, 0xe5, 0x37, 0x43, 0x91, 0xa9, 0x16, 0xf0, 0x76, 0xf7, 0x48, 0x07, 0xe7, 0xd3, + 0x9b, 0x8f, 0x2c, 0x86, 0xef, 0xd2, 0x71, 0x16, 0xe3, 0xf7, 0xa9, 0x06, 0x4e, 0xcb, 0x76, 0xc7, + 0x1e, 0x3d, 0xcb, 0x9a, 0xd9, 0x9e, 0x77, 0xe8, 0xda, 0x52, 0x76, 0x06, 0xbd, 0x96, 0xd7, 0x7e, + 0x80, 0x87, 0x1d, 0x5b, 0x76, 0xfa, 0x76, 0xdb, 0x23, 0xdd, 0xed, 0xbb, 0xee, 0xa1, 0xc9, 0x1d, + 0x87, 0xe4, 0x09, 0x41, 0x25, 0x10, 0x4f, 0x04, 0x42, 0xcf, 0xe9, 0xb2, 0x0c, 0x45, 0x7e, 0x96, + 0x07, 0xe0, 0x6c, 0x42, 0x8e, 0xd2, 0xb5, 0x9c, 0xd7, 0x1c, 0x6b, 0xd8, 0xea, 0xc0, 0x4b, 0xa0, + 0x40, 0x65, 0xf5, 0xfa, 0xf6, 0x7d, 0xe7, 0x0d, 0x26, 0x0d, 0x10, 0x52, 0x83, 0x52, 0x46, 0xe5, + 0xc1, 0x2b, 0x60, 0xb9, 0xeb, 0x9a, 0xfd, 0x56, 0xd7, 0x72, 0x0f, 0xbb, 0xc1, 0x2e, 0x7c, 0x1e, + 0x2f, 0x75, 0x5d, 0x1c, 0xd2, 0xca, 0x0f, 0x46, 0x94, 0xaf, 0xb6, 0x3a, 0x1d, 0xdb, 0x3e, 0x49, + 0x83, 0xe7, 0xc1, 0xa2, 0xdf, 0x9a, 0xf3, 0x31, 0x9b, 0x35, 0x16, 0x11, 0xca, 0x5f, 0xc8, 0x82, + 0xd5, 0x44, 0x53, 0x10, 0x83, 0x0d, 0x8b, 0x7d, 0x9b, 0xfd, 0x61, 0xc7, 0x36, 0x2d, 0x3a, 0x72, + 0xcc, 0x5f, 0x63, 0x7b, 0xa1, 0xa3, 0xe3, 0x5b, 0x3b, 0x85, 0xa1, 0x35, 0x3a, 0xea, 0x3f, 0x02, + 0x8a, 0x71, 0x99, 0x4e, 0x38, 0x8a, 0x6c, 0xc1, 0x54, 0x1e, 0x27, 0x37, 0x1a, 0xef, 0xda, 0x29, + 0xbc, 0x69, 0xa5, 0xcf, 0xc4, 0x88, 0xce, 0x6d, 0x3a, 0x60, 0x69, 0xfb, 0xb7, 0xa3, 0xc3, 0x9a, + 0xd4, 0xd9, 0xa7, 0x56, 0xe6, 0x41, 0x8e, 0x88, 0x2a, 0x7f, 0x62, 0x8e, 0xdb, 0xee, 0xe6, 0x6b, + 0x07, 0xc6, 0x29, 0x81, 0xe5, 0x58, 0xe3, 0x34, 0xbf, 0x25, 0xbc, 0x38, 0xde, 0xa3, 0xfb, 0x2e, + 0x5e, 0xe2, 0x5b, 0x84, 0x2f, 0xf8, 0x6d, 0xb1, 0x31, 0x2e, 0x8e, 0xab, 0x49, 0xcf, 0x47, 0x28, + 0x27, 0xbc, 0xc4, 0xbb, 0x6d, 0x36, 0x3c, 0x3c, 0x89, 0x5c, 0x77, 0x1b, 0xac, 0x3d, 0x70, 0x2c, + 0xdb, 0xec, 0x3d, 0x70, 0xbb, 0x36, 0x7f, 0x50, 0x9b, 0xa7, 0x8c, 0xab, 0xa4, 0xb0, 0x41, 0xca, + 0xd8, 0x71, 0xce, 0x73, 0xa3, 0x27, 0x2c, 0xf3, 0xa1, 0xd8, 0xe4, 0x29, 0xcb, 0x26, 0xc3, 0x1e, + 0x3e, 0xa0, 0xa1, 0x5a, 0xd1, 0x35, 0x52, 0x85, 0x83, 0x1e, 0x3e, 0x7a, 0x79, 0xa6, 0x98, 0x99, + 0x71, 0xad, 0xf8, 0x26, 0x00, 0xdc, 0x32, 0x66, 0x21, 0xb1, 0xeb, 0x39, 0x69, 0x26, 0xb6, 0x13, + 0x68, 0x76, 0xea, 0xc6, 0xb9, 0x06, 0xe1, 0x95, 0xc8, 0xc7, 0x06, 0xb6, 0xc7, 0x16, 0x79, 0xa4, + 0x87, 0x81, 0x9f, 0x0d, 0x6c, 0x0f, 0xbe, 0x8f, 0x31, 0xb5, 0xe9, 0x19, 0x29, 0x85, 0x8d, 0x04, + 0xba, 0x07, 0x4a, 0x62, 0xd7, 0x3d, 0xf4, 0x8f, 0x4f, 0xd9, 0xde, 0x64, 0x24, 0xc0, 0x27, 0x97, + 0x7e, 0x08, 0xac, 0x3e, 0x06, 0xf4, 0x2e, 0x7f, 0x8f, 0x3f, 0x2d, 0x49, 0xb3, 0x49, 0x04, 0x36, + 0x48, 0xc0, 0x4c, 0x38, 0x5d, 0x10, 0x38, 0x37, 0x1e, 0x35, 0xd6, 0x06, 0x4e, 0x2f, 0x66, 0x94, + 0x32, 0x1e, 0x21, 0x1d, 0x77, 0x86, 0x92, 0x34, 0xea, 0xa9, 0xcf, 0x50, 0xf8, 0x8a, 0x13, 0x76, + 0x35, 0x3e, 0xb5, 0x40, 0xcf, 0x50, 0x92, 0xcd, 0x3c, 0xa9, 0xce, 0x3d, 0xcf, 0x9c, 0x2e, 0x3b, + 0xd9, 0xe9, 0x98, 0xc3, 0xc5, 0xf2, 0xa4, 0x90, 0xc8, 0x93, 0x5b, 0x69, 0xce, 0xc6, 0xce, 0x8b, + 0x93, 0x8e, 0x96, 0x72, 0x94, 0xb9, 0x90, 0x7a, 0x94, 0xc9, 0x25, 0xdf, 0xe5, 0xf8, 0xa6, 0x45, + 0xb0, 0x49, 0x33, 0x37, 0x66, 0x93, 0x66, 0xfe, 0x44, 0x9b, 0x34, 0xfd, 0x98, 0xe3, 0xe5, 0xa9, + 0xe3, 0x3d, 0x3f, 0x69, 0xbe, 0x47, 0xfc, 0xed, 0xea, 0xcc, 0xde, 0x76, 0x29, 0xee, 0x6d, 0x8b, + 0xb1, 0x8c, 0x46, 0x3c, 0xed, 0xd5, 0xb8, 0xa7, 0x81, 0xe3, 0x3c, 0x8d, 0xf7, 0x32, 0xf8, 0x0e, + 0x30, 0x47, 0x61, 0x3e, 0x5b, 0x96, 0x9f, 0x19, 0x59, 0xb7, 0xf8, 0x7c, 0xd8, 0xe7, 0x1a, 0x3d, + 0x40, 0x28, 0xa4, 0x1c, 0x20, 0x7c, 0x20, 0x65, 0x59, 0xb4, 0x74, 0xec, 0xb2, 0xc8, 0x8f, 0xb9, + 0x93, 0x0f, 0x11, 0x56, 0x4e, 0xbe, 0x77, 0xb0, 0x3a, 0xcb, 0xde, 0xc1, 0x63, 0xc6, 0x9e, 0x6f, + 0xe7, 0x46, 0xe0, 0x09, 0x5b, 0xad, 0xbf, 0x10, 0x87, 0x92, 0x63, 0x17, 0xc8, 0x91, 0xdf, 0xcc, + 0xe6, 0x82, 0xc1, 0x8a, 0x57, 0x60, 0x5b, 0x01, 0xa9, 0x2b, 0xde, 0xdc, 0x0c, 0x2b, 0xde, 0x4c, + 0x7c, 0xc5, 0xeb, 0xc5, 0x1c, 0x60, 0x8e, 0x3a, 0xc0, 0xf6, 0xe4, 0xb8, 0xf5, 0x04, 0x5c, 0x40, + 0x4b, 0x31, 0xa8, 0xf9, 0xa9, 0x0c, 0xaa, 0x96, 0x4d, 0x5d, 0x6b, 0x87, 0x56, 0xbf, 0x30, 0x8d, + 0xd5, 0x3f, 0xa6, 0x39, 0xcc, 0xb2, 0x9d, 0xff, 0xd3, 0x99, 0x70, 0x11, 0x96, 0x96, 0xb3, 0xa6, + 0x5e, 0xb2, 0x6c, 0x81, 0xb5, 0x64, 0xec, 0x0f, 0x96, 0x2e, 0xab, 0x31, 0x80, 0x68, 0x0d, 0xe2, + 0x61, 0x3b, 0x1b, 0x0f, 0xdb, 0xdc, 0xb2, 0x2c, 0xae, 0xcf, 0x14, 0xcb, 0xb2, 0x11, 0x40, 0xc7, + 0x96, 0x30, 0x36, 0x38, 0x1f, 0x2e, 0x61, 0xde, 0xbe, 0xc4, 0x5c, 0xfe, 0x7e, 0x0e, 0xac, 0x71, + 0x2b, 0x29, 0x16, 0xef, 0x4a, 0x20, 0xff, 0xc0, 0x1d, 0x78, 0xfc, 0xda, 0x26, 0xf8, 0x1e, 0xb7, + 0xd1, 0xbe, 0x30, 0xdd, 0x46, 0x7b, 0x76, 0xca, 0x8d, 0xf6, 0x91, 0xed, 0x74, 0x61, 0xea, 0xed, + 0xf4, 0xdc, 0xb8, 0xed, 0xf4, 0x83, 0x71, 0x5b, 0xdc, 0xbe, 0x87, 0xbe, 0x98, 0xb6, 0xb4, 0xf4, + 0x07, 0x64, 0xc6, 0xfd, 0xed, 0x83, 0x71, 0xfb, 0xdb, 0xf3, 0xc7, 0x36, 0x34, 0xdb, 0xe6, 0x76, + 0x6c, 0x43, 0x39, 0x1f, 0xdf, 0x50, 0xfe, 0x81, 0xdb, 0x9e, 0xfd, 0xf2, 0x12, 0x38, 0x17, 0xa2, + 0xee, 0x46, 0xab, 0xef, 0x39, 0x6d, 0xa7, 0xd7, 0xea, 0x7a, 0x27, 0x3e, 0x2c, 0x7b, 0x21, 0xd8, + 0x4c, 0xda, 0x48, 0x24, 0xf3, 0x91, 0x61, 0x65, 0x3b, 0x49, 0xf0, 0x22, 0x28, 0x90, 0x26, 0xe8, + 0x05, 0x01, 0xcf, 0x65, 0x2a, 0x2e, 0x0e, 0x9c, 0x1e, 0x59, 0xaa, 0x19, 0x2e, 0xbc, 0x00, 0x88, + 0xfc, 0x00, 0x77, 0xad, 0x86, 0xc5, 0x0c, 0x71, 0xc5, 0xd6, 0xfc, 0x42, 0x62, 0xcd, 0xff, 0x4e, + 0xb0, 0xd1, 0x8b, 0x3a, 0x65, 0x3a, 0x96, 0xdd, 0xf5, 0x1c, 0xef, 0x88, 0x9d, 0x53, 0xad, 0x73, + 0x65, 0x0a, 0x2b, 0x22, 0x11, 0x9b, 0xaf, 0xc2, 0x1d, 0x1b, 0x4d, 0x17, 0xfd, 0x57, 0xb9, 0xda, + 0x54, 0x87, 0x3b, 0x71, 0x1d, 0xc2, 0x5c, 0x96, 0x9f, 0x41, 0x28, 0xaf, 0xe9, 0x5e, 0x00, 0xe9, + 0x3e, 0x9b, 0x01, 0x9b, 0xbc, 0x64, 0xce, 0x79, 0xfc, 0x93, 0xa9, 0xf7, 0x8d, 0x2e, 0xac, 0x46, + 0xa7, 0x78, 0x9b, 0x23, 0x9d, 0x2c, 0xdf, 0x9d, 0xee, 0xa5, 0x49, 0x20, 0x38, 0xd6, 0xf2, 0x0e, + 0xef, 0x07, 0x38, 0x96, 0xfc, 0x86, 0xcf, 0x82, 0xe5, 0x5e, 0xa7, 0x75, 0x64, 0xf6, 0x9d, 0xee, + 0x81, 0xe7, 0x76, 0xfd, 0xfd, 0x6d, 0x7f, 0xcd, 0xba, 0x44, 0x0a, 0x30, 0xa3, 0x13, 0xb4, 0x46, + 0x19, 0x2d, 0xa7, 0xd5, 0xa1, 0x8c, 0xec, 0xba, 0x07, 0x21, 0xca, 0x8c, 0x96, 0x0e, 0xcc, 0x41, + 0x3a, 0x30, 0xff, 0x68, 0x74, 0x6c, 0x27, 0xd2, 0xc1, 0x79, 0xe7, 0x54, 0x83, 0xf3, 0x38, 0xa7, + 0x77, 0x29, 0xa7, 0x5c, 0x6b, 0xff, 0x9b, 0x6e, 0xe0, 0xac, 0x4c, 0x09, 0xa0, 0xe1, 0x09, 0x01, + 0x74, 0x08, 0x75, 0xce, 0x4c, 0x05, 0xf0, 0xb7, 0xc1, 0xfa, 0xeb, 0x2d, 0xc7, 0x33, 0x87, 0x5d, + 0xcf, 0xe9, 0x98, 0xad, 0xee, 0xe0, 0x75, 0xbb, 0x6f, 0x5b, 0xc5, 0x75, 0xaa, 0xe5, 0x1a, 0x29, + 0x6a, 0x92, 0x12, 0x89, 0x15, 0xc0, 0x3a, 0xa0, 0xdb, 0x34, 0xc4, 0xca, 0xa8, 0x93, 0x9f, 0x9e, + 0x01, 0x5b, 0x9e, 0xc2, 0x05, 0x56, 0x57, 0x65, 0x28, 0xf5, 0x55, 0x50, 0xe0, 0xd2, 0x6c, 0x71, + 0x93, 0xaa, 0xbc, 0x11, 0xaa, 0x2c, 0x47, 0x65, 0xb5, 0x0c, 0xe6, 0x59, 0xdf, 0xca, 0x64, 0x4a, + 0x35, 0x50, 0x1a, 0xef, 0x85, 0x33, 0xe5, 0x85, 0xc7, 0x38, 0x3a, 0xac, 0xac, 0x82, 0x65, 0x93, + 0x1f, 0x91, 0xca, 0x0a, 0x58, 0xe2, 0xcf, 0x66, 0xca, 0xbf, 0x97, 0x01, 0x30, 0xee, 0x26, 0x74, + 0xc5, 0xfe, 0x12, 0x58, 0x89, 0x07, 0x59, 0x96, 0x25, 0xc4, 0x47, 0x8d, 0x65, 0x3e, 0xc2, 0xca, + 0x38, 0xf6, 0x69, 0x8d, 0x8d, 0xce, 0xd9, 0xf1, 0xd1, 0x79, 0x62, 0xb4, 0x7f, 0x9e, 0xcb, 0x24, + 0x4e, 0x80, 0x39, 0x96, 0x1e, 0x35, 0x82, 0x64, 0xa2, 0xc8, 0x61, 0x5e, 0x51, 0xac, 0xf2, 0x97, + 0x05, 0x70, 0x21, 0xb8, 0xe7, 0x9d, 0x9e, 0xfc, 0xc6, 0xe9, 0x97, 0x99, 0x52, 0xbf, 0x6c, 0x42, + 0xbf, 0x4b, 0xa0, 0x10, 0xdc, 0x37, 0x27, 0x99, 0xce, 0x57, 0x1f, 0x04, 0x24, 0xc3, 0x1d, 0x8d, + 0x7a, 0xb9, 0x94, 0xa8, 0x37, 0x88, 0x22, 0x59, 0x12, 0x23, 0x4d, 0xec, 0xce, 0xe3, 0xc6, 0xb2, + 0x64, 0x1c, 0x9a, 0x9f, 0x31, 0x0e, 0x3d, 0x8e, 0x6d, 0x96, 0x7f, 0xa2, 0x00, 0x0a, 0xba, 0xd2, + 0xa0, 0x53, 0x47, 0x6c, 0xae, 0x0c, 0x16, 0x82, 0x69, 0xf6, 0x8d, 0x6d, 0xf1, 0x51, 0x63, 0xbe, + 0xed, 0xcf, 0xb1, 0xff, 0xd7, 0x82, 0x4f, 0x83, 0x7c, 0x88, 0x5b, 0xa8, 0xc0, 0x0a, 0x78, 0xd4, + 0x58, 0xf0, 0x18, 0x68, 0x61, 0x3f, 0x2c, 0xf8, 0x2a, 0x10, 0x47, 0x00, 0xbb, 0x48, 0xd9, 0xd7, + 0x1e, 0x35, 0x56, 0xac, 0x38, 0x5a, 0x8f, 0x7f, 0x5b, 0x70, 0x13, 0xcc, 0xf7, 0xed, 0x03, 0xe2, + 0xf1, 0x6b, 0xfe, 0xcb, 0x1d, 0xff, 0x6b, 0xb2, 0x9d, 0x96, 0xc1, 0x02, 0x2d, 0x0c, 0x6d, 0x94, + 0x28, 0x4f, 0x28, 0x44, 0x79, 0xfa, 0x77, 0xbc, 0x6f, 0xcc, 0x8d, 0xb7, 0xbd, 0x9f, 0x1a, 0x8f, + 0x07, 0x20, 0x35, 0x94, 0x1b, 0xb1, 0xf7, 0x1a, 0x6c, 0x28, 0xdf, 0xb6, 0xfc, 0xbf, 0x05, 0x28, + 0xec, 0x35, 0x87, 0x7d, 0x87, 0xd9, 0xca, 0x2a, 0xdf, 0x7e, 0xb3, 0xef, 0xe0, 0x05, 0xc2, 0xd0, + 0xec, 0x3b, 0xf0, 0x19, 0x30, 0xef, 0xb9, 0x94, 0x73, 0x21, 0x9d, 0x73, 0xce, 0x73, 0x09, 0xdf, + 0x53, 0xb1, 0x3d, 0x95, 0xc5, 0xcb, 0x99, 0x6b, 0x02, 0xcd, 0x1d, 0xdc, 0xde, 0xc9, 0x53, 0x00, + 0x0c, 0xbc, 0x56, 0x9f, 0xb1, 0x80, 0x88, 0x85, 0x51, 0x25, 0x0f, 0x5e, 0x00, 0x79, 0xbb, 0x6b, + 0xf9, 0x0c, 0x85, 0x90, 0x61, 0x81, 0xd2, 0x24, 0x0f, 0xbe, 0x17, 0x88, 0x2c, 0xc5, 0x99, 0xf7, + 0xed, 0x96, 0x37, 0xec, 0xdb, 0xfe, 0xfd, 0xdc, 0x15, 0x6e, 0xd9, 0xaa, 0x2b, 0x8d, 0x1d, 0xbf, + 0x0c, 0xaf, 0x32, 0x66, 0xf6, 0x3d, 0x80, 0xef, 0x07, 0x2b, 0x7e, 0xae, 0xa5, 0xc7, 0x23, 0xc4, + 0x36, 0x52, 0x2e, 0xde, 0xd2, 0xd4, 0x1a, 0x30, 0xe0, 0xe5, 0x36, 0xff, 0x09, 0x5f, 0x02, 0x05, + 0x2a, 0x81, 0x3d, 0x0a, 0xcb, 0x8f, 0x3e, 0x21, 0x23, 0xd5, 0xfd, 0x67, 0x64, 0x18, 0xb4, 0xc3, + 0xdf, 0xb0, 0x0c, 0x96, 0xa3, 0xf1, 0x31, 0xbb, 0x03, 0x9a, 0x87, 0x04, 0x5c, 0x08, 0x87, 0x47, + 0xa5, 0x3c, 0xd1, 0x00, 0x11, 0x9e, 0x33, 0x3e, 0x4f, 0x38, 0x3e, 0xea, 0x80, 0x60, 0xf2, 0x60, + 0x84, 0x08, 0x47, 0x91, 0x72, 0x2c, 0xb2, 0x01, 0x52, 0x07, 0x70, 0x87, 0x2e, 0xd2, 0xdb, 0x6e, + 0xb7, 0x6b, 0xb7, 0x3d, 0xb3, 0x6f, 0xb7, 0x06, 0xe1, 0x46, 0x59, 0xd4, 0x4b, 0x39, 0xe4, 0xc0, + 0x94, 0x01, 0x8b, 0x56, 0x82, 0x42, 0x1c, 0xde, 0xee, 0xf7, 0xdd, 0x3e, 0x85, 0x77, 0x8b, 0xd8, + 0xff, 0x80, 0xef, 0x01, 0x22, 0xd7, 0x7d, 0xfa, 0x2a, 0x89, 0xa6, 0xf1, 0xc2, 0x4d, 0x38, 0xfa, + 0x8c, 0x0e, 0xaf, 0x44, 0xfd, 0xaf, 0xba, 0x16, 0x8d, 0xb2, 0xad, 0xa1, 0xe5, 0xb8, 0xfe, 0x6b, + 0x26, 0xba, 0x0e, 0x59, 0xc4, 0x80, 0x92, 0xfc, 0xf7, 0x52, 0xd7, 0x53, 0x30, 0xca, 0x69, 0xff, + 0xbd, 0x4c, 0x12, 0x82, 0x5c, 0x05, 0x2b, 0xbd, 0x76, 0xab, 0x67, 0xde, 0x77, 0x3a, 0xb6, 0xd9, + 0x71, 0xba, 0x0f, 0x8b, 0x67, 0x29, 0xe3, 0x12, 0xa1, 0xee, 0x38, 0x1d, 0xbb, 0xee, 0x74, 0x1f, + 0xc2, 0x97, 0xc0, 0x12, 0xd5, 0xb7, 0xed, 0x76, 0x3d, 0xfb, 0x0d, 0xaf, 0x58, 0xa2, 0xde, 0xb6, + 0x31, 0x12, 0x19, 0xa5, 0xee, 0x11, 0xa6, 0x13, 0x5b, 0xf5, 0x19, 0xe1, 0x2b, 0x60, 0xb9, 0xc7, + 0x9e, 0x27, 0x99, 0x4e, 0xf7, 0xbe, 0x5b, 0x3c, 0x47, 0x7b, 0x39, 0xfa, 0x78, 0xc9, 0x3f, 0x55, + 0xea, 0xf1, 0x6f, 0xa2, 0x12, 0xc9, 0xee, 0xfc, 0xc4, 0x64, 0xf7, 0xe4, 0x10, 0x46, 0xf9, 0x33, + 0x02, 0x3d, 0x55, 0x0c, 0x52, 0x0d, 0xd5, 0x65, 0x9b, 0x4b, 0x6c, 0xb1, 0x45, 0x62, 0x40, 0x25, + 0x8b, 0xc4, 0xf0, 0xb7, 0xc5, 0x47, 0xef, 0xec, 0xb8, 0xe8, 0x7d, 0x6c, 0xb2, 0x7c, 0x09, 0x14, + 0xa3, 0x46, 0xbb, 0x8e, 0xe7, 0x70, 0x66, 0x9f, 0xa3, 0x06, 0x7b, 0x3a, 0x6c, 0x32, 0x28, 0xa6, + 0xc6, 0xcb, 0x57, 0x6c, 0xbb, 0x87, 0xbd, 0x8e, 0x1d, 0x55, 0x9c, 0x8b, 0x57, 0xac, 0x06, 0xc5, + 0xb4, 0x62, 0x15, 0xac, 0x86, 0x15, 0x99, 0x6b, 0xfa, 0x7b, 0x79, 0xa5, 0x91, 0xad, 0x13, 0x92, + 0x84, 0x99, 0x79, 0x7a, 0xb1, 0xef, 0xc8, 0xe4, 0x17, 0x78, 0x93, 0x97, 0xc1, 0x46, 0x42, 0xb4, + 0x6f, 0xf6, 0xf9, 0xb1, 0x66, 0x0f, 0xe3, 0x72, 0x89, 0x69, 0x97, 0x7f, 0x32, 0x03, 0xe6, 0xfd, + 0x80, 0x49, 0x56, 0x5f, 0xc3, 0x81, 0xdd, 0x0f, 0x1e, 0x05, 0x92, 0xdf, 0x84, 0x46, 0x37, 0x25, + 0xd8, 0xf5, 0x4f, 0xf2, 0x9b, 0x3e, 0xad, 0xeb, 0xb1, 0xd1, 0xcd, 0x3a, 0x3d, 0xc2, 0x43, 0xf7, + 0x84, 0x72, 0xfe, 0xc3, 0x41, 0xba, 0xef, 0x73, 0x92, 0x5b, 0x99, 0x65, 0x1d, 0x14, 0x38, 0xd0, + 0x4b, 0xe4, 0xb6, 0x23, 0xec, 0x44, 0x7f, 0xc3, 0x22, 0x58, 0x08, 0x76, 0xaa, 0x7c, 0x95, 0x82, + 0x4f, 0x2e, 0xad, 0x0a, 0x7c, 0x5a, 0xdd, 0xfa, 0xce, 0x06, 0x58, 0x8e, 0x3d, 0xa0, 0x85, 0x9b, + 0x14, 0x92, 0x9a, 0xba, 0x21, 0x19, 0x4d, 0xdd, 0x6c, 0xaa, 0xb7, 0x54, 0xed, 0x8e, 0x2a, 0x9e, + 0x82, 0xa7, 0xe9, 0x16, 0x5a, 0x40, 0x37, 0xf0, 0xbe, 0xa2, 0xee, 0x8a, 0x16, 0x3c, 0x13, 0x63, + 0xc7, 0x8a, 0xba, 0x4b, 0xe8, 0xdf, 0xc8, 0xc0, 0xa7, 0xc0, 0x79, 0xae, 0xa0, 0x2a, 0xd5, 0xeb, + 0xa6, 0xa2, 0x9b, 0x3b, 0x1a, 0xbe, 0x23, 0x61, 0x19, 0xc9, 0xe2, 0x37, 0x33, 0x70, 0x33, 0x26, + 0xf2, 0x83, 0x4d, 0xd4, 0x44, 0xb2, 0xf8, 0xad, 0x0c, 0xbc, 0x0c, 0xce, 0x71, 0x74, 0x1d, 0xe9, + 0xba, 0xa2, 0xa9, 0x66, 0x03, 0x6b, 0xbb, 0x18, 0xe9, 0xba, 0xf8, 0xed, 0x0c, 0x7c, 0x16, 0x94, + 0x39, 0x0e, 0x24, 0xe1, 0xfa, 0xbe, 0x29, 0x2b, 0x52, 0x5d, 0xdb, 0x35, 0x0d, 0x84, 0xf7, 0x14, + 0x55, 0x32, 0x90, 0x2c, 0xfe, 0x76, 0x06, 0x42, 0xda, 0xbd, 0x80, 0x51, 0xbb, 0x25, 0xfe, 0x4e, + 0x06, 0x16, 0xe9, 0x39, 0x59, 0x40, 0x93, 0xaa, 0x55, 0xd4, 0x20, 0xdc, 0xbf, 0x9b, 0x81, 0x97, + 0x40, 0x89, 0x2b, 0x51, 0x35, 0x53, 0xd5, 0x0c, 0x65, 0x47, 0xa9, 0x4a, 0x86, 0xa2, 0xa9, 0xe2, + 0xef, 0x27, 0x35, 0xdb, 0x6b, 0xd6, 0x0d, 0xa5, 0x51, 0x47, 0x66, 0xb5, 0xa6, 0x29, 0x55, 0xa4, + 0x8b, 0x5f, 0xc9, 0x26, 0xba, 0xbd, 0xa7, 0xdd, 0x46, 0xb2, 0xd9, 0x40, 0x78, 0x4f, 0x52, 0x91, + 0x6a, 0xd4, 0xf7, 0xc5, 0xaf, 0xa6, 0xb3, 0x18, 0x68, 0xaf, 0xa1, 0x61, 0x09, 0x2b, 0xf5, 0x7d, + 0xf1, 0x6b, 0x59, 0x78, 0x96, 0x5e, 0x50, 0x0e, 0x27, 0x41, 0x47, 0xa4, 0xf7, 0x77, 0xf7, 0xc5, + 0xaf, 0x67, 0xe1, 0x15, 0x70, 0x91, 0xd7, 0xbe, 0x6e, 0x20, 0xac, 0x4a, 0x86, 0x72, 0x1b, 0x99, + 0x3a, 0xc2, 0xb7, 0x95, 0x2a, 0x12, 0xff, 0x3b, 0x0b, 0xcf, 0xd1, 0x3b, 0x82, 0x01, 0x53, 0x45, + 0x92, 0x4d, 0x8c, 0x3e, 0xd8, 0x44, 0xba, 0x21, 0xfe, 0x8c, 0x00, 0xcf, 0x83, 0x33, 0xb1, 0x19, + 0x96, 0x9a, 0x46, 0x4d, 0xc3, 0xca, 0x87, 0x90, 0x2c, 0x7e, 0x42, 0x48, 0x74, 0xb1, 0x21, 0xed, + 0xef, 0x21, 0xd5, 0xa0, 0xd5, 0x15, 0x8c, 0x64, 0xf1, 0x93, 0x42, 0x42, 0xb9, 0x1d, 0x0d, 0x57, + 0x14, 0x59, 0x46, 0xaa, 0xf8, 0x29, 0x21, 0x31, 0xb4, 0xaa, 0x66, 0xec, 0xd0, 0x87, 0x70, 0x3f, + 0x2b, 0xc0, 0x32, 0xb8, 0xc0, 0x77, 0x1a, 0x19, 0x35, 0x4d, 0x26, 0x0c, 0xa6, 0x54, 0xaf, 0x6b, + 0x77, 0x90, 0x2c, 0xfe, 0x9c, 0x00, 0x2f, 0xd2, 0xeb, 0x23, 0x5c, 0x6d, 0x36, 0x39, 0x52, 0xa5, + 0x8e, 0xc4, 0x9f, 0x17, 0x12, 0x5d, 0xa7, 0x23, 0x62, 0x12, 0xe5, 0x23, 0xed, 0x3e, 0x2d, 0x24, + 0xe6, 0x90, 0x75, 0xdb, 0x34, 0x94, 0x3d, 0xa4, 0x35, 0x0d, 0xf1, 0x17, 0x92, 0x3a, 0x56, 0x35, + 0x75, 0xa7, 0xae, 0x54, 0x0d, 0xf1, 0x33, 0x02, 0xdc, 0xa0, 0x81, 0x38, 0x28, 0xd9, 0xd5, 0x54, + 0x24, 0xfe, 0x62, 0x52, 0x60, 0x1d, 0xa9, 0xbb, 0x7c, 0x8b, 0xbf, 0x24, 0xc0, 0x2d, 0xf0, 0x74, + 0x5c, 0xa0, 0xac, 0x10, 0x7b, 0x91, 0xea, 0x61, 0xeb, 0x3b, 0x92, 0x52, 0x47, 0xb2, 0xf8, 0x59, + 0x01, 0x5e, 0x03, 0x57, 0x52, 0xb4, 0x43, 0xaa, 0xa1, 0x18, 0xfb, 0xa6, 0xa1, 0x69, 0x66, 0x5d, + 0xc2, 0xbb, 0x48, 0xfc, 0x65, 0x01, 0x5e, 0x05, 0x97, 0x52, 0x38, 0x9b, 0x58, 0xf1, 0xd9, 0x34, + 0x75, 0x57, 0xfc, 0x15, 0x01, 0x3e, 0x03, 0x9e, 0x8a, 0xcd, 0xa5, 0xde, 0x6c, 0x34, 0x34, 0x6c, + 0x20, 0xd9, 0xdc, 0x43, 0xb2, 0x22, 0x99, 0xc6, 0x7e, 0x03, 0x89, 0x9f, 0x13, 0xe0, 0x0d, 0xb0, + 0x35, 0x2a, 0x0d, 0xc9, 0x26, 0x96, 0xd4, 0x5d, 0x44, 0x87, 0x5a, 0x97, 0x0c, 0x45, 0xdf, 0x51, + 0xe8, 0x58, 0x7f, 0x5e, 0x80, 0xd7, 0xc1, 0xd5, 0xd1, 0x30, 0x60, 0x62, 0xa4, 0x6b, 0x4d, 0x5c, + 0x25, 0xe6, 0xa8, 0x68, 0x58, 0x31, 0xf6, 0xc5, 0x2f, 0x08, 0xf0, 0x02, 0x28, 0x26, 0x8c, 0x0d, + 0xdd, 0x35, 0x90, 0x4a, 0x9c, 0x56, 0xfc, 0xd5, 0xe4, 0xcc, 0x87, 0x45, 0xd1, 0x10, 0xfe, 0x5a, + 0x72, 0x08, 0x03, 0x8f, 0x57, 0x54, 0x03, 0xe1, 0xdb, 0x52, 0x9d, 0xf6, 0x58, 0xdf, 0x93, 0xea, + 0x75, 0xf1, 0x8b, 0x49, 0x79, 0x31, 0x9e, 0x0a, 0x56, 0xd0, 0x8e, 0xf8, 0xeb, 0xc9, 0x61, 0x26, + 0x2a, 0xd5, 0x35, 0xdf, 0x8b, 0x4d, 0x45, 0xdd, 0xd1, 0xf0, 0x9e, 0xef, 0xd1, 0x5f, 0x12, 0x12, + 0xce, 0x48, 0x38, 0xa5, 0x3a, 0xc2, 0x86, 0xb9, 0x87, 0x74, 0x5d, 0xda, 0x45, 0xe2, 0x6f, 0x24, + 0xcd, 0x8e, 0x38, 0xa3, 0x22, 0xb3, 0x19, 0xab, 0x21, 0x49, 0x46, 0x58, 0xfc, 0x4a, 0x72, 0xbc, + 0x1a, 0x58, 0xbb, 0xad, 0xc8, 0xc8, 0xc4, 0x68, 0x07, 0x61, 0x8c, 0x70, 0x58, 0x43, 0xfc, 0xaa, + 0x90, 0x70, 0xce, 0x9d, 0xba, 0x76, 0x27, 0x30, 0x90, 0xaf, 0x25, 0xa7, 0x5d, 0x52, 0x35, 0x75, + 0x7f, 0x8f, 0xb4, 0x24, 0x2b, 0x7a, 0xe0, 0x29, 0x5f, 0x4f, 0xd3, 0x3a, 0x54, 0x89, 0xf4, 0x4f, + 0xfc, 0x86, 0x90, 0x08, 0x91, 0xbc, 0x65, 0x54, 0x11, 0x66, 0x51, 0x0d, 0x89, 0xdf, 0x4c, 0x32, + 0x2a, 0xea, 0x6d, 0xa9, 0xae, 0xc8, 0x23, 0x5d, 0xfc, 0x96, 0x00, 0x5f, 0x00, 0xcf, 0xf1, 0x7a, + 0x2b, 0x58, 0x37, 0xcc, 0x9a, 0xd6, 0x30, 0xeb, 0x52, 0xf5, 0x96, 0x1e, 0xbe, 0x7a, 0x35, 0x59, + 0x43, 0xe2, 0xb7, 0x93, 0x9d, 0xd9, 0x93, 0xee, 0x9a, 0x15, 0x8c, 0x24, 0xd9, 0xa8, 0x99, 0xe8, + 0x6e, 0x15, 0x21, 0x92, 0x06, 0x7e, 0x2b, 0x19, 0x71, 0x68, 0x67, 0xd4, 0x1d, 0xcd, 0x6c, 0x48, + 0xd5, 0x5b, 0x64, 0x06, 0xfe, 0x28, 0x19, 0x18, 0xaa, 0x9a, 0xaa, 0x93, 0x98, 0xa4, 0xfa, 0x12, + 0xfe, 0x38, 0xd9, 0x05, 0x2e, 0x96, 0x92, 0xe8, 0x76, 0x5b, 0x52, 0xea, 0xd4, 0xaa, 0xbf, 0x9b, + 0xec, 0x02, 0x4d, 0x4a, 0x06, 0x96, 0x54, 0x5d, 0xaa, 0x52, 0xdb, 0x90, 0x35, 0xe4, 0xc7, 0x1d, + 0x74, 0x57, 0xd1, 0x0d, 0x5d, 0xfc, 0xcb, 0xa4, 0x71, 0xd7, 0x35, 0xad, 0x61, 0xca, 0xc8, 0x40, + 0x55, 0x92, 0x31, 0xfe, 0x2a, 0x59, 0x4c, 0x6c, 0x70, 0x4f, 0x52, 0xf7, 0xc9, 0xb0, 0xe8, 0xe2, + 0xf7, 0x92, 0xb6, 0x2a, 0xc9, 0x32, 0x49, 0x60, 0xa6, 0xa2, 0x56, 0xb5, 0xbd, 0x46, 0x1d, 0x19, + 0x48, 0xfc, 0xeb, 0x64, 0x38, 0x95, 0xf6, 0x2a, 0xca, 0x6e, 0x53, 0x6b, 0xea, 0xe2, 0xdf, 0x24, + 0x8b, 0x2a, 0x4d, 0x9d, 0x4c, 0x07, 0x46, 0xe2, 0xdf, 0x26, 0x25, 0x87, 0x61, 0x2e, 0x4a, 0x7e, + 0x7f, 0x97, 0x34, 0xdc, 0x78, 0x3c, 0xf5, 0x05, 0x7d, 0x7f, 0xa4, 0x0d, 0xe2, 0xbd, 0xb7, 0x91, + 0x6a, 0x88, 0x7f, 0x3f, 0x2e, 0x94, 0x36, 0x90, 0x2a, 0x93, 0x1c, 0xff, 0x8f, 0xc9, 0x79, 0x69, + 0xaa, 0x32, 0xaa, 0x2a, 0x8d, 0x1a, 0xc2, 0x74, 0xb8, 0xff, 0x49, 0x80, 0xcf, 0x81, 0x67, 0x62, + 0x6e, 0x5d, 0x6d, 0x92, 0x98, 0x61, 0x4a, 0xbb, 0x18, 0xa1, 0x78, 0x5a, 0xf9, 0x67, 0x01, 0x3e, + 0x0d, 0x2e, 0x27, 0xfd, 0x9a, 0xc4, 0x50, 0x92, 0xd5, 0x10, 0x36, 0x11, 0xc6, 0x1a, 0x16, 0xff, + 0x55, 0x18, 0xc9, 0xd1, 0x86, 0xa9, 0x90, 0xb1, 0x24, 0xe2, 0x90, 0x2c, 0xfe, 0x9b, 0x90, 0x92, + 0xfb, 0x76, 0x25, 0x03, 0xdd, 0x91, 0xf6, 0xc5, 0x7f, 0x4f, 0x0e, 0x09, 0xcb, 0x98, 0x31, 0x2b, + 0xf9, 0x8f, 0x64, 0x13, 0xac, 0x76, 0x98, 0x42, 0xfe, 0x33, 0xa9, 0xea, 0x6d, 0x84, 0x69, 0xb8, + 0xa2, 0x51, 0x34, 0xf0, 0x32, 0xf1, 0xbf, 0x92, 0x5e, 0xca, 0x22, 0x0a, 0x17, 0xe5, 0x7f, 0x3c, + 0x97, 0x88, 0xdf, 0xbb, 0x75, 0xad, 0x22, 0xd5, 0xfd, 0x89, 0x46, 0xb7, 0x11, 0xde, 0xbf, 0x43, + 0x67, 0xe9, 0x4f, 0x73, 0x89, 0x91, 0x66, 0x7c, 0x32, 0xaa, 0xd6, 0x15, 0x15, 0x89, 0x7f, 0x96, + 0x83, 0xdb, 0xe0, 0x7a, 0x4a, 0x79, 0xcc, 0x9c, 0x4d, 0x49, 0x65, 0xf2, 0xfe, 0x3c, 0x97, 0xe8, + 0x01, 0xe3, 0x4f, 0x64, 0xdc, 0xef, 0xe4, 0x92, 0x23, 0xe1, 0xb3, 0x35, 0xd5, 0x3b, 0x12, 0x1d, + 0xec, 0xbf, 0x18, 0xc3, 0x80, 0xd1, 0x07, 0x7c, 0x07, 0xf9, 0x6e, 0x6e, 0xeb, 0x21, 0xfb, 0x77, + 0x0f, 0xc1, 0x91, 0x27, 0x83, 0x97, 0xd4, 0xeb, 0xc8, 0x48, 0x91, 0x04, 0xae, 0x45, 0xf0, 0x32, + 0xa2, 0x37, 0xe5, 0x86, 0x98, 0x19, 0x25, 0x1b, 0xd5, 0x86, 0x98, 0x4d, 0x21, 0xd7, 0x75, 0x51, + 0xd8, 0x52, 0x81, 0x98, 0x3c, 0x00, 0x80, 0x90, 0xfe, 0x8f, 0x0e, 0x02, 0xe6, 0xfc, 0x48, 0xa6, + 0xfb, 0xaf, 0xf7, 0x09, 0xed, 0x6e, 0x48, 0xca, 0xc0, 0x75, 0x3f, 0xf7, 0x93, 0x88, 0x10, 0x10, + 0xb3, 0x5b, 0x2e, 0x55, 0x36, 0xb1, 0xb7, 0x0e, 0x2f, 0xf8, 0x73, 0xe1, 0x27, 0x58, 0xa4, 0x56, + 0xf1, 0x7e, 0xc3, 0xa0, 0xf1, 0x99, 0x0c, 0xda, 0x29, 0x78, 0xce, 0x87, 0x57, 0xf1, 0x62, 0x1a, + 0xbb, 0xc5, 0x4c, 0x7a, 0x5d, 0xe6, 0x05, 0x62, 0x76, 0xab, 0x15, 0xfd, 0x9f, 0x0e, 0xe3, 0xa8, + 0x67, 0xc3, 0xb3, 0xe0, 0x34, 0x4b, 0x25, 0x98, 0xa6, 0x72, 0x0e, 0x8f, 0x97, 0xc0, 0x66, 0xbc, + 0x28, 0xf0, 0x18, 0x31, 0x33, 0x5a, 0x46, 0xb2, 0x2e, 0x2d, 0xcb, 0x6e, 0xbd, 0x4e, 0xfb, 0x1e, + 0x6d, 0x77, 0xd0, 0xb1, 0xac, 0x06, 0x08, 0x9d, 0x44, 0x26, 0xe2, 0xdc, 0x54, 0x3e, 0x21, 0x37, + 0x24, 0x6c, 0x28, 0x55, 0xa5, 0x21, 0xa9, 0x86, 0xf9, 0x01, 0x4d, 0x51, 0x91, 0x2c, 0x66, 0xe0, + 0x0a, 0x00, 0xa4, 0x8c, 0x44, 0xcd, 0xdb, 0x48, 0xcc, 0xc2, 0x0d, 0x20, 0x92, 0x6f, 0x59, 0xd1, + 0xab, 0x9a, 0xaa, 0xfa, 0x73, 0x2f, 0xc0, 0x65, 0xb0, 0x48, 0xa8, 0xbe, 0xe7, 0xe6, 0xb6, 0xda, + 0x74, 0xce, 0xe2, 0x8b, 0x39, 0x58, 0x04, 0x1b, 0xba, 0xa1, 0xfb, 0x13, 0xb9, 0x83, 0xb0, 0xa9, + 0xa9, 0xbb, 0x9a, 0xdf, 0xfe, 0x19, 0xb0, 0x1e, 0x2b, 0x61, 0x29, 0x32, 0x43, 0xc7, 0x97, 0x2f, + 0xd0, 0x9b, 0xd5, 0x2a, 0xd2, 0xf5, 0x9d, 0x26, 0xe9, 0xdd, 0x75, 0x00, 0xa2, 0x9d, 0x24, 0x98, + 0x07, 0x39, 0x95, 0xa0, 0x38, 0x3a, 0xe3, 0xb7, 0xb0, 0xa2, 0x37, 0x4c, 0xa4, 0x92, 0x69, 0x92, + 0xc5, 0xcc, 0xd6, 0x0e, 0x35, 0x96, 0xd8, 0xb6, 0x11, 0x5c, 0x05, 0x05, 0xbd, 0x2a, 0x73, 0xa3, + 0xcc, 0x08, 0xd1, 0x7f, 0x79, 0x10, 0xc1, 0x12, 0x21, 0x44, 0xff, 0xe3, 0xe1, 0xe6, 0x9f, 0x14, + 0x80, 0xa0, 0x2b, 0x0d, 0xd8, 0x00, 0x4b, 0xfc, 0xe5, 0x7b, 0x78, 0x3e, 0x76, 0x99, 0x27, 0x71, + 0x47, 0xbb, 0x74, 0x61, 0x4c, 0xa9, 0x7f, 0x99, 0xa2, 0x2c, 0xbc, 0x95, 0xcd, 0xc0, 0x0f, 0x73, + 0xff, 0xac, 0x88, 0xbf, 0xd8, 0x0e, 0x9f, 0x1e, 0x3d, 0x6a, 0x4b, 0xb9, 0xa7, 0x5f, 0x9a, 0x78, + 0x33, 0x1e, 0x9a, 0x60, 0x33, 0xfd, 0xb9, 0x28, 0x7c, 0x66, 0x54, 0x7c, 0xda, 0xad, 0xf9, 0xd2, + 0xe4, 0x6b, 0xea, 0x44, 0xfd, 0xd4, 0xff, 0x51, 0xc1, 0xa9, 0x3f, 0xe9, 0x7f, 0x58, 0x1c, 0xaf, + 0x7e, 0xfa, 0xb3, 0x54, 0x4e, 0xfd, 0x89, 0xef, 0x56, 0x8f, 0x53, 0xff, 0x87, 0x01, 0x1c, 0x7d, + 0x85, 0x02, 0xa3, 0x9b, 0xd7, 0x63, 0x1f, 0xbc, 0x94, 0xae, 0x4c, 0xe4, 0x61, 0xd7, 0x65, 0x7e, + 0x14, 0xac, 0xa7, 0xbc, 0x21, 0x81, 0xc9, 0xba, 0xa9, 0x9a, 0x5f, 0x9d, 0xcc, 0x14, 0xb5, 0x90, + 0xf2, 0x8c, 0x82, 0x6b, 0x61, 0xfc, 0x13, 0x0f, 0xae, 0x85, 0x49, 0x2f, 0x31, 0xda, 0xe1, 0x7b, + 0x93, 0x78, 0x27, 0x46, 0x6a, 0xa7, 0xf6, 0xe2, 0xe9, 0x63, 0xb8, 0x58, 0x23, 0xbb, 0x60, 0x25, + 0xfe, 0xcc, 0x01, 0x5e, 0xe4, 0x4e, 0x01, 0x53, 0xde, 0x3f, 0x94, 0xd2, 0xdf, 0xb7, 0xc4, 0xdc, + 0x29, 0x76, 0x87, 0xff, 0xe9, 0xa9, 0xee, 0x4b, 0x97, 0x26, 0xde, 0x68, 0x8a, 0x59, 0xfb, 0x18, + 0xe9, 0x93, 0xee, 0x20, 0x1f, 0x23, 0x3d, 0x9a, 0xcb, 0x98, 0xec, 0x91, 0xb9, 0x4c, 0x93, 0x7c, + 0x75, 0x32, 0x13, 0x1b, 0xe6, 0x0f, 0x73, 0xaf, 0x49, 0xc6, 0xe8, 0x3f, 0xe9, 0xaa, 0xd6, 0x31, + 0xfa, 0xef, 0x83, 0x8d, 0xb4, 0x5b, 0x01, 0x9c, 0xa5, 0x4c, 0xb8, 0x34, 0x50, 0x8a, 0x1d, 0x75, + 0x27, 0x4f, 0x4b, 0xef, 0x82, 0xcd, 0xf4, 0x63, 0x3a, 0x2e, 0x10, 0x4c, 0x3c, 0xc7, 0x2b, 0x6d, + 0x8e, 0x6c, 0x2c, 0xa3, 0xc3, 0x9e, 0x77, 0x54, 0xd9, 0xf9, 0xd0, 0x95, 0x03, 0xc7, 0x7b, 0x30, + 0xbc, 0xb7, 0xdd, 0x76, 0x0f, 0x6f, 0x30, 0x59, 0xfe, 0x7f, 0xbb, 0x6b, 0xbb, 0x9d, 0x80, 0xf0, + 0xe5, 0xec, 0x72, 0xdd, 0x79, 0xcd, 0xbe, 0xe5, 0xef, 0x2e, 0x7b, 0xee, 0x3f, 0x64, 0x57, 0xd8, + 0xf7, 0x2b, 0xaf, 0x50, 0xc2, 0xbd, 0x79, 0x5a, 0xe5, 0xc5, 0xff, 0x09, 0x00, 0x00, 0xff, 0xff, + 0x28, 0x85, 0x70, 0xd6, 0xa4, 0x4f, 0x00, 0x00, } diff --git a/livekit/sip.go b/livekit/sip.go index ff1a16eae..70627fad2 100644 --- a/livekit/sip.go +++ b/livekit/sip.go @@ -8,11 +8,11 @@ import ( "strconv" "strings" + "golang.org/x/text/language" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" "github.com/livekit/protocol/utils/xtwirp" - "golang.org/x/text/language" ) var ( @@ -1024,3 +1024,13 @@ var ( ")", "", ) ) + +// MergeEncryption optionally applies SIPMediaEncryption if it's not set on the SIPMediaConfig. +func (m *SIPMediaConfig) MergeEncryption(v SIPMediaEncryption) { + if m == nil { + return + } + if m.Encryption == 0 { + m.Encryption = v + } +} diff --git a/protobufs/livekit_sip.proto b/protobufs/livekit_sip.proto index 4f401d2c7..c9f23dc22 100644 --- a/protobufs/livekit_sip.proto +++ b/protobufs/livekit_sip.proto @@ -223,6 +223,19 @@ enum SIPMediaEncryption { SIP_MEDIA_ENCRYPT_REQUIRE = 2; // require encryption } +message SIPCodec { + string name = 1; + uint32 rate = 2; +} + +message SIPMediaConfig { + // if set, ignore the default codecs and use the list below. + bool only_listed_codecs = 1; + // List of allowed codecs. If only_listed_codecs is not set, this list is added to default codecs. + repeated SIPCodec codecs = 2; + SIPMediaEncryption encryption = 3; +} + message ProviderInfo { string id = 1; string name = 2; @@ -649,13 +662,14 @@ message SIPDispatchRuleInfo { // RoomConfiguration to use if the participant initiates the room RoomConfiguration room_config = 10; + SIPMediaConfig media = 16; bool krisp_enabled = 11; - SIPMediaEncryption media_encryption = 12; + SIPMediaEncryption media_encryption = 12 [deprecated=true]; google.protobuf.Timestamp created_at = 14; google.protobuf.Timestamp updated_at = 15; - // NEXT ID: 16 + // NEXT ID: 17 } message SIPDispatchRuleUpdate { @@ -670,7 +684,8 @@ message SIPDispatchRuleUpdate { (logger.redact) = true, (logger.redact_format) = "" ]; - optional SIPMediaEncryption media_encryption = 6; + optional SIPMediaEncryption media_encryption = 6 [deprecated=true]; + SIPMediaConfig media = 7; } // ListSIPDispatchRuleRequest lists dispatch rules for given filters. If no filters are set, all rules are listed. @@ -788,7 +803,8 @@ message CreateSIPParticipantRequest { // Enable voice isolation for the callee. bool krisp_enabled = 14; - SIPMediaEncryption media_encryption = 18; + SIPMediaEncryption media_encryption = 18 [deprecated = true]; + SIPMediaConfig media = 23; // Wait for the answer for the call before returning. bool wait_until_answered = 19; @@ -804,7 +820,7 @@ message CreateSIPParticipantRequest { (logger.redact_format) = "" ]; optional Destination destination = 22; - // NEXT ID: 23 + // NEXT ID: 24 } message SIPParticipantInfo { diff --git a/protobufs/rpc/io.proto b/protobufs/rpc/io.proto index 5542d3e8d..ab41de72e 100644 --- a/protobufs/rpc/io.proto +++ b/protobufs/rpc/io.proto @@ -236,11 +236,12 @@ message EvaluateSIPDispatchRulesResponse { string room_preset = 20; livekit.RoomConfiguration room_config = 21; - livekit.SIPMediaEncryption media_encryption = 22; + livekit.SIPMediaEncryption media_encryption = 22 [deprecated = true]; + livekit.SIPMediaConfig media = 24; map feature_flags = 23; - // NEXT ID: 24 + // NEXT ID: 25 } message UpdateSIPCallStateRequest { diff --git a/protobufs/rpc/sip.proto b/protobufs/rpc/sip.proto index badfc2da5..e59137ab7 100644 --- a/protobufs/rpc/sip.proto +++ b/protobufs/rpc/sip.proto @@ -121,7 +121,8 @@ message InternalCreateSIPParticipantRequest { // Max call duration. google.protobuf.Duration max_call_duration = 24; - livekit.SIPMediaEncryption media_encryption = 28; + livekit.SIPMediaEncryption media_encryption = 28 [deprecated = true]; + livekit.SIPMediaConfig media = 34; // Wait for the answer for the call before returning. bool wait_until_answered = 29; @@ -143,7 +144,7 @@ message InternalCreateSIPParticipantRequest { // Project-level feature flags from ProjectSettings.FeatureFlags map feature_flags = 33; - // NEXT ID: 34 + // NEXT ID: 35 } message InternalCreateSIPParticipantResponse { diff --git a/rpc/io.pb.go b/rpc/io.pb.go index d038c33c4..1844d54e4 100644 --- a/rpc/io.pb.go +++ b/rpc/io.pb.go @@ -866,9 +866,11 @@ type EvaluateSIPDispatchRulesResponse struct { // Room preset and config are used only to generate tokens // once tokens are returned by this response consistently, it will no longer // be needed - RoomPreset string `protobuf:"bytes,20,opt,name=room_preset,json=roomPreset,proto3" json:"room_preset,omitempty"` - RoomConfig *livekit.RoomConfiguration `protobuf:"bytes,21,opt,name=room_config,json=roomConfig,proto3" json:"room_config,omitempty"` + RoomPreset string `protobuf:"bytes,20,opt,name=room_preset,json=roomPreset,proto3" json:"room_preset,omitempty"` + RoomConfig *livekit.RoomConfiguration `protobuf:"bytes,21,opt,name=room_config,json=roomConfig,proto3" json:"room_config,omitempty"` + // Deprecated: Marked as deprecated in rpc/io.proto. MediaEncryption livekit.SIPMediaEncryption `protobuf:"varint,22,opt,name=media_encryption,json=mediaEncryption,proto3,enum=livekit.SIPMediaEncryption" json:"media_encryption,omitempty"` + Media *livekit.SIPMediaConfig `protobuf:"bytes,24,opt,name=media,proto3" json:"media,omitempty"` FeatureFlags map[string]string `protobuf:"bytes,23,rep,name=feature_flags,json=featureFlags,proto3" json:"feature_flags,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache @@ -1052,6 +1054,7 @@ func (x *EvaluateSIPDispatchRulesResponse) GetRoomConfig() *livekit.RoomConfigur return nil } +// Deprecated: Marked as deprecated in rpc/io.proto. func (x *EvaluateSIPDispatchRulesResponse) GetMediaEncryption() livekit.SIPMediaEncryption { if x != nil { return x.MediaEncryption @@ -1059,6 +1062,13 @@ func (x *EvaluateSIPDispatchRulesResponse) GetMediaEncryption() livekit.SIPMedia return livekit.SIPMediaEncryption(0) } +func (x *EvaluateSIPDispatchRulesResponse) GetMedia() *livekit.SIPMediaConfig { + if x != nil { + return x.Media + } + return nil +} + func (x *EvaluateSIPDispatchRulesResponse) GetFeatureFlags() map[string]string { if x != nil { return x.FeatureFlags @@ -1341,7 +1351,7 @@ const file_rpc_io_proto_rawDesc = "" + "\x04call\x18\f \x01(\v2\f.rpc.SIPCallR\x04call\x1aB\n" + "\x14ExtraAttributesEntry\x12\x10\n" + "\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n" + - "\x05value\x18\x02 \x01(\tR\x05value:\x028\x01\"\xcf\x0f\n" + + "\x05value\x18\x02 \x01(\tR\x05value:\x028\x01\"\x82\x10\n" + " EvaluateSIPDispatchRulesResponse\x12\x1b\n" + "\troom_name\x18\x01 \x01(\tR\broomName\x121\n" + "\x14participant_identity\x18\x02 \x01(\tR\x13participantIdentity\x12O\n" + @@ -1370,8 +1380,9 @@ const file_rpc_io_proto_rawDesc = "" + "\vroom_preset\x18\x14 \x01(\tR\n" + "roomPreset\x12;\n" + "\vroom_config\x18\x15 \x01(\v2\x1a.livekit.RoomConfigurationR\n" + - "roomConfig\x12F\n" + - "\x10media_encryption\x18\x16 \x01(\x0e2\x1b.livekit.SIPMediaEncryptionR\x0fmediaEncryption\x12\\\n" + + "roomConfig\x12J\n" + + "\x10media_encryption\x18\x16 \x01(\x0e2\x1b.livekit.SIPMediaEncryptionB\x02\x18\x01R\x0fmediaEncryption\x12-\n" + + "\x05media\x18\x18 \x01(\v2\x17.livekit.SIPMediaConfigR\x05media\x12\\\n" + "\rfeature_flags\x18\x17 \x03(\v27.rpc.EvaluateSIPDispatchRulesResponse.FeatureFlagsEntryR\ffeatureFlags\x1aH\n" + "\x1aParticipantAttributesEntry\x12\x10\n" + "\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n" + @@ -1478,12 +1489,13 @@ var file_rpc_io_proto_goTypes = []any{ (*durationpb.Duration)(nil), // 29: google.protobuf.Duration (*livekit.RoomConfiguration)(nil), // 30: livekit.RoomConfiguration (livekit.SIPMediaEncryption)(0), // 31: livekit.SIPMediaEncryption - (*livekit.SIPCallInfo)(nil), // 32: livekit.SIPCallInfo - (*livekit.SIPTransferInfo)(nil), // 33: livekit.SIPTransferInfo - (*livekit.SIPUri)(nil), // 34: livekit.SIPUri - (*livekit.ListEgressRequest)(nil), // 35: livekit.ListEgressRequest - (*emptypb.Empty)(nil), // 36: google.protobuf.Empty - (*livekit.ListEgressResponse)(nil), // 37: livekit.ListEgressResponse + (*livekit.SIPMediaConfig)(nil), // 32: livekit.SIPMediaConfig + (*livekit.SIPCallInfo)(nil), // 33: livekit.SIPCallInfo + (*livekit.SIPTransferInfo)(nil), // 34: livekit.SIPTransferInfo + (*livekit.SIPUri)(nil), // 35: livekit.SIPUri + (*livekit.ListEgressRequest)(nil), // 36: livekit.ListEgressRequest + (*emptypb.Empty)(nil), // 37: google.protobuf.Empty + (*livekit.ListEgressResponse)(nil), // 38: livekit.ListEgressResponse } var file_rpc_io_proto_depIdxs = []int32{ 23, // 0: rpc.UpdateMetricsRequest.info:type_name -> livekit.EgressInfo @@ -1508,43 +1520,44 @@ var file_rpc_io_proto_depIdxs = []int32{ 29, // 19: rpc.EvaluateSIPDispatchRulesResponse.max_call_duration:type_name -> google.protobuf.Duration 30, // 20: rpc.EvaluateSIPDispatchRulesResponse.room_config:type_name -> livekit.RoomConfiguration 31, // 21: rpc.EvaluateSIPDispatchRulesResponse.media_encryption:type_name -> livekit.SIPMediaEncryption - 22, // 22: rpc.EvaluateSIPDispatchRulesResponse.feature_flags:type_name -> rpc.EvaluateSIPDispatchRulesResponse.FeatureFlagsEntry - 32, // 23: rpc.UpdateSIPCallStateRequest.call_info:type_name -> livekit.SIPCallInfo - 33, // 24: rpc.UpdateSIPCallStateRequest.transfer_info:type_name -> livekit.SIPTransferInfo - 32, // 25: rpc.RecordCallContextRequest.call_info:type_name -> livekit.SIPCallInfo - 34, // 26: rpc.SIPCall.address:type_name -> livekit.SIPUri - 34, // 27: rpc.SIPCall.from:type_name -> livekit.SIPUri - 34, // 28: rpc.SIPCall.to:type_name -> livekit.SIPUri - 34, // 29: rpc.SIPCall.via:type_name -> livekit.SIPUri - 23, // 30: rpc.IOInfo.CreateEgress:input_type -> livekit.EgressInfo - 23, // 31: rpc.IOInfo.UpdateEgress:input_type -> livekit.EgressInfo - 2, // 32: rpc.IOInfo.GetEgress:input_type -> rpc.GetEgressRequest - 35, // 33: rpc.IOInfo.ListEgress:input_type -> livekit.ListEgressRequest - 3, // 34: rpc.IOInfo.UpdateMetrics:input_type -> rpc.UpdateMetricsRequest - 24, // 35: rpc.IOInfo.CreateIngress:input_type -> livekit.IngressInfo - 4, // 36: rpc.IOInfo.GetIngressInfo:input_type -> rpc.GetIngressInfoRequest - 6, // 37: rpc.IOInfo.UpdateIngressState:input_type -> rpc.UpdateIngressStateRequest - 7, // 38: rpc.IOInfo.GetSIPTrunkAuthentication:input_type -> rpc.GetSIPTrunkAuthenticationRequest - 9, // 39: rpc.IOInfo.EvaluateSIPDispatchRules:input_type -> rpc.EvaluateSIPDispatchRulesRequest - 11, // 40: rpc.IOInfo.UpdateSIPCallState:input_type -> rpc.UpdateSIPCallStateRequest - 12, // 41: rpc.IOInfo.RecordCallContext:input_type -> rpc.RecordCallContextRequest - 36, // 42: rpc.IOInfo.CreateEgress:output_type -> google.protobuf.Empty - 36, // 43: rpc.IOInfo.UpdateEgress:output_type -> google.protobuf.Empty - 23, // 44: rpc.IOInfo.GetEgress:output_type -> livekit.EgressInfo - 37, // 45: rpc.IOInfo.ListEgress:output_type -> livekit.ListEgressResponse - 36, // 46: rpc.IOInfo.UpdateMetrics:output_type -> google.protobuf.Empty - 36, // 47: rpc.IOInfo.CreateIngress:output_type -> google.protobuf.Empty - 5, // 48: rpc.IOInfo.GetIngressInfo:output_type -> rpc.GetIngressInfoResponse - 36, // 49: rpc.IOInfo.UpdateIngressState:output_type -> google.protobuf.Empty - 8, // 50: rpc.IOInfo.GetSIPTrunkAuthentication:output_type -> rpc.GetSIPTrunkAuthenticationResponse - 10, // 51: rpc.IOInfo.EvaluateSIPDispatchRules:output_type -> rpc.EvaluateSIPDispatchRulesResponse - 36, // 52: rpc.IOInfo.UpdateSIPCallState:output_type -> google.protobuf.Empty - 36, // 53: rpc.IOInfo.RecordCallContext:output_type -> google.protobuf.Empty - 42, // [42:54] is the sub-list for method output_type - 30, // [30:42] is the sub-list for method input_type - 30, // [30:30] is the sub-list for extension type_name - 30, // [30:30] is the sub-list for extension extendee - 0, // [0:30] is the sub-list for field type_name + 32, // 22: rpc.EvaluateSIPDispatchRulesResponse.media:type_name -> livekit.SIPMediaConfig + 22, // 23: rpc.EvaluateSIPDispatchRulesResponse.feature_flags:type_name -> rpc.EvaluateSIPDispatchRulesResponse.FeatureFlagsEntry + 33, // 24: rpc.UpdateSIPCallStateRequest.call_info:type_name -> livekit.SIPCallInfo + 34, // 25: rpc.UpdateSIPCallStateRequest.transfer_info:type_name -> livekit.SIPTransferInfo + 33, // 26: rpc.RecordCallContextRequest.call_info:type_name -> livekit.SIPCallInfo + 35, // 27: rpc.SIPCall.address:type_name -> livekit.SIPUri + 35, // 28: rpc.SIPCall.from:type_name -> livekit.SIPUri + 35, // 29: rpc.SIPCall.to:type_name -> livekit.SIPUri + 35, // 30: rpc.SIPCall.via:type_name -> livekit.SIPUri + 23, // 31: rpc.IOInfo.CreateEgress:input_type -> livekit.EgressInfo + 23, // 32: rpc.IOInfo.UpdateEgress:input_type -> livekit.EgressInfo + 2, // 33: rpc.IOInfo.GetEgress:input_type -> rpc.GetEgressRequest + 36, // 34: rpc.IOInfo.ListEgress:input_type -> livekit.ListEgressRequest + 3, // 35: rpc.IOInfo.UpdateMetrics:input_type -> rpc.UpdateMetricsRequest + 24, // 36: rpc.IOInfo.CreateIngress:input_type -> livekit.IngressInfo + 4, // 37: rpc.IOInfo.GetIngressInfo:input_type -> rpc.GetIngressInfoRequest + 6, // 38: rpc.IOInfo.UpdateIngressState:input_type -> rpc.UpdateIngressStateRequest + 7, // 39: rpc.IOInfo.GetSIPTrunkAuthentication:input_type -> rpc.GetSIPTrunkAuthenticationRequest + 9, // 40: rpc.IOInfo.EvaluateSIPDispatchRules:input_type -> rpc.EvaluateSIPDispatchRulesRequest + 11, // 41: rpc.IOInfo.UpdateSIPCallState:input_type -> rpc.UpdateSIPCallStateRequest + 12, // 42: rpc.IOInfo.RecordCallContext:input_type -> rpc.RecordCallContextRequest + 37, // 43: rpc.IOInfo.CreateEgress:output_type -> google.protobuf.Empty + 37, // 44: rpc.IOInfo.UpdateEgress:output_type -> google.protobuf.Empty + 23, // 45: rpc.IOInfo.GetEgress:output_type -> livekit.EgressInfo + 38, // 46: rpc.IOInfo.ListEgress:output_type -> livekit.ListEgressResponse + 37, // 47: rpc.IOInfo.UpdateMetrics:output_type -> google.protobuf.Empty + 37, // 48: rpc.IOInfo.CreateIngress:output_type -> google.protobuf.Empty + 5, // 49: rpc.IOInfo.GetIngressInfo:output_type -> rpc.GetIngressInfoResponse + 37, // 50: rpc.IOInfo.UpdateIngressState:output_type -> google.protobuf.Empty + 8, // 51: rpc.IOInfo.GetSIPTrunkAuthentication:output_type -> rpc.GetSIPTrunkAuthenticationResponse + 10, // 52: rpc.IOInfo.EvaluateSIPDispatchRules:output_type -> rpc.EvaluateSIPDispatchRulesResponse + 37, // 53: rpc.IOInfo.UpdateSIPCallState:output_type -> google.protobuf.Empty + 37, // 54: rpc.IOInfo.RecordCallContext:output_type -> google.protobuf.Empty + 43, // [43:55] is the sub-list for method output_type + 31, // [31:43] is the sub-list for method input_type + 31, // [31:31] is the sub-list for extension type_name + 31, // [31:31] is the sub-list for extension extendee + 0, // [0:31] is the sub-list for field type_name } func init() { file_rpc_io_proto_init() } diff --git a/rpc/io.psrpc.go b/rpc/io.psrpc.go index f303ecd4b..b4125e87a 100644 --- a/rpc/io.psrpc.go +++ b/rpc/io.psrpc.go @@ -364,136 +364,137 @@ func (UnimplementedIOInfoServer) RecordCallContext(context.Context, *RecordCallC } var psrpcFileDescriptor4 = []byte{ - // 2086 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x18, 0x4d, 0x73, 0xdb, 0xc6, - 0x35, 0x94, 0x28, 0x89, 0x7c, 0xa4, 0x24, 0x6a, 0x4d, 0xa9, 0x10, 0x35, 0xb1, 0x69, 0x39, 0xae, - 0xe5, 0xa4, 0xa5, 0x26, 0xea, 0x21, 0xa9, 0x93, 0x38, 0x96, 0x48, 0xc8, 0x66, 0x62, 0x8b, 0x08, + // 2102 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x19, 0x4d, 0x73, 0xdb, 0xc6, + 0x35, 0x94, 0x48, 0x89, 0x7c, 0xa4, 0x24, 0x6a, 0x4d, 0x29, 0x10, 0x35, 0xb1, 0x69, 0x39, 0xae, + 0xe5, 0xa4, 0xa1, 0x26, 0xea, 0x21, 0xa9, 0x93, 0x38, 0x96, 0x48, 0xd8, 0xa6, 0x63, 0x4b, 0x08, 0x44, 0x4e, 0x3f, 0xa6, 0x1d, 0x14, 0x02, 0x96, 0x14, 0x22, 0x10, 0x8b, 0x2e, 0x16, 0xb2, 0xd5, - 0x4c, 0x4e, 0x3d, 0x74, 0xa6, 0x33, 0xe9, 0x3f, 0xe8, 0x3d, 0xe7, 0x1e, 0x7a, 0xf0, 0xa9, 0xe7, - 0x5e, 0xfa, 0x97, 0x3a, 0xfb, 0x01, 0x12, 0xfc, 0x92, 0x44, 0x77, 0xa6, 0x27, 0x2c, 0xde, 0xd7, - 0xbe, 0x7d, 0xfb, 0xde, 0xdb, 0xf7, 0x1e, 0x14, 0x69, 0xe8, 0xec, 0x7b, 0xa4, 0x16, 0x52, 0xc2, - 0x08, 0x5a, 0xa4, 0xa1, 0x53, 0x29, 0xfb, 0xde, 0x25, 0xbe, 0xf0, 0x98, 0x85, 0x7b, 0x14, 0x47, - 0x91, 0x44, 0x55, 0x36, 0x13, 0xa8, 0x17, 0xa4, 0xc1, 0x1b, 0x09, 0x38, 0xf2, 0x42, 0x05, 0x42, - 0x09, 0x88, 0x12, 0xd2, 0x57, 0xb0, 0xb2, 0x4f, 0x7a, 0x3d, 0x4c, 0xf7, 0x49, 0xc8, 0x3c, 0x12, - 0x24, 0xcc, 0x3b, 0x3d, 0x42, 0x7a, 0x3e, 0xde, 0x17, 0x7f, 0x67, 0x71, 0x77, 0x1f, 0xf7, 0x43, - 0x76, 0xa5, 0x90, 0x77, 0xc7, 0x91, 0x6e, 0x4c, 0x6d, 0xce, 0x2d, 0xf1, 0xbb, 0x9f, 0x43, 0xe9, - 0x39, 0x66, 0xba, 0x50, 0xc6, 0xc4, 0x7f, 0x8c, 0x71, 0xc4, 0xd0, 0x1e, 0xe4, 0xa5, 0xd2, 0x96, - 0xe7, 0x6a, 0x99, 0x6a, 0x66, 0x2f, 0x7f, 0x54, 0x78, 0x6b, 0xe4, 0x24, 0xac, 0xd9, 0x30, 0x93, - 0x95, 0xbb, 0xfb, 0x97, 0x0c, 0x94, 0x3b, 0xa1, 0x6b, 0x33, 0xfc, 0x0a, 0x33, 0xea, 0x39, 0x03, - 0x11, 0x8f, 0x20, 0xeb, 0x05, 0x5d, 0x22, 0xb8, 0x0b, 0x07, 0x77, 0x6a, 0xea, 0x30, 0x35, 0xb9, - 0x51, 0x33, 0xe8, 0x12, 0x53, 0x10, 0xa0, 0x5d, 0x58, 0xb5, 0x2f, 0x7b, 0x96, 0x13, 0xc6, 0x56, - 0x1c, 0xd9, 0x3d, 0xac, 0x2d, 0x56, 0x33, 0x7b, 0x0b, 0x66, 0xc1, 0xbe, 0xec, 0xd5, 0xc3, 0xb8, - 0xc3, 0x41, 0x9c, 0xa6, 0x6f, 0xbf, 0x49, 0xd1, 0x64, 0x25, 0x4d, 0xdf, 0x7e, 0x93, 0xd0, 0xec, - 0x3a, 0xb0, 0xf9, 0x1c, 0xb3, 0x66, 0x30, 0x94, 0xaf, 0x34, 0xf9, 0x08, 0x40, 0xd9, 0x7a, 0x78, - 0x9a, 0xe2, 0x5b, 0x23, 0xaf, 0x80, 0xcd, 0x86, 0x39, 0x58, 0xba, 0xe8, 0x7d, 0x80, 0x88, 0x51, - 0x6c, 0xf7, 0xad, 0x0b, 0x7c, 0xa5, 0x2d, 0x70, 0x62, 0x33, 0x2f, 0x21, 0x5f, 0xe3, 0xab, 0xdd, - 0x7f, 0x2f, 0xc2, 0xd6, 0xf8, 0x2e, 0x51, 0x48, 0x82, 0x08, 0xa3, 0xbd, 0x91, 0x03, 0x97, 0x07, - 0x07, 0x4e, 0xd3, 0xca, 0x13, 0x97, 0x61, 0x89, 0x91, 0x0b, 0x1c, 0x28, 0xf1, 0xf2, 0x07, 0x6d, - 0xc2, 0xf2, 0xeb, 0xc8, 0x8a, 0xa9, 0x2f, 0x0c, 0x90, 0x37, 0x97, 0x5e, 0x47, 0x1d, 0xea, 0x73, - 0xed, 0x43, 0x4a, 0xbe, 0xc5, 0x0e, 0xe3, 0xda, 0x2f, 0x0f, 0xb4, 0x57, 0x40, 0xae, 0x7d, 0xb2, - 0x74, 0x51, 0x07, 0xd6, 0xb8, 0x83, 0x78, 0x41, 0xcf, 0xea, 0x7a, 0xd8, 0x77, 0x23, 0x2d, 0x5b, - 0x5d, 0xdc, 0x2b, 0x1c, 0xd4, 0x6a, 0x34, 0x74, 0x6a, 0xd3, 0x15, 0xaf, 0xbd, 0x94, 0x1c, 0xc7, - 0x82, 0x41, 0x0f, 0x18, 0xbd, 0x32, 0x57, 0xfd, 0x34, 0x0c, 0x99, 0xb0, 0xda, 0xc5, 0x36, 0x8b, - 0x29, 0xb6, 0xba, 0xbe, 0xdd, 0x8b, 0xb4, 0x25, 0x21, 0xf5, 0xe7, 0xd7, 0x49, 0x3d, 0x96, 0x0c, - 0xc7, 0x9c, 0x5e, 0x0a, 0x2d, 0x76, 0x53, 0xa0, 0xca, 0x33, 0x40, 0x93, 0x1b, 0xa3, 0x12, 0x2c, - 0x72, 0xbb, 0x8b, 0x4b, 0x32, 0xf9, 0x92, 0x1b, 0xeb, 0xd2, 0xf6, 0x63, 0x9c, 0x18, 0x4b, 0xfc, - 0x3c, 0x59, 0xf8, 0x34, 0x53, 0xf9, 0x12, 0x36, 0x26, 0x36, 0x99, 0x47, 0xc0, 0x6e, 0x0c, 0xdb, - 0xd2, 0x75, 0x95, 0xfe, 0xa7, 0xcc, 0x66, 0xf8, 0x9d, 0xbc, 0xe6, 0x23, 0x58, 0x8a, 0x38, 0xb3, - 0xd8, 0xa3, 0x70, 0xb0, 0x39, 0x7e, 0xf9, 0x52, 0xb2, 0xa4, 0xd9, 0xfd, 0xf3, 0x02, 0x54, 0x9f, - 0x63, 0x76, 0xda, 0x34, 0xda, 0x34, 0x0e, 0x2e, 0x0e, 0x63, 0x76, 0x8e, 0x03, 0xe6, 0x39, 0x22, - 0x28, 0x93, 0xed, 0x6b, 0x50, 0x88, 0xbc, 0xd0, 0x72, 0x6c, 0xdf, 0x1f, 0xde, 0xfb, 0x9a, 0x96, - 0x79, 0x6b, 0xe4, 0x23, 0x2f, 0xac, 0xdb, 0xbe, 0xcf, 0x35, 0x48, 0x96, 0x2e, 0xda, 0x82, 0x6c, - 0x97, 0x92, 0xbe, 0x3c, 0xe4, 0xd1, 0x82, 0x96, 0x31, 0xc5, 0x3f, 0xba, 0x07, 0x79, 0xfe, 0xb5, - 0xce, 0x49, 0xc4, 0xb4, 0x95, 0x01, 0x32, 0xc7, 0x81, 0x2f, 0x48, 0xc4, 0x10, 0x82, 0x05, 0x46, - 0xa4, 0xcb, 0x09, 0xcc, 0x02, 0x23, 0x68, 0x07, 0x56, 0x18, 0x91, 0x2c, 0x4b, 0x03, 0xc4, 0x32, - 0x23, 0x82, 0xe1, 0x01, 0x14, 0x22, 0xea, 0x58, 0xb6, 0xeb, 0xf2, 0x93, 0x89, 0x48, 0x94, 0x04, - 0x10, 0x51, 0xe7, 0x50, 0x42, 0x51, 0x15, 0xb2, 0x5c, 0x75, 0x2d, 0x27, 0xec, 0x51, 0x14, 0x8e, - 0x72, 0xda, 0x34, 0xb8, 0xb2, 0xa6, 0xc0, 0xec, 0xfe, 0x33, 0x0b, 0xf7, 0xaf, 0xb1, 0x82, 0x0a, - 0xaa, 0x67, 0x90, 0x8b, 0x23, 0x4c, 0x03, 0xbb, 0x8f, 0xd5, 0x1d, 0x7c, 0xf0, 0xa3, 0x91, 0xf9, - 0x87, 0x71, 0xf7, 0x73, 0x8a, 0x5d, 0xdb, 0x61, 0xd8, 0xad, 0xee, 0x7d, 0xf7, 0x5d, 0xb5, 0x76, - 0xea, 0xfd, 0x09, 0x57, 0xbf, 0xff, 0xbe, 0x7a, 0x76, 0xc5, 0x70, 0xf4, 0xf8, 0xa9, 0x39, 0xe0, - 0xe2, 0x12, 0x42, 0x3b, 0x8a, 0x5e, 0x13, 0xea, 0x2a, 0xe3, 0xdc, 0x52, 0x42, 0xc2, 0x85, 0x10, - 0x64, 0x5d, 0x4a, 0x42, 0x61, 0xa3, 0x9c, 0x29, 0xd6, 0x68, 0x1f, 0x8a, 0xfc, 0x7a, 0x18, 0x57, - 0x9d, 0xdf, 0x8f, 0xb4, 0xc2, 0xea, 0x5b, 0x03, 0x22, 0x2f, 0x14, 0x07, 0x6a, 0x36, 0xcc, 0xe1, - 0xda, 0x1d, 0x0b, 0xe3, 0xa5, 0xeb, 0xc3, 0xf8, 0x09, 0xac, 0x86, 0x94, 0x5c, 0x7a, 0x2e, 0xa6, - 0x96, 0xc8, 0x29, 0xcb, 0x63, 0x6e, 0x65, 0x28, 0xac, 0x88, 0xb8, 0x62, 0x98, 0xfa, 0x43, 0x5f, - 0x02, 0x60, 0x4a, 0x09, 0xb5, 0x1c, 0xe2, 0x62, 0x71, 0xe3, 0x6b, 0x07, 0xd5, 0xc4, 0xfe, 0x53, - 0x4c, 0xad, 0x73, 0x62, 0x33, 0x2f, 0x78, 0xea, 0xc4, 0xc5, 0xe8, 0xf7, 0xe3, 0xc1, 0x9e, 0x13, - 0xc1, 0xfe, 0x69, 0x12, 0xec, 0xd7, 0xdf, 0xd8, 0x8d, 0x71, 0xff, 0x3f, 0x47, 0xed, 0x8f, 0x4b, - 0x70, 0x4f, 0xe7, 0xbf, 0x36, 0xc3, 0xa7, 0x4d, 0xa3, 0xe1, 0x45, 0xa1, 0xcd, 0x9c, 0x73, 0x33, - 0xf6, 0x71, 0x34, 0x23, 0x7a, 0x72, 0x37, 0x45, 0x4f, 0x1d, 0x10, 0xa7, 0x0f, 0x6d, 0xca, 0x3c, - 0xc7, 0x0b, 0xed, 0x80, 0x0d, 0x83, 0x7e, 0x93, 0xb3, 0x95, 0x22, 0x2f, 0x34, 0x86, 0xd8, 0x66, - 0xc3, 0x1c, 0x87, 0xb8, 0x13, 0x3e, 0x01, 0x37, 0xf9, 0xc4, 0x63, 0x58, 0xe3, 0x1a, 0xf2, 0x6c, - 0x1d, 0xc4, 0xfd, 0x33, 0x4c, 0x53, 0xd1, 0xbb, 0xaa, 0x30, 0x27, 0x02, 0x81, 0x1e, 0x42, 0x31, - 0x21, 0x15, 0x61, 0x59, 0x18, 0x10, 0x16, 0x14, 0x5c, 0xc4, 0xe6, 0x23, 0x10, 0x7c, 0xd8, 0x4d, - 0x04, 0x0e, 0xe3, 0xba, 0x28, 0x11, 0x4a, 0xde, 0xad, 0x82, 0xb8, 0x04, 0x8b, 0xa1, 0x17, 0x48, - 0x67, 0x35, 0xf9, 0x92, 0xbf, 0x51, 0x01, 0xb1, 0x38, 0x70, 0x59, 0x04, 0xc3, 0x52, 0x40, 0x0c, - 0x2f, 0xe0, 0xd2, 0xd4, 0xb6, 0x63, 0x69, 0x06, 0x24, 0x58, 0xe8, 0xf6, 0xd7, 0x0c, 0x94, 0xf0, - 0x1b, 0x46, 0x6d, 0xcb, 0x66, 0x8c, 0x7a, 0x67, 0x31, 0xc3, 0x91, 0x96, 0x17, 0xbe, 0xf5, 0x4b, - 0xe1, 0x5b, 0x37, 0x5c, 0x6a, 0x4d, 0xe7, 0xcc, 0x87, 0x03, 0x5e, 0xe1, 0x39, 0xb7, 0x0c, 0xe6, - 0x75, 0x3c, 0xca, 0x3b, 0xc8, 0x4f, 0xc5, 0x59, 0xf9, 0xa9, 0x72, 0x04, 0xe5, 0x69, 0x1b, 0xce, - 0xe5, 0xaa, 0xff, 0x59, 0x87, 0xea, 0xec, 0x53, 0xa9, 0x14, 0xb7, 0x03, 0x79, 0x5e, 0xe0, 0x59, - 0xc3, 0x1c, 0x67, 0xe6, 0x38, 0xe0, 0x84, 0x67, 0xaf, 0x8f, 0xa1, 0x3c, 0xea, 0x94, 0x3c, 0xe2, - 0x58, 0x52, 0x98, 0xdc, 0x09, 0xd3, 0x0e, 0x28, 0x51, 0xa8, 0x05, 0xa5, 0x34, 0x8b, 0x10, 0xbb, - 0x32, 0x47, 0xe2, 0x5b, 0x4f, 0x71, 0x0b, 0x1d, 0x7e, 0x35, 0xaa, 0x43, 0x1f, 0x33, 0xdb, 0xb5, - 0x99, 0xad, 0xa2, 0xea, 0x76, 0x42, 0xd3, 0x9a, 0xbe, 0x52, 0x02, 0xd0, 0xdf, 0x33, 0xb0, 0x95, - 0x96, 0x9c, 0xf2, 0x8b, 0x82, 0xf0, 0x8b, 0x67, 0x37, 0xf8, 0x85, 0x4a, 0x39, 0xa9, 0x30, 0x7c, - 0x37, 0xf7, 0xd8, 0x0c, 0xa7, 0x49, 0xe0, 0x6e, 0x4d, 0xa5, 0xef, 0x09, 0x97, 0x17, 0xf9, 0x5f, - 0xba, 0xb5, 0x02, 0x73, 0xdf, 0x7f, 0x92, 0x14, 0x73, 0xd9, 0x39, 0xcc, 0x31, 0x51, 0xf2, 0x2d, - 0xa5, 0x4b, 0xbe, 0x1a, 0x2c, 0x53, 0x1c, 0xc5, 0x3e, 0x13, 0x51, 0xb6, 0x76, 0xb0, 0x95, 0xb8, - 0xe7, 0xe0, 0xf8, 0x02, 0x6b, 0x2a, 0xaa, 0x89, 0xc4, 0x93, 0xbf, 0x29, 0xf1, 0xe8, 0x50, 0xe6, - 0x0c, 0xae, 0x12, 0x67, 0xd1, 0xd8, 0xc7, 0xc3, 0x8c, 0x55, 0x7e, 0x6b, 0x6c, 0x44, 0x5e, 0x98, - 0xb6, 0x75, 0xb3, 0x61, 0x4e, 0x80, 0xc6, 0xdf, 0xb4, 0xe2, 0xf5, 0x6f, 0x1a, 0x85, 0x95, 0x73, - 0x6c, 0xbb, 0x98, 0x46, 0xda, 0xaa, 0xb8, 0xdc, 0x83, 0xdb, 0x5d, 0xee, 0x0b, 0xc9, 0x34, 0xcf, - 0x75, 0x26, 0x1b, 0x21, 0x0a, 0x9b, 0x6a, 0x69, 0x31, 0x92, 0x76, 0xaf, 0x35, 0xa1, 0xc1, 0xd3, - 0xb9, 0x34, 0x68, 0x93, 0x31, 0xe7, 0x32, 0xef, 0x9c, 0x4f, 0x62, 0xf8, 0x9e, 0xc3, 0x8d, 0xf8, - 0xb6, 0xc9, 0xa9, 0xd1, 0x3c, 0x7b, 0x0e, 0x05, 0xb6, 0x49, 0xda, 0x02, 0xe6, 0x1d, 0x7b, 0x12, - 0x83, 0x8e, 0x60, 0xdd, 0x0b, 0x1c, 0x3f, 0x76, 0xf1, 0x60, 0xb7, 0x3b, 0xc2, 0x73, 0xb6, 0x07, - 0x15, 0xc3, 0x69, 0xd3, 0x90, 0xd4, 0x2d, 0xd9, 0x39, 0x9a, 0x6b, 0x8a, 0x23, 0x91, 0xf1, 0x14, - 0x4a, 0x38, 0xb0, 0xcf, 0x78, 0x12, 0x57, 0xef, 0x75, 0xa4, 0xad, 0x57, 0x17, 0xf7, 0xd6, 0x52, - 0xbd, 0xdb, 0x69, 0xd3, 0x50, 0x6f, 0xb7, 0xb9, 0xae, 0x88, 0xd5, 0xbf, 0xd0, 0x81, 0x7a, 0x81, - 0x68, 0x3d, 0x98, 0xd7, 0xc7, 0x24, 0x66, 0x5a, 0x49, 0x24, 0xd7, 0xed, 0x9a, 0x6c, 0x40, 0x6b, - 0x49, 0x03, 0x5a, 0x6b, 0xa8, 0x06, 0xd4, 0x5c, 0x53, 0x1c, 0x6d, 0xc9, 0x80, 0x74, 0xd8, 0x10, - 0x6d, 0x1e, 0x7f, 0xb6, 0x93, 0x2e, 0x55, 0xdb, 0xb8, 0x49, 0xca, 0x3a, 0xef, 0x02, 0x6d, 0xdf, - 0x4f, 0x00, 0xe8, 0x1e, 0x14, 0x44, 0x46, 0x0d, 0x29, 0x8e, 0x30, 0xd3, 0xca, 0x22, 0xb6, 0x80, - 0x83, 0x0c, 0x01, 0x41, 0x9f, 0x29, 0x02, 0x87, 0x04, 0x5d, 0xaf, 0xa7, 0x6d, 0x8a, 0x1d, 0x2a, - 0x83, 0x63, 0x9a, 0x84, 0xf4, 0xeb, 0x02, 0x95, 0x6c, 0x21, 0x98, 0x25, 0x08, 0x1d, 0x43, 0xa9, - 0x8f, 0x5d, 0xcf, 0xb6, 0x70, 0xe0, 0xd0, 0x2b, 0x61, 0x4d, 0x6d, 0x4b, 0x58, 0x7b, 0x27, 0x6d, - 0xa8, 0x57, 0x9c, 0x46, 0x1f, 0x90, 0x98, 0xeb, 0xfd, 0x51, 0x00, 0xfa, 0xdd, 0x78, 0x9d, 0xf5, - 0x13, 0xe1, 0x20, 0x9f, 0xdc, 0xce, 0x41, 0x6e, 0x2a, 0xb3, 0x5e, 0x40, 0x65, 0x76, 0x5a, 0x9c, - 0xab, 0xcd, 0x7a, 0x02, 0xc5, 0xb4, 0x07, 0xce, 0xc5, 0x7b, 0x0c, 0xda, 0xac, 0xe8, 0x99, 0x57, - 0xce, 0xac, 0x88, 0xf8, 0xff, 0xb6, 0x8c, 0x3f, 0x64, 0x92, 0x9e, 0x51, 0x55, 0x0b, 0x23, 0x3d, - 0xe3, 0xc7, 0x90, 0x97, 0x25, 0xe7, 0xb4, 0x39, 0x80, 0x62, 0x10, 0x25, 0x7b, 0xce, 0x51, 0x2b, - 0xf4, 0x05, 0xac, 0x32, 0x6a, 0x07, 0x51, 0x37, 0x29, 0xf5, 0x65, 0x07, 0xa9, 0xa5, 0xd9, 0xda, - 0x8a, 0x40, 0x56, 0xfb, 0x2c, 0xf5, 0xb7, 0xfb, 0x0a, 0x34, 0x13, 0x3b, 0x84, 0xba, 0x5c, 0x74, - 0x9d, 0x04, 0x0c, 0xbf, 0x61, 0xef, 0xae, 0xcd, 0xee, 0xbf, 0x16, 0x60, 0x45, 0x61, 0xd0, 0x63, - 0x00, 0xff, 0x62, 0x50, 0x42, 0x0f, 0x87, 0x40, 0xfe, 0x85, 0xaa, 0x9f, 0x93, 0x95, 0xcb, 0x4b, - 0x98, 0x88, 0xc4, 0xd4, 0xc1, 0x96, 0x17, 0x2a, 0x9b, 0xe5, 0x24, 0xa0, 0x19, 0xa2, 0xc7, 0xb0, - 0x92, 0x94, 0x99, 0x8b, 0x42, 0x89, 0xf5, 0xb4, 0x12, 0x1d, 0xea, 0x99, 0x09, 0x1e, 0x3d, 0x50, - 0x4d, 0x6c, 0x76, 0x3a, 0x5d, 0xd2, 0xd1, 0xf2, 0x86, 0x75, 0x69, 0x3a, 0x09, 0xef, 0x5e, 0xef, - 0xc3, 0xe2, 0xa5, 0x67, 0x6b, 0xcb, 0x22, 0x9c, 0x26, 0x28, 0x38, 0x0e, 0xfd, 0x6c, 0xb4, 0x3f, - 0x58, 0x19, 0x3c, 0x5d, 0x53, 0xbb, 0x83, 0xd1, 0x77, 0x2e, 0x77, 0xed, 0x3b, 0xf7, 0xe1, 0x1f, - 0x60, 0x63, 0xe2, 0xa5, 0x46, 0x1a, 0x94, 0x5f, 0xea, 0xcf, 0x0f, 0xeb, 0xbf, 0xb1, 0x0e, 0xeb, - 0x75, 0xdd, 0x68, 0x5b, 0x2d, 0xd3, 0x32, 0x9a, 0x27, 0xa5, 0xf7, 0x10, 0xc0, 0xb2, 0x04, 0x95, - 0x32, 0x68, 0x1d, 0x0a, 0xa6, 0xfe, 0x4d, 0x47, 0x3f, 0x6d, 0x0b, 0xe4, 0x02, 0x47, 0x9a, 0xfa, - 0x57, 0x7a, 0xbd, 0x5d, 0x5a, 0x44, 0x39, 0xc8, 0x36, 0xcc, 0x96, 0x51, 0xca, 0x7e, 0xf8, 0xb7, - 0x0c, 0xec, 0x5c, 0xd3, 0xcb, 0xa1, 0xf7, 0x61, 0xfb, 0xb4, 0x69, 0x58, 0x6d, 0xb3, 0x73, 0xf2, - 0xb5, 0x75, 0xd8, 0x69, 0xbf, 0xb0, 0x74, 0xd3, 0x6c, 0x99, 0xd6, 0x49, 0xeb, 0x44, 0x2f, 0xbd, - 0x87, 0x1e, 0xc1, 0x83, 0xa9, 0xe8, 0x6f, 0x3a, 0xad, 0xf6, 0xa1, 0xa5, 0xff, 0xba, 0xae, 0xeb, - 0x0d, 0xbd, 0x51, 0xca, 0xcc, 0x24, 0x3c, 0x69, 0x29, 0xd8, 0x71, 0xab, 0x73, 0xd2, 0x28, 0x2d, - 0x1c, 0xfc, 0xb0, 0x02, 0xcb, 0xcd, 0x96, 0x70, 0xe7, 0xcf, 0xa0, 0x58, 0xa7, 0xd8, 0x66, 0x58, - 0x8e, 0xf9, 0xd0, 0xb4, 0xb9, 0x5f, 0x65, 0x6b, 0x22, 0x97, 0xeb, 0xfd, 0x90, 0x5d, 0x71, 0x66, - 0x19, 0x5b, 0xef, 0xc2, 0xfc, 0x09, 0xe4, 0x07, 0x63, 0x4c, 0xb4, 0x99, 0x34, 0xab, 0x23, 0x63, - 0xcd, 0xca, 0x34, 0x81, 0x48, 0x07, 0x78, 0xe9, 0x45, 0x09, 0xe7, 0xf0, 0x15, 0x18, 0x02, 0x13, - 0xf6, 0x9d, 0xa9, 0x38, 0x55, 0xc6, 0x1f, 0xc1, 0xea, 0xc8, 0x1c, 0x14, 0x6d, 0x0b, 0x1d, 0xa6, - 0xcd, 0x46, 0x67, 0x9e, 0xe1, 0x0b, 0x58, 0x95, 0xd6, 0x53, 0x63, 0x23, 0x34, 0x75, 0x8a, 0x38, - 0x93, 0xbd, 0x09, 0x6b, 0xa3, 0xc3, 0x38, 0x54, 0x99, 0x3a, 0xa1, 0x4b, 0x4e, 0x33, 0x7b, 0x7a, - 0x87, 0x5e, 0x02, 0x9a, 0x1c, 0x8d, 0xa1, 0xbb, 0xa9, 0x23, 0x4d, 0x99, 0x99, 0xcd, 0x54, 0xec, - 0x5b, 0xd8, 0x9e, 0x39, 0x38, 0x40, 0x0f, 0x6f, 0x1a, 0x2c, 0x48, 0xd9, 0x3f, 0xbd, 0xdd, 0xfc, - 0x01, 0xf5, 0x40, 0x9b, 0xf5, 0x78, 0xa2, 0x0f, 0x6e, 0xd3, 0x67, 0x56, 0x1e, 0xde, 0xea, 0x05, - 0x1e, 0x9a, 0x28, 0xfd, 0x12, 0x8c, 0x98, 0x68, 0xca, 0x13, 0x31, 0xd3, 0x44, 0x5f, 0xc1, 0xc6, - 0x44, 0x22, 0x47, 0xef, 0x0b, 0x61, 0xb3, 0x12, 0xfc, 0x2c, 0x59, 0x47, 0xf7, 0x7f, 0x7b, 0xaf, - 0xe7, 0xb1, 0xf3, 0xf8, 0xac, 0xe6, 0x90, 0xfe, 0xbe, 0xf2, 0x20, 0x39, 0xff, 0x77, 0x88, 0xbf, - 0x4f, 0x43, 0xe7, 0x6c, 0x59, 0xfc, 0xfd, 0xe2, 0xbf, 0x01, 0x00, 0x00, 0xff, 0xff, 0x2b, 0x91, - 0x57, 0xf7, 0xb7, 0x18, 0x00, 0x00, + 0x4c, 0x2e, 0xed, 0xa1, 0x33, 0x9d, 0x49, 0xff, 0x41, 0xef, 0x39, 0xf7, 0xd0, 0x83, 0x4f, 0x3d, + 0xf7, 0x57, 0x75, 0xf6, 0x03, 0x24, 0xf8, 0x25, 0x89, 0xee, 0x4c, 0x4f, 0x5c, 0xbc, 0xef, 0x7d, + 0xfb, 0xde, 0xdb, 0x7d, 0x8f, 0x50, 0xa2, 0xa1, 0xb3, 0xe7, 0x91, 0x7a, 0x48, 0x09, 0x23, 0x68, + 0x91, 0x86, 0x4e, 0xb5, 0xe2, 0x7b, 0x17, 0xf8, 0xdc, 0x63, 0x16, 0xee, 0x51, 0x1c, 0x45, 0x12, + 0x55, 0xdd, 0x48, 0xa0, 0x5e, 0x90, 0x06, 0xaf, 0x27, 0xe0, 0xc8, 0x0b, 0x15, 0x08, 0x25, 0x20, + 0x4a, 0x48, 0x5f, 0xc1, 0x2a, 0x3e, 0xe9, 0xf5, 0x30, 0xdd, 0x23, 0x21, 0xf3, 0x48, 0x90, 0x30, + 0x6f, 0xf7, 0x08, 0xe9, 0xf9, 0x78, 0x4f, 0x7c, 0x9d, 0xc6, 0xdd, 0x3d, 0xdc, 0x0f, 0xd9, 0xa5, + 0x42, 0xde, 0x1e, 0x47, 0xba, 0x31, 0xb5, 0x39, 0xb7, 0xc4, 0xef, 0x7c, 0x09, 0xe5, 0x67, 0x98, + 0xe9, 0xc2, 0x18, 0x13, 0xff, 0x31, 0xc6, 0x11, 0x43, 0xbb, 0x50, 0x90, 0x46, 0x5b, 0x9e, 0xab, + 0x65, 0x6a, 0x99, 0xdd, 0xc2, 0x61, 0xf1, 0xad, 0x91, 0x97, 0xb0, 0x56, 0xd3, 0x4c, 0x56, 0xee, + 0xce, 0x5f, 0x33, 0x50, 0xe9, 0x84, 0xae, 0xcd, 0xf0, 0x2b, 0xcc, 0xa8, 0xe7, 0x0c, 0x44, 0x3c, + 0x80, 0xac, 0x17, 0x74, 0x89, 0xe0, 0x2e, 0xee, 0xdf, 0xaa, 0xab, 0xcd, 0xd4, 0xa5, 0xa2, 0x56, + 0xd0, 0x25, 0xa6, 0x20, 0x40, 0x3b, 0xb0, 0x62, 0x5f, 0xf4, 0x2c, 0x27, 0x8c, 0xad, 0x38, 0xb2, + 0x7b, 0x58, 0x5b, 0xac, 0x65, 0x76, 0x17, 0xcc, 0xa2, 0x7d, 0xd1, 0x6b, 0x84, 0x71, 0x87, 0x83, + 0x38, 0x4d, 0xdf, 0x7e, 0x93, 0xa2, 0xc9, 0x4a, 0x9a, 0xbe, 0xfd, 0x26, 0xa1, 0xd9, 0x71, 0x60, + 0xe3, 0x19, 0x66, 0xad, 0x60, 0x28, 0x5f, 0x59, 0xf2, 0x31, 0x80, 0xf2, 0xf5, 0x70, 0x37, 0xa5, + 0xb7, 0x46, 0x41, 0x01, 0x5b, 0x4d, 0x73, 0xb0, 0x74, 0xd1, 0x07, 0x00, 0x11, 0xa3, 0xd8, 0xee, + 0x5b, 0xe7, 0xf8, 0x52, 0x5b, 0xe0, 0xc4, 0x66, 0x41, 0x42, 0xbe, 0xc1, 0x97, 0x3b, 0xff, 0x59, + 0x84, 0xcd, 0x71, 0x2d, 0x51, 0x48, 0x82, 0x08, 0xa3, 0xdd, 0x91, 0x0d, 0x57, 0x06, 0x1b, 0x4e, + 0xd3, 0xca, 0x1d, 0x57, 0x20, 0xc7, 0xc8, 0x39, 0x0e, 0x94, 0x78, 0xf9, 0x81, 0x36, 0x60, 0xe9, + 0x75, 0x64, 0xc5, 0xd4, 0x17, 0x0e, 0x28, 0x98, 0xb9, 0xd7, 0x51, 0x87, 0xfa, 0xdc, 0xfa, 0x90, + 0x92, 0xef, 0xb0, 0xc3, 0xb8, 0xf5, 0x4b, 0x03, 0xeb, 0x15, 0x90, 0x5b, 0x9f, 0x2c, 0x5d, 0xd4, + 0x81, 0x55, 0x1e, 0x20, 0x5e, 0xd0, 0xb3, 0xba, 0x1e, 0xf6, 0xdd, 0x48, 0xcb, 0xd6, 0x16, 0x77, + 0x8b, 0xfb, 0xf5, 0x3a, 0x0d, 0x9d, 0xfa, 0x74, 0xc3, 0xeb, 0x2f, 0x25, 0xc7, 0x53, 0xc1, 0xa0, + 0x07, 0x8c, 0x5e, 0x9a, 0x2b, 0x7e, 0x1a, 0x86, 0x4c, 0x58, 0xe9, 0x62, 0x9b, 0xc5, 0x14, 0x5b, + 0x5d, 0xdf, 0xee, 0x45, 0x5a, 0x4e, 0x48, 0xfd, 0xe4, 0x2a, 0xa9, 0x4f, 0x25, 0xc3, 0x53, 0x4e, + 0x2f, 0x85, 0x96, 0xba, 0x29, 0x50, 0xf5, 0x09, 0xa0, 0x49, 0xc5, 0xa8, 0x0c, 0x8b, 0xdc, 0xef, + 0xe2, 0x90, 0x4c, 0xbe, 0xe4, 0xce, 0xba, 0xb0, 0xfd, 0x18, 0x27, 0xce, 0x12, 0x1f, 0x8f, 0x16, + 0x3e, 0xcf, 0x54, 0xbf, 0x86, 0xf5, 0x09, 0x25, 0xf3, 0x08, 0xd8, 0x89, 0x61, 0x4b, 0x86, 0xae, + 0xb2, 0xff, 0x84, 0xd9, 0x0c, 0xbf, 0x53, 0xd4, 0x7c, 0x0c, 0xb9, 0x88, 0x33, 0x0b, 0x1d, 0xc5, + 0xfd, 0x8d, 0xf1, 0xc3, 0x97, 0x92, 0x25, 0xcd, 0xce, 0x5f, 0x16, 0xa0, 0xf6, 0x0c, 0xb3, 0x93, + 0x96, 0xd1, 0xa6, 0x71, 0x70, 0x7e, 0x10, 0xb3, 0x33, 0x1c, 0x30, 0xcf, 0x11, 0x49, 0x99, 0xa8, + 0xaf, 0x43, 0x31, 0xf2, 0x42, 0xcb, 0xb1, 0x7d, 0x7f, 0x78, 0xee, 0xab, 0x5a, 0xe6, 0xad, 0x51, + 0x88, 0xbc, 0xb0, 0x61, 0xfb, 0x3e, 0xb7, 0x20, 0x59, 0xba, 0x68, 0x13, 0xb2, 0x5d, 0x4a, 0xfa, + 0x72, 0x93, 0x87, 0x0b, 0x5a, 0xc6, 0x14, 0xdf, 0xe8, 0x0e, 0x14, 0xf8, 0xaf, 0x75, 0x46, 0x22, + 0xa6, 0x2d, 0x0f, 0x90, 0x79, 0x0e, 0x7c, 0x4e, 0x22, 0x86, 0x10, 0x2c, 0x30, 0x22, 0x43, 0x4e, + 0x60, 0x16, 0x18, 0x41, 0xdb, 0xb0, 0xcc, 0x88, 0x64, 0xc9, 0x0d, 0x10, 0x4b, 0x8c, 0x08, 0x86, + 0x7b, 0x50, 0x8c, 0xa8, 0x63, 0xd9, 0xae, 0xcb, 0x77, 0x26, 0x32, 0x51, 0x12, 0x40, 0x44, 0x9d, + 0x03, 0x09, 0x45, 0x35, 0xc8, 0x72, 0xd3, 0xb5, 0xbc, 0xf0, 0x47, 0x49, 0x04, 0xca, 0x49, 0xcb, + 0xe0, 0xc6, 0x9a, 0x02, 0xb3, 0xf3, 0xaf, 0x2c, 0xdc, 0xbd, 0xc2, 0x0b, 0x2a, 0xa9, 0x9e, 0x40, + 0x3e, 0x8e, 0x30, 0x0d, 0xec, 0x3e, 0x56, 0x67, 0xf0, 0xe1, 0x4f, 0x46, 0xe6, 0x9f, 0xc6, 0xed, + 0x2f, 0x29, 0x76, 0x6d, 0x87, 0x61, 0xb7, 0xb6, 0xfb, 0xfd, 0xf7, 0xb5, 0xfa, 0x89, 0xf7, 0x27, + 0x5c, 0xfb, 0xe1, 0x87, 0xda, 0xe9, 0x25, 0xc3, 0xd1, 0xc3, 0xc7, 0xe6, 0x80, 0x8b, 0x4b, 0x08, + 0xed, 0x28, 0x7a, 0x4d, 0xa8, 0xab, 0x9c, 0x73, 0x43, 0x09, 0x09, 0x17, 0x42, 0x90, 0x75, 0x29, + 0x09, 0x85, 0x8f, 0xf2, 0xa6, 0x58, 0xa3, 0x3d, 0x28, 0xf1, 0xe3, 0x61, 0xdc, 0x74, 0x7e, 0x3e, + 0xd2, 0x0b, 0x2b, 0x6f, 0x0d, 0x88, 0xbc, 0x50, 0x6c, 0xa8, 0xd5, 0x34, 0x87, 0x6b, 0x77, 0x2c, + 0x8d, 0x73, 0x57, 0xa7, 0xf1, 0x23, 0x58, 0x09, 0x29, 0xb9, 0xf0, 0x5c, 0x4c, 0x2d, 0x51, 0x53, + 0x96, 0xc6, 0xc2, 0xca, 0x50, 0x58, 0x91, 0x71, 0xa5, 0x30, 0xf5, 0x85, 0xbe, 0x06, 0xc0, 0x94, + 0x12, 0x6a, 0x39, 0xc4, 0xc5, 0xe2, 0xc4, 0x57, 0xf7, 0x6b, 0x89, 0xff, 0xa7, 0xb8, 0x5a, 0xe7, + 0xc4, 0x66, 0x41, 0xf0, 0x34, 0x88, 0x8b, 0xd1, 0xef, 0xc7, 0x93, 0x3d, 0x2f, 0x92, 0xfd, 0xf3, + 0x24, 0xd9, 0xaf, 0x3e, 0xb1, 0x6b, 0xf3, 0xfe, 0x7f, 0xce, 0xda, 0x9f, 0x72, 0x70, 0x47, 0xe7, + 0x9f, 0x36, 0xc3, 0x27, 0x2d, 0xa3, 0xe9, 0x45, 0xa1, 0xcd, 0x9c, 0x33, 0x33, 0xf6, 0x71, 0x34, + 0x23, 0x7b, 0xf2, 0xd7, 0x65, 0x4f, 0x03, 0x10, 0xa7, 0x0f, 0x6d, 0xca, 0x3c, 0xc7, 0x0b, 0xed, + 0x80, 0x0d, 0x93, 0x7e, 0x83, 0xb3, 0x95, 0x23, 0x2f, 0x34, 0x86, 0xd8, 0x56, 0xd3, 0x1c, 0x87, + 0xb8, 0x13, 0x31, 0x01, 0xd7, 0xc5, 0xc4, 0x43, 0x58, 0xe5, 0x16, 0xf2, 0x6a, 0x1d, 0xc4, 0xfd, + 0x53, 0x4c, 0x53, 0xd9, 0xbb, 0xa2, 0x30, 0x47, 0x02, 0x81, 0xee, 0x43, 0x29, 0x21, 0x15, 0x69, + 0x59, 0x1c, 0x10, 0x16, 0x15, 0x5c, 0xe4, 0xe6, 0x03, 0x10, 0x7c, 0xd8, 0x4d, 0x04, 0x0e, 0xf3, + 0xba, 0x24, 0x11, 0x4a, 0xde, 0x8d, 0x92, 0xb8, 0x0c, 0x8b, 0xa1, 0x17, 0xc8, 0x60, 0x35, 0xf9, + 0x92, 0xdf, 0x51, 0x01, 0xb1, 0x38, 0x70, 0x49, 0x24, 0x43, 0x2e, 0x20, 0x86, 0x17, 0x70, 0x69, + 0x4a, 0xed, 0x58, 0x99, 0x01, 0x09, 0x16, 0xb6, 0xfd, 0x2d, 0x03, 0x65, 0xfc, 0x86, 0x51, 0xdb, + 0xb2, 0x19, 0xa3, 0xde, 0x69, 0xcc, 0x70, 0xa4, 0x15, 0x44, 0x6c, 0xfd, 0x52, 0xc4, 0xd6, 0x35, + 0x87, 0x5a, 0xd7, 0x39, 0xf3, 0xc1, 0x80, 0x57, 0x44, 0xce, 0x0d, 0x93, 0x79, 0x0d, 0x8f, 0xf2, + 0x0e, 0xea, 0x53, 0x69, 0x56, 0x7d, 0xaa, 0x1e, 0x42, 0x65, 0x9a, 0xc2, 0xb9, 0x42, 0xf5, 0xcf, + 0x65, 0xa8, 0xcd, 0xde, 0x95, 0x2a, 0x71, 0xdb, 0x50, 0xe0, 0x0f, 0x3c, 0x6b, 0x58, 0xe3, 0xcc, + 0x3c, 0x07, 0x1c, 0xf1, 0xea, 0xf5, 0x29, 0x54, 0x46, 0x83, 0x92, 0x67, 0x1c, 0x4b, 0x1e, 0x26, + 0xb7, 0xc2, 0x74, 0x00, 0x4a, 0x14, 0x3a, 0x86, 0x72, 0x9a, 0x45, 0x88, 0x5d, 0x9e, 0xa3, 0xf0, + 0xad, 0xa5, 0xb8, 0x85, 0x0d, 0xbf, 0x1a, 0xb5, 0xa1, 0x8f, 0x99, 0xed, 0xda, 0xcc, 0x56, 0x59, + 0x75, 0x33, 0xa1, 0x69, 0x4b, 0x5f, 0x29, 0x01, 0xe8, 0x1f, 0x19, 0xd8, 0x4c, 0x4b, 0x4e, 0xc5, + 0x45, 0x51, 0xc4, 0xc5, 0x93, 0x6b, 0xe2, 0x42, 0x95, 0x9c, 0x54, 0x1a, 0xbe, 0x5b, 0x78, 0x6c, + 0x84, 0xd3, 0x24, 0xf0, 0xb0, 0xa6, 0x32, 0xf6, 0x44, 0xc8, 0x8b, 0xfa, 0x2f, 0xc3, 0x5a, 0x81, + 0x79, 0xec, 0x3f, 0x4a, 0x1e, 0x73, 0xd9, 0x39, 0xdc, 0x31, 0xf1, 0xe4, 0xcb, 0xa5, 0x9f, 0x7c, + 0x75, 0x58, 0xa2, 0x38, 0x8a, 0x7d, 0x26, 0xb2, 0x6c, 0x75, 0x7f, 0x33, 0x09, 0xcf, 0xc1, 0xf6, + 0x05, 0xd6, 0x54, 0x54, 0x13, 0x85, 0xa7, 0x70, 0x5d, 0xe1, 0xd1, 0xa1, 0xc2, 0x19, 0x5c, 0x25, + 0xce, 0xa2, 0xb1, 0x8f, 0x87, 0x15, 0xab, 0xf2, 0xd6, 0x58, 0x8f, 0xbc, 0x30, 0xed, 0xeb, 0x56, + 0xd3, 0x9c, 0x00, 0x8d, 0xdf, 0x69, 0xa5, 0xab, 0xef, 0x34, 0x0a, 0xcb, 0x67, 0xd8, 0x76, 0x31, + 0x8d, 0xb4, 0x15, 0x71, 0xb8, 0xfb, 0x37, 0x3b, 0xdc, 0xe7, 0x92, 0x69, 0x9e, 0xe3, 0x4c, 0x14, + 0x21, 0x0a, 0x1b, 0x6a, 0x69, 0x31, 0x92, 0x0e, 0xaf, 0x55, 0x61, 0xc1, 0xe3, 0xb9, 0x2c, 0x68, + 0x93, 0xb1, 0xe0, 0x32, 0x6f, 0x9d, 0x4d, 0x62, 0xb8, 0xce, 0xa1, 0x22, 0xae, 0x36, 0xd9, 0x35, + 0x9a, 0x47, 0xe7, 0x50, 0x60, 0x9b, 0xa4, 0x3d, 0x60, 0xde, 0xb2, 0x27, 0x31, 0xe8, 0x10, 0xd6, + 0xbc, 0xc0, 0xf1, 0x63, 0x17, 0x0f, 0xb4, 0xdd, 0x12, 0x91, 0xb3, 0x35, 0x78, 0x31, 0x9c, 0xb4, + 0x0c, 0x49, 0x7d, 0x2c, 0x3b, 0x47, 0x73, 0x55, 0x71, 0x24, 0x32, 0x1e, 0x43, 0x19, 0x07, 0xf6, + 0x29, 0x2f, 0xe2, 0xea, 0xbe, 0x8e, 0xb4, 0xb5, 0xda, 0xe2, 0xee, 0x6a, 0xaa, 0x77, 0x3b, 0x69, + 0x19, 0xea, 0xee, 0x36, 0xd7, 0x14, 0xb1, 0xfa, 0x16, 0x36, 0x50, 0x2f, 0x10, 0xad, 0x07, 0xf3, + 0xfa, 0x98, 0xc4, 0x4c, 0x2b, 0x8b, 0xe2, 0xba, 0x55, 0x97, 0x0d, 0x68, 0x3d, 0x69, 0x40, 0xeb, + 0x4d, 0xd5, 0x80, 0x9a, 0xab, 0x8a, 0xa3, 0x2d, 0x19, 0x90, 0x0e, 0xeb, 0xa2, 0xcd, 0xe3, 0xd7, + 0x76, 0xd2, 0xa5, 0x6a, 0xeb, 0xd7, 0x49, 0x59, 0xe3, 0x5d, 0xa0, 0xed, 0xfb, 0x09, 0x00, 0xdd, + 0x81, 0xa2, 0xa8, 0xa8, 0x21, 0xc5, 0x11, 0x66, 0x5a, 0x45, 0xe4, 0x16, 0x70, 0x90, 0x21, 0x20, + 0xe8, 0x0b, 0x45, 0xe0, 0x90, 0xa0, 0xeb, 0xf5, 0xb4, 0x0d, 0xa1, 0xa1, 0x3a, 0xd8, 0xa6, 0x49, + 0x48, 0xbf, 0x21, 0x50, 0x89, 0x0a, 0xc1, 0x2c, 0x41, 0xe8, 0x05, 0x94, 0xfb, 0xd8, 0xf5, 0x6c, + 0x0b, 0x07, 0x0e, 0xbd, 0x14, 0xde, 0xd4, 0x36, 0x85, 0xb7, 0xb7, 0xd3, 0x8e, 0x7a, 0xc5, 0x69, + 0xf4, 0x01, 0x89, 0xa8, 0x1b, 0x6b, 0xfd, 0x51, 0x20, 0xfa, 0x04, 0x72, 0x02, 0xa4, 0x69, 0xc2, + 0x84, 0xf7, 0x27, 0x04, 0x48, 0x9d, 0xa6, 0xa4, 0x42, 0xbf, 0x1b, 0x7f, 0x9a, 0xbd, 0x2f, 0x62, + 0xea, 0xb3, 0x9b, 0xc5, 0xd4, 0x75, 0x2f, 0xb3, 0xe7, 0x50, 0x9d, 0x5d, 0x49, 0xe7, 0xea, 0xcc, + 0x1e, 0x41, 0x29, 0x1d, 0xb4, 0x73, 0xf1, 0x3e, 0x05, 0x6d, 0x56, 0xc2, 0xcd, 0x2b, 0x67, 0x56, + 0x12, 0xfd, 0x7f, 0xbb, 0xcc, 0x1f, 0x33, 0x49, 0x9b, 0xa9, 0x1e, 0x18, 0x23, 0x6d, 0xe6, 0xa7, + 0x50, 0x90, 0xaf, 0xd4, 0x69, 0xa3, 0x03, 0xc5, 0x20, 0x5e, 0xf9, 0x79, 0x47, 0xad, 0xd0, 0x57, + 0xb0, 0xc2, 0xa8, 0x1d, 0x44, 0xdd, 0xa4, 0x3b, 0x90, 0x4d, 0xa7, 0x96, 0x66, 0x6b, 0x2b, 0x02, + 0xd9, 0x20, 0xb0, 0xd4, 0xd7, 0xce, 0x2b, 0xd0, 0x4c, 0xec, 0x10, 0xea, 0x72, 0xd1, 0x0d, 0x12, + 0x30, 0xfc, 0x86, 0xbd, 0xbb, 0x35, 0x3b, 0xff, 0x5e, 0x80, 0x65, 0x85, 0x41, 0x0f, 0x01, 0xfc, + 0xf3, 0xc1, 0xab, 0x7b, 0x38, 0x37, 0xf2, 0xcf, 0xd5, 0x93, 0x3b, 0x59, 0xb9, 0xfc, 0xd5, 0x13, + 0x91, 0x98, 0x3a, 0xd8, 0xf2, 0x42, 0xe5, 0xb3, 0xbc, 0x04, 0xb4, 0x42, 0xf4, 0x10, 0x96, 0x93, + 0x97, 0xe9, 0xa2, 0x30, 0x62, 0x2d, 0x6d, 0x44, 0x87, 0x7a, 0x66, 0x82, 0x47, 0xf7, 0x54, 0xdf, + 0x9b, 0x9d, 0x4e, 0x97, 0x34, 0xc1, 0xbc, 0xc7, 0xcd, 0x4d, 0x27, 0xe1, 0x0d, 0xef, 0x5d, 0x58, + 0xbc, 0xf0, 0x6c, 0x6d, 0x49, 0xa4, 0xd3, 0x04, 0x05, 0xc7, 0xa1, 0x9f, 0x8f, 0xb6, 0x14, 0xcb, + 0x83, 0xdb, 0x6e, 0x6a, 0x43, 0x31, 0x7a, 0x35, 0xe6, 0xaf, 0xbc, 0x1a, 0x3f, 0xfa, 0x03, 0xac, + 0x4f, 0x5c, 0xee, 0x48, 0x83, 0xca, 0x4b, 0xfd, 0xd9, 0x41, 0xe3, 0x37, 0xd6, 0x41, 0xa3, 0xa1, + 0x1b, 0x6d, 0xeb, 0xd8, 0xb4, 0x8c, 0xd6, 0x51, 0xf9, 0x3d, 0x04, 0xb0, 0x24, 0x41, 0xe5, 0x0c, + 0x5a, 0x83, 0xa2, 0xa9, 0x7f, 0xdb, 0xd1, 0x4f, 0xda, 0x02, 0xb9, 0xc0, 0x91, 0xa6, 0xfe, 0x42, + 0x6f, 0xb4, 0xcb, 0x8b, 0x28, 0x0f, 0xd9, 0xa6, 0x79, 0x6c, 0x94, 0xb3, 0x1f, 0xfd, 0x3d, 0x03, + 0xdb, 0x57, 0xb4, 0x7f, 0xe8, 0x03, 0xd8, 0x3a, 0x69, 0x19, 0x56, 0xdb, 0xec, 0x1c, 0x7d, 0x63, + 0x1d, 0x74, 0xda, 0xcf, 0x2d, 0xdd, 0x34, 0x8f, 0x4d, 0xeb, 0xe8, 0xf8, 0x48, 0x2f, 0xbf, 0x87, + 0x1e, 0xc0, 0xbd, 0xa9, 0xe8, 0x6f, 0x3b, 0xc7, 0xed, 0x03, 0x4b, 0xff, 0x75, 0x43, 0xd7, 0x9b, + 0x7a, 0xb3, 0x9c, 0x99, 0x49, 0x78, 0x74, 0xac, 0x60, 0x4f, 0x8f, 0x3b, 0x47, 0xcd, 0xf2, 0xc2, + 0xfe, 0x8f, 0xcb, 0xb0, 0xd4, 0x3a, 0x16, 0xe1, 0xfc, 0x05, 0x94, 0x1a, 0x14, 0xdb, 0x0c, 0xcb, + 0xc9, 0x20, 0x9a, 0x36, 0x2a, 0xac, 0x6e, 0x4e, 0x94, 0x7f, 0xbd, 0x1f, 0xb2, 0x4b, 0xce, 0x2c, + 0x73, 0xeb, 0x5d, 0x98, 0x3f, 0x83, 0xc2, 0x60, 0xf2, 0x89, 0x36, 0x92, 0xfe, 0x76, 0x64, 0x12, + 0x5a, 0x9d, 0x26, 0x10, 0xe9, 0x00, 0x2f, 0xbd, 0x28, 0xe1, 0x1c, 0x5e, 0x1c, 0x43, 0x60, 0xc2, + 0xbe, 0x3d, 0x15, 0xa7, 0x5e, 0xfe, 0x87, 0xb0, 0x32, 0x32, 0x3a, 0x45, 0x5b, 0xc2, 0x86, 0x69, + 0xe3, 0xd4, 0x99, 0x7b, 0xf8, 0x0a, 0x56, 0xa4, 0xf7, 0xd4, 0xa4, 0x09, 0x4d, 0x1d, 0x3c, 0xce, + 0x64, 0x6f, 0xc1, 0xea, 0xe8, 0xfc, 0x0e, 0x55, 0xa7, 0x0e, 0xf5, 0x92, 0xdd, 0xcc, 0x1e, 0xf8, + 0xa1, 0x97, 0x80, 0x26, 0xa7, 0x69, 0xe8, 0x76, 0x6a, 0x4b, 0x53, 0xc6, 0x6c, 0x33, 0x0d, 0xfb, + 0x0e, 0xb6, 0x66, 0xce, 0x1a, 0xd0, 0xfd, 0xeb, 0x66, 0x11, 0x52, 0xf6, 0xcf, 0x6e, 0x36, 0xb2, + 0x40, 0x3d, 0xd0, 0x66, 0x5d, 0x9e, 0xe8, 0xc3, 0x9b, 0xb4, 0xa6, 0xd5, 0xfb, 0x37, 0xba, 0x81, + 0x87, 0x2e, 0x4a, 0xdf, 0x04, 0x23, 0x2e, 0x9a, 0x72, 0x45, 0xcc, 0x74, 0xd1, 0x0b, 0x58, 0x9f, + 0x28, 0xe4, 0xe8, 0x03, 0x21, 0x6c, 0x56, 0x81, 0x9f, 0x25, 0xeb, 0xf0, 0xee, 0x6f, 0xef, 0xf4, + 0x3c, 0x76, 0x16, 0x9f, 0xd6, 0x1d, 0xd2, 0xdf, 0x53, 0x11, 0x24, 0xff, 0x32, 0x70, 0x88, 0xbf, + 0x47, 0x43, 0xe7, 0x74, 0x49, 0x7c, 0xfd, 0xe2, 0xbf, 0x01, 0x00, 0x00, 0xff, 0xff, 0x54, 0xa1, + 0x45, 0xb9, 0xea, 0x18, 0x00, 0x00, } diff --git a/rpc/sip.go b/rpc/sip.go index 2def0553e..96fd8d159 100644 --- a/rpc/sip.go +++ b/rpc/sip.go @@ -7,6 +7,8 @@ import ( "net" "strings" + "google.golang.org/protobuf/proto" + "github.com/livekit/protocol/livekit" ) @@ -163,6 +165,8 @@ func NewCreateSIPParticipantRequest( participantIdentity = "sip_" + req.SipCallTo } + media := proto.CloneOf(req.Media) + media.MergeEncryption(enc) return &InternalCreateSIPParticipantRequest{ ProjectId: projectID, SipCallId: callID, @@ -191,7 +195,8 @@ func NewCreateSIPParticipantRequest( EnabledFeatures: features, RingingTimeout: req.RingingTimeout, MaxCallDuration: req.MaxCallDuration, - MediaEncryption: enc, + MediaEncryption: media.Encryption, + Media: media, WaitUntilAnswered: req.WaitUntilAnswered, DisplayName: req.DisplayName, Destination: req.Destination, diff --git a/rpc/sip.pb.go b/rpc/sip.pb.go index ecfa1de69..f390a4f69 100644 --- a/rpc/sip.pb.go +++ b/rpc/sip.pb.go @@ -88,8 +88,10 @@ type InternalCreateSIPParticipantRequest struct { // Max time for the callee to answer the call. RingingTimeout *durationpb.Duration `protobuf:"bytes,23,opt,name=ringing_timeout,json=ringingTimeout,proto3" json:"ringing_timeout,omitempty"` // Max call duration. - MaxCallDuration *durationpb.Duration `protobuf:"bytes,24,opt,name=max_call_duration,json=maxCallDuration,proto3" json:"max_call_duration,omitempty"` + MaxCallDuration *durationpb.Duration `protobuf:"bytes,24,opt,name=max_call_duration,json=maxCallDuration,proto3" json:"max_call_duration,omitempty"` + // Deprecated: Marked as deprecated in rpc/sip.proto. MediaEncryption livekit.SIPMediaEncryption `protobuf:"varint,28,opt,name=media_encryption,json=mediaEncryption,proto3,enum=livekit.SIPMediaEncryption" json:"media_encryption,omitempty"` + Media *livekit.SIPMediaConfig `protobuf:"bytes,34,opt,name=media,proto3" json:"media,omitempty"` // Wait for the answer for the call before returning. WaitUntilAnswered bool `protobuf:"varint,29,opt,name=wait_until_answered,json=waitUntilAnswered,proto3" json:"wait_until_answered,omitempty"` // Optional display name for the 'From' SIP header. @@ -326,6 +328,7 @@ func (x *InternalCreateSIPParticipantRequest) GetMaxCallDuration() *durationpb.D return nil } +// Deprecated: Marked as deprecated in rpc/sip.proto. func (x *InternalCreateSIPParticipantRequest) GetMediaEncryption() livekit.SIPMediaEncryption { if x != nil { return x.MediaEncryption @@ -333,6 +336,13 @@ func (x *InternalCreateSIPParticipantRequest) GetMediaEncryption() livekit.SIPMe return livekit.SIPMediaEncryption(0) } +func (x *InternalCreateSIPParticipantRequest) GetMedia() *livekit.SIPMediaConfig { + if x != nil { + return x.Media + } + return nil +} + func (x *InternalCreateSIPParticipantRequest) GetWaitUntilAnswered() bool { if x != nil { return x.WaitUntilAnswered @@ -513,7 +523,7 @@ var File_rpc_sip_proto protoreflect.FileDescriptor const file_rpc_sip_proto_rawDesc = "" + "\n" + - "\rrpc/sip.proto\x12\x03rpc\x1a\x1bgoogle/protobuf/empty.proto\x1a\x1egoogle/protobuf/duration.proto\x1a\roptions.proto\x1a\x11livekit_sip.proto\x1a\x14logger/options.proto\"\xe6\x12\n" + + "\rrpc/sip.proto\x12\x03rpc\x1a\x1bgoogle/protobuf/empty.proto\x1a\x1egoogle/protobuf/duration.proto\x1a\roptions.proto\x1a\x11livekit_sip.proto\x1a\x14logger/options.proto\"\x99\x13\n" + "#InternalCreateSIPParticipantRequest\x12+\n" + "\n" + "project_id\x18\x12 \x01(\tB\f\xbaP\tprojectIDR\tprojectId\x12,\n" + @@ -545,8 +555,9 @@ const file_rpc_sip_proto_rawDesc = "" + "\x0finclude_headers\x18\x1b \x01(\x0e2\x19.livekit.SIPHeaderOptionsR\x0eincludeHeaders\x12>\n" + "\x10enabled_features\x18\x19 \x03(\x0e2\x13.livekit.SIPFeatureR\x0fenabledFeatures\x12B\n" + "\x0fringing_timeout\x18\x17 \x01(\v2\x19.google.protobuf.DurationR\x0eringingTimeout\x12E\n" + - "\x11max_call_duration\x18\x18 \x01(\v2\x19.google.protobuf.DurationR\x0fmaxCallDuration\x12F\n" + - "\x10media_encryption\x18\x1c \x01(\x0e2\x1b.livekit.SIPMediaEncryptionR\x0fmediaEncryption\x12.\n" + + "\x11max_call_duration\x18\x18 \x01(\v2\x19.google.protobuf.DurationR\x0fmaxCallDuration\x12J\n" + + "\x10media_encryption\x18\x1c \x01(\x0e2\x1b.livekit.SIPMediaEncryptionB\x02\x18\x01R\x0fmediaEncryption\x12-\n" + + "\x05media\x18\" \x01(\v2\x17.livekit.SIPMediaConfigR\x05media\x12.\n" + "\x13wait_until_answered\x18\x1d \x01(\bR\x11waitUntilAnswered\x12L\n" + "\fdisplay_name\x18\x1f \x01(\tB$\xa8P\x01\xb2P\x1eH\x00R\vdisplayName\x88\x01\x01\x126\n" + "\vdestination\x18 \x01(\v2\x14.livekit.DestinationR\vdestination\x12_\n" + @@ -618,8 +629,9 @@ var file_rpc_sip_proto_goTypes = []any{ (livekit.SIPFeature)(0), // 12: livekit.SIPFeature (*durationpb.Duration)(nil), // 13: google.protobuf.Duration (livekit.SIPMediaEncryption)(0), // 14: livekit.SIPMediaEncryption - (*livekit.Destination)(nil), // 15: livekit.Destination - (*emptypb.Empty)(nil), // 16: google.protobuf.Empty + (*livekit.SIPMediaConfig)(nil), // 15: livekit.SIPMediaConfig + (*livekit.Destination)(nil), // 16: livekit.Destination + (*emptypb.Empty)(nil), // 17: google.protobuf.Empty } var file_rpc_sip_proto_depIdxs = []int32{ 10, // 0: rpc.InternalCreateSIPParticipantRequest.transport:type_name -> livekit.SIPTransport @@ -632,20 +644,21 @@ var file_rpc_sip_proto_depIdxs = []int32{ 13, // 7: rpc.InternalCreateSIPParticipantRequest.ringing_timeout:type_name -> google.protobuf.Duration 13, // 8: rpc.InternalCreateSIPParticipantRequest.max_call_duration:type_name -> google.protobuf.Duration 14, // 9: rpc.InternalCreateSIPParticipantRequest.media_encryption:type_name -> livekit.SIPMediaEncryption - 15, // 10: rpc.InternalCreateSIPParticipantRequest.destination:type_name -> livekit.Destination - 7, // 11: rpc.InternalCreateSIPParticipantRequest.feature_flags:type_name -> rpc.InternalCreateSIPParticipantRequest.FeatureFlagsEntry - 8, // 12: rpc.InternalTransferSIPParticipantRequest.headers:type_name -> rpc.InternalTransferSIPParticipantRequest.HeadersEntry - 13, // 13: rpc.InternalTransferSIPParticipantRequest.ringing_timeout:type_name -> google.protobuf.Duration - 9, // 14: rpc.InternalTransferSIPParticipantRequest.feature_flags:type_name -> rpc.InternalTransferSIPParticipantRequest.FeatureFlagsEntry - 0, // 15: rpc.SIPInternal.CreateSIPParticipant:input_type -> rpc.InternalCreateSIPParticipantRequest - 2, // 16: rpc.SIPInternal.TransferSIPParticipant:input_type -> rpc.InternalTransferSIPParticipantRequest - 1, // 17: rpc.SIPInternal.CreateSIPParticipant:output_type -> rpc.InternalCreateSIPParticipantResponse - 16, // 18: rpc.SIPInternal.TransferSIPParticipant:output_type -> google.protobuf.Empty - 17, // [17:19] is the sub-list for method output_type - 15, // [15:17] is the sub-list for method input_type - 15, // [15:15] is the sub-list for extension type_name - 15, // [15:15] is the sub-list for extension extendee - 0, // [0:15] is the sub-list for field type_name + 15, // 10: rpc.InternalCreateSIPParticipantRequest.media:type_name -> livekit.SIPMediaConfig + 16, // 11: rpc.InternalCreateSIPParticipantRequest.destination:type_name -> livekit.Destination + 7, // 12: rpc.InternalCreateSIPParticipantRequest.feature_flags:type_name -> rpc.InternalCreateSIPParticipantRequest.FeatureFlagsEntry + 8, // 13: rpc.InternalTransferSIPParticipantRequest.headers:type_name -> rpc.InternalTransferSIPParticipantRequest.HeadersEntry + 13, // 14: rpc.InternalTransferSIPParticipantRequest.ringing_timeout:type_name -> google.protobuf.Duration + 9, // 15: rpc.InternalTransferSIPParticipantRequest.feature_flags:type_name -> rpc.InternalTransferSIPParticipantRequest.FeatureFlagsEntry + 0, // 16: rpc.SIPInternal.CreateSIPParticipant:input_type -> rpc.InternalCreateSIPParticipantRequest + 2, // 17: rpc.SIPInternal.TransferSIPParticipant:input_type -> rpc.InternalTransferSIPParticipantRequest + 1, // 18: rpc.SIPInternal.CreateSIPParticipant:output_type -> rpc.InternalCreateSIPParticipantResponse + 17, // 19: rpc.SIPInternal.TransferSIPParticipant:output_type -> google.protobuf.Empty + 18, // [18:20] is the sub-list for method output_type + 16, // [16:18] is the sub-list for method input_type + 16, // [16:16] is the sub-list for extension type_name + 16, // [16:16] is the sub-list for extension extendee + 0, // [0:16] is the sub-list for field type_name } func init() { file_rpc_sip_proto_init() } diff --git a/rpc/sip.psrpc.go b/rpc/sip.psrpc.go index f2ef2b5d3..9266644f9 100644 --- a/rpc/sip.psrpc.go +++ b/rpc/sip.psrpc.go @@ -163,81 +163,83 @@ func (UnimplementedSIPInternalServer) TransferSIPParticipant(context.Context, *I } var psrpcFileDescriptor11 = []byte{ - // 1208 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x57, 0xcd, 0x6f, 0xdb, 0x36, - 0x14, 0x9f, 0xe2, 0x7c, 0xd2, 0x76, 0xec, 0xd0, 0x49, 0xca, 0x3a, 0x5b, 0xeb, 0xa6, 0x1d, 0xe0, - 0x6e, 0x83, 0x8c, 0xa5, 0xd8, 0x3a, 0x04, 0x45, 0xb7, 0xe6, 0x0b, 0x35, 0xb0, 0xae, 0x86, 0xe2, - 0x62, 0xc0, 0x2e, 0x02, 0x2d, 0xd1, 0x0e, 0x17, 0x49, 0xd4, 0x48, 0xaa, 0xae, 0x57, 0xf4, 0xbe, - 0xfe, 0x17, 0x3b, 0xee, 0xdc, 0xd3, 0xd0, 0xd3, 0xfe, 0x9a, 0xfd, 0x0b, 0xbb, 0x0e, 0xa4, 0x24, - 0x5b, 0x4e, 0x9c, 0xd4, 0x42, 0x6f, 0x7a, 0x5f, 0x3f, 0xbe, 0xf7, 0xf8, 0x3e, 0x28, 0x50, 0xe6, - 0xa1, 0xd3, 0x12, 0x34, 0x34, 0x43, 0xce, 0x24, 0x83, 0x05, 0x1e, 0x3a, 0xf5, 0x9d, 0x01, 0x63, - 0x03, 0x8f, 0xb4, 0x34, 0xab, 0x17, 0xf5, 0x5b, 0xc4, 0x0f, 0xe5, 0x28, 0xd6, 0xa8, 0xdf, 0xba, - 0x28, 0x74, 0x23, 0x8e, 0x25, 0x65, 0x41, 0x22, 0x2f, 0xb3, 0x50, 0x51, 0x22, 0x21, 0x37, 0x3c, - 0xfa, 0x92, 0x9c, 0x53, 0x69, 0x8f, 0xcf, 0xa8, 0x6f, 0x7a, 0x6c, 0x30, 0x20, 0xbc, 0x35, 0xa5, - 0xb8, 0xfb, 0x2f, 0x04, 0x77, 0xdb, 0x81, 0x24, 0x3c, 0xc0, 0xde, 0x21, 0x27, 0x58, 0x92, 0xd3, - 0x76, 0xa7, 0x83, 0xb9, 0xa4, 0x0e, 0x0d, 0x71, 0x20, 0x2d, 0xf2, 0x5b, 0x44, 0x84, 0x84, 0x5f, - 0x02, 0x10, 0x72, 0xf6, 0x2b, 0x71, 0xa4, 0x4d, 0x5d, 0x04, 0x1b, 0x46, 0x73, 0xed, 0xa0, 0xf4, - 0xbe, 0xb3, 0x96, 0x30, 0xdb, 0x47, 0xd6, 0xf8, 0xd3, 0x85, 0x5f, 0x81, 0xa2, 0xa0, 0xa1, 0xed, - 0x60, 0xcf, 0x53, 0xda, 0xe5, 0xb1, 0xb6, 0xa0, 0xe1, 0x21, 0xf6, 0x3c, 0xa5, 0x9d, 0x7e, 0xba, - 0xb0, 0x05, 0x4a, 0x4a, 0x5b, 0xf2, 0x28, 0x38, 0x57, 0xea, 0x35, 0xad, 0x5e, 0x7e, 0xdf, 0x01, - 0x82, 0x86, 0x5d, 0xc5, 0x6d, 0x1f, 0x59, 0x93, 0x6f, 0x17, 0x22, 0xb0, 0x82, 0x5d, 0x97, 0x13, - 0x21, 0xd0, 0x82, 0xd2, 0xb5, 0x52, 0x12, 0xd6, 0xc1, 0xea, 0x19, 0x13, 0x32, 0xc0, 0x3e, 0x41, - 0x9b, 0x5a, 0x34, 0xa6, 0x61, 0x0b, 0xd4, 0x5c, 0x22, 0x24, 0x0d, 0x74, 0xda, 0x6c, 0x87, 0x45, - 0x81, 0xe4, 0x23, 0x74, 0x4b, 0xab, 0xc1, 0x8c, 0xe8, 0x30, 0x96, 0xc0, 0x07, 0x60, 0x4d, 0x72, - 0x1c, 0x88, 0x90, 0x71, 0x89, 0xaa, 0x0d, 0xa3, 0xb9, 0xbe, 0xb7, 0x65, 0x26, 0x79, 0x35, 0x4f, - 0xdb, 0x9d, 0x6e, 0x2a, 0xb4, 0x26, 0x7a, 0x70, 0x1b, 0x2c, 0x07, 0x91, 0xdf, 0x23, 0x1c, 0x15, - 0x34, 0x70, 0x42, 0xc1, 0x1b, 0x60, 0x45, 0xa7, 0x43, 0x32, 0xb4, 0x18, 0x0b, 0x14, 0xd9, 0x65, - 0xf0, 0x07, 0xb0, 0x1a, 0x09, 0x95, 0x7e, 0x9f, 0xa0, 0x25, 0x1d, 0xf9, 0xbd, 0xbf, 0x3a, 0xc6, - 0xbb, 0xce, 0xad, 0x47, 0x9c, 0xb8, 0xd8, 0x91, 0xc4, 0x6d, 0x34, 0x5f, 0xbf, 0x6e, 0x98, 0xa7, - 0xf4, 0x77, 0xd2, 0x78, 0xf3, 0xa6, 0xd1, 0x1b, 0x49, 0x22, 0xee, 0x3f, 0xb6, 0xc6, 0x56, 0x0a, - 0x21, 0xc4, 0x42, 0x0c, 0x19, 0x77, 0xd1, 0x72, 0x1e, 0x84, 0xd4, 0x0a, 0xee, 0x80, 0x35, 0xce, - 0x98, 0x6f, 0x6b, 0x27, 0x56, 0xe2, 0xbc, 0x29, 0xc6, 0x4f, 0x0a, 0xfe, 0x6b, 0xb0, 0x19, 0x4e, - 0xea, 0xc1, 0xa6, 0x2e, 0x09, 0x24, 0x95, 0x23, 0xb4, 0xaa, 0xf5, 0x6a, 0x19, 0x59, 0x3b, 0x11, - 0xc1, 0xe7, 0xa0, 0x9a, 0x35, 0xd1, 0xb0, 0xeb, 0x39, 0x3c, 0xab, 0x64, 0xac, 0xb5, 0x0f, 0x3f, - 0x4f, 0xfb, 0xe0, 0x13, 0x89, 0x5d, 0x2c, 0x31, 0xaa, 0xe4, 0x00, 0xcd, 0x7a, 0xfa, 0x2c, 0x01, - 0x80, 0x7f, 0x1a, 0x60, 0x3b, 0x8b, 0x8c, 0xa5, 0xe4, 0xb4, 0x17, 0x49, 0x22, 0xd0, 0x46, 0xa3, - 0xd0, 0x2c, 0xee, 0x1d, 0x9a, 0x3c, 0x74, 0xcc, 0x39, 0x3a, 0xc4, 0xcc, 0xb0, 0x9e, 0x8c, 0x51, - 0x8e, 0x55, 0x25, 0xcd, 0xe9, 0xe0, 0x56, 0x38, 0x0b, 0x01, 0xee, 0x83, 0x25, 0xc9, 0xce, 0x49, - 0x80, 0xd6, 0x72, 0x04, 0x1b, 0x9b, 0xc0, 0x2d, 0xb0, 0x3c, 0x14, 0x76, 0xc4, 0x3d, 0x04, 0xf4, - 0x6d, 0x2d, 0x0d, 0xc5, 0x0b, 0xee, 0x41, 0x08, 0x16, 0x5d, 0xe9, 0xf7, 0x51, 0x51, 0x33, 0xf5, - 0x37, 0xbc, 0x0b, 0xca, 0xa1, 0x87, 0x47, 0xb6, 0x4b, 0xb1, 0x27, 0x59, 0x40, 0x50, 0xa9, 0x61, - 0x34, 0x57, 0xad, 0x92, 0x62, 0x1e, 0x25, 0x3c, 0x18, 0x81, 0x95, 0x33, 0x82, 0x5d, 0xc2, 0x05, - 0xda, 0xd2, 0xe9, 0xf9, 0x66, 0xee, 0xf4, 0x3c, 0x8d, 0xed, 0xf2, 0x24, 0x24, 0x3d, 0x0b, 0x46, - 0x60, 0x2b, 0xf9, 0xb4, 0x25, 0xcb, 0xde, 0xd1, 0xb6, 0x76, 0xe2, 0x49, 0x5e, 0x27, 0xba, 0xec, - 0xc2, 0x0d, 0x59, 0xb5, 0xb3, 0xcb, 0x12, 0x75, 0xec, 0xe4, 0x2c, 0x75, 0x72, 0x1a, 0x7b, 0x3d, - 0xe7, 0xb1, 0x13, 0xcc, 0x2e, 0xcb, 0xe6, 0xc1, 0xaa, 0xe1, 0xcb, 0x12, 0x78, 0x00, 0x2a, 0x34, - 0x70, 0xbc, 0xc8, 0x25, 0xe3, 0x03, 0x77, 0xf4, 0xf4, 0xb9, 0x99, 0x9d, 0x3e, 0xb1, 0xf6, 0xf3, - 0x78, 0x98, 0x5b, 0xeb, 0x89, 0x45, 0x8a, 0xf1, 0x18, 0x54, 0x49, 0x80, 0x7b, 0x1e, 0x71, 0xed, - 0x3e, 0xc1, 0x32, 0xe2, 0x44, 0xa0, 0x9b, 0x8d, 0x42, 0x73, 0x7d, 0xaf, 0x96, 0x05, 0x39, 0x89, - 0x65, 0x56, 0x25, 0x51, 0x4e, 0x68, 0xed, 0x03, 0xa7, 0xc1, 0x80, 0x06, 0x03, 0x5b, 0x52, 0x9f, - 0xb0, 0x48, 0xa2, 0x1b, 0x0d, 0xa3, 0x59, 0xdc, 0xbb, 0x69, 0xc6, 0x8b, 0xc8, 0x4c, 0x17, 0x91, - 0x79, 0x94, 0x2c, 0x22, 0x6b, 0x3d, 0xb1, 0xe8, 0xc6, 0x06, 0xf0, 0x18, 0x6c, 0xf8, 0xf8, 0x55, - 0xbc, 0x05, 0xd2, 0x6d, 0x85, 0xd0, 0x87, 0x50, 0x2a, 0x3e, 0x7e, 0xa5, 0x16, 0x43, 0xca, 0x80, - 0x27, 0xa0, 0xea, 0x13, 0x97, 0x62, 0x9b, 0x04, 0x0e, 0x1f, 0xe9, 0x78, 0xd1, 0xa7, 0x3a, 0x1f, - 0x3b, 0xd9, 0x50, 0x9e, 0x29, 0x9d, 0xe3, 0xb1, 0x8a, 0x55, 0xf1, 0xa7, 0x19, 0xd0, 0x04, 0xb5, - 0x21, 0xa6, 0xd2, 0x8e, 0x02, 0x49, 0x3d, 0x1b, 0x07, 0x62, 0x48, 0x38, 0x71, 0xd1, 0x67, 0xba, - 0xcc, 0x37, 0x94, 0xe8, 0x85, 0x92, 0x3c, 0x49, 0x04, 0xf0, 0x47, 0x50, 0x72, 0xa9, 0xd0, 0x3d, - 0xa1, 0x07, 0xd8, 0xed, 0xf9, 0xdb, 0xef, 0xe9, 0x27, 0x56, 0x31, 0xb1, 0x55, 0xe3, 0xeb, 0x0f, - 0xc3, 0x80, 0xdf, 0x82, 0x62, 0x66, 0xc5, 0xa0, 0x86, 0x4e, 0xc3, 0xe6, 0x38, 0x80, 0xa3, 0x89, - 0xcc, 0xca, 0x2a, 0x42, 0x1b, 0x94, 0x93, 0x0b, 0xb4, 0xfb, 0x1e, 0x1e, 0x08, 0x74, 0x47, 0xd7, - 0xde, 0xfe, 0xdc, 0xb5, 0x97, 0x5c, 0xe9, 0x89, 0x32, 0x8e, 0x8b, 0xae, 0xd4, 0xcf, 0xb0, 0xea, - 0x4f, 0x41, 0xfd, 0xea, 0xc9, 0x05, 0xab, 0xa0, 0x70, 0x4e, 0x46, 0xc8, 0xd0, 0x83, 0x42, 0x7d, - 0xc2, 0x4d, 0xb0, 0xf4, 0x12, 0x7b, 0x11, 0x49, 0x56, 0x6f, 0x4c, 0xec, 0x2f, 0x7c, 0x67, 0xd4, - 0xf7, 0x41, 0x29, 0x5b, 0xdc, 0xb9, 0x6c, 0x4f, 0x00, 0xba, 0xaa, 0x37, 0xf3, 0xe2, 0x5c, 0xd5, - 0x6c, 0xb9, 0x70, 0xbe, 0x07, 0x1b, 0x97, 0x12, 0x97, 0x07, 0xe0, 0xa0, 0x02, 0xca, 0x76, 0xb6, - 0x7c, 0x76, 0xff, 0x31, 0xc0, 0xbd, 0xeb, 0xef, 0x4b, 0x84, 0x2c, 0x10, 0x04, 0x3e, 0x04, 0xeb, - 0xd3, 0xfb, 0x36, 0x3e, 0xf0, 0xa0, 0xfa, 0xbe, 0x53, 0xce, 0x2e, 0xdb, 0x23, 0x6b, 0x8a, 0x74, - 0xaf, 0x5c, 0xd4, 0x0b, 0x57, 0x2f, 0xea, 0x0b, 0x0f, 0xb5, 0xc2, 0xb5, 0x0f, 0xb5, 0xdd, 0xbf, - 0x17, 0xc1, 0xe7, 0x69, 0x08, 0xfa, 0xf1, 0xd3, 0x27, 0x7c, 0xf6, 0x6b, 0xf1, 0x02, 0xae, 0x71, - 0xfd, 0x03, 0xf0, 0x36, 0x28, 0xca, 0x04, 0x4e, 0xbd, 0x8f, 0x62, 0x7f, 0x41, 0xca, 0xea, 0xb2, - 0xcb, 0xbb, 0xa9, 0x30, 0x63, 0x37, 0x0d, 0x27, 0xbb, 0x69, 0x51, 0xf7, 0xc8, 0xc3, 0xa9, 0x1e, - 0xb9, 0xd6, 0xe1, 0x8f, 0xda, 0x4e, 0x33, 0x66, 0xe5, 0x52, 0xde, 0x59, 0x89, 0x2f, 0xb6, 0xf9, - 0xb2, 0x0e, 0xe1, 0x51, 0x8e, 0x10, 0x3e, 0xd4, 0xe8, 0x1f, 0xd3, 0x9e, 0x1f, 0xdb, 0x0e, 0x7b, - 0xff, 0x19, 0xa0, 0x78, 0xda, 0xee, 0xa4, 0x91, 0x40, 0x01, 0x36, 0x67, 0x35, 0x01, 0x6c, 0xce, - 0x3b, 0xd7, 0xea, 0xf7, 0xe7, 0xd0, 0x8c, 0x3b, 0x6a, 0x77, 0xf9, 0xdd, 0x5b, 0x63, 0xa1, 0x6a, - 0x40, 0x01, 0xb6, 0x67, 0xa7, 0x10, 0x7e, 0x31, 0x7f, 0x9e, 0xeb, 0xdb, 0x97, 0x6e, 0xf5, 0x58, - 0xfd, 0xa7, 0xed, 0x6e, 0xbd, 0x7b, 0x6b, 0x6c, 0x54, 0x8d, 0x7a, 0x19, 0x66, 0x6b, 0xff, 0xe0, - 0xce, 0x2f, 0xb7, 0x07, 0x54, 0x9e, 0x45, 0x3d, 0xd3, 0x61, 0x7e, 0x2b, 0x99, 0xf7, 0xf1, 0x6f, - 0x9c, 0xc3, 0xbc, 0x16, 0x0f, 0x9d, 0xde, 0xb2, 0xa6, 0x1e, 0xfc, 0x1f, 0x00, 0x00, 0xff, 0xff, - 0x90, 0xce, 0x5d, 0xbb, 0x15, 0x0e, 0x00, 0x00, + // 1233 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x57, 0x4b, 0x6f, 0xdb, 0x46, + 0x10, 0x2e, 0x2d, 0x3f, 0x47, 0x92, 0x25, 0xaf, 0x6c, 0x67, 0x23, 0xb7, 0x89, 0xe2, 0xa4, 0x80, + 0xd2, 0x87, 0x84, 0x3a, 0x68, 0x53, 0x18, 0x41, 0xda, 0xf8, 0x11, 0x44, 0x45, 0xd3, 0x08, 0xb4, + 0x82, 0x02, 0xbd, 0x10, 0x2b, 0x72, 0x25, 0x6f, 0x4d, 0x72, 0xd9, 0xdd, 0x65, 0x1c, 0x35, 0xc8, + 0xbd, 0xf9, 0x09, 0xbd, 0xf5, 0xd8, 0x73, 0x4e, 0x45, 0x4e, 0xfd, 0x57, 0xbd, 0x16, 0x5c, 0x92, + 0x12, 0x6d, 0xcb, 0x8e, 0x88, 0xdc, 0x38, 0x33, 0xdf, 0x7c, 0x3b, 0x3b, 0xbb, 0x33, 0xb3, 0x84, + 0xb2, 0x08, 0xec, 0xb6, 0x64, 0x41, 0x2b, 0x10, 0x5c, 0x71, 0x54, 0x10, 0x81, 0x5d, 0xdf, 0x1a, + 0x72, 0x3e, 0x74, 0x69, 0x5b, 0xab, 0xfa, 0xe1, 0xa0, 0x4d, 0xbd, 0x40, 0x8d, 0x62, 0x44, 0xfd, + 0xc6, 0x79, 0xa3, 0x13, 0x0a, 0xa2, 0x18, 0xf7, 0x13, 0x7b, 0x99, 0x07, 0x91, 0x24, 0x13, 0x71, + 0xcd, 0x65, 0x2f, 0xe8, 0x09, 0x53, 0xd6, 0x78, 0x8d, 0xfa, 0xba, 0xcb, 0x87, 0x43, 0x2a, 0xda, + 0x67, 0x80, 0xdb, 0x7f, 0xd6, 0xe0, 0x76, 0xc7, 0x57, 0x54, 0xf8, 0xc4, 0xdd, 0x17, 0x94, 0x28, + 0x7a, 0xd4, 0xe9, 0x76, 0x89, 0x50, 0xcc, 0x66, 0x01, 0xf1, 0x95, 0x49, 0x7f, 0x0b, 0xa9, 0x54, + 0xe8, 0x73, 0x80, 0x40, 0xf0, 0x5f, 0xa9, 0xad, 0x2c, 0xe6, 0x60, 0xd4, 0x30, 0x9a, 0x2b, 0x7b, + 0xa5, 0x77, 0xdd, 0x95, 0x44, 0xd9, 0x39, 0x30, 0xc7, 0x9f, 0x0e, 0xfa, 0x02, 0x8a, 0x92, 0x05, + 0x96, 0x4d, 0x5c, 0x37, 0x42, 0x97, 0xc7, 0x68, 0xc9, 0x82, 0x7d, 0xe2, 0xba, 0x11, 0x3a, 0xfd, + 0x74, 0x50, 0x1b, 0x4a, 0x11, 0x5a, 0x89, 0xd0, 0x3f, 0x89, 0xe0, 0x35, 0x0d, 0x2f, 0xbf, 0xeb, + 0x82, 0x64, 0x41, 0x2f, 0xd2, 0x76, 0x0e, 0xcc, 0xc9, 0xb7, 0x83, 0x30, 0x2c, 0x11, 0xc7, 0x11, + 0x54, 0x4a, 0x3c, 0x17, 0x61, 0xcd, 0x54, 0x44, 0x75, 0x58, 0x3e, 0xe6, 0x52, 0xf9, 0xc4, 0xa3, + 0x78, 0x5d, 0x9b, 0xc6, 0x32, 0x6a, 0x43, 0xcd, 0xa1, 0x52, 0x31, 0x5f, 0xa7, 0xcd, 0xb2, 0x79, + 0xe8, 0x2b, 0x31, 0xc2, 0x37, 0x34, 0x0c, 0x65, 0x4c, 0xfb, 0xb1, 0x05, 0xdd, 0x83, 0x15, 0x25, + 0x88, 0x2f, 0x03, 0x2e, 0x14, 0xae, 0x36, 0x8c, 0xe6, 0xea, 0xce, 0x46, 0x2b, 0xc9, 0x6b, 0xeb, + 0xa8, 0xd3, 0xed, 0xa5, 0x46, 0x73, 0x82, 0x43, 0x9b, 0xb0, 0xe8, 0x87, 0x5e, 0x9f, 0x0a, 0x5c, + 0xd0, 0xc4, 0x89, 0x84, 0xae, 0xc1, 0x92, 0x4e, 0x87, 0xe2, 0x78, 0x3e, 0x36, 0x44, 0x62, 0x8f, + 0xa3, 0xef, 0x61, 0x39, 0x94, 0x51, 0xfa, 0x3d, 0x8a, 0x17, 0xf4, 0xce, 0xef, 0xfc, 0xdd, 0x35, + 0xde, 0x76, 0x6f, 0x3c, 0x10, 0xd4, 0x21, 0xb6, 0xa2, 0x4e, 0xa3, 0xf9, 0xea, 0x55, 0xa3, 0x75, + 0xc4, 0x7e, 0xa7, 0x8d, 0xd7, 0xaf, 0x1b, 0xfd, 0x91, 0xa2, 0xf2, 0xee, 0x43, 0x73, 0xec, 0x15, + 0x31, 0x04, 0x44, 0xca, 0x53, 0x2e, 0x1c, 0xbc, 0x98, 0x87, 0x21, 0xf5, 0x42, 0x5b, 0xb0, 0x22, + 0x38, 0xf7, 0x2c, 0x1d, 0xc4, 0x52, 0x9c, 0xb7, 0x48, 0xf1, 0x53, 0x44, 0xff, 0x15, 0xac, 0x07, + 0x93, 0xfb, 0x60, 0x31, 0x87, 0xfa, 0x8a, 0xa9, 0x11, 0x5e, 0xd6, 0xb8, 0x5a, 0xc6, 0xd6, 0x49, + 0x4c, 0xe8, 0x19, 0x54, 0xb3, 0x2e, 0x9a, 0x76, 0x35, 0x47, 0x64, 0x95, 0x8c, 0xb7, 0x8e, 0xe1, + 0xe7, 0xb3, 0x31, 0x78, 0x54, 0x11, 0x87, 0x28, 0x82, 0x2b, 0x39, 0x48, 0xb3, 0x91, 0x3e, 0x4d, + 0x08, 0xd0, 0x5f, 0x06, 0x6c, 0x66, 0x99, 0x89, 0x52, 0x82, 0xf5, 0x43, 0x45, 0x25, 0x5e, 0x6b, + 0x14, 0x9a, 0xc5, 0x9d, 0xfd, 0x96, 0x08, 0xec, 0xd6, 0x0c, 0x15, 0xd2, 0xca, 0xa8, 0x1e, 0x8d, + 0x59, 0x0e, 0xa3, 0x9b, 0x34, 0x63, 0x80, 0x1b, 0xc1, 0x34, 0x06, 0xb4, 0x0b, 0x0b, 0x8a, 0x9f, + 0x50, 0x1f, 0xaf, 0xe4, 0xd8, 0x6c, 0xec, 0x82, 0x36, 0x60, 0xf1, 0x54, 0x5a, 0xa1, 0x70, 0x31, + 0xe8, 0xd3, 0x5a, 0x38, 0x95, 0xcf, 0x85, 0x8b, 0x10, 0xcc, 0x3b, 0xca, 0x1b, 0xe0, 0xa2, 0x56, + 0xea, 0x6f, 0x74, 0x1b, 0xca, 0x81, 0x4b, 0x46, 0x96, 0xc3, 0x88, 0xab, 0xb8, 0x4f, 0x71, 0xa9, + 0x61, 0x34, 0x97, 0xcd, 0x52, 0xa4, 0x3c, 0x48, 0x74, 0x28, 0x84, 0xa5, 0x63, 0x4a, 0x1c, 0x2a, + 0x24, 0xde, 0xd0, 0xe9, 0xf9, 0x7a, 0xe6, 0xf4, 0x3c, 0x89, 0xfd, 0xf2, 0x24, 0x24, 0x5d, 0x0b, + 0x85, 0xb0, 0x91, 0x7c, 0x5a, 0x8a, 0x67, 0xcf, 0x68, 0x53, 0x07, 0xf1, 0x28, 0x6f, 0x10, 0x3d, + 0x7e, 0xee, 0x84, 0xcc, 0xda, 0xf1, 0x45, 0x4b, 0xb4, 0xec, 0x64, 0xad, 0x68, 0xe5, 0x74, 0xef, + 0xf5, 0x9c, 0xcb, 0x4e, 0x38, 0x7b, 0x3c, 0x9b, 0x07, 0xb3, 0x46, 0x2e, 0x5a, 0xd0, 0x1e, 0x54, + 0x98, 0x6f, 0xbb, 0xa1, 0x43, 0xc7, 0x0b, 0x6e, 0xe9, 0xee, 0x73, 0x3d, 0xdb, 0x7d, 0x62, 0xf4, + 0xb3, 0xb8, 0x99, 0x9b, 0xab, 0x89, 0x47, 0xca, 0xf1, 0x10, 0xaa, 0xd4, 0x27, 0x7d, 0x97, 0x3a, + 0xd6, 0x80, 0x12, 0x15, 0x0a, 0x2a, 0xf1, 0xf5, 0x46, 0xa1, 0xb9, 0xba, 0x53, 0xcb, 0x92, 0x3c, + 0x8e, 0x6d, 0x66, 0x25, 0x01, 0x27, 0xb2, 0x8e, 0x41, 0x30, 0x7f, 0xc8, 0xfc, 0xa1, 0xa5, 0x98, + 0x47, 0x79, 0xa8, 0xf0, 0xb5, 0x86, 0xd1, 0x2c, 0xee, 0x5c, 0x6f, 0xc5, 0x83, 0xa8, 0x95, 0x0e, + 0xa2, 0xd6, 0x41, 0x32, 0x88, 0xcc, 0xd5, 0xc4, 0xa3, 0x17, 0x3b, 0xa0, 0x43, 0x58, 0xf3, 0xc8, + 0xcb, 0x78, 0x0a, 0xa4, 0xd3, 0x0a, 0xe3, 0xf7, 0xb1, 0x54, 0x3c, 0xf2, 0x32, 0x1a, 0x0c, 0xa9, + 0x02, 0xfd, 0x00, 0x55, 0x8f, 0x3a, 0x8c, 0x58, 0xd4, 0xb7, 0xc5, 0x48, 0xef, 0x17, 0x7f, 0xac, + 0xf3, 0xb1, 0x95, 0xdd, 0xca, 0xd3, 0x08, 0x73, 0x38, 0x86, 0xec, 0xcd, 0x61, 0xc3, 0xac, 0x78, + 0x67, 0x95, 0xe8, 0x4b, 0x58, 0xd0, 0x2a, 0xbc, 0xad, 0xc3, 0xb8, 0x76, 0x81, 0x60, 0x9f, 0xfb, + 0x03, 0x36, 0x34, 0x63, 0x14, 0x6a, 0x41, 0xed, 0x94, 0x30, 0x65, 0x85, 0xbe, 0x62, 0xae, 0x45, + 0x7c, 0x79, 0x4a, 0x05, 0x75, 0xf0, 0x27, 0xba, 0x32, 0xd6, 0x22, 0xd3, 0xf3, 0xc8, 0xf2, 0x28, + 0x31, 0xa0, 0x1f, 0xa1, 0xe4, 0x30, 0xa9, 0xcb, 0x48, 0xf7, 0xbc, 0x9b, 0xb3, 0x57, 0xec, 0x93, + 0x8f, 0xcc, 0x62, 0xe2, 0x1b, 0x75, 0xbc, 0x3f, 0x0c, 0x03, 0x7d, 0x03, 0xc5, 0xcc, 0x54, 0xc2, + 0x0d, 0x1d, 0xf2, 0xfa, 0x38, 0xe4, 0x83, 0x89, 0xcd, 0xcc, 0x02, 0x91, 0x05, 0xe5, 0xe4, 0xcc, + 0xad, 0x81, 0x4b, 0x86, 0x12, 0xdf, 0xd2, 0xd7, 0x75, 0x77, 0xe6, 0xeb, 0x9a, 0xdc, 0x82, 0xc7, + 0x91, 0x73, 0x7c, 0x4f, 0x4b, 0x83, 0x8c, 0xaa, 0xfe, 0x04, 0xea, 0x97, 0x37, 0x3b, 0x54, 0x85, + 0xc2, 0x09, 0x1d, 0x61, 0x43, 0xf7, 0x96, 0xe8, 0x13, 0xad, 0xc3, 0xc2, 0x0b, 0xe2, 0x86, 0x34, + 0x99, 0xd6, 0xb1, 0xb0, 0x3b, 0xf7, 0xad, 0x51, 0xdf, 0x85, 0x52, 0xb6, 0x1e, 0x72, 0xf9, 0x3e, + 0x06, 0x7c, 0x59, 0x39, 0xe7, 0xe5, 0xb9, 0xac, 0x3e, 0x73, 0xf1, 0x7c, 0x07, 0x6b, 0x17, 0x12, + 0x97, 0x87, 0x60, 0xaf, 0x02, 0x65, 0x2b, 0x7b, 0x7d, 0xb6, 0xff, 0x35, 0xe0, 0xce, 0xd5, 0xe7, + 0x25, 0x03, 0xee, 0x4b, 0x8a, 0xee, 0xc3, 0xea, 0xd9, 0x11, 0x1d, 0x2f, 0xb8, 0x57, 0x7d, 0xd7, + 0x2d, 0x67, 0xe7, 0xf3, 0x81, 0x79, 0x46, 0x74, 0x2e, 0x9d, 0xed, 0x73, 0x97, 0xcf, 0xf6, 0x73, + 0x6f, 0xbb, 0xc2, 0x95, 0x6f, 0xbb, 0xed, 0x7f, 0xe6, 0xe1, 0xd3, 0x74, 0x0b, 0xfa, 0xbd, 0x34, + 0xa0, 0x62, 0xfa, 0x03, 0xf3, 0x1c, 0xaf, 0x71, 0xf5, 0x9b, 0xf1, 0x26, 0x14, 0x55, 0x42, 0x17, + 0x3d, 0xa9, 0xe2, 0x78, 0x21, 0x55, 0xf5, 0xf8, 0xc5, 0x71, 0x56, 0x98, 0x32, 0xce, 0x4e, 0x27, + 0xe3, 0x6c, 0x5e, 0xd7, 0xc8, 0xfd, 0x33, 0x35, 0x72, 0x65, 0xc0, 0x1f, 0x34, 0xd0, 0xa6, 0xb4, + 0xd7, 0x85, 0xbc, 0xed, 0x95, 0x9c, 0x2f, 0xf3, 0x45, 0xbd, 0x85, 0x07, 0x39, 0xb6, 0xf0, 0xbe, + 0x42, 0xff, 0x90, 0xf2, 0xfc, 0xd0, 0x72, 0xd8, 0xf9, 0xcf, 0x80, 0xe2, 0x51, 0xa7, 0x9b, 0xee, + 0x04, 0x49, 0x58, 0x9f, 0x56, 0x04, 0xa8, 0x39, 0x6b, 0x5f, 0xab, 0xdf, 0x9d, 0x01, 0x19, 0x57, + 0xd4, 0xf6, 0xe2, 0xdb, 0x37, 0xc6, 0x5c, 0xd5, 0x40, 0x12, 0x36, 0xa7, 0xa7, 0x10, 0x7d, 0x36, + 0x7b, 0x9e, 0xeb, 0x9b, 0x17, 0x4e, 0xf5, 0x30, 0xfa, 0xb5, 0xdb, 0xde, 0x78, 0xfb, 0xc6, 0x58, + 0xab, 0x1a, 0xf5, 0x32, 0xca, 0xde, 0xfd, 0xbd, 0x5b, 0xbf, 0xdc, 0x1c, 0x32, 0x75, 0x1c, 0xf6, + 0x5b, 0x36, 0xf7, 0xda, 0x49, 0xbf, 0x8f, 0xff, 0xfc, 0x6c, 0xee, 0xb6, 0x45, 0x60, 0xf7, 0x17, + 0xb5, 0x74, 0xef, 0xff, 0x00, 0x00, 0x00, 0xff, 0xff, 0x1f, 0x52, 0xb5, 0x98, 0x48, 0x0e, 0x00, + 0x00, } diff --git a/sip/sip.go b/sip/sip.go index 00094a4b2..650f376e5 100644 --- a/sip/sip.go +++ b/sip/sip.go @@ -28,6 +28,7 @@ import ( "github.com/dennwc/iters" "github.com/twitchtv/twirp" "golang.org/x/exp/slices" + "google.golang.org/protobuf/proto" "github.com/livekit/protocol/livekit" "github.com/livekit/protocol/logger" @@ -887,6 +888,7 @@ func EvaluateDispatchRule(projectID string, trunk *livekit.SIPInboundTrunkInfo, SipDispatchRuleId: rule.SipDispatchRuleId, Result: rpc.SIPDispatchResult_REQUEST_PIN, MediaEncryption: enc, + Media: rule.Media, RequestPin: true, }, nil } @@ -948,6 +950,9 @@ func EvaluateDispatchRule(projectID string, trunk *livekit.SIPInboundTrunkInfo, if rule.MediaEncryption != 0 { resp.MediaEncryption = rule.MediaEncryption } + resp.Media = proto.CloneOf(rule.Media) + resp.Media.MergeEncryption(resp.MediaEncryption) + resp.MediaEncryption = resp.Media.Encryption } if krispEnabled { resp.EnabledFeatures = append(resp.EnabledFeatures, livekit.SIPFeature_KRISP_ENABLED)